From 8c35abbb04deb94d985108f302e17096b8fd00b4 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 13 Sep 2023 09:30:56 +0100 Subject: [PATCH] Migrate more strings to translation keys (#11601) --- src/SlashCommands.tsx | 38 +-- src/accessibility/KeyboardShortcutUtils.ts | 8 +- src/accessibility/KeyboardShortcuts.ts | 106 ++++----- src/components/structures/HomePage.tsx | 18 +- .../structures/auth/Registration.tsx | 27 +-- src/components/structures/auth/SoftLogout.tsx | 2 +- .../views/dialogs/UserSettingsDialog.tsx | 2 +- .../views/elements/ErrorBoundary.tsx | 2 +- .../tabs/user/HelpUserSettingsTab.tsx | 26 +-- src/i18n/strings/ar.json | 50 ++-- src/i18n/strings/az.json | 10 +- src/i18n/strings/bg.json | 124 +++++----- src/i18n/strings/ca.json | 10 +- src/i18n/strings/cs.json | 216 +++++++++--------- src/i18n/strings/da.json | 18 +- src/i18n/strings/de_DE.json | 216 +++++++++--------- src/i18n/strings/el.json | 206 +++++++++-------- src/i18n/strings/en_EN.json | 216 +++++++++--------- src/i18n/strings/en_US.json | 16 +- src/i18n/strings/eo.json | 182 ++++++++------- src/i18n/strings/es.json | 214 ++++++++--------- src/i18n/strings/et.json | 216 +++++++++--------- src/i18n/strings/eu.json | 98 ++++---- src/i18n/strings/fa.json | 196 ++++++++-------- src/i18n/strings/fi.json | 212 ++++++++--------- src/i18n/strings/fr.json | 216 +++++++++--------- src/i18n/strings/ga.json | 24 +- src/i18n/strings/gl.json | 208 ++++++++--------- src/i18n/strings/he.json | 178 ++++++++------- src/i18n/strings/hi.json | 18 +- src/i18n/strings/hu.json | 216 +++++++++--------- src/i18n/strings/id.json | 216 +++++++++--------- src/i18n/strings/is.json | 204 +++++++++-------- src/i18n/strings/it.json | 216 +++++++++--------- src/i18n/strings/ja.json | 208 ++++++++--------- src/i18n/strings/jbo.json | 18 +- src/i18n/strings/ka.json | 4 +- src/i18n/strings/kab.json | 114 ++++----- src/i18n/strings/ko.json | 54 +++-- src/i18n/strings/lo.json | 206 +++++++++-------- src/i18n/strings/lt.json | 104 +++++---- src/i18n/strings/lv.json | 78 ++++--- src/i18n/strings/nb_NO.json | 78 ++++--- src/i18n/strings/nl.json | 208 ++++++++--------- src/i18n/strings/nn.json | 56 +++-- src/i18n/strings/oc.json | 12 +- src/i18n/strings/pl.json | 216 +++++++++--------- src/i18n/strings/pt.json | 18 +- src/i18n/strings/pt_BR.json | 160 ++++++------- src/i18n/strings/ru.json | 208 ++++++++--------- src/i18n/strings/sk.json | 216 +++++++++--------- src/i18n/strings/sl.json | 6 +- src/i18n/strings/sq.json | 216 +++++++++--------- src/i18n/strings/sr.json | 58 ++--- src/i18n/strings/sr_Latn.json | 10 +- src/i18n/strings/sv.json | 216 +++++++++--------- src/i18n/strings/th.json | 6 +- src/i18n/strings/tr.json | 74 +++--- src/i18n/strings/tzm.json | 4 +- src/i18n/strings/uk.json | 216 +++++++++--------- src/i18n/strings/vi.json | 184 +++++++-------- src/i18n/strings/vls.json | 36 +-- src/i18n/strings/zh_Hans.json | 212 ++++++++--------- src/i18n/strings/zh_Hant.json | 216 +++++++++--------- 64 files changed, 3784 insertions(+), 3553 deletions(-) diff --git a/src/SlashCommands.tsx b/src/SlashCommands.tsx index c5ecb2315f..ac5e3f22c8 100644 --- a/src/SlashCommands.tsx +++ b/src/SlashCommands.tsx @@ -624,7 +624,7 @@ export const Commands = [ !isCurrentLocalRoom(cli), runFn: function (cli, roomId, threadId, widgetUrl) { if (!widgetUrl) { - return reject(new UserFriendlyError("Please supply a widget URL or embed code")); + return reject(new UserFriendlyError("slash_command|addwidget_missing_url")); } // Try and parse out a widget URL from iframes @@ -635,7 +635,7 @@ export const Commands = [ if (iframe?.tagName.toLowerCase() === "iframe") { logger.log("Pulling URL out of iframe (embed code)"); if (!iframe.hasAttribute("src")) { - return reject(new UserFriendlyError("iframe has no src attribute")); + return reject(new UserFriendlyError("slash_command|addwidget_iframe_missing_src")); } widgetUrl = iframe.getAttribute("src")!; } @@ -643,7 +643,7 @@ export const Commands = [ } if (!widgetUrl.startsWith("https://") && !widgetUrl.startsWith("http://")) { - return reject(new UserFriendlyError("Please supply a https:// or http:// widget URL")); + return reject(new UserFriendlyError("slash_command|addwidget_invalid_protocol")); } if (WidgetUtils.canUserModifyWidgets(cli, roomId)) { const userId = cli.getUserId(); @@ -665,7 +665,7 @@ export const Commands = [ return success(WidgetUtils.setRoomWidget(cli, roomId, widgetId, type, widgetUrl, name, data)); } else { - return reject(new UserFriendlyError("You cannot modify widgets in this room.")); + return reject(new UserFriendlyError("slash_command|addwidget_no_permissions")); } }, category: CommandCategories.admin, @@ -749,7 +749,7 @@ export const Commands = [ }), new Command({ command: "discardsession", - description: _td("Forces the current outbound group session in an encrypted room to be discarded"), + description: _td("slash_command|discardsession"), isEnabled: (cli) => !isCurrentLocalRoom(cli), runFn: function (cli, roomId) { try { @@ -764,7 +764,7 @@ export const Commands = [ }), new Command({ command: "remakeolm", - description: _td("Developer command: Discards the current outbound group session and sets up new Olm sessions"), + description: _td("slash_command|remakeolm"), isEnabled: (cli) => { return SettingsStore.getValue("developerMode") && !isCurrentLocalRoom(cli); }, @@ -856,7 +856,7 @@ export const Commands = [ }), new Command({ command: "tovirtual", - description: _td("Switches to this room's virtual room, if it has one"), + description: _td("slash_command|tovirtual"), category: CommandCategories.advanced, isEnabled(cli): boolean { return !!LegacyCallHandler.instance.getSupportsVirtualRooms() && !isCurrentLocalRoom(cli); @@ -865,7 +865,7 @@ export const Commands = [ return success( (async (): Promise => { const room = await VoipUserMapper.sharedInstance().getVirtualRoomForRoom(roomId); - if (!room) throw new UserFriendlyError("No virtual room for this room"); + if (!room) throw new UserFriendlyError("slash_command|tovirtual_not_found"); dis.dispatch({ action: Action.ViewRoom, room_id: room.roomId, @@ -878,7 +878,7 @@ export const Commands = [ }), new Command({ command: "query", - description: _td("Opens chat with the given user"), + description: _td("slash_command|query"), args: "", runFn: function (cli, roomId, threadId, userId) { // easter-egg for now: look up phone numbers through the thirdparty API @@ -893,7 +893,7 @@ export const Commands = [ if (isPhoneNumber) { const results = await LegacyCallHandler.instance.pstnLookup(userId); if (!results || results.length === 0 || !results[0].userid) { - throw new UserFriendlyError("Unable to find Matrix ID for phone number"); + throw new UserFriendlyError("slash_command|query_not_found_phone_number"); } userId = results[0].userid; } @@ -949,13 +949,13 @@ export const Commands = [ }), new Command({ command: "holdcall", - description: _td("Places the call in the current room on hold"), + description: _td("slash_command|holdcall"), category: CommandCategories.other, isEnabled: (cli) => !isCurrentLocalRoom(cli), runFn: function (cli, roomId, threadId, args) { const call = LegacyCallHandler.instance.getCallForRoom(roomId); if (!call) { - return reject(new UserFriendlyError("No active call in this room")); + return reject(new UserFriendlyError("slash_command|no_active_call")); } call.setRemoteOnHold(true); return success(); @@ -964,13 +964,13 @@ export const Commands = [ }), new Command({ command: "unholdcall", - description: _td("Takes the call in the current room off hold"), + description: _td("slash_command|unholdcall"), category: CommandCategories.other, isEnabled: (cli) => !isCurrentLocalRoom(cli), runFn: function (cli, roomId, threadId, args) { const call = LegacyCallHandler.instance.getCallForRoom(roomId); if (!call) { - return reject(new UserFriendlyError("No active call in this room")); + return reject(new UserFriendlyError("slash_command|no_active_call")); } call.setRemoteOnHold(false); return success(); @@ -979,24 +979,24 @@ export const Commands = [ }), new Command({ command: "converttodm", - description: _td("Converts the room to a DM"), + description: _td("slash_command|converttodm"), category: CommandCategories.other, isEnabled: (cli) => !isCurrentLocalRoom(cli), runFn: function (cli, roomId, threadId, args) { const room = cli.getRoom(roomId); - if (!room) return reject(new UserFriendlyError("Could not find room")); + if (!room) return reject(new UserFriendlyError("slash_command|could_not_find_room")); return success(guessAndSetDMRoom(room, true)); }, renderingTypes: [TimelineRenderingType.Room], }), new Command({ command: "converttoroom", - description: _td("Converts the DM to a room"), + description: _td("slash_command|converttoroom"), category: CommandCategories.other, isEnabled: (cli) => !isCurrentLocalRoom(cli), runFn: function (cli, roomId, threadId, args) { const room = cli.getRoom(roomId); - if (!room) return reject(new UserFriendlyError("Could not find room")); + if (!room) return reject(new UserFriendlyError("slash_command|could_not_find_room")); return success(guessAndSetDMRoom(room, false)); }, renderingTypes: [TimelineRenderingType.Room], @@ -1007,7 +1007,7 @@ export const Commands = [ new Command({ command: "me", args: "", - description: _td("Displays action"), + description: _td("slash_command|me"), category: CommandCategories.messages, hideCompletionAfterSpace: true, }), diff --git a/src/accessibility/KeyboardShortcutUtils.ts b/src/accessibility/KeyboardShortcutUtils.ts index dc006dcd6a..8743d2d407 100644 --- a/src/accessibility/KeyboardShortcutUtils.ts +++ b/src/accessibility/KeyboardShortcutUtils.ts @@ -50,7 +50,7 @@ const getUIOnlyShortcuts = (): IKeyboardShortcuts => { key: Key.ENTER, shiftKey: !ctrlEnterToSend, }, - displayName: _td("New line"), + displayName: _td("keyboard|composer_new_line"), }, [KeyBindingAction.CompleteAutocomplete]: { default: { @@ -62,14 +62,14 @@ const getUIOnlyShortcuts = (): IKeyboardShortcuts => { default: { key: Key.TAB, }, - displayName: _td("Force complete"), + displayName: _td("keyboard|autocomplete_force"), }, [KeyBindingAction.SearchInRoom]: { default: { ctrlOrCmdKey: true, key: Key.F, }, - displayName: _td("Search (must be enabled)"), + displayName: _td("keyboard|search"), }, }; @@ -82,7 +82,7 @@ const getUIOnlyShortcuts = (): IKeyboardShortcuts => { ctrlOrCmdKey: true, key: DIGITS, }, - displayName: _td("Switch to space by number"), + displayName: _td("keyboard|switch_to_space"), }; } diff --git a/src/accessibility/KeyboardShortcuts.ts b/src/accessibility/KeyboardShortcuts.ts index 97deb79cba..ecf619cd6c 100644 --- a/src/accessibility/KeyboardShortcuts.ts +++ b/src/accessibility/KeyboardShortcuts.ts @@ -229,7 +229,7 @@ export const CATEGORIES: Record = { ], }, [CategoryName.CALLS]: { - categoryLabel: _td("Calls"), + categoryLabel: _td("keyboard|category_calls"), settingNames: [KeyBindingAction.ToggleMicInCall, KeyBindingAction.ToggleWebcamInCall], }, [CategoryName.ROOM]: { @@ -246,7 +246,7 @@ export const CATEGORIES: Record = { ], }, [CategoryName.ROOM_LIST]: { - categoryLabel: _td("Room List"), + categoryLabel: _td("keyboard|category_room_list"), settingNames: [ KeyBindingAction.SelectRoomInRoomList, KeyBindingAction.ClearRoomFilter, @@ -274,7 +274,7 @@ export const CATEGORIES: Record = { ], }, [CategoryName.NAVIGATION]: { - categoryLabel: _td("Navigation"), + categoryLabel: _td("keyboard|category_navigation"), settingNames: [ KeyBindingAction.ToggleUserMenu, KeyBindingAction.ToggleRoomSidePanel, @@ -293,7 +293,7 @@ export const CATEGORIES: Record = { ], }, [CategoryName.AUTOCOMPLETE]: { - categoryLabel: _td("Autocomplete"), + categoryLabel: _td("keyboard|category_autocomplete"), settingNames: [ KeyBindingAction.CancelAutocomplete, KeyBindingAction.NextSelectionInAutocomplete, @@ -327,14 +327,14 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { ctrlOrCmdKey: true, key: Key.B, }, - displayName: _td("Toggle Bold"), + displayName: _td("keyboard|composer_toggle_bold"), }, [KeyBindingAction.FormatItalics]: { default: { ctrlOrCmdKey: true, key: Key.I, }, - displayName: _td("Toggle Italics"), + displayName: _td("keyboard|composer_toggle_italics"), }, [KeyBindingAction.FormatQuote]: { default: { @@ -342,14 +342,14 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { shiftKey: true, key: Key.GREATER_THAN, }, - displayName: _td("Toggle Quote"), + displayName: _td("keyboard|composer_toggle_quote"), }, [KeyBindingAction.FormatCode]: { default: { ctrlOrCmdKey: true, key: Key.E, }, - displayName: _td("Toggle Code Block"), + displayName: _td("keyboard|composer_toggle_code_block"), }, [KeyBindingAction.FormatLink]: { default: { @@ -357,39 +357,39 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { shiftKey: true, key: Key.L, }, - displayName: _td("Toggle Link"), + displayName: _td("keyboard|composer_toggle_link"), }, [KeyBindingAction.CancelReplyOrEdit]: { default: { key: Key.ESCAPE, }, - displayName: _td("Cancel replying to a message"), + displayName: _td("keyboard|cancel_reply"), }, [KeyBindingAction.EditNextMessage]: { default: { key: Key.ARROW_DOWN, }, - displayName: _td("Navigate to next message to edit"), + displayName: _td("keyboard|navigate_next_message_edit"), }, [KeyBindingAction.EditPrevMessage]: { default: { key: Key.ARROW_UP, }, - displayName: _td("Navigate to previous message to edit"), + displayName: _td("keyboard|navigate_prev_message_edit"), }, [KeyBindingAction.MoveCursorToStart]: { default: { ctrlOrCmdKey: true, key: Key.HOME, }, - displayName: _td("Jump to start of the composer"), + displayName: _td("keyboard|composer_jump_start"), }, [KeyBindingAction.MoveCursorToEnd]: { default: { ctrlOrCmdKey: true, key: Key.END, }, - displayName: _td("Jump to end of the composer"), + displayName: _td("keyboard|composer_jump_end"), }, [KeyBindingAction.SelectNextSendHistory]: { default: { @@ -397,7 +397,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { ctrlKey: true, key: Key.ARROW_DOWN, }, - displayName: _td("Navigate to next message in composer history"), + displayName: _td("keyboard|composer_navigate_next_history"), }, [KeyBindingAction.SelectPrevSendHistory]: { default: { @@ -405,41 +405,41 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { ctrlKey: true, key: Key.ARROW_UP, }, - displayName: _td("Navigate to previous message in composer history"), + displayName: _td("keyboard|composer_navigate_prev_history"), }, [KeyBindingAction.ShowStickerPicker]: { default: { ctrlOrCmdKey: true, key: Key.SEMICOLON, }, - displayName: _td("Send a sticker"), + displayName: _td("keyboard|send_sticker"), }, [KeyBindingAction.ToggleMicInCall]: { default: { ctrlOrCmdKey: true, key: Key.D, }, - displayName: _td("Toggle microphone mute"), + displayName: _td("keyboard|toggle_microphone_mute"), }, [KeyBindingAction.ToggleWebcamInCall]: { default: { ctrlOrCmdKey: true, key: Key.E, }, - displayName: _td("Toggle webcam on/off"), + displayName: _td("keyboard|toggle_webcam_mute"), }, [KeyBindingAction.DismissReadMarker]: { default: { key: Key.ESCAPE, }, - displayName: _td("Dismiss read marker and jump to bottom"), + displayName: _td("keyboard|dismiss_read_marker_and_jump_bottom"), }, [KeyBindingAction.JumpToOldestUnread]: { default: { shiftKey: true, key: Key.PAGE_UP, }, - displayName: _td("Jump to oldest unread message"), + displayName: _td("keyboard|jump_to_read_marker"), }, [KeyBindingAction.UploadFile]: { default: { @@ -447,77 +447,77 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { shiftKey: true, key: Key.U, }, - displayName: _td("Upload a file"), + displayName: _td("keyboard|upload_file"), }, [KeyBindingAction.ScrollUp]: { default: { key: Key.PAGE_UP, }, - displayName: _td("Scroll up in the timeline"), + displayName: _td("keyboard|scroll_up_timeline"), }, [KeyBindingAction.ScrollDown]: { default: { key: Key.PAGE_DOWN, }, - displayName: _td("Scroll down in the timeline"), + displayName: _td("keyboard|scroll_down_timeline"), }, [KeyBindingAction.FilterRooms]: { default: { ctrlOrCmdKey: true, key: Key.K, }, - displayName: _td("Jump to room search"), + displayName: _td("keyboard|jump_room_search"), }, [KeyBindingAction.SelectRoomInRoomList]: { default: { key: Key.ENTER, }, - displayName: _td("Select room from the room list"), + displayName: _td("keyboard|room_list_select_room"), }, [KeyBindingAction.CollapseRoomListSection]: { default: { key: Key.ARROW_LEFT, }, - displayName: _td("Collapse room list section"), + displayName: _td("keyboard|room_list_collapse_section"), }, [KeyBindingAction.ExpandRoomListSection]: { default: { key: Key.ARROW_RIGHT, }, - displayName: _td("Expand room list section"), + displayName: _td("keyboard|room_list_expand_section"), }, [KeyBindingAction.NextRoom]: { default: { key: Key.ARROW_DOWN, }, - displayName: _td("Navigate down in the room list"), + displayName: _td("keyboard|room_list_navigate_down"), }, [KeyBindingAction.PrevRoom]: { default: { key: Key.ARROW_UP, }, - displayName: _td("Navigate up in the room list"), + displayName: _td("keyboard|room_list_navigate_up"), }, [KeyBindingAction.ToggleUserMenu]: { default: { ctrlOrCmdKey: true, key: Key.BACKTICK, }, - displayName: _td("Toggle the top left menu"), + displayName: _td("keyboard|toggle_top_left_menu"), }, [KeyBindingAction.ToggleRoomSidePanel]: { default: { ctrlOrCmdKey: true, key: Key.PERIOD, }, - displayName: _td("Toggle right panel"), + displayName: _td("keyboard|toggle_right_panel"), }, [KeyBindingAction.ShowKeyboardSettings]: { default: { ctrlOrCmdKey: true, key: Key.SLASH, }, - displayName: _td("Open this settings tab"), + displayName: _td("keyboard|keyboard_shortcuts_tab"), }, [KeyBindingAction.GoToHome]: { default: { @@ -526,7 +526,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { shiftKey: IS_MAC, key: Key.H, }, - displayName: _td("Go to Home View"), + displayName: _td("keyboard|go_home_view"), }, [KeyBindingAction.SelectNextUnreadRoom]: { default: { @@ -534,7 +534,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { altKey: true, key: Key.ARROW_DOWN, }, - displayName: _td("Next unread room or DM"), + displayName: _td("keyboard|next_unread_room"), }, [KeyBindingAction.SelectPrevUnreadRoom]: { default: { @@ -542,39 +542,39 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { altKey: true, key: Key.ARROW_UP, }, - displayName: _td("Previous unread room or DM"), + displayName: _td("keyboard|prev_unread_room"), }, [KeyBindingAction.SelectNextRoom]: { default: { altKey: true, key: Key.ARROW_DOWN, }, - displayName: _td("Next room or DM"), + displayName: _td("keyboard|next_room"), }, [KeyBindingAction.SelectPrevRoom]: { default: { altKey: true, key: Key.ARROW_UP, }, - displayName: _td("Previous room or DM"), + displayName: _td("keyboard|prev_room"), }, [KeyBindingAction.CancelAutocomplete]: { default: { key: Key.ESCAPE, }, - displayName: _td("Cancel autocomplete"), + displayName: _td("keyboard|autocomplete_cancel"), }, [KeyBindingAction.NextSelectionInAutocomplete]: { default: { key: Key.ARROW_DOWN, }, - displayName: _td("Next autocomplete suggestion"), + displayName: _td("keyboard|autocomplete_navigate_next"), }, [KeyBindingAction.PrevSelectionInAutocomplete]: { default: { key: Key.ARROW_UP, }, - displayName: _td("Previous autocomplete suggestion"), + displayName: _td("keyboard|autocomplete_navigate_prev"), }, [KeyBindingAction.ToggleSpacePanel]: { default: { @@ -582,7 +582,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { shiftKey: true, key: Key.D, }, - displayName: _td("Toggle space panel"), + displayName: _td("keyboard|toggle_space_panel"), }, [KeyBindingAction.ToggleHiddenEventVisibility]: { default: { @@ -590,28 +590,28 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { shiftKey: true, key: Key.H, }, - displayName: _td("Toggle hidden event visibility"), + displayName: _td("keyboard|toggle_hidden_events"), }, [KeyBindingAction.JumpToFirstMessage]: { default: { key: Key.HOME, ctrlKey: true, }, - displayName: _td("Jump to first message"), + displayName: _td("keyboard|jump_first_message"), }, [KeyBindingAction.JumpToLatestMessage]: { default: { key: Key.END, ctrlKey: true, }, - displayName: _td("Jump to last message"), + displayName: _td("keyboard|jump_last_message"), }, [KeyBindingAction.EditUndo]: { default: { key: Key.Z, ctrlOrCmdKey: true, }, - displayName: _td("Undo edit"), + displayName: _td("keyboard|composer_undo"), }, [KeyBindingAction.EditRedo]: { default: { @@ -619,7 +619,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { ctrlOrCmdKey: true, shiftKey: IS_MAC, }, - displayName: _td("Redo edit"), + displayName: _td("keyboard|composer_redo"), }, [KeyBindingAction.PreviousVisitedRoomOrSpace]: { default: { @@ -627,7 +627,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { altKey: !IS_MAC, key: IS_MAC ? Key.SQUARE_BRACKET_LEFT : Key.ARROW_LEFT, }, - displayName: _td("Previous recently visited room or space"), + displayName: _td("keyboard|navigate_prev_history"), }, [KeyBindingAction.NextVisitedRoomOrSpace]: { default: { @@ -635,33 +635,33 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { altKey: !IS_MAC, key: IS_MAC ? Key.SQUARE_BRACKET_RIGHT : Key.ARROW_RIGHT, }, - displayName: _td("Next recently visited room or space"), + displayName: _td("keyboard|navigate_next_history"), }, [KeyBindingAction.SwitchToSpaceByNumber]: { default: { ctrlOrCmdKey: true, key: DIGITS, }, - displayName: _td("Switch to space by number"), + displayName: _td("keyboard|switch_to_space"), }, [KeyBindingAction.OpenUserSettings]: { default: { metaKey: true, key: Key.COMMA, }, - displayName: _td("Open user settings"), + displayName: _td("keyboard|open_user_settings"), }, [KeyBindingAction.Escape]: { default: { key: Key.ESCAPE, }, - displayName: _td("Close dialog or context menu"), + displayName: _td("keyboard|close_dialog_menu"), }, [KeyBindingAction.Enter]: { default: { key: Key.ENTER, }, - displayName: _td("Activate selected button"), + displayName: _td("keyboard|activate_button"), }, [KeyBindingAction.Space]: { default: { diff --git a/src/components/structures/HomePage.tsx b/src/components/structures/HomePage.tsx index f16f411336..a0bea341c1 100644 --- a/src/components/structures/HomePage.tsx +++ b/src/components/structures/HomePage.tsx @@ -74,8 +74,8 @@ const UserWelcomeTop: React.FC = () => {
cli.setAvatarUrl(url)} isUserAvatar onClick={(ev) => PosthogTrackers.trackInteraction("WebHomeMiniAvatarUploadButton", ev)} @@ -88,8 +88,8 @@ const UserWelcomeTop: React.FC = () => { /> -

{_tDom("Welcome %(name)s", { name: ownProfile.displayName })}

-

{_tDom("Now, let's help you get started")}

+

{_tDom("onboarding|welcome_user", { name: ownProfile.displayName })}

+

{_tDom("onboarding|welcome_detail")}

); }; @@ -113,8 +113,8 @@ const HomePage: React.FC = ({ justRegistered = false }) => { introSection = ( {config.brand} -

{_tDom("Welcome to %(appName)s", { appName: config.brand })}

-

{_tDom("Own your conversations.")}

+

{_tDom("onboarding|intro_welcome", { appName: config.brand })}

+

{_tDom("onboarding|intro_byline")}

); } @@ -125,13 +125,13 @@ const HomePage: React.FC = ({ justRegistered = false }) => { {introSection}
- {_tDom("Send a Direct Message")} + {_tDom("onboarding|send_dm")} - {_tDom("Explore Public Rooms")} + {_tDom("onboarding|explore_rooms")} - {_tDom("Create a Group Chat")} + {_tDom("onboarding|create_room")}
diff --git a/src/components/structures/auth/Registration.tsx b/src/components/structures/auth/Registration.tsx index 88725be266..0cfc191844 100644 --- a/src/components/structures/auth/Registration.tsx +++ b/src/components/structures/auth/Registration.tsx @@ -523,7 +523,7 @@ export default class Registration extends React.Component { // i18n: ssoButtons is a placeholder to help translators understand context continueWithSection = (

- {_t("Continue with %(ssoButtons)s", { ssoButtons: "" }).trim()} + {_t("auth|continue_with_sso", { ssoButtons: "" }).trim()}

); } @@ -540,7 +540,7 @@ export default class Registration extends React.Component { action={SSOAction.REGISTER} />

- {_t("%(ssoButtons)s Or %(usernamePassword)s", { + {_t("auth|sso_or_username_password", { ssoButtons: "", usernamePassword: "", }).trim()} @@ -591,7 +591,7 @@ export default class Registration extends React.Component { const signIn = ( {_t( - "Already have an account? Sign in here", + "auth|sign_in_instead", {}, { a: (sub) => ( @@ -621,13 +621,10 @@ export default class Registration extends React.Component { regDoneText = (

- {_t( - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).", - { - newAccountId: this.state.registeredUsername, - loggedInUserId: this.state.differentLoggedInUserId, - }, - )} + {_t("auth|account_clash", { + newAccountId: this.state.registeredUsername, + loggedInUserId: this.state.differentLoggedInUserId, + })}

{ } }} > - {_t("Continue with previous account")} + {_t("auth|account_clash_previous_account")}

@@ -650,7 +647,7 @@ export default class Registration extends React.Component { regDoneText = (

{_t( - "Log in to your new account.", + "auth|log_in_new_account", {}, { a: (sub) => ( @@ -673,7 +670,7 @@ export default class Registration extends React.Component { } body = (
-

{_t("Registration Successful")}

+

{_t("auth|registration_successful")}

{regDoneText}
); @@ -685,8 +682,8 @@ export default class Registration extends React.Component { title={_t("Create account")} serverPicker={ {

{_t("Sign in and regain access to your account.")}

{this.renderSsoForm(null)}

- {_t("%(ssoButtons)s Or %(usernamePassword)s", { + {_t("auth|sso_or_username_password", { ssoButtons: "", usernamePassword: "", }).trim()} diff --git a/src/components/views/dialogs/UserSettingsDialog.tsx b/src/components/views/dialogs/UserSettingsDialog.tsx index 5081fbeb6c..404b055910 100644 --- a/src/components/views/dialogs/UserSettingsDialog.tsx +++ b/src/components/views/dialogs/UserSettingsDialog.tsx @@ -189,7 +189,7 @@ export default class UserSettingsDialog extends React.Component tabs.push( new Tab( UserTab.Help, - _td("Help & About"), + _td("setting|help_about|title"), "mx_UserSettingsDialog_helpIcon", this.props.onFinished()} />, "UserSettingsHelpAbout", diff --git a/src/components/views/elements/ErrorBoundary.tsx b/src/components/views/elements/ErrorBoundary.tsx index 81584a5145..53bd3d8ee8 100644 --- a/src/components/views/elements/ErrorBoundary.tsx +++ b/src/components/views/elements/ErrorBoundary.tsx @@ -115,7 +115,7 @@ export default class ErrorBoundary extends React.PureComponent { if (MatrixClientPeg.get()) { clearCacheButton = ( - {_t("Clear cache and reload")} + {_t("setting|help_about|clear_cache_reload")} ); } diff --git a/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx b/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx index af7bf69e9d..52d3e2e6cd 100644 --- a/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx +++ b/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx @@ -78,8 +78,8 @@ export default class HelpUserSettingsTab extends React.Component : ""; return { - appVersion: `${_t("%(brand)s version:", { brand })} ${appVersion}`, - olmVersion: `${_t("Olm version:")} ${olmVersion}`, + appVersion: `${_t("setting|help_about|brand_version", { brand })} ${appVersion}`, + olmVersion: `${_t("setting|help_about|olm_version")} ${olmVersion}`, }; } @@ -228,7 +228,7 @@ export default class HelpUserSettingsTab extends React.Component const brand = SdkConfig.get().brand; let faqText = _t( - "For help with using %(brand)s, click here.", + "setting|help_about|help_link", { brand, }, @@ -240,7 +240,7 @@ export default class HelpUserSettingsTab extends React.Component faqText = (
{_t( - "For help with using %(brand)s, click here or start a chat with our bot using the button below.", + "setting|help_about|help_link_chat_bot", { brand, }, @@ -258,7 +258,7 @@ export default class HelpUserSettingsTab extends React.Component )}
- {_t("Chat with %(brand)s Bot", { brand })} + {_t("setting|help_about|chat_bot", { brand })}
@@ -306,10 +306,10 @@ export default class HelpUserSettingsTab extends React.Component return ( - + {bugReportingSection} - + {appVersion} @@ -325,7 +325,7 @@ export default class HelpUserSettingsTab extends React.Component {_t( - "Homeserver is %(homeserverUrl)s", + "setting|help_about|homeserver", { homeserverUrl: this.context.getHomeserverUrl(), }, @@ -337,7 +337,7 @@ export default class HelpUserSettingsTab extends React.Component {this.context.getIdentityServerUrl() && ( {_t( - "Identity server is %(identityServerUrl)s", + "setting|help_about|identity_server", { identityServerUrl: this.context.getIdentityServerUrl(), }, @@ -350,18 +350,14 @@ export default class HelpUserSettingsTab extends React.Component
{_t("common|access_token")} - - {_t( - "Your access token gives full access to your account. Do not share it with anyone.", - )} - + {_t("setting|help_about|access_token_detail")} this.context.getAccessToken()}> {this.context.getAccessToken()}
- {_t("Clear cache and reload")} + {_t("setting|help_about|clear_cache_reload")}
diff --git a/src/i18n/strings/ar.json b/src/i18n/strings/ar.json index 612bf5cebe..b003288bf2 100644 --- a/src/i18n/strings/ar.json +++ b/src/i18n/strings/ar.json @@ -106,18 +106,12 @@ "Define the power level of a user": "قم بتعريف مستوى الطاقة للمستخدم", "Could not find user in room": "لم يستطع ايجاد مستخدم في غرفة", "Deops user with given id": "يُلغي إدارية المستخدم حسب المعرّف المعطى", - "Please supply a widget URL or embed code": "رجاء قم بتحديد Widget URL او قم بتضمين كود", - "Please supply a https:// or http:// widget URL": "يرجى ادخال a https:// او http:// widget URL", - "You cannot modify widgets in this room.": "لا يمكنك تعديل الحاجيات في هذه الغرفة.", "Verifies a user, session, and pubkey tuple": "يتحقق من العناصر: المستخدم والجلسة والمفتاح العام", "Session already verified!": "تم التحقق من الجلسة بالفعل!", "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "تحذير: فشل التحقق من المفتاح! مفتاح التوقيع للمستخدم %(userId)s و الجلسة %(deviceId)s هو \"%(fprint)s\" والتي لا تتوافق مع المفتاح \"%(fingerprint)s\" المعطى. هذا يعني ان اتصالك اصبح مكشوف!", "Verified key": "مفتاح مؤكد", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "مفتاح التوقيع الذي اعطيته يتوافق مع مفتاح التوقيع الذي استلمته من جلسة المستخدم %(userId)s رقم %(deviceId)s. تم تحديد الجلسة على انها مؤكدة.", - "Forces the current outbound group session in an encrypted room to be discarded": "يفرض تجاهل جلسة المجموعة الصادرة الحالية في غرفة مشفرة", "Logs sent": "تم ارسال سجل الاحداث", - "Opens chat with the given user": "يفتح دردشة من المستخدم المعطى", - "Displays action": "يعرض إجراءً", "Reason": "السبب", "You cannot place a call with yourself.": "لا يمكنك الاتصال بنفسك.", "You signed in to a new session without verifying it:": "قمت بتسجيل الدخول لجلسة جديدة من غير التحقق منها:", @@ -359,14 +353,7 @@ "Something went wrong. Please try again or view your console for hints.": "هناك خطأ ما. يرجى المحاولة مرة أخرى أو عرض وحدة التحكم (console) للتلميحات.", "Error adding ignored user/server": "تعذر إضافة مستخدم/خادم مُتجاهَل", "Ignored/Blocked": "المُتجاهل/المحظور", - "Clear cache and reload": "محو مخزن الجيب وإعادة التحميل", - "%(brand)s version:": "إصدار %(brand)s:", - "Versions": "الإصدارات", - "Help & About": "المساعدة وعن البرنامج", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "للإبلاغ عن مشكلة أمنية متعلقة بMatrix ، يرجى قراءة سياسة الإفصاح الأمني في Matrix.org.", - "Chat with %(brand)s Bot": "تخاطب مع الروبوت الخاص ب%(brand)s", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "للمساعدة في استخدام %(brand)s ، انقر هنا أو ابدأ محادثة مع برنامج الروبوت الخاص بنا باستخدام الزر أدناه.", - "For help with using %(brand)s, click here.": "للمساعدة في استخدام %(brand)s انقر هنا.", "General": "عام", "Discovery": "الاكتشاف", "Deactivate account": "تعطيل الحساب", @@ -782,8 +769,6 @@ "Send stickers into this room": "أرسل ملصقات إلى هذه الغرفة", "Remain on your screen while running": "ابقَ على شاشتك أثناء إجراء", "Remain on your screen when viewing another room, when running": "ابقَ على شاشتك عند مشاهدة غرفة أخرى أثناء إجراء", - "Takes the call in the current room off hold": "يوقف المكالمة في الغرفة الحالية", - "Places the call in the current room on hold": "يضع المكالمة في الغرفة الحالية قيد الانتظار", "Cuba": "كوبا", "Croatia": "كرواتيا", "Costa Rica": "كوستا ريكا", @@ -853,13 +838,7 @@ "Identity server URL must be HTTPS": "يجب أن يستعمل رابط (URL) خادوم الهوية ميفاق HTTPS", "Paraguay": "باراغواي", "Netherlands": "هولندا", - "Dismiss read marker and jump to bottom": "تجاهل علامة القراءة وانتقل إلى الأسفل", - "Toggle microphone mute": "تبديل كتم صوت الميكروفون", - "Cancel replying to a message": "إلغاء الرد على رسالة", - "New line": "سطر جديد", "Greece": "اليونان", - "Converts the DM to a room": "تحويل المحادثة المباشرة إلى غرفة", - "Converts the room to a DM": "تحويل الغرفة إلى محادثة مباشرة", "Some invites couldn't be sent": "تعذر إرسال بعض الدعوات", "We sent the others, but the below people couldn't be invited to ": "أرسلنا الآخرين، ولكن لم تتم دعوة الأشخاص أدناه إلى ", "Zimbabwe": "زمبابوي", @@ -1080,7 +1059,11 @@ "group_encryption": "تشفير" }, "keyboard": { - "number": "[رقم]" + "number": "[رقم]", + "cancel_reply": "إلغاء الرد على رسالة", + "toggle_microphone_mute": "تبديل كتم صوت الميكروفون", + "dismiss_read_marker_and_jump_bottom": "تجاهل علامة القراءة وانتقل إلى الأسفل", + "composer_new_line": "سطر جديد" }, "composer": { "format_bold": "ثخين", @@ -1315,7 +1298,17 @@ "category_actions": "الإجراءات", "category_admin": "مدير", "category_advanced": "متقدم", - "category_other": "أخرى" + "category_other": "أخرى", + "addwidget_missing_url": "رجاء قم بتحديد Widget URL او قم بتضمين كود", + "addwidget_invalid_protocol": "يرجى ادخال a https:// او http:// widget URL", + "addwidget_no_permissions": "لا يمكنك تعديل الحاجيات في هذه الغرفة.", + "converttodm": "تحويل الغرفة إلى محادثة مباشرة", + "converttoroom": "تحويل المحادثة المباشرة إلى غرفة", + "discardsession": "يفرض تجاهل جلسة المجموعة الصادرة الحالية في غرفة مشفرة", + "query": "يفتح دردشة من المستخدم المعطى", + "holdcall": "يضع المكالمة في الغرفة الحالية قيد الانتظار", + "unholdcall": "يوقف المكالمة في الغرفة الحالية", + "me": "يعرض إجراءً" }, "presence": { "online_for": "متصل منذ %(duration)s", @@ -1441,5 +1434,16 @@ "other": "%(count)s من الرسائل غير مقروءة." }, "unread_messages": "رسائل غير المقروءة." + }, + "setting": { + "help_about": { + "brand_version": "إصدار %(brand)s:", + "help_link": "للمساعدة في استخدام %(brand)s انقر هنا.", + "help_link_chat_bot": "للمساعدة في استخدام %(brand)s ، انقر هنا أو ابدأ محادثة مع برنامج الروبوت الخاص بنا باستخدام الزر أدناه.", + "chat_bot": "تخاطب مع الروبوت الخاص ب%(brand)s", + "title": "المساعدة وعن البرنامج", + "versions": "الإصدارات", + "clear_cache_reload": "محو مخزن الجيب وإعادة التحميل" + } } } diff --git a/src/i18n/strings/az.json b/src/i18n/strings/az.json index a268059d21..0995176982 100644 --- a/src/i18n/strings/az.json +++ b/src/i18n/strings/az.json @@ -42,7 +42,6 @@ "Unignored user": "İstifadəçi blokun siyahısından götürülmüşdür", "You are no longer ignoring %(userId)s": "Siz %(userId)s blokdan çıxardınız", "Deops user with given id": "Verilmiş ID-lə istifadəçidən operatorun səlahiyyətlərini çıxardır", - "Displays action": "Hərəkətlərin nümayişi", "Reason": "Səbəb", "Incorrect verification code": "Təsdiq etmənin səhv kodu", "Phone": "Telefon", @@ -145,7 +144,6 @@ "You are not in this room.": "Sən bu otaqda deyilsən.", "You do not have permission to do that in this room.": "Bu otaqda bunu etməyə icazəniz yoxdur.", "Define the power level of a user": "Bir istifadəçinin güc səviyyəsini müəyyənləşdirin", - "You cannot modify widgets in this room.": "Bu otaqda vidjetləri dəyişdirə bilməzsiniz.", "Verified key": "Təsdiqlənmiş açar", "Add Email Address": "Emal ünvan əlavə etmək", "Add Phone Number": "Telefon nömrəsi əlavə etmək", @@ -163,8 +161,6 @@ "Use an identity server": "Şəxsiyyət serverindən istifadə edin", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "E-poçtla dəvət etmək üçün şəxsiyyət serverindən istifadə edin. Defolt şəxsiyyət serverini (%(defaultIdentityServerName)s) istifadə etməyə və ya Parametrlərdə idarə etməyə davam edin.", "Use an identity server to invite by email. Manage in Settings.": "E-poçtla dəvət etmək üçün şəxsiyyət serverindən istifadə edin. Parametrlərdə idarə edin.", - "Please supply a https:// or http:// widget URL": "Zəhmət olmasa https:// və ya http:// widget URL təmin edin", - "Forces the current outbound group session in an encrypted room to be discarded": "Şifrəli bir otaqda mövcud qrup sessiyasını ləğv etməyə məcbur edir", "powered by Matrix": "Matrix tərəfindən təchiz edilmişdir", "Create Account": "Hesab Aç", "Explore rooms": "Otaqları kəşf edin", @@ -279,7 +275,11 @@ "category_actions": "Tədbirlər", "category_admin": "Administrator", "category_advanced": "Təfərrüatlar", - "category_other": "Digər" + "category_other": "Digər", + "addwidget_invalid_protocol": "Zəhmət olmasa https:// və ya http:// widget URL təmin edin", + "addwidget_no_permissions": "Bu otaqda vidjetləri dəyişdirə bilməzsiniz.", + "discardsession": "Şifrəli bir otaqda mövcud qrup sessiyasını ləğv etməyə məcbur edir", + "me": "Hərəkətlərin nümayişi" }, "bug_reporting": { "collecting_information": "Proqramın versiyası haqqında məlumatın yığılması", diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json index 43219765f9..3ed5d7d6e5 100644 --- a/src/i18n/strings/bg.json +++ b/src/i18n/strings/bg.json @@ -236,7 +236,6 @@ "Email": "Имейл", "Profile": "Профил", "Account": "Акаунт", - "%(brand)s version:": "Версия на %(brand)s:", "The email address linked to your account must be entered.": "Имейл адресът, свързан с профила Ви, трябва да бъде въведен.", "A new password must be entered.": "Трябва да бъде въведена нова парола.", "New passwords must match each other.": "Новите пароли трябва да съвпадат една с друга.", @@ -245,7 +244,6 @@ "Please note you are logging into the %(hs)s server, not matrix.org.": "Моля, обърнете внимание, че влизате в %(hs)s сървър, а не в matrix.org.", "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Не е възможно свързване към Home сървъра чрез HTTP, когато има HTTPS адрес в лентата на браузъра Ви. Или използвайте HTTPS или включете функция небезопасни скриптове.", "This server does not support authentication with a phone number.": "Този сървър не поддържа автентикация с телефонен номер.", - "Displays action": "Показва действие", "Define the power level of a user": "Променя нивото на достъп на потребителя", "Deops user with given id": "Отнема правата на потребител с даден идентификатор", "Commands": "Команди", @@ -352,7 +350,6 @@ "Failed to upgrade room": "Неуспешно обновяване на стаята", "The room upgrade could not be completed": "Обновяването на тази стая не можа да бъде завършено", "Upgrade this room to version %(version)s": "Обновете тази стая до версия %(version)s", - "Forces the current outbound group session in an encrypted room to be discarded": "Принудително прекратява текущата изходяща групова сесия в шифрована стая", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Преди да изпратите логове, трябва да отворите доклад за проблем в Github.", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s вече използва 3-5 пъти по-малко памет, като зарежда информация за потребители само когато е нужна. Моля, изчакайте докато ресинхронизираме със сървъра!", "Updating %(brand)s": "Обновяване на %(brand)s", @@ -441,11 +438,6 @@ "Phone numbers": "Телефонни номера", "Language and region": "Език и регион", "Account management": "Управление на акаунта", - "For help with using %(brand)s, click here.": "За помощ при използването на %(brand)s, кликнете тук.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "За помощ при използването на %(brand)s, кликнете тук или започнете чат с бота ни използвайки бутона по-долу.", - "Chat with %(brand)s Bot": "Чати с %(brand)s Bot", - "Help & About": "Помощ и относно", - "Versions": "Версии", "Composer": "Въвеждане на съобщения", "Room list": "Списък със стаи", "Autocomplete delay (ms)": "Забавяне преди подсказки (милисекунди)", @@ -566,8 +558,6 @@ "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.": "Веднъж включено, шифроването за стаята не може да бъде изключено. Съобщенията изпратени в шифрована стая не могат да бъдат прочетени от сървърът, а само от участниците в стаята. Включването на шифроване може да попречи на много ботове или мостове към други мрежи да работят правилно. Научете повече за шифроването.", "Power level": "Ниво на достъп", "The file '%(fileName)s' failed to upload.": "Файлът '%(fileName)s' не можа да бъде качен.", - "Please supply a https:// or http:// widget URL": "Моля, укажете https:// или http:// адрес на приспособление", - "You cannot modify widgets in this room.": "Не можете да модифицирате приспособления в тази стая.", "Upgrade this room to the recommended room version": "Обнови тази стая до препоръчаната версия на стаята", "This room is running room version , which this homeserver has marked as unstable.": "Тази стая използва версия на стая , която сървърът счита за нестабилна.", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Обновяването на тази стая ще изключи текущата стая и ще създаде обновена стая със същото име.", @@ -656,11 +646,7 @@ "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Може да влезете в профила си, но някои функции няма да са достъпни докато сървъра за самоличност е офлайн. Ако продължавате да виждате това предупреждение, проверете конфигурацията или се свържете с администратора на сървъра.", "Unexpected error resolving identity server configuration": "Неочаквана грешка при откриване на конфигурацията на сървъра за самоличност", "Use lowercase letters, numbers, dashes and underscores only": "Използвайте само малки букви, цифри, тирета и подчерта", - "Log in to your new account.": "Влезте в новия си профил.", - "Registration Successful": "Успешна регистрация", "Upload all": "Качи всички", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Новият ви профил (%(newAccountId)s) е регистриран, но вече сте влезли с друг профил (%(loggedInUserId)s).", - "Continue with previous account": "Продължи с предишния профил", "Edited at %(date)s. Click to view edits.": "Редактирано на %(date)s. Кликнете за да видите редакциите.", "Message edits": "Редакции на съобщение", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Обновяването на тази стая изисква затварянето на текущата и създаване на нова на нейно място. За да е най-удобно за членовете на стаята, ще:", @@ -766,7 +752,6 @@ "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "проверите браузър добавките за всичко, което може да блокира връзката със сървъра за самоличност (например Privacy Badger)", "contact the administrators of identity server ": "се свържете с администратора на сървъра за самоличност ", "wait and try again later": "изчакате и опитате пак", - "Clear cache and reload": "Изчисти кеша и презареди", "Your email address hasn't been verified yet": "Имейл адресът ви все още не е потвърден", "Click the link in the email you received to verify and then click continue again.": "Кликнете на връзката получена по имейл за да потвърдите, а след това натиснете продължи отново.", "Room %(name)s": "Стая %(name)s", @@ -907,7 +892,6 @@ "New login. Was this you?": "Нов вход. Вие ли бяхте това?", "%(name)s is requesting verification": "%(name)s изпрати запитване за верификация", "Could not find user in room": "Неуспешно намиране на потребител в стаята", - "Please supply a widget URL or embed code": "Укажете URL адрес на приспособление или код за вграждане", "Waiting for %(displayName)s to verify…": "Изчакване на %(displayName)s да потвърди…", "Cancelling…": "Отказване…", "Lock": "Заключи", @@ -1030,7 +1014,6 @@ "Something went wrong trying to invite the users.": "Нещо се обърка при опита да бъдат поканени потребителите.", "We couldn't invite those users. Please check the users you want to invite and try again.": "Не можахме да поканим тези потребители. Проверете потребителите, които искате да поканите и опитайте пак.", "Recently Direct Messaged": "Скорошни директни чатове", - "Opens chat with the given user": "Отваря чат с дадения потребител", "IRC display name width": "Ширина на IRC името", "Size must be a number": "Размера трябва да е число", "Custom font size can only be between %(min)s pt and %(max)s pt": "Собствения размер на шрифта може да бъде единствено между %(min)s pt и %(max)s pt", @@ -1076,10 +1059,6 @@ "Successfully restored %(sessionCount)s keys": "Успешно бяха възстановени %(sessionCount)s ключа", "Confirm your identity by entering your account password below.": "Потвърдете самоличността си чрез въвеждане на паролата за профила по-долу.", "Sign in with SSO": "Влезте със SSO", - "Welcome to %(appName)s": "Добре дошли в %(appName)s", - "Send a Direct Message": "Изпрати директно съобщение", - "Explore Public Rooms": "Разгледай публичните стаи", - "Create a Group Chat": "Създай групов чат", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Администраторът на сървъра е изключил шифроване от край-до-край по подразбиране за лични стаи и за директни съобщения.", "Switch to light mode": "Смени на светъл режим", "Switch to dark mode": "Смени на тъмен режим", @@ -1108,28 +1087,6 @@ "Indexed rooms:": "Индексирани стаи:", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s от %(totalRooms)s", "Message downloading sleep time(ms)": "Период на пауза между свалянията на съобщения (ms)", - "Navigation": "Навигация", - "Calls": "Обаждания", - "Room List": "Списък със стаи", - "Autocomplete": "Подсказване", - "Toggle Bold": "Превключи удебеляването", - "Toggle Italics": "Превключи накланянето", - "Toggle Quote": "Превключи цитирането", - "New line": "Нов ред", - "Cancel replying to a message": "Отказване на отговарянето на съобщение", - "Toggle microphone mute": "Превключване на заглушаването на микрофона", - "Dismiss read marker and jump to bottom": "Игнориране на маркера за прочитане и отиване най-долу", - "Jump to oldest unread message": "Прескачане до най-старото непрочетено съобщение", - "Upload a file": "Качване на файл", - "Jump to room search": "Търсене на стаи", - "Select room from the room list": "Избор на стая от списъка", - "Collapse room list section": "Свиване на раздел със стаи", - "Expand room list section": "Разширение на раздел със стаи", - "Toggle the top left menu": "Превключва основното меню (горе в ляво)", - "Close dialog or context menu": "Затваряне на прозорец или контекстно меню", - "Activate selected button": "Активиране на избрания бутон", - "Toggle right panel": "Превключване на десния панел", - "Cancel autocomplete": "Отказване на подсказките", "No recently visited rooms": "Няма наскоро-посетени стаи", "Use custom size": "Използвай собствен размер", "Hey you. You're the best!": "Хей, ти. Върхът си!", @@ -1241,31 +1198,18 @@ "Enter a Security Phrase": "Въведете фраза за сигурност", "Generate a Security Key": "Генерирай ключ за сигурност", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Предпазете се от загуба на достъп до шифрованите съобщения и данни като направите резервно копие на ключовете за шифроване върху сървъра.", - "Now, let's help you get started": "Нека ви помогнем да започнете", - "Welcome %(name)s": "Добре дошли, %(name)s", - "Add a photo so people know it's you.": "Добавете снимка, за да може другите хора да знаят, че сте вие.", - "Great, that'll help people know it's you": "Чудесно, това ще позволи на хората да знаят, че сте вие", "Attach files from chat or just drag and drop them anywhere in a room.": "Прикачете файлове от чата или ги издърпайте и пуснете в стаята.", "No files visible in this room": "Няма видими файлове в тази стая", - "Search (must be enabled)": "Търсене (трябва да е включено)", - "Go to Home View": "Отиване на начален изглед", "%(creator)s created this DM.": "%(creator)s създаде този директен чат.", "You have no visible notifications.": "Нямате видими уведомления.", "Got an account? Sign in": "Имате профил? Влезте от тук", "New here? Create an account": "Вие сте нов тук? Създайте профил", "There was a problem communicating with the homeserver, please try again later.": "Възникна проблем при комуникацията със Home сървъра, моля опитайте отново по-късно.", "New? Create account": "Вие сте нов? Създайте профил", - "Continue with %(ssoButtons)s": "Продължаване с %(ssoButtons)s", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Или %(usernamePassword)s", - "Already have an account? Sign in here": "Вече имате профил? Влезте от тук", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Тази сесия откри, че вашата фраза за сигурност и ключ за защитени съобщения бяха премахнати.", "A new Security Phrase and key for Secure Messages have been detected.": "Новa фраза за сигурност и ключ за защитени съобщения бяха открити.", "Great! This Security Phrase looks strong enough.": "Чудесно! Тази фраза за сигурност изглежда достатъчно силна.", "Confirm your Security Phrase": "Потвърдете вашата фраза за сигурност", - "Converts the DM to a room": "Превръща директния чат в стая", - "Converts the room to a DM": "Превръща стаята в директен чат", - "Takes the call in the current room off hold": "Възстановява повикването в текущата стая", - "Places the call in the current room on hold": "Задържа повикването в текущата стая", "We couldn't log you in": "Не можахме да ви впишем", "You've reached the maximum number of simultaneous calls.": "Достигнахте максималният брой едновременни повиквания.", "Anguilla": "Ангила", @@ -1752,7 +1696,31 @@ "end": "End", "alt": "Alt", "control": "Ctrl", - "shift": "Shift" + "shift": "Shift", + "category_calls": "Обаждания", + "category_room_list": "Списък със стаи", + "category_navigation": "Навигация", + "category_autocomplete": "Подсказване", + "composer_toggle_bold": "Превключи удебеляването", + "composer_toggle_italics": "Превключи накланянето", + "composer_toggle_quote": "Превключи цитирането", + "cancel_reply": "Отказване на отговарянето на съобщение", + "toggle_microphone_mute": "Превключване на заглушаването на микрофона", + "dismiss_read_marker_and_jump_bottom": "Игнориране на маркера за прочитане и отиване най-долу", + "jump_to_read_marker": "Прескачане до най-старото непрочетено съобщение", + "upload_file": "Качване на файл", + "jump_room_search": "Търсене на стаи", + "room_list_select_room": "Избор на стая от списъка", + "room_list_collapse_section": "Свиване на раздел със стаи", + "room_list_expand_section": "Разширение на раздел със стаи", + "toggle_top_left_menu": "Превключва основното меню (горе в ляво)", + "toggle_right_panel": "Превключване на десния панел", + "go_home_view": "Отиване на начален изглед", + "autocomplete_cancel": "Отказване на подсказките", + "close_dialog_menu": "Затваряне на прозорец или контекстно меню", + "activate_button": "Активиране на избрания бутон", + "composer_new_line": "Нов ред", + "search": "Търсене (трябва да е включено)" }, "composer": { "format_bold": "Удебелено", @@ -2103,7 +2071,17 @@ "category_admin": "Администратор", "category_advanced": "Разширени", "category_effects": "Ефекти", - "category_other": "Други" + "category_other": "Други", + "addwidget_missing_url": "Укажете URL адрес на приспособление или код за вграждане", + "addwidget_invalid_protocol": "Моля, укажете https:// или http:// адрес на приспособление", + "addwidget_no_permissions": "Не можете да модифицирате приспособления в тази стая.", + "converttodm": "Превръща стаята в директен чат", + "converttoroom": "Превръща директния чат в стая", + "discardsession": "Принудително прекратява текущата изходяща групова сесия в шифрована стая", + "query": "Отваря чат с дадения потребител", + "holdcall": "Задържа повикването в текущата стая", + "unholdcall": "Възстановява повикването в текущата стая", + "me": "Показва действие" }, "presence": { "online_for": "Онлайн от %(duration)s", @@ -2213,7 +2191,14 @@ }, "auth": { "sign_in_with_sso": "Влезте посредством single-sign-on", - "sso": "Single Sign On" + "sso": "Single Sign On", + "continue_with_sso": "Продължаване с %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Или %(usernamePassword)s", + "sign_in_instead": "Вече имате профил? Влезте от тук", + "account_clash": "Новият ви профил (%(newAccountId)s) е регистриран, но вече сте влезли с друг профил (%(loggedInUserId)s).", + "account_clash_previous_account": "Продължи с предишния профил", + "log_in_new_account": "Влезте в новия си профил.", + "registration_successful": "Успешна регистрация" }, "export_chat": { "messages": "Съобщения" @@ -2236,5 +2221,26 @@ "missing_reason": "Въведете защо докладвате.", "report_content_to_homeserver": "Докладвай съдържание до администратора на сървъра", "description": "Докладването на съобщението ще изпрати уникалният номер на събитието (event ID) до администратора на сървъра. Ако съобщенията в стаята са шифровани, администратора няма да може да прочете текста им или да види снимките или файловете." + }, + "onboarding": { + "has_avatar_label": "Чудесно, това ще позволи на хората да знаят, че сте вие", + "no_avatar_label": "Добавете снимка, за да може другите хора да знаят, че сте вие.", + "welcome_user": "Добре дошли, %(name)s", + "welcome_detail": "Нека ви помогнем да започнете", + "intro_welcome": "Добре дошли в %(appName)s", + "send_dm": "Изпрати директно съобщение", + "explore_rooms": "Разгледай публичните стаи", + "create_room": "Създай групов чат" + }, + "setting": { + "help_about": { + "brand_version": "Версия на %(brand)s:", + "help_link": "За помощ при използването на %(brand)s, кликнете тук.", + "help_link_chat_bot": "За помощ при използването на %(brand)s, кликнете тук или започнете чат с бота ни използвайки бутона по-долу.", + "chat_bot": "Чати с %(brand)s Bot", + "title": "Помощ и относно", + "versions": "Версии", + "clear_cache_reload": "Изчисти кеша и презареди" + } } } diff --git a/src/i18n/strings/ca.json b/src/i18n/strings/ca.json index ac6f11a9f6..00501a9c7f 100644 --- a/src/i18n/strings/ca.json +++ b/src/i18n/strings/ca.json @@ -227,7 +227,6 @@ "Uploading %(filename)s": "Pujant %(filename)s", "Import E2E room keys": "Importar claus E2E de sala", "Cryptography": "Criptografia", - "%(brand)s version:": "Versió de %(brand)s:", "Incorrect username and/or password.": "Usuari i/o contrasenya incorrectes.", "Session ID": "ID de la sessió", "Export room keys": "Exporta les claus de la sala", @@ -275,7 +274,6 @@ "Missing roomId.": "Falta l'ID de sala.", "Define the power level of a user": "Defineix el nivell d'autoritat d'un usuari", "Deops user with given id": "Degrada l'usuari amb l'id donat", - "Displays action": "Mostra l'acció", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "El fitxer %(fileName)s supera la mida màxima permesa per a pujades d'aquest servidor", "You do not have permission to invite people to this room.": "No teniu permís per convidar gent a aquesta sala.", "Use a few words, avoid common phrases": "Feu servir unes quantes paraules, eviteu frases comunes", @@ -689,7 +687,8 @@ "category_actions": "Accions", "category_admin": "Administrador", "category_advanced": "Avançat", - "category_other": "Altres" + "category_other": "Altres", + "me": "Mostra l'acció" }, "presence": { "online_for": "En línia durant %(duration)s", @@ -727,5 +726,10 @@ }, "export_chat": { "messages": "Missatges" + }, + "setting": { + "help_about": { + "brand_version": "Versió de %(brand)s:" + } } } diff --git a/src/i18n/strings/cs.json b/src/i18n/strings/cs.json index 65824206c9..55a7291966 100644 --- a/src/i18n/strings/cs.json +++ b/src/i18n/strings/cs.json @@ -102,7 +102,6 @@ "Return to login screen": "Vrátit k přihlašovací obrazovce", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s není oprávněn posílat vám oznámení – zkontrolujte prosím nastavení svého prohlížeče", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s nebyl oprávněn k posílání oznámení – zkuste to prosím znovu", - "%(brand)s version:": "Verze %(brand)s:", "Room %(roomId)s not visible": "Místnost %(roomId)s není viditelná", "%(roomName)s does not exist.": "%(roomName)s neexistuje.", "%(roomName)s is not accessible at this time.": "Místnost %(roomName)s není v tuto chvíli dostupná.", @@ -124,7 +123,6 @@ "You do not have permission to post to this room": "Nemáte oprávnění zveřejňovat příspěvky v této místnosti", "Check for update": "Zkontrolovat aktualizace", "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Nelze se připojit k domovskému serveru přes HTTP, pokud je v adresním řádku HTTPS. Buď použijte HTTPS, nebo povolte nezabezpečené skripty.", - "Displays action": "Zobrazí akci", "This doesn't appear to be a valid email address": "Tato e-mailová adresa se zdá být neplatná", "This phone number is already in use": "Toto telefonní číslo je již používáno", "This room is not accessible by remote Matrix servers": "Tato místnost není přístupná vzdáleným Matrix serverům", @@ -364,8 +362,6 @@ "Room information": "Informace o místnosti", "Room version": "Verze místnosti", "Room version:": "Verze místnosti:", - "Help & About": "O aplikaci a pomoc", - "Versions": "Verze", "Voice & Video": "Zvuk a video", "Missing media permissions, click the button below to request.": "Pro práci se zvukem a videem je potřeba oprávnění. Klepněte na tlačítko a my o ně požádáme.", "Request media permissions": "Požádat o oprávnění k mikrofonu a kameře", @@ -382,9 +378,6 @@ "Profile picture": "Profilový obrázek", "Display Name": "Zobrazované jméno", "Room Addresses": "Adresy místnosti", - "For help with using %(brand)s, click here.": "Pro pomoc s používáním %(brand)su klepněte sem.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Pro pomoc s používáním %(brand)su klepněte sem nebo následujícím tlačítkem zahajte konverzaci s robotem.", - "Chat with %(brand)s Bot": "Konverzovat s %(brand)s Botem", "Ignored users": "Ignorovaní uživatelé", "Bulk options": "Hromadná možnost", "This room has been replaced and is no longer active.": "Tato místnost byla nahrazena a už není používaná.", @@ -533,7 +526,6 @@ "Set up": "Nastavit", "New Recovery Method": "Nový způsob obnovy", "If you didn't set the new recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Pokud jste nenastavili nový způsob obnovy vy, mohou se pokoušet k vašemu účtu dostat útočníci. Změňte si raději ihned heslo a nastavte nový způsob obnovy v Nastavení.", - "Forces the current outbound group session in an encrypted room to be discarded": "Vynutí zahození aktuálně používané relace skupiny v zašifrované místnosti", "You've previously used %(brand)s on %(host)s with lazy loading of members enabled. In this version lazy loading is disabled. As the local cache is not compatible between these two settings, %(brand)s needs to resync your account.": "Na adrese %(host)s už jste použili %(brand)s se zapnutou volbou načítání členů místností až při prvním zobrazení. V této verzi je načítání členů až při prvním zobrazení vypnuté. Protože je s tímto nastavením lokální vyrovnávací paměť nekompatibilní, %(brand)s potřebuje znovu synchronizovat údaje z vašeho účtu.", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s teď používá 3-5× méně paměti, protože si informace o ostatních uživatelích načítá až když je potřebuje. Prosím počkejte na dokončení synchronizace se serverem!", "This homeserver would like to make sure you are not a robot.": "Domovský server se potřebuje přesvědčit, že nejste robot.", @@ -563,8 +555,6 @@ "Could not load user profile": "Nepovedlo se načíst profil uživatele", "The file '%(fileName)s' failed to upload.": "Soubor '%(fileName)s' se nepodařilo nahrát.", "The server does not support the room version specified.": "Server nepodporuje určenou verzi místnosti.", - "Please supply a https:// or http:// widget URL": "Zadejte webovou adresu widgetu (začínající na https:// nebo http://)", - "You cannot modify widgets in this room.": "V této místnosti nemůžete manipulovat s widgety.", "No homeserver URL provided": "Nebyla zadána URL adresa domovského server", "Unexpected error resolving homeserver configuration": "Chyba při zjišťování konfigurace domovského serveru", "The user's homeserver does not support the version of the room.": "Uživatelův domovský server nepodporuje verzi této místnosti.", @@ -708,7 +698,6 @@ "contact the administrators of identity server ": "kontaktujte správce serveru identit ", "wait and try again later": "počkejte a zkuste to znovu později", "Discovery": "Objevování", - "Clear cache and reload": "Smazat mezipaměť a načíst znovu", "Read Marker lifetime (ms)": "Platnost značky přečteno (ms)", "Read Marker off-screen lifetime (ms)": "Platnost značky přečteno mimo obrazovku (ms)", "Error changing power level requirement": "Chyba změny požadavku na úroveň oprávnění", @@ -778,10 +767,6 @@ "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.", "This account has been deactivated.": "Tento účet byl deaktivován.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "nový účet (%(newAccountId)s) je registrován, ale už jste přihlášeni pod jiným účtem (%(loggedInUserId)s).", - "Continue with previous account": "Pokračovat s předchozím účtem", - "Log in to your new account.": "Přihlaste se svým novým účtem.", - "Registration Successful": "Úspěšná registrace", "Failed to re-authenticate due to a homeserver problem": "Kvůli problémům s domovským server se nepovedlo autentifikovat znovu", "Failed to re-authenticate": "Nepovedlo se autentifikovat", "Enter your password to sign in and regain access to your account.": "Zadejte heslo pro přihlášení a obnovte si přístup k účtu.", @@ -1015,7 +1000,6 @@ "New login. Was this you?": "Nové přihlášní. Jste to vy?", "%(name)s is requesting verification": "%(name)s žádá o ověření", "Could not find user in room": "Nepovedlo se najít uživatele v místnosti", - "Please supply a widget URL or embed code": "Zadejte prosím URL widgetu nebo jeho kód", "You signed in to a new session without verifying it:": "Přihlásili jste se do nové relace, aniž byste ji ověřili:", "Verify your other session using one of the options below.": "Ověřte další relaci jedním z následujících způsobů.", "You've successfully verified your device!": "Úspěšně jste ověřili vaše zařízení!", @@ -1040,7 +1024,6 @@ "Are you sure you want to deactivate your account? This is irreversible.": "Opravdu chcete deaktivovat účet? Je to nevratné.", "Confirm account deactivation": "Potvrďte deaktivaci účtu", "There was a problem communicating with the server. Please try again.": "Došlo k potížím při komunikaci se serverem. Zkuste to prosím znovu.", - "Opens chat with the given user": "Otevře konverzaci s tímto uživatelem", "Joins room with given address": "Vstoupit do místnosti s danou adresou", "IRC display name width": "šířka zobrazovného IRC jména", "unexpected type": "neočekávaný typ", @@ -1098,22 +1081,6 @@ "Cancelled signature upload": "Nahrávání podpisu zrušeno", "Unable to upload": "Nelze nahrát", "Server isn't responding": "Server neodpovídá", - "Cancel autocomplete": "Zrušit automatické doplňování", - "Activate selected button": "Aktivovat označené tlačítko", - "Close dialog or context menu": "Zavřít dialog nebo kontextové menu", - "Toggle the top left menu": "Zobrazit/skrýt menu vlevo nahoře", - "Expand room list section": "Rozbalit seznam místností", - "Collapse room list section": "Sbalit seznam místností", - "Select room from the room list": "Vybrat místnost v seznamu", - "Jump to room search": "Přejít na vyhledávání místností", - "Toggle microphone mute": "Ztlumit nebo zapnout mikrofon", - "New line": "Nový řádek", - "Toggle Quote": "Citace", - "Toggle Italics": "Kurzíva", - "Toggle Bold": "Tučné písmo", - "Autocomplete": "Automatické doplňování", - "Room List": "Seznam místností", - "Calls": "Hovory", "Send feedback": "Odeslat zpětnou vazbu", "Feedback": "Zpětná vazba", "Feedback sent": "Zpětná vazba byla odeslána", @@ -1150,30 +1117,15 @@ "Block anyone not part of %(serverName)s from ever joining this room.": "Blokovat komukoli, kdo není součástí serveru %(serverName)s, aby vstoupil do této místnosti.", "Cross-signing is not set up.": "Křížové podepisování není nastaveno.", "Cross-signing is ready for use.": "Křížové podepisování je připraveno k použití.", - "Create a Group Chat": "Vytvořit skupinový chat", - "Send a Direct Message": "Poslat přímou zprávu", - "Welcome to %(appName)s": "Vítá vás %(appName)s", - "Navigation": "Navigace", - "Jump to oldest unread message": "Přejít na nejstarší nepřečtenou zprávu", - "Upload a file": "Nahrát soubor", "You've reached the maximum number of simultaneous calls.": "Dosáhli jste maximálního počtu souběžných hovorů.", "Too Many Calls": "Přiliš mnoho hovorů", "Switch theme": "Přepnout téma", "Switch to dark mode": "Přepnout do tmavého režimu", "Switch to light mode": "Přepnout do světlého režimu", "Use a different passphrase?": "Použít jinou přístupovou frázi?", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s nebo %(usernamePassword)s", "If you've joined lots of rooms, this might take a while": "Pokud jste se připojili k mnoha místnostem, může to chvíli trvat", "There was a problem communicating with the homeserver, please try again later.": "Při komunikaci s domovským serverem došlo k potížím, zkuste to prosím později.", - "Continue with %(ssoButtons)s": "Pokračovat s %(ssoButtons)s", - "Already have an account? Sign in here": "Máte již účet? Přihlašte se zde", - "Host account on": "Hostovat účet na", "%(creator)s created this DM.": "%(creator)s vytvořil(a) tuto přímou zprávu.", - "Great, that'll help people know it's you": "Skvělé, to pomůže lidem zjistit, že jste to vy", - "Add a photo so people know it's you.": "Přidejte fotku, aby lidé věděli, že jste to vy.", - "Explore Public Rooms": "Prozkoumat veřejné místnosti", - "Welcome %(name)s": "Vítejte %(name)s", - "Now, let's help you get started": "Nyní vám pomůžeme začít", "Looks good!": "To vypadá dobře!", "Wrong file type": "Špatný typ souboru", "The server has denied your request.": "Server odmítl váš požadavek.", @@ -1182,7 +1134,6 @@ "Decline All": "Odmítnout vše", "Use the Desktop app to search encrypted messages": "K prohledávání šifrovaných zpráv použijte aplikaci pro stolní počítače", "Invite someone using their name, email address, username (like ) or share this room.": "Pozvěte někoho pomocí jeho jména, e-mailové adresy, uživatelského jména (například ) nebo sdílejte tuto místnost.", - "Toggle right panel": "Zobrazit/skrýt pravý panel", "Add a photo, so people can easily spot your room.": "Přidejte fotografii, aby lidé mohli snadno najít váši místnost.", "%(displayName)s created this room.": "%(displayName)s vytvořil tuto místnost.", "This is the start of .": "Toto je začátek místnosti .", @@ -1388,20 +1339,15 @@ "Invalid URL": "Neplatné URL", "Unable to validate homeserver": "Nelze ověřit domovský server", "New? Create account": "Poprvé? Vytvořte si účet", - "Cancel replying to a message": "Zrušení odpovědi na zprávu", "Don't miss a reply": "Nezmeškejte odpovědět", "Unknown App": "Neznámá aplikace", "Move right": "Posunout doprava", "Move left": "Posunout doleva", - "Go to Home View": "Přejít na domovské zobrazení", - "Dismiss read marker and jump to bottom": "Zavřít značku přečtených zpráv a přejít dolů", "Not encrypted": "Není šifrováno", "New here? Create an account": "Jste zde poprvé? Vytvořte si účet", "Got an account? Sign in": "Máte již účet? Přihlásit se", "Approve widget permissions": "Schválit oprávnění widgetu", "Ignored attempt to disable encryption": "Ignorovaný pokus o deaktivaci šifrování", - "Takes the call in the current room off hold": "Zruší podržení hovoru v aktuální místnosti", - "Places the call in the current room on hold": "Podrží hovor v aktuální místnosti", "Zimbabwe": "Zimbabwe", "Zambia": "Zambie", "Yemen": "Jemen", @@ -1498,7 +1444,6 @@ "Nauru": "Nauru", "Namibia": "Namibie", "Security Phrase": "Bezpečnostní fráze", - "Decide where your account is hosted": "Rozhodněte, kde je váš účet hostován", "Unable to query secret storage status": "Nelze zjistit stav úložiště klíčů", "Update %(brand)s": "Aktualizovat %(brand)s", "You can also set up Secure Backup & manage your keys in Settings.": "Zabezpečené zálohování a správu klíčů můžete také nastavit v Nastavení.", @@ -1633,12 +1578,9 @@ "Security Key mismatch": "Neshoda bezpečnostního klíče", "Wrong Security Key": "Špatný bezpečnostní klíč", "Set my room layout for everyone": "Nastavit všem rozložení mé místnosti", - "Search (must be enabled)": "Hledat (musí být povoleno)", "Remember this": "Zapamatujte si toto", "The widget will verify your user ID, but won't be able to perform actions for you:": "Widget ověří vaše uživatelské ID, ale nebude za vás moci provádět akce:", "Allow this widget to verify your identity": "Povolte tomuto widgetu ověřit vaši identitu", - "Converts the DM to a room": "Převede přímou zprávu na místnost", - "Converts the room to a DM": "Převede místnost na přímou zprávu", "Use app for a better experience": "Pro lepší zážitek použijte aplikaci", "Use app": "Použijte aplikaci", "Something went wrong in confirming your identity. Cancel and try again.": "Při ověřování vaší identity se něco pokazilo. Zrušte to a zkuste to znovu.", @@ -1779,7 +1721,6 @@ "No microphone found": "Nebyl nalezen žádný mikrofon", "We were unable to access your microphone. Please check your browser settings and try again.": "Nepodařilo se získat přístup k vašemu mikrofonu . Zkontrolujte prosím nastavení prohlížeče a zkuste to znovu.", "Unable to access your microphone": "Nelze získat přístup k mikrofonu", - "Your access token gives full access to your account. Do not share it with anyone.": "Přístupový token vám umožní plný přístup k účtu. Nikomu ho nesdělujte.", "Please enter a name for the space": "Zadejte prosím název prostoru", "Connecting": "Spojování", "Message search initialisation failed": "Inicializace vyhledávání zpráv se nezdařila", @@ -1945,7 +1886,6 @@ "More": "Více", "Show sidebar": "Zobrazit postranní panel", "Hide sidebar": "Skrýt postranní panel", - "Olm version:": "Verze Olm:", "Delete avatar": "Smazat avatar", "Unknown failure: %(reason)s": "Neznámá chyba: %(reason)s", "Rooms and spaces": "Místnosti a prostory", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "Výše uvedené, ale také v jakékoli místnosti, ke které jste připojeni nebo do které jste pozváni", "Some encryption parameters have been changed.": "Byly změněny některé parametry šifrování.", "Role in ": "Role v ", - "Send a sticker": "Odeslat nálepku", "Unknown failure": "Neznámá chyba", "Failed to update the join rules": "Nepodařilo se aktualizovat pravidla pro připojení", "Select the roles required to change various parts of the space": "Výbrat role potřebné ke změně různých částí prostoru", @@ -2069,7 +2008,6 @@ "Thread options": "Možnosti vláken", "Someone already has that username, please try another.": "Toto uživatelské jméno už někdo má, zkuste prosím jiné.", "Someone already has that username. Try another or if it is you, sign in below.": "Tohle uživatelské jméno už někdo má. Zkuste jiné, nebo pokud jste to vy, přihlaste se níže.", - "Own your conversations.": "Vlastněte svoje konverzace.", "Show tray icon and minimise window to it on close": "Zobrazit ikonu v oznamovací oblasti a minimalizivat při zavření okna", "Reply in thread": "Odpovědět ve vlákně", "Home is useful for getting an overview of everything.": "Domov je užitečný pro získání přehledu o všem.", @@ -2135,7 +2073,6 @@ "You cannot place calls without a connection to the server.": "Bez připojení k serveru nelze uskutečňovat hovory.", "Connectivity to the server has been lost": "Došlo ke ztrátě připojení k serveru", "Share location": "Sdílet polohu", - "Toggle space panel": "Zobrazit/skrýt panel prostoru", "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.": "Chcete ukončit toto hlasování? Zobrazí se konečné výsledky hlasování a lidé nebudou moci dále hlasovat.", "End Poll": "Ukončit hlasování", "Sorry, the poll did not end. Please try again.": "Omlouváme se, ale hlasování neskončilo. Zkuste to prosím znovu.", @@ -2182,8 +2119,6 @@ "Verify this device by confirming the following number appears on its screen.": "Ověřte toto zařízení tak, že potvrdíte, že se na jeho obrazovce zobrazí následující číslo.", "Confirm the emoji below are displayed on both devices, in the same order:": "Potvrďte, že se následující emotikony zobrazují na obou zařízeních ve stejném pořadí:", "Expand map": "Rozbalit mapu", - "No active call in this room": "V této místnosti není žádný aktivní hovor", - "Unable to find Matrix ID for phone number": "Nelze najít Matrix ID pro telefonní číslo", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Neznámý pár (uživatel, relace): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Příkaz se nezdařil: Nelze najít místnost (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Nerozpoznaná adresa místnosti: %(roomAlias)s", @@ -2203,7 +2138,6 @@ "You were removed from %(roomName)s by %(memberName)s": "Byl(a) jsi odebrán(a) z %(roomName)s uživatelem %(memberName)s", "Remove, ban, or invite people to this room, and make you leave": "Odebrat, vykázat nebo pozvat lidi do této místnosti a donutit vás ji opustit", "Remove, ban, or invite people to your active room, and make you leave": "Odebrat, vykázat nebo pozvat lidi do vaší aktivní místnosti a donutit vás ji opustit", - "Open this settings tab": "Otevřít tuto kartu nastavení", "Keyboard": "Klávesnice", "Message pending moderation": "Zpráva čeká na moderaci", "Message pending moderation: %(reason)s": "Zpráva čeká na moderaci: %(reason)s", @@ -2212,35 +2146,12 @@ "Encrypted messages before this point are unavailable.": "Šifrované zprávy před tímto bodem nejsou k dispozici.", "You don't have permission to view messages from before you joined.": "Nemáte oprávnění zobrazovat zprávy z doby, než jste se připojili.", "You don't have permission to view messages from before you were invited.": "Nemáte oprávnění zobrazovat zprávy z doby před pozváním.", - "Previous autocomplete suggestion": "Předchozí návrh automatického dokončování", - "Next autocomplete suggestion": "Následující návrh automatického dokončování", - "Previous room or DM": "Předchozí místnost nebo přímá zpráva", - "Next room or DM": "Následující místnost nebo přímá zpráva", - "Previous unread room or DM": "Předchozí nepřečtená místnost nebo přímá zpráva", - "Next unread room or DM": "Následující nepřečtená místnost nebo přímá zpráva", - "Navigate down in the room list": "Přejít dolů v seznamu místností", - "Navigate up in the room list": "Přejít nahoru v seznamu místností", - "Scroll up in the timeline": "Posunout se na časové ose nahoru", - "Scroll down in the timeline": "Posunout se na časové ose dolů", - "Toggle webcam on/off": "Zapnout/vypnout webovou kameru", - "Navigate to next message in composer history": "Přejít na následující zprávu v historii editoru", - "Navigate to next message to edit": "Přejít na následující zprávu, kterou chcete upravit", - "Navigate to previous message in composer history": "Přejít na předchozí zprávu v historii editoru", - "Jump to end of the composer": "Přejít na konec editoru", - "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", "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ě.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Prostory jsou způsob seskupování místností a osob. Vedle prostorů, ve kterých se nacházíte, můžete použít i některé předpřipravené.", "Unable to check if username has been taken. Try again later.": "Nelze zkontrolovat, zda je uživatelské jméno obsazeno. Zkuste to později.", - "Toggle hidden event visibility": "Přepnout viditelnost skryté události", - "Undo edit": "Zrušit úpravy", - "Jump to last message": "Přejít na poslední zprávu", - "Jump to first message": "Přejít na první zprávu", - "Redo edit": "Obnovit úpravy", - "Force complete": "Vynucené dokončování", "Pick a date to jump to": "Vyberte datum, na které chcete přejít", "Jump to date": "Přejít na datum", "The beginning of the room": "Začátek místnosti", @@ -2267,10 +2178,6 @@ "Poll type": "Typ hlasování", "Results will be visible when the poll is ended": "Výsledky se zobrazí po ukončení hlasování", "Search Dialog": "Dialogové okno hledání", - "No virtual room for this room": "Žádná virtuální místnost pro tuto místnost", - "Switches to this room's virtual room, if it has one": "Přepne do virtuální místnosti této místnosti, pokud ji má", - "Open user settings": "Otevřít nastavení uživatele", - "Switch to space by number": "Přepnout do prostoru podle čísla", "Pinned": "Připnuto", "Open thread": "Otevřít vlákno", "What location type do you want to share?": "Jaký typ polohy chcete sdílet?", @@ -2295,8 +2202,6 @@ "Shared their location: ": "Sdíleli svou polohu: ", "Unable to load map": "Nelze načíst mapu", "Can't create a thread from an event with an existing relation": "Nelze založit vlákno ve vlákně", - "Toggle Link": "Odkaz", - "Toggle Code Block": "Blok kódu", "You are sharing your live location": "Sdílíte svoji polohu živě", "%(displayName)s's live location": "Poloha %(displayName)s živě", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Zrušte zaškrtnutí, pokud chcete odstranit i systémové zprávy tohoto uživatele (např. změna členství, změna profilu...)", @@ -2310,8 +2215,6 @@ "other": "Momentálně se odstraňují zprávy v %(count)s místnostech" }, "Share for %(duration)s": "Sdílet na %(duration)s", - "Next recently visited room or space": "Další nedávno navštívená místnost nebo prostor", - "Previous recently visited room or space": "Předchozí nedávno navštívená místnost nebo prostor", "Unsent": "Neodeslané", "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.": "Můžete použít vlastní volbu serveru a přihlásit se k jiným Matrix serverům zadáním adresy URL domovského serveru. To vám umožní používat %(brand)s s existujícím Matrix účtem na jiném domovském serveru.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "Aplikaci %(brand)s bylo odepřeno oprávnění ke zjištění vaší polohy. Povolte prosím přístup k poloze v nastavení prohlížeče.", @@ -2474,7 +2377,6 @@ }, "In %(spaceName)s.": "V prostoru %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "V prostorech %(space1Name)s a %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Příkaz pro vývojáře: Zruší aktuální odchozí relaci skupiny a nastaví nové relace Olm", "Stop and close": "Zastavit a zavřít", "You need to have the right permissions in order to share locations in this room.": "Ke sdílení polohy v této místnosti musíte mít správná oprávnění.", "You don't have permission to share locations": "Nemáte oprávnění ke sdílení polohy", @@ -2779,8 +2681,6 @@ "The sender has blocked you from receiving this message": "Odesílatel vám zablokoval přijetí této zprávy", "Room directory": "Adresář místností", "Due to decryption errors, some votes may not be counted": "Kvůli chybám v dešifrování nemusí být některé hlasy započítány", - "Identity server is %(identityServerUrl)s": "Server identit je %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Domovský server je %(homeserverUrl)s", "Ended a poll": "Ukončil hlasování", "Yes, it was me": "Ano, to jsem byl já", "Answered elsewhere": "Hovor přijat jinde", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Ignorovat (%(counter)s)", "Invites by email can only be sent one at a time": "Pozvánky e-mailem lze zasílat pouze po jedné", "Once everyone has joined, you’ll be able to chat": "Jakmile se všichni připojí, budete moci konverzovat", - "Could not find room": "Nepodařilo se najít místnost", - "iframe has no src attribute": "iframe nemá atribut src", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Při aktualizaci předvoleb oznámení došlo k chybě. Zkuste prosím přepnout volbu znovu.", "Desktop app logo": "Logo desktopové aplikace", "Log out and back in to disable": "Pro vypnutí se odhlaste a znovu přihlaste", @@ -3200,7 +3098,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[číslo]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Hovory", + "category_room_list": "Seznam místností", + "category_navigation": "Navigace", + "category_autocomplete": "Automatické doplňování", + "composer_toggle_bold": "Tučné písmo", + "composer_toggle_italics": "Kurzíva", + "composer_toggle_quote": "Citace", + "composer_toggle_code_block": "Blok kódu", + "composer_toggle_link": "Odkaz", + "cancel_reply": "Zrušení odpovědi na zprávu", + "navigate_next_message_edit": "Přejít na následující zprávu, kterou chcete upravit", + "navigate_prev_message_edit": "Přejít na předchozí zprávu, kterou chcete upravit", + "composer_jump_start": "Přejít na začátek editoru", + "composer_jump_end": "Přejít na konec editoru", + "composer_navigate_next_history": "Přejít na následující zprávu v historii editoru", + "composer_navigate_prev_history": "Přejít na předchozí zprávu v historii editoru", + "send_sticker": "Odeslat nálepku", + "toggle_microphone_mute": "Ztlumit nebo zapnout mikrofon", + "toggle_webcam_mute": "Zapnout/vypnout webovou kameru", + "dismiss_read_marker_and_jump_bottom": "Zavřít značku přečtených zpráv a přejít dolů", + "jump_to_read_marker": "Přejít na nejstarší nepřečtenou zprávu", + "upload_file": "Nahrát soubor", + "scroll_up_timeline": "Posunout se na časové ose nahoru", + "scroll_down_timeline": "Posunout se na časové ose dolů", + "jump_room_search": "Přejít na vyhledávání místností", + "room_list_select_room": "Vybrat místnost v seznamu", + "room_list_collapse_section": "Sbalit seznam místností", + "room_list_expand_section": "Rozbalit seznam místností", + "room_list_navigate_down": "Přejít dolů v seznamu místností", + "room_list_navigate_up": "Přejít nahoru v seznamu místností", + "toggle_top_left_menu": "Zobrazit/skrýt menu vlevo nahoře", + "toggle_right_panel": "Zobrazit/skrýt pravý panel", + "keyboard_shortcuts_tab": "Otevřít tuto kartu nastavení", + "go_home_view": "Přejít na domovské zobrazení", + "next_unread_room": "Následující nepřečtená místnost nebo přímá zpráva", + "prev_unread_room": "Předchozí nepřečtená místnost nebo přímá zpráva", + "next_room": "Následující místnost nebo přímá zpráva", + "prev_room": "Předchozí místnost nebo přímá zpráva", + "autocomplete_cancel": "Zrušit automatické doplňování", + "autocomplete_navigate_next": "Následující návrh automatického dokončování", + "autocomplete_navigate_prev": "Předchozí návrh automatického dokončování", + "toggle_space_panel": "Zobrazit/skrýt panel prostoru", + "toggle_hidden_events": "Přepnout viditelnost skryté události", + "jump_first_message": "Přejít na první zprávu", + "jump_last_message": "Přejít na poslední zprávu", + "composer_undo": "Zrušit úpravy", + "composer_redo": "Obnovit úpravy", + "navigate_prev_history": "Předchozí nedávno navštívená místnost nebo prostor", + "navigate_next_history": "Další nedávno navštívená místnost nebo prostor", + "switch_to_space": "Přepnout do prostoru podle čísla", + "open_user_settings": "Otevřít nastavení uživatele", + "close_dialog_menu": "Zavřít dialog nebo kontextové menu", + "activate_button": "Aktivovat označené tlačítko", + "composer_new_line": "Nový řádek", + "autocomplete_force": "Vynucené dokončování", + "search": "Hledat (musí být povoleno)" }, "credits": { "default_cover_photo": "Výchozí titulní fotografie je © Jesús Roncero používaná za podmínek CC-BY-SA 4.0.", @@ -3325,7 +3279,16 @@ "download_google_play": "Získat na Google Play", "download_f_droid": "Získat na F-Droid", "apple_trademarks": "App Store® a logo Apple® jsou ochranné známky společnosti Apple Inc.", - "google_trademarks": "Google Play a logo Google Play jsou ochranné známky společnosti Google LLC." + "google_trademarks": "Google Play a logo Google Play jsou ochranné známky společnosti Google LLC.", + "has_avatar_label": "Skvělé, to pomůže lidem zjistit, že jste to vy", + "no_avatar_label": "Přidejte fotku, aby lidé věděli, že jste to vy.", + "welcome_user": "Vítejte %(name)s", + "welcome_detail": "Nyní vám pomůžeme začít", + "intro_welcome": "Vítá vás %(appName)s", + "intro_byline": "Vlastněte svoje konverzace.", + "send_dm": "Poslat přímou zprávu", + "explore_rooms": "Prozkoumat veřejné místnosti", + "create_room": "Vytvořit skupinový chat" }, "settings": { "show_breadcrumbs": "Zobrazovat zkratky do nedávno zobrazených místností navrchu", @@ -3893,7 +3856,24 @@ "category_admin": "Správce", "category_advanced": "Rozšířené", "category_effects": "Efekty", - "category_other": "Další možnosti" + "category_other": "Další možnosti", + "addwidget_missing_url": "Zadejte prosím URL widgetu nebo jeho kód", + "addwidget_iframe_missing_src": "iframe nemá atribut src", + "addwidget_invalid_protocol": "Zadejte webovou adresu widgetu (začínající na https:// nebo http://)", + "addwidget_no_permissions": "V této místnosti nemůžete manipulovat s widgety.", + "converttodm": "Převede místnost na přímou zprávu", + "could_not_find_room": "Nepodařilo se najít místnost", + "converttoroom": "Převede přímou zprávu na místnost", + "discardsession": "Vynutí zahození aktuálně používané relace skupiny v zašifrované místnosti", + "remakeolm": "Příkaz pro vývojáře: Zruší aktuální odchozí relaci skupiny a nastaví nové relace Olm", + "tovirtual": "Přepne do virtuální místnosti této místnosti, pokud ji má", + "tovirtual_not_found": "Žádná virtuální místnost pro tuto místnost", + "query": "Otevře konverzaci s tímto uživatelem", + "query_not_found_phone_number": "Nelze najít Matrix ID pro telefonní číslo", + "holdcall": "Podrží hovor v aktuální místnosti", + "no_active_call": "V této místnosti není žádný aktivní hovor", + "unholdcall": "Zruší podržení hovoru v aktuální místnosti", + "me": "Zobrazí akci" }, "presence": { "busy": "Zaneprázdněný", @@ -4074,7 +4054,16 @@ "sign_in_with_sso": "Přihlásit se přes jednotné přihlašování", "sso": "Jednotné přihlášení", "reset_password_action": "Obnovit heslo", - "reset_password_title": "Obnovení vašeho hesla" + "reset_password_title": "Obnovení vašeho hesla", + "continue_with_sso": "Pokračovat s %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s nebo %(usernamePassword)s", + "sign_in_instead": "Máte již účet? Přihlašte se zde", + "account_clash": "nový účet (%(newAccountId)s) je registrován, ale už jste přihlášeni pod jiným účtem (%(loggedInUserId)s).", + "account_clash_previous_account": "Pokračovat s předchozím účtem", + "log_in_new_account": "Přihlaste se svým novým účtem.", + "registration_successful": "Úspěšná registrace", + "server_picker_title": "Hostovat účet na", + "server_picker_dialog_title": "Rozhodněte, kde je váš účet hostován" }, "room_list": { "sort_unread_first": "Zobrazovat místnosti s nepřečtenými zprávami jako první", @@ -4110,5 +4099,20 @@ "report_entire_room": "Nahlásit celou místnost", "report_content_to_homeserver": "Nahlásit obsah správci vašeho domovského serveru", "description": "Nahlášení této zprávy pošle její jedinečné 'event ID' správci vašeho domovského serveru. Pokud jsou zprávy šifrované, správce nebude mít možnost přečíst text zprávy ani se podívat na soubory nebo obrázky." + }, + "setting": { + "help_about": { + "brand_version": "Verze %(brand)s:", + "olm_version": "Verze Olm:", + "help_link": "Pro pomoc s používáním %(brand)su klepněte sem.", + "help_link_chat_bot": "Pro pomoc s používáním %(brand)su klepněte sem nebo následujícím tlačítkem zahajte konverzaci s robotem.", + "chat_bot": "Konverzovat s %(brand)s Botem", + "title": "O aplikaci a pomoc", + "versions": "Verze", + "homeserver": "Domovský server je %(homeserverUrl)s", + "identity_server": "Server identit je %(identityServerUrl)s", + "access_token_detail": "Přístupový token vám umožní plný přístup k účtu. Nikomu ho nesdělujte.", + "clear_cache_reload": "Smazat mezipaměť a načíst znovu" + } } } diff --git a/src/i18n/strings/da.json b/src/i18n/strings/da.json index c9e79f5ac5..89b9d84184 100644 --- a/src/i18n/strings/da.json +++ b/src/i18n/strings/da.json @@ -7,7 +7,6 @@ "A new password must be entered.": "Der skal indtastes en ny adgangskode.", "The email address linked to your account must be entered.": "Den emailadresse, der tilhører til din adgang, skal indtastes.", "Session ID": "Sessions ID", - "Displays action": "Viser handling", "Deops user with given id": "Fjerner OP af bruger med givet id", "Commands": "Kommandoer", "Warning!": "Advarsel!", @@ -133,9 +132,6 @@ "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Brug en identitetsserver for at invitere pr. mail. Tryk på Fortsæt for at bruge den almindelige identitetsserver (%(defaultIdentityServerName)s) eller indtast en anden under Indstillinger.", "Use an identity server to invite by email. Manage in Settings.": "Brug en identitetsserver for at invitere pr. mail. Administrer dette under Indstillinger.", "Define the power level of a user": "Indstil rettighedsniveau for en bruger", - "Please supply a https:// or http:// widget URL": "Oplys venligst en https:// eller http:// widget URL", - "You cannot modify widgets in this room.": "Du kan ikke ændre widgets i dette rum.", - "Forces the current outbound group session in an encrypted room to be discarded": "Tvinger den nuværende udgående gruppe-session i et krypteret rum til at blive kasseret", "Cannot reach homeserver": "Homeserveren kan ikke kontaktes", "Ensure you have a stable internet connection, or get in touch with the server admin": "Vær sikker at du har en stabil internetforbindelse, eller kontakt serveradministratoren", "Your %(brand)s is misconfigured": "Din %(brand)s er konfigureret forkert", @@ -224,9 +220,6 @@ "Security & Privacy": "Sikkerhed & Privatliv", "Who can read history?": "Hvem kan læse historikken?", "Enable encryption?": "Aktiver kryptering?", - "Create a Group Chat": "Opret en gruppechat", - "Explore Public Rooms": "Udforsk offentlige rum", - "Send a Direct Message": "Send en Direkte Besked", "Permissions": "Tilladelser", "Headphones": "Hovedtelefoner", "Show more": "Vis mere", @@ -744,7 +737,11 @@ "category_admin": "Administrator", "category_advanced": "Avanceret", "category_effects": "Effekter", - "category_other": "Andre" + "category_other": "Andre", + "addwidget_invalid_protocol": "Oplys venligst en https:// eller http:// widget URL", + "addwidget_no_permissions": "Du kan ikke ændre widgets i dette rum.", + "discardsession": "Tvinger den nuværende udgående gruppe-session i et krypteret rum til at blive kasseret", + "me": "Viser handling" }, "presence": { "online": "Online" @@ -797,5 +794,10 @@ }, "room_list": { "show_less": "Vis mindre" + }, + "onboarding": { + "send_dm": "Send en Direkte Besked", + "explore_rooms": "Udforsk offentlige rum", + "create_room": "Opret en gruppechat" } } diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 4e36615d85..d1b4289683 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -7,7 +7,6 @@ "A new password must be entered.": "Es muss ein neues Passwort eingegeben werden.", "The email address linked to your account must be entered.": "Es muss die mit dem Benutzerkonto verbundene E-Mail-Adresse eingegeben werden.", "Session ID": "Sitzungs-ID", - "Displays action": "Als Aktionen anzeigen", "Deops user with given id": "Setzt das Berechtigungslevel beim Benutzer mit der angegebenen ID zurück", "Change Password": "Passwort ändern", "Commands": "Befehle", @@ -135,7 +134,6 @@ "Email": "E-Mail-Adresse", "New passwords don't match": "Die neuen Passwörter stimmen nicht überein", "Passwords can't be empty": "Passwortfelder dürfen nicht leer sein", - "%(brand)s version:": "Version von %(brand)s:", "Email address": "E-Mail-Adresse", "Error decrypting attachment": "Fehler beim Entschlüsseln des Anhangs", "Operation failed": "Aktion fehlgeschlagen", @@ -352,7 +350,6 @@ "Failed to upgrade room": "Raumaktualisierung fehlgeschlagen", "The room upgrade could not be completed": "Die Raumaktualisierung konnte nicht fertiggestellt werden", "Upgrade this room to version %(version)s": "Raum auf Version %(version)s aktualisieren", - "Forces the current outbound group session in an encrypted room to be discarded": "Erzwingt, dass die aktuell ausgehende Gruppensitzung in einem verschlüsseltem Raum verworfen wird", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Bevor du Protokolldateien übermittelst, musst du auf GitHub einen \"Issue\" erstellen um dein Problem zu beschreiben.", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s benutzt nun 3 bis 5 Mal weniger Arbeitsspeicher, indem Informationen über andere Nutzer erst bei Bedarf geladen werden. Bitte warte, während die Daten erneut mit dem Server abgeglichen werden!", "Updating %(brand)s": "Aktualisiere %(brand)s", @@ -440,11 +437,6 @@ "Phone numbers": "Telefonnummern", "Language and region": "Sprache und Region", "Account management": "Benutzerkontenverwaltung", - "For help with using %(brand)s, click here.": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke hier.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke hier oder beginne eine Unterhaltung mit unserem Bot mittels nachfolgender Schaltfläche.", - "Chat with %(brand)s Bot": "Unterhalte dich mit dem %(brand)s-Bot", - "Help & About": "Hilfe und Info", - "Versions": "Versionen", "Room Addresses": "Raumadressen", "Room list": "Raumliste", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Die Datei „%(fileName)s“ überschreitet das Hochladelimit deines Heim-Servers", @@ -566,10 +558,8 @@ "Room Settings - %(roomName)s": "Raumeinstellungen - %(roomName)s", "Could not load user profile": "Konnte Nutzerprofil nicht laden", "Your %(brand)s is misconfigured": "Dein %(brand)s ist falsch konfiguriert", - "You cannot modify widgets in this room.": "Du darfst in diesem Raum keine Widgets verändern.", "The server does not support the room version specified.": "Der Server unterstützt die angegebene Raumversion nicht.", "The file '%(fileName)s' failed to upload.": "Die Datei „%(fileName)s“ konnte nicht hochgeladen werden.", - "Please supply a https:// or http:// widget URL": "Bitte gib eine mit https:// oder http:// beginnende Widget-URL an", "Cannot reach homeserver": "Heim-Server nicht erreichbar", "Ensure you have a stable internet connection, or get in touch with the server admin": "Stelle sicher, dass du eine stabile Internetverbindung hast oder wende dich an deine Server-Administration", "Ask your %(brand)s admin to check your config for incorrect or duplicate entries.": "Wende dich an deinen %(brand)s-Admin um deine Konfiguration auf ungültige oder doppelte Einträge zu überprüfen.", @@ -598,7 +588,6 @@ "Passwords don't match": "Passwörter stimmen nicht überein", "Enter username": "Benutzername eingeben", "Add room": "Raum hinzufügen", - "Registration Successful": "Registrierung erfolgreich", "Failed to revoke invite": "Einladung konnte nicht zurückgezogen werden", "Revoke invite": "Einladung zurückziehen", "Invited by %(sender)s": "%(sender)s eingeladen", @@ -651,7 +640,6 @@ "You are not currently using an identity server. To discover and be discoverable by existing contacts you know, add one below.": "Zurzeit benutzt du keinen Identitäts-Server. Trage unten einen Server ein, um Kontakte zu finden und von anderen gefunden zu werden.", "Manage integrations": "Integrationen verwalten", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Stimme den Nutzungsbedingungen des Identitäts-Servers %(serverName)s zu, um per E-Mail-Adresse oder Telefonnummer auffindbar zu werden.", - "Clear cache and reload": "Zwischenspeicher löschen und neu laden", "Ignored/Blocked": "Ignoriert/Blockiert", "Something went wrong. Please try again or view your console for hints.": "Etwas ist schief gelaufen. Bitte versuche es erneut oder sieh für weitere Hinweise in deiner Konsole nach.", "Error subscribing to list": "Fehler beim Abonnieren der Liste", @@ -806,7 +794,6 @@ "Enter your account password to confirm the upgrade:": "Gib dein Kontopasswort ein, um die Aktualisierung zu bestätigen:", "You'll need to authenticate with the server to confirm the upgrade.": "Du musst dich authentifizieren, um die Aktualisierung zu bestätigen.", "New login. Was this you?": "Neue Anmeldung. Warst du das?", - "Please supply a widget URL or embed code": "Bitte gib eine Widget-URL oder einen Einbettungscode an", "A text message has been sent to +%(msisdn)s. Please enter the verification code it contains.": "Gib den per SMS an +%(msisdn)s gesendeten Bestätigungscode ein.", "Someone is using an unknown session": "Jemand verwendet eine unbekannte Sitzung", "This room is end-to-end encrypted": "Dieser Raum ist Ende-zu-Ende verschlüsselt", @@ -969,10 +956,6 @@ "a new cross-signing key signature": "Eine neue Cross-Signing-Schlüsselsignatur", "a device cross-signing signature": "Eine Geräte Schlüssel Signatur", "a key signature": "Eine Schlüssel Signatur", - "Toggle Bold": "Fett", - "Toggle Italics": "Kursiv", - "Toggle Quote": "Zitat umschalten", - "New line": "Neue Zeile", "Upgrade private room": "Privaten Raum aktualisieren", "Upgrade public room": "Öffentlichen Raum aktualisieren", "This usually only affects how the room is processed on the server. If you're having problems with your %(brand)s, please report a bug.": "Dies beeinflusst meistens nur, wie der Raum auf dem Server verarbeitet wird. Solltest du Probleme mit %(brand)s haben, melde bitte einen Programmfehler.", @@ -1003,9 +986,6 @@ "Doesn't look like a valid email address": "Das sieht nicht nach einer gültigen E-Mail-Adresse aus", "Enter phone number (required on this homeserver)": "Telefonnummer eingeben (auf diesem Heim-Server erforderlich)", "Sign in with SSO": "Einmalanmeldung verwenden", - "Welcome to %(appName)s": "Willkommen bei %(appName)s", - "Send a Direct Message": "Direkt­­nachricht senden", - "Create a Group Chat": "Gruppenraum erstellen", "Use lowercase letters, numbers, dashes and underscores only": "Verwende nur Kleinbuchstaben, Zahlen, Bindestriche und Unterstriche", "Jump to first unread room.": "Zum ersten ungelesenen Raum springen.", "Jump to first invite.": "Zur ersten Einladung springen.", @@ -1015,8 +995,6 @@ "Invalid base_url for m.identity_server": "Ungültige base_url für m.identity_server", "Identity server URL does not appear to be a valid identity server": "Die Identitäts-Server-URL scheint kein gültiger Identitäts-Server zu sein", "This account has been deactivated.": "Dieses Konto wurde deaktiviert.", - "Continue with previous account": "Mit vorherigem Konto fortfahren", - "Log in to your new account.": "Mit deinem neuen Konto anmelden.", "well formed": "wohlgeformt", "If you don't want to use to discover and be discoverable by existing contacts you know, enter another identity server below.": "Wenn du nicht verwenden willst, um Kontakte zu finden und von anderen gefunden zu werden, trage unten einen anderen Identitäts-Server ein.", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Um ein Matrix-bezogenes Sicherheitsproblem zu melden, lies bitte die Matrix.org Sicherheitsrichtlinien.", @@ -1049,9 +1027,7 @@ "Some session data, including encrypted message keys, is missing. Sign out and sign in to fix this, restoring keys from backup.": "Einige Sitzungsdaten, einschließlich der Verschlüsselungsschlüssel, fehlen. Melde dich ab, wieder an und stelle die Schlüssel aus der Sicherung wieder her um dies zu beheben.", "Nice, strong password!": "Super, ein starkes Passwort!", "Other users can invite you to rooms using your contact details": "Andere Personen können dich mit deinen Kontaktdaten in Räume einladen", - "Explore Public Rooms": "Öffentliche Räume erkunden", "If you've joined lots of rooms, this might take a while": "Du bist einer Menge Räumen beigetreten, das kann eine Weile dauern", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Dein neues Konto (%(newAccountId)s) ist registriert, aber du hast dich bereits in mit einem anderen Konto (%(loggedInUserId)s) angemeldet.", "Failed to re-authenticate due to a homeserver problem": "Erneute Authentifizierung aufgrund eines Problems des Heim-Servers fehlgeschlagen", "Failed to re-authenticate": "Erneute Authentifizierung fehlgeschlagen", "Command Autocomplete": "Autovervollständigung aktivieren", @@ -1064,14 +1040,6 @@ "Create key backup": "Schlüsselsicherung erstellen", "This session is encrypting history using the new recovery method.": "Diese Sitzung verschlüsselt den Verlauf mit der neuen Wiederherstellungsmethode.", "Currently indexing: %(currentRoom)s": "Indiziere: %(currentRoom)s", - "Navigation": "Navigation", - "Calls": "Anrufe", - "Room List": "Raumliste", - "Autocomplete": "Autovervollständigung", - "Toggle microphone mute": "Mikrofon an-/ausschalten", - "Jump to room search": "Zur Raumsuche springen", - "Close dialog or context menu": "Dialog oder Kontextmenü schließen", - "Cancel autocomplete": "Autovervollständigung deaktivieren", "Unable to revoke sharing for email address": "Dem Teilen der E-Mail-Adresse kann nicht widerrufen werden", "Not currently indexing messages for any room.": "Derzeit werden keine Nachrichten für Räume indiziert.", "Space used:": "Speicherplatzbedarf:", @@ -1083,14 +1051,6 @@ "%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s verwendet einen sicheren Zwischenspeicher für verschlüsselte Nachrichten, damit sie in den Suchergebnissen angezeigt werden:", "Message downloading sleep time(ms)": "Wartezeit zwischen dem Herunterladen von Nachrichten (ms)", "If you did this accidentally, you can setup Secure Messages on this session which will re-encrypt this session's message history with a new recovery method.": "Wenn du dies versehentlich getan hast, kannst du in dieser Sitzung \"sichere Nachrichten\" einrichten, die den Nachrichtenverlauf dieser Sitzung mit einer neuen Wiederherstellungsmethode erneut verschlüsseln.", - "Cancel replying to a message": "Nachricht beantworten abbrechen", - "Select room from the room list": "Wähle eine Raum aus der Raumliste", - "Collapse room list section": "Raumliste einklappen", - "Expand room list section": "Raumliste ausklappen", - "Toggle the top left menu": "Menü oben links ein-/ausblenden", - "Activate selected button": "Ausgewählten Button aktivieren", - "Toggle right panel": "Rechtes Panel ein-/ausblenden", - "Opens chat with the given user": "Öffnet eine Unterhaltung mit dieser Person", "You've successfully verified your device!": "Du hast dein Gerät erfolgreich verifiziert!", "To continue, use Single Sign On to prove your identity.": "Zum Fortfahren, nutze „Single Sign-On“ um deine Identität zu bestätigen.", "Confirm to continue": "Bestätige um fortzufahren", @@ -1101,9 +1061,6 @@ "Size must be a number": "Schriftgröße muss eine Zahl sein", "Custom font size can only be between %(min)s pt and %(max)s pt": "Eigene Schriftgröße kann nur eine Zahl zwischen %(min)s pt und %(max)s pt sein", "Use between %(min)s pt and %(max)s pt": "Verwende eine Zahl zwischen %(min)s pt und %(max)s pt", - "Jump to oldest unread message": "Zur ältesten ungelesenen Nachricht springen", - "Upload a file": "Eine Datei hochladen", - "Dismiss read marker and jump to bottom": "Entferne Lesemarker und springe nach unten", "Joins room with given address": "Tritt dem Raum mit der angegebenen Adresse bei", "Your homeserver has exceeded its user limit.": "Dein Heim-Server hat den Benutzergrenzwert erreicht.", "Your homeserver has exceeded one of its resource limits.": "Dein Heim-Server hat einen seiner Ressourcengrenzwerte erreicht.", @@ -1233,8 +1190,6 @@ "Modal Widget": "Modales Widget", "Send feedback": "Rückmeldung senden", "Feedback sent": "Rückmeldung gesendet", - "Takes the call in the current room off hold": "Beendet das Halten des Anrufs", - "Places the call in the current room on hold": "Den aktuellen Anruf halten", "Uzbekistan": "Usbekistan", "Send stickers into this room": "Sticker in diesen Raum senden", "Send stickers into your active room": "Sticker in deinen aktiven Raum senden", @@ -1316,12 +1271,7 @@ "Approve widget permissions": "Rechte für das Widget genehmigen", "This widget would like to:": "Dieses Widget würde gerne:", "Decline All": "Alles ablehnen", - "Go to Home View": "Zur Startseite gehen", "%(creator)s created this DM.": "%(creator)s hat diese Direktnachricht erstellt.", - "Now, let's help you get started": "Nun, lassen Sie uns Ihnen den Einstieg erleichtern", - "Welcome %(name)s": "Willkommen %(name)s", - "Add a photo so people know it's you.": "Füge ein Bild hinzu, damit andere dich erkennen können.", - "Great, that'll help people know it's you": "Großartig, das wird anderen helfen, dich zu erkennen", "Enter phone number": "Telefonnummer eingeben", "Enter email address": "E-Mail-Adresse eingeben", "Remain on your screen while running": "Bleib auf deinem Bildschirm während der Ausführung von", @@ -1575,10 +1525,6 @@ "United States": "Vereinigte Staaten", "United Kingdom": "Großbritannien", "Specify a homeserver": "Gib einen Heim-Server an", - "Decide where your account is hosted": "Entscheide, wo sich dein Konto befinden soll", - "Already have an account? Sign in here": "Du hast bereits ein Konto? Melde dich hier an", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s oder %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Mit %(ssoButtons)s anmelden", "New? Create account": "Neu? Erstelle ein Konto", "There was a problem communicating with the homeserver, please try again later.": "Es gab ein Problem bei der Kommunikation mit dem Heim-Server. Bitte versuche es später erneut.", "New here? Create an account": "Neu hier? Erstelle ein Konto", @@ -1595,7 +1541,6 @@ "Continuing without email": "Ohne E-Mail fortfahren", "Reason (optional)": "Grund (optional)", "Server Options": "Server-Einstellungen", - "Host account on": "Konto betreiben auf", "Hold": "Halten", "Resume": "Fortsetzen", "Invalid URL": "Ungültiger Link", @@ -1634,12 +1579,9 @@ "If you've forgotten your Security Phrase you can use your Security Key or set up new recovery options": "Wenn du deine Sicherheitsphrase vergessen hast, kannst du deinen Sicherheitsschlüssel nutzen oder neue Wiederherstellungsoptionen einrichten", "Security Key mismatch": "Nicht übereinstimmende Sicherheitsschlüssel", "Set my room layout for everyone": "Dein Raumlayout für alle setzen", - "Search (must be enabled)": "Suchen (muss in den Einstellungen aktiviert sein)", "Remember this": "Dies merken", "The widget will verify your user ID, but won't be able to perform actions for you:": "Das Widget überprüft deine Nutzer-ID, kann jedoch keine Aktionen für dich ausführen:", "Allow this widget to verify your identity": "Erlaube diesem Widget deine Identität zu überprüfen", - "Converts the DM to a room": "Wandelt die Direktnachricht in einen Raum um", - "Converts the room to a DM": "Wandelt den Raum in eine Direktnachricht um", "Something went wrong in confirming your identity. Cancel and try again.": "Bei der Bestätigung deiner Identität ist ein Fehler aufgetreten. Abbrechen und erneut versuchen.", "Use app": "App verwenden", "Use app for a better experience": "Nutze die App für eine bessere Erfahrung", @@ -1788,7 +1730,6 @@ "You may contact me if you have any follow up questions": "Kontaktiert mich, falls ihr weitere Fragen zu meiner Rückmeldung habt", "To leave the beta, visit your settings.": "Du kannst die Beta in den Einstellungen deaktivieren.", "Your platform and username will be noted to help us use your feedback as much as we can.": "Deine Systeminformationen und dein Benutzername werden mitgeschickt, damit wir deine Rückmeldung bestmöglich nachvollziehen können.", - "Your access token gives full access to your account. Do not share it with anyone.": "Dein Zugriffstoken gibt vollen Zugriff auf dein Konto. Teile ihn niemals mit anderen.", "Space Autocomplete": "Spaces automatisch vervollständigen", "Currently joining %(count)s rooms": { "one": "Betrete %(count)s Raum", @@ -1909,7 +1850,6 @@ "Only invited people can join.": "Nur Eingeladene können betreten.", "Private (invite only)": "Privat (Betreten mit Einladung)", "This upgrade will allow members of selected spaces access to this room without an invite.": "Diese Aktualisierung gewährt Mitgliedern der ausgewählten Spaces Zugang zu diesem Raum ohne Einladung.", - "Olm version:": "Version von Olm:", "Show all rooms": "Alle Räume anzeigen", "Delete avatar": "Avatar löschen", "Only people invited will be able to find and join this room.": "Nur eingeladene Personen können den Raum finden und betreten.", @@ -1949,7 +1889,6 @@ "Role in ": "Rolle in ", "Results": "Ergebnisse", "Rooms and spaces": "Räume und Spaces", - "Send a sticker": "Sticker senden", "Are you sure you want to make this encrypted room public?": "Willst du diesen verschlüsselten Raum wirklich öffentlich machen?", "Unknown failure": "Unbekannter Fehler", "Failed to update the join rules": "Fehler beim Aktualisieren der Beitrittsregeln", @@ -2057,7 +1996,6 @@ "Use a more compact 'Modern' layout": "Modernes kompaktes Layout verwenden", "Someone already has that username, please try another.": "Dieser Benutzername wird bereits genutzt, bitte versuche es mit einem anderen.", "You're all caught up": "Du bist auf dem neuesten Stand", - "Own your conversations.": "Besitze deine Unterhaltungen.", "Someone already has that username. Try another or if it is you, sign in below.": "Jemand anderes nutzt diesen Benutzernamen schon. Probier einen anderen oder wenn du es bist, melde dich unten an.", "Matrix.org is the biggest public homeserver in the world, so it's a good place for many.": "Matrix.org ist der größte öffentliche Heim-Server der Welt, also für viele ein guter Ort.", "Could not connect media": "Konnte Medien nicht verbinden", @@ -2109,7 +2047,6 @@ "You cannot place calls without a connection to the server.": "Sie können keine Anrufe starten ohne Verbindung zum Server.", "Connectivity to the server has been lost": "Verbindung zum Server unterbrochen", "Spaces you know that contain this space": "Spaces, die diesen Space enthalten und in denen du Mitglied bist", - "Toggle space panel": "Space-Panel ein/aus", "Keep discussions organised with threads": "Organisiere Diskussionen mit Threads", "Failed to load list of rooms.": "Fehler beim Laden der Raumliste.", "Open in OpenStreetMap": "In OpenStreetMap öffnen", @@ -2172,8 +2109,6 @@ "Back to chat": "Zurück zur Unterhaltung", "Remove, ban, or invite people to your active room, and make you leave": "Entferne, verbanne oder lade andere in deinen aktiven Raum ein und verlasse den Raum selbst", "Remove, ban, or invite people to this room, and make you leave": "Entferne, verbanne oder lade andere in diesen Raum ein und verlasse den Raum selbst", - "No active call in this room": "Kein aktiver Anruf in diesem Raum", - "Unable to find Matrix ID for phone number": "Dieser Telefonnummer kann keine Matrix-ID zugeordnet werden", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Unbekanntes Paar (Nutzer, Sitzung): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Befehl fehlgeschlagen: Raum kann nicht gefunden werden (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Nicht erkannte Raumadresse: %(roomAlias)s", @@ -2193,7 +2128,6 @@ "Remove them from specific things I'm able to": "Person aus gewählten, mir möglichen, Bereichen entfernen", "Remove them from everything I'm able to": "Person aus allen, mir möglichen Bereichen entfernen", "To proceed, please accept the verification request on your other device.": "Akzeptiere die Verifizierungsanfrage am anderen Gerät, um fortzufahren.", - "Open this settings tab": "Den Einstellungen-Tab öffnen", "Your new device is now verified. Other users will see it as trusted.": "Dein neues Gerät ist jetzt verifiziert. Anderen wird es als vertrauenswürdig angezeigt werden.", "Your new device is now verified. It has access to your encrypted messages, and other users will see it as trusted.": "Dein neues Gerät ist jetzt verifiziert und hat Zugriff auf deine verschlüsselten Nachrichten und anderen wird es als vertrauenswürdig angezeigt werden.", "Verify with another device": "Mit anderem Gerät verifizieren", @@ -2212,34 +2146,11 @@ "You don't have permission to view messages from before you joined.": "Du kannst keine Nachrichten lesen, die gesendet wurden, bevor du beigetreten bist.", "You don't have permission to view messages from before you were invited.": "Du kannst keine Nachrichten lesen, die gesendet wurden, bevor du eingeladen wurdest.", "Unable to check if username has been taken. Try again later.": "Es kann nicht überprüft werden, ob der Nutzername bereits vergeben ist. Bitte versuche es später erneut.", - "Previous autocomplete suggestion": "Vorheriger Vorschlag der Autovervollständigung", - "Next autocomplete suggestion": "Nächster Vorschlag der Autovervollständigung", - "Previous room or DM": "Vorherige Unterhaltung", - "Next room or DM": "Nächste Unterhaltung", - "Previous unread room or DM": "Vorherige ungelesene Nachricht", - "Next unread room or DM": "Nächste ungelesene Nachricht", - "Navigate down in the room list": "Nächster Eintrag der Raumliste", - "Navigate up in the room list": "Vorheriger Eintrag der Raumliste", - "Scroll down in the timeline": "Im Verlauf nach unten springen", - "Scroll up in the timeline": "Im Verlauf nach oben springen", - "Toggle webcam on/off": "Kamera umschalten", - "Navigate to previous message in composer history": "Vorheriger Eintrag im Eingabeverlauf", - "Navigate to next message in composer history": "Nächster Eintrag im Eingabeverlauf", - "Jump to end of the composer": "Zum Ende des Eingabefelds springen", - "Jump to start of the composer": "Zum Anfang des Eingabefelds springen", - "Navigate to previous message to edit": "Vorherige Nachricht bearbeiten", - "Navigate to next message to edit": "Nächste Nachricht bearbeiten", "Internal room ID": "Interne Raum-ID", "Group all your rooms that aren't part of a space in one place.": "Gruppiere all deine Räume, die nicht Teil eines Spaces sind, an einem Ort.", "Group all your people in one place.": "Gruppiere all deine Direktnachrichten an einem Ort.", "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.", - "Redo edit": "Änderung wiederherstellen", - "Undo edit": "Änderung revidieren", - "Jump to last message": "Zur letzten Nachricht springen", - "Jump to first message": "Zur ersten Nachricht springen", - "Force complete": "Vervollständigung erzwingen", - "Toggle hidden event visibility": "Sichtbarkeit versteckter Ereignisse umschalten", "If you know what you're doing, Element is open-source, be sure to check out our GitHub (https://github.com/vector-im/element-web/) and contribute!": "Falls du weißt, was du machst: Element ist Open Source! Checke unser GitHub aus (https://github.com/vector-im/element-web/) und hilf mit!", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Wenn dir jemand gesagt hat, dass du hier etwas einfügen sollst, ist die Wahrscheinlichkeit sehr groß, dass du von der Person betrogen wirst!", "Wait!": "Warte!", @@ -2255,8 +2166,6 @@ "%(space1Name)s and %(space2Name)s": "%(space1Name)s und %(space2Name)s", "Use to scroll": "Benutze zum scrollen", "Automatically send debug logs when key backup is not functioning": "Sende automatisch Protokolle zur Fehlerkorrektur, wenn die Schlüsselsicherung nicht funktioniert", - "Open user settings": "Benutzereinstellungen öffnen", - "Switch to space by number": "Mit Nummer zu Space springen", "Pinned": "Angeheftet", "Open thread": "Thread anzeigen", "Search Dialog": "Suchdialog", @@ -2270,8 +2179,6 @@ "Results will be visible when the poll is ended": "Ergebnisse werden nach Abschluss der Umfrage sichtbar", "Sorry, you can't edit a poll after votes have been cast.": "Du kannst Umfragen nicht bearbeiten, sobald Stimmen abgegeben wurden.", "Can't edit poll": "Umfrage kann nicht bearbeitet werden", - "No virtual room for this room": "Kein virtueller Raum für diesen Raum", - "Switches to this room's virtual room, if it has one": "Zum virtuellen Raum dieses Raums wechseln, sofern vorhanden", "They won't be able to access whatever you're not an admin of.": "Die Person wird keinen Zutritt zu Bereichen haben, in denen du nicht administrierst.", "Show polls button": "Zeige Pol button", "This homeserver is not configured to display maps.": "Dein Heim-Server unterstützt das Anzeigen von Karten nicht.", @@ -2295,8 +2202,6 @@ "%(brand)s could not send your location. Please try again later.": "%(brand)s konnte deinen Standort nicht senden. Bitte versuche es später erneut.", "We couldn't send your location": "Wir konnten deinen Standort nicht senden", "This homeserver is not configured correctly to display maps, or the configured map server may be unreachable.": "Dein Home-Server unterstützt das Anzeigen von Karten nicht oder der Kartenanbieter ist nicht erreichbar.", - "Toggle Link": "Linkfomatierung umschalten", - "Toggle Code Block": "Quelltextblock umschalten", "You are sharing your live location": "Du teilst deinen Echtzeit-Standort", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Deaktivieren, wenn du auch Systemnachrichten bzgl. des Nutzers löschen willst (z. B. Mitglieds- und Profiländerungen …)", "Preserve system messages": "Systemnachrichten behalten", @@ -2390,8 +2295,6 @@ "To view %(roomName)s, you need an invite": "Um %(roomName)s zu betrachten, benötigst du eine Einladung", "%(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.": "%(errcode)s wurde während des Betretens zurückgegeben. Wenn du denkst, dass diese Meldung nicht korrekt ist, reiche bitte einen Fehlerbericht ein.", "Private room": "Privater Raum", - "Next recently visited room or space": "Nächster kürzlich besuchter Raum oder Space", - "Previous recently visited room or space": "Vorheriger kürzlich besuchter Raum oder Space", "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device.": "Du wurdest von allen Geräten abgemeldet und erhältst keine Push-Benachrichtigungen mehr. Um Benachrichtigungen wieder zu aktivieren, melde dich auf jedem Gerät erneut an.", "Threads help keep your conversations on-topic and easy to track.": "Threads helfen dabei, dass deine Konversationen beim Thema und leicht nachverfolgbar bleiben.", "Your message wasn't sent because this homeserver has been blocked by its administrator. Please contact your service administrator to continue using the service.": "Deine Nachricht wurde nicht gesendet, weil dieser Heim-Server von dessen Administration gesperrt wurde. Bitte kontaktiere deine Dienstadministration, um den Dienst weiterzunutzen.", @@ -2454,7 +2357,6 @@ "Your server doesn't support disabling sending read receipts.": "Dein Server unterstützt das Deaktivieren von Lesebestätigungen nicht.", "Share your activity and status with others.": "Teile anderen deine Aktivität und deinen Status mit.", "Deactivating your account is a permanent action — be careful!": "Die Deaktivierung deines Kontos ist unwiderruflich — sei vorsichtig!", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Entwicklungsbefehl: Verwirft die aktuell ausgehende Gruppensitzung und setzt eine neue Olm-Sitzung auf", "Toggle attribution": "Info ein-/ausblenden", "In spaces %(space1Name)s and %(space2Name)s.": "In den Spaces %(space1Name)s und %(space2Name)s.", "Joining…": "Betrete …", @@ -2780,8 +2682,6 @@ "Room directory": "Raumverzeichnis", "Due to decryption errors, some votes may not be counted": "Evtl. werden infolge von Entschlüsselungsfehlern einige Stimmen nicht gezählt", "Ended a poll": "Eine Umfrage beendet", - "Identity server is %(identityServerUrl)s": "Identitäts-Server ist %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Heim-Server ist %(homeserverUrl)s", "Yes, it was me": "Ja, das war ich", "Answered elsewhere": "Anderswo beantwortet", "If you know a room address, try joining through that instead.": "Falls du eine Adresse kennst, versuche den Raum mit dieser zu betreten.", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Ignorieren (%(counter)s)", "Invites by email can only be sent one at a time": "E-Mail-Einladungen können nur nacheinander gesendet werden", "Once everyone has joined, you’ll be able to chat": "Sobald alle den Raum betreten hat, könnt ihr euch unterhalten", - "Could not find room": "Konnte Raum nicht finden", - "iframe has no src attribute": "iFrame hat kein src-Attribut", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Ein Fehler ist während der Aktualisierung deiner Benachrichtigungseinstellungen aufgetreten. Bitte versuche die Option erneut umzuschalten.", "Use your account to continue.": "Nutze dein Konto, um fortzufahren.", "Desktop app logo": "Desktop-App-Logo", @@ -3200,7 +3098,63 @@ "control": "Strg", "shift": "Umschalt", "number": "[Nummer]", - "backspace": "Löschtaste" + "backspace": "Löschtaste", + "category_calls": "Anrufe", + "category_room_list": "Raumliste", + "category_navigation": "Navigation", + "category_autocomplete": "Autovervollständigung", + "composer_toggle_bold": "Fett", + "composer_toggle_italics": "Kursiv", + "composer_toggle_quote": "Zitat umschalten", + "composer_toggle_code_block": "Quelltextblock umschalten", + "composer_toggle_link": "Linkfomatierung umschalten", + "cancel_reply": "Nachricht beantworten abbrechen", + "navigate_next_message_edit": "Nächste Nachricht bearbeiten", + "navigate_prev_message_edit": "Vorherige Nachricht bearbeiten", + "composer_jump_start": "Zum Anfang des Eingabefelds springen", + "composer_jump_end": "Zum Ende des Eingabefelds springen", + "composer_navigate_next_history": "Nächster Eintrag im Eingabeverlauf", + "composer_navigate_prev_history": "Vorheriger Eintrag im Eingabeverlauf", + "send_sticker": "Sticker senden", + "toggle_microphone_mute": "Mikrofon an-/ausschalten", + "toggle_webcam_mute": "Kamera umschalten", + "dismiss_read_marker_and_jump_bottom": "Entferne Lesemarker und springe nach unten", + "jump_to_read_marker": "Zur ältesten ungelesenen Nachricht springen", + "upload_file": "Eine Datei hochladen", + "scroll_up_timeline": "Im Verlauf nach oben springen", + "scroll_down_timeline": "Im Verlauf nach unten springen", + "jump_room_search": "Zur Raumsuche springen", + "room_list_select_room": "Wähle eine Raum aus der Raumliste", + "room_list_collapse_section": "Raumliste einklappen", + "room_list_expand_section": "Raumliste ausklappen", + "room_list_navigate_down": "Nächster Eintrag der Raumliste", + "room_list_navigate_up": "Vorheriger Eintrag der Raumliste", + "toggle_top_left_menu": "Menü oben links ein-/ausblenden", + "toggle_right_panel": "Rechtes Panel ein-/ausblenden", + "keyboard_shortcuts_tab": "Den Einstellungen-Tab öffnen", + "go_home_view": "Zur Startseite gehen", + "next_unread_room": "Nächste ungelesene Nachricht", + "prev_unread_room": "Vorherige ungelesene Nachricht", + "next_room": "Nächste Unterhaltung", + "prev_room": "Vorherige Unterhaltung", + "autocomplete_cancel": "Autovervollständigung deaktivieren", + "autocomplete_navigate_next": "Nächster Vorschlag der Autovervollständigung", + "autocomplete_navigate_prev": "Vorheriger Vorschlag der Autovervollständigung", + "toggle_space_panel": "Space-Panel ein/aus", + "toggle_hidden_events": "Sichtbarkeit versteckter Ereignisse umschalten", + "jump_first_message": "Zur ersten Nachricht springen", + "jump_last_message": "Zur letzten Nachricht springen", + "composer_undo": "Änderung revidieren", + "composer_redo": "Änderung wiederherstellen", + "navigate_prev_history": "Vorheriger kürzlich besuchter Raum oder Space", + "navigate_next_history": "Nächster kürzlich besuchter Raum oder Space", + "switch_to_space": "Mit Nummer zu Space springen", + "open_user_settings": "Benutzereinstellungen öffnen", + "close_dialog_menu": "Dialog oder Kontextmenü schließen", + "activate_button": "Ausgewählten Button aktivieren", + "composer_new_line": "Neue Zeile", + "autocomplete_force": "Vervollständigung erzwingen", + "search": "Suchen (muss in den Einstellungen aktiviert sein)" }, "credits": { "default_cover_photo": "Das Standard-Titelbild ist © Jesús Roncero und wird unter den Bedingungen von CC-BY-SA 4.0 verwendet.", @@ -3325,7 +3279,16 @@ "download_google_play": "In Google Play erhältlich", "download_f_droid": "In F-Droid erhältlich", "apple_trademarks": "App Store® und das Apple Logo® sind eingetragene Markenzeichen von Apple Inc.", - "google_trademarks": "Google Play und das Google Play Logo sind eingetragene Markenzeichen von Google LLC." + "google_trademarks": "Google Play und das Google Play Logo sind eingetragene Markenzeichen von Google LLC.", + "has_avatar_label": "Großartig, das wird anderen helfen, dich zu erkennen", + "no_avatar_label": "Füge ein Bild hinzu, damit andere dich erkennen können.", + "welcome_user": "Willkommen %(name)s", + "welcome_detail": "Nun, lassen Sie uns Ihnen den Einstieg erleichtern", + "intro_welcome": "Willkommen bei %(appName)s", + "intro_byline": "Besitze deine Unterhaltungen.", + "send_dm": "Direkt­­nachricht senden", + "explore_rooms": "Öffentliche Räume erkunden", + "create_room": "Gruppenraum erstellen" }, "settings": { "show_breadcrumbs": "Kürzlich besuchte Räume anzeigen", @@ -3893,7 +3856,24 @@ "category_admin": "Admin", "category_advanced": "Erweitert", "category_effects": "Effekte", - "category_other": "Sonstiges" + "category_other": "Sonstiges", + "addwidget_missing_url": "Bitte gib eine Widget-URL oder einen Einbettungscode an", + "addwidget_iframe_missing_src": "iFrame hat kein src-Attribut", + "addwidget_invalid_protocol": "Bitte gib eine mit https:// oder http:// beginnende Widget-URL an", + "addwidget_no_permissions": "Du darfst in diesem Raum keine Widgets verändern.", + "converttodm": "Wandelt den Raum in eine Direktnachricht um", + "could_not_find_room": "Konnte Raum nicht finden", + "converttoroom": "Wandelt die Direktnachricht in einen Raum um", + "discardsession": "Erzwingt, dass die aktuell ausgehende Gruppensitzung in einem verschlüsseltem Raum verworfen wird", + "remakeolm": "Entwicklungsbefehl: Verwirft die aktuell ausgehende Gruppensitzung und setzt eine neue Olm-Sitzung auf", + "tovirtual": "Zum virtuellen Raum dieses Raums wechseln, sofern vorhanden", + "tovirtual_not_found": "Kein virtueller Raum für diesen Raum", + "query": "Öffnet eine Unterhaltung mit dieser Person", + "query_not_found_phone_number": "Dieser Telefonnummer kann keine Matrix-ID zugeordnet werden", + "holdcall": "Den aktuellen Anruf halten", + "no_active_call": "Kein aktiver Anruf in diesem Raum", + "unholdcall": "Beendet das Halten des Anrufs", + "me": "Als Aktionen anzeigen" }, "presence": { "busy": "Beschäftigt", @@ -4074,7 +4054,16 @@ "sign_in_with_sso": "Einmalanmeldung nutzen", "sso": "Single Sign-on", "reset_password_action": "Passwort zurücksetzen", - "reset_password_title": "Setze dein Passwort zurück" + "reset_password_title": "Setze dein Passwort zurück", + "continue_with_sso": "Mit %(ssoButtons)s anmelden", + "sso_or_username_password": "%(ssoButtons)s oder %(usernamePassword)s", + "sign_in_instead": "Du hast bereits ein Konto? Melde dich hier an", + "account_clash": "Dein neues Konto (%(newAccountId)s) ist registriert, aber du hast dich bereits in mit einem anderen Konto (%(loggedInUserId)s) angemeldet.", + "account_clash_previous_account": "Mit vorherigem Konto fortfahren", + "log_in_new_account": "Mit deinem neuen Konto anmelden.", + "registration_successful": "Registrierung erfolgreich", + "server_picker_title": "Konto betreiben auf", + "server_picker_dialog_title": "Entscheide, wo sich dein Konto befinden soll" }, "room_list": { "sort_unread_first": "Räume mit ungelesenen Nachrichten zuerst zeigen", @@ -4110,5 +4099,20 @@ "report_entire_room": "Den ganzen Raum melden", "report_content_to_homeserver": "Inhalte an die Administration deines Heim-Servers melden", "description": "Wenn du diese Nachricht meldest, wird die eindeutige Ereignis-ID an die Administration deines Heim-Servers übermittelt. Wenn die Nachrichten in diesem Raum verschlüsselt sind, wird deine Heim-Server-Administration nicht in der Lage sein, Nachrichten zu lesen oder Medien einzusehen." + }, + "setting": { + "help_about": { + "brand_version": "Version von %(brand)s:", + "olm_version": "Version von Olm:", + "help_link": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke hier.", + "help_link_chat_bot": "Um Hilfe zur Benutzung von %(brand)s zu erhalten, klicke hier oder beginne eine Unterhaltung mit unserem Bot mittels nachfolgender Schaltfläche.", + "chat_bot": "Unterhalte dich mit dem %(brand)s-Bot", + "title": "Hilfe und Info", + "versions": "Versionen", + "homeserver": "Heim-Server ist %(homeserverUrl)s", + "identity_server": "Identitäts-Server ist %(identityServerUrl)s", + "access_token_detail": "Dein Zugriffstoken gibt vollen Zugriff auf dein Konto. Teile ihn niemals mit anderen.", + "clear_cache_reload": "Zwischenspeicher löschen und neu laden" + } } } diff --git a/src/i18n/strings/el.json b/src/i18n/strings/el.json index 27967ec0ed..8142e85975 100644 --- a/src/i18n/strings/el.json +++ b/src/i18n/strings/el.json @@ -63,7 +63,6 @@ "No more results": "Δεν υπάρχουν άλλα αποτελέσματα", "Passwords can't be empty": "Οι κωδικοί πρόσβασης δεν γίνετε να είναι κενοί", "Phone": "Τηλέφωνο", - "%(brand)s version:": "Έκδοση %(brand)s:", "Rooms": "Δωμάτια", "Search failed": "Η αναζήτηση απέτυχε", "Server error": "Σφάλμα διακομιστή", @@ -202,7 +201,6 @@ "Your browser does not support the required cryptography extensions": "Ο περιηγητής σας δεν υποστηρίζει τα απαιτούμενα πρόσθετα κρυπτογράφησης", "Not a valid %(brand)s keyfile": "Μη έγκυρο αρχείο κλειδιού %(brand)s", "Authentication check failed: incorrect password?": "Αποτυχία ελέγχου πιστοποίησης: λανθασμένος κωδικός πρόσβασης;", - "Displays action": "Εμφανίζει την ενέργεια", "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Αυτή η διαδικασία σας επιτρέπει να εξαγάγετε τα κλειδιά για τα μηνύματα που έχετε λάβει σε κρυπτογραφημένα δωμάτια σε ένα τοπικό αρχείο. Στη συνέχεια, θα μπορέσετε να εισάγετε το αρχείο σε άλλο πρόγραμμα του Matrix, έτσι ώστε το πρόγραμμα να είναι σε θέση να αποκρυπτογραφήσει αυτά τα μηνύματα.", "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.": "Αυτή η διαδικασία σας επιτρέπει να εισαγάγετε κλειδιά κρυπτογράφησης που έχετε προηγουμένως εξάγει από άλλο πρόγραμμα του Matrix. Στη συνέχεια, θα μπορέσετε να αποκρυπτογραφήσετε τυχόν μηνύματα που το άλλο πρόγραμμα θα μπορούσε να αποκρυπτογραφήσει.", "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Το αρχείο εξαγωγής θα είναι προστατευμένο με συνθηματικό. Θα χρειαστεί να πληκτρολογήσετε το συνθηματικό εδώ για να αποκρυπτογραφήσετε το αρχείο.", @@ -296,15 +294,7 @@ "%(name)s (%(userId)s) signed in to a new session without verifying it:": "Ο %(name)s (%(userId)s) συνδέθηκε σε μία νέα συνεδρία χωρίς να την επιβεβαιώσει:", "Verify your other session using one of the options below.": "Επιβεβαιώστε την άλλη σας συνεδρία χρησιμοποιώντας μία από τις παρακάτω επιλογές.", "You signed in to a new session without verifying it:": "Συνδεθήκατε σε μια νέα συνεδρία χωρίς να την επιβεβαιώσετε:", - "Converts the DM to a room": "Μετατρέπει την προσωπική συνομιλία σε δωμάτιο", - "Converts the room to a DM": "Μετατρέπει το δωμάτιο σε προσωπική συνομιλία", - "Takes the call in the current room off hold": "Επαναφέρει την κλήση στο τρέχον δωμάτιο από την αναμονή", - "Places the call in the current room on hold": "Βάζει την κλήση στο τρέχον δωμάτιο σε αναμονή", - "Opens chat with the given user": "Ανοίγει την συνομιλία με τον δοσμένο χρήστη", "Session already verified!": "Η συνεδρία έχει ήδη επιβεβαιωθεί!", - "You cannot modify widgets in this room.": "Δεν μπορείτε να τροποποιήσετε μικροεφαρμογές σε αυτό το δωμάτιο.", - "Please supply a https:// or http:// widget URL": "Παρακαλώ εισάγετε ένα widget URL με https:// ή http://", - "Please supply a widget URL or embed code": "Παρακαλώ εισάγετε ένα widget URL ή ενσωματώστε κώδικα", "Could not find user in room": "Δεν βρέθηκε ο χρήστης στο δωμάτιο", "Double check that your server supports the room version chosen and try again.": "Επανελέγξτε ότι ο διακομιστής σας υποστηρίζει την έκδοση δωματίου που επιλέξατε και προσπαθήστε ξανά.", "Error upgrading room": "Σφάλμα αναβάθμισης δωματίου", @@ -710,9 +700,6 @@ "Send stickers into this room": "Στείλτε αυτοκόλλητα σε αυτό το δωμάτιο", "Remain on your screen while running": "Παραμονή στην οθόνη σας ενώ τρέχετε", "Remain on your screen when viewing another room, when running": "Παραμονή στην οθόνη σας όταν βλέπετε άλλο δωμάτιο, όταν τρέχετε", - "No active call in this room": "Δεν υπάρχει ενεργή κλήση σε αυτό το δωμάτιο", - "Unable to find Matrix ID for phone number": "Δεν είναι δυνατή η εύρεση του αναγνωριστικού Matrix για τον αριθμό τηλεφώνου", - "No virtual room for this room": "Δεν υπάρχει εικονικό δωμάτιο για αυτό το δωμάτιο", "Only invited people can join.": "Μόνο προσκεκλημένοι μπορούν να συμμετάσχουν.", "Allow people to preview your space before they join.": "Επιτρέψτε στους χρήστες να κάνουν προεπισκόπηση του χώρου σας προτού να εγγραφούν.", "Invite people": "Προσκαλέστε άτομα", @@ -801,8 +788,6 @@ "See when the topic changes in this room": "Δείτε πότε αλλάζει το θέμα σε αυτό το δωμάτιο", "Change which room, message, or user you're viewing": "Αλλάξτε το δωμάτιο, το μήνυμα ή τον χρήστη που βλέπετε", "Change which room you're viewing": "Αλλάξτε το δωμάτιο που βλέπετε", - "Switches to this room's virtual room, if it has one": "Μεταβαίνει στο εικονικό δωμάτιο αυτού του δωματίου, εάν υπάρχει", - "Forces the current outbound group session in an encrypted room to be discarded": "Επιβάλλει την τρέχουσα εξερχόμενη ομαδική συνεδρία σε κρυπτογραφημένο δωμάτιο για απόρριψη", "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!": "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η ΕΠΑΛΗΘΕΥΣΗ ΚΛΕΙΔΙΟΥ ΑΠΕΤΥΧΕ! Το κλειδί σύνδεσης για %(userId)s και συνεδρίας %(deviceId)s είναι \"%(fprint)s\" που δεν ταιριάζει με το παρεχόμενο κλειδί\"%(fingerprint)s\". Αυτό μπορεί να σημαίνει ότι υπάρχει υποκλοπή στις επικοινωνίες σας!", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Άγνωστο ζευγάρι (χρήστης, συνεδρία): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Η εντολή απέτυχε: Δεν είναι δυνατή η εύρεση δωματίου (%(roomId)s", @@ -1124,15 +1109,7 @@ "Error adding ignored user/server": "Σφάλμα κατά την προσθήκη χρήστη/διακομιστή που αγνοήθηκε", "Ignored/Blocked": "Αγνοήθηκε/Αποκλείστηκε", "Keyboard": "Πληκτρολόγιο", - "Clear cache and reload": "Εκκαθάριση προσωρινής μνήμης και επαναφόρτωση", - "Your access token gives full access to your account. Do not share it with anyone.": "Το διακριτικό πρόσβασής σας παρέχει πλήρη πρόσβαση στον λογαριασμό σας. Μην το μοιραστείτε με κανέναν.", - "Versions": "Εκδόσεις", - "Help & About": "Βοήθεια & Σχετικά", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Για να αναφέρετε ένα ζήτημα ασφάλειας που σχετίζεται με το Matrix, διαβάστε την Πολιτική Γνωστοποίησης Ασφαλείας του Matrix.org.", - "Chat with %(brand)s Bot": "Συνομιλία με το %(brand)s Bot", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Για βοήθεια σχετικά με τη χρήση του %(brand)s, κάντε κλικ εδώ ή ξεκινήστε μια συνομιλία με το bot μας χρησιμοποιώντας το παρακάτω κουμπί.", - "For help with using %(brand)s, click here.": "Για βοήθεια σχετικά με τη χρήση του %(brand)s, κάντε κλικ εδώ.", - "Olm version:": "Έκδοση Olm:", "Deactivate account": "Απενεργοποίηση λογαριασμού", "Signature upload failed": "Αποτυχία μεταφόρτωσης υπογραφής", "Signature upload success": "Επιτυχία μεταφόρτωσης υπογραφής", @@ -1358,14 +1335,6 @@ "You are the only person here. If you leave, no one will be able to join in the future, including you.": "Είστε το μόνο άτομο εδώ μέσα. Εάν φύγετε, κανείς δε θα μπορεί αργότερα να συμμετάσχει, συμπεριλαμβανομένου και εσάς.", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Εάν κάποιος σας είπε να κάνετε αντιγραφή και επικόλληση κάτι εδώ, υπάρχει μεγάλη πιθανότητα να σας έχουν εξαπατήσει!", "Wait!": "Μια στιγμή!", - "Create a Group Chat": "Δημιουργήστε μια Ομαδική Συνομιλία", - "Own your conversations.": "Οι συνομιλίες σας ανήκουν σε εσάς.", - "Explore Public Rooms": "Εξερευνήστε Δημόσια Δωμάτια", - "Send a Direct Message": "Στείλτε ένα άμεσο μήνυμα", - "Welcome %(name)s": "Καλώς όρισες %(name)s", - "Welcome to %(appName)s": "Καλώς ορίσατε στο %(appName)s", - "Now, let's help you get started": "Τώρα, ας σας βοηθήσουμε να ξεκινήσετε", - "Add a photo so people know it's you.": "Προσθέστε μια φωτογραφία για να σας αναγνωρίζουν οι άλλοι ευκολότερα.", "Attach files from chat or just drag and drop them anywhere in a room.": "Επισυνάψτε αρχεία από τη συνομιλία ή απλώς σύρετε και αποθέστε τα οπουδήποτε μέσα σε ένα δωμάτιο.", "No files visible in this room": "Δεν υπάρχουν αρχεία ορατά σε αυτό το δωμάτιο", "Couldn't load page": "Δεν ήταν δυνατή η φόρτωση της σελίδας", @@ -1892,44 +1861,6 @@ "Match system": "Ταίριασμα με του συστήματος", "Spanner": "Γερμανικό κλειδί", "%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "Το %(brand)s είναι πειραματικό σε πρόγραμμα περιήγησης για κινητά. Για καλύτερη εμπειρία και τις πιο πρόσφατες δυνατότητες, χρησιμοποιήστε τη δωρεάν εφαρμογή μας για κινητά.", - "Search (must be enabled)": "Αναζήτηση (πρέπει να είναι ενεργοποιημένη)", - "New line": "Νέα γραμμή", - "Activate selected button": "Ενεργοποίηση επιλεγμένου κουμπιού", - "Open user settings": "Άνοιγμα ρυθμίσεων χρήστη", - "Switch to space by number": "Εναλλαγή σε χώρο με αριθμό", - "Previous recently visited room or space": "Προηγούμενο δωμάτιο ή χώρος που επισκεφτήκατε πρόσφατα", - "Next recently visited room or space": "Επόμενο δωμάτιο ή χώρος που επισκεφτήκατε πρόσφατα", - "Redo edit": "Ακύρωση αναίρεσης επεξεργασίας", - "Undo edit": "Αναίρεση επεξεργασίας", - "Jump to last message": "Μετάβαση στο τελευταίο μήνυμα", - "Jump to first message": "Μετάβαση στο πρώτο μήνυμα", - "Previous autocomplete suggestion": "Προηγούμενη πρόταση αυτόματης συμπλήρωσης", - "Next autocomplete suggestion": "Επόμενη πρόταση αυτόματης συμπλήρωσης", - "Cancel autocomplete": "Ακύρωση αυτόματης συμπλήρωσης", - "Next unread room or DM": "Επόμενο μη αναγνωσμένο δωμάτιο ή ΑΜ", - "Previous room or DM": "Προηγούμενο δωμάτιο ή ΑΜ", - "Next room or DM": "Επόμενο δωμάτιο ή ΑΜ", - "Previous unread room or DM": "Προηγούμενο μη αναγνωσμένο δωμάτιο ή ΑΜ", - "Open this settings tab": "Άνοιγμα της καρτέλας ρυθμίσεων", - "Navigate up in the room list": "Πλοήγηση προς τα πάνω στη λίστα δωματίων", - "Navigate down in the room list": "Πλοήγηση προς τα κάτω στη λίστα δωματίων", - "Expand room list section": "Ανάπτυξη ενότητας λίστας δωματίων", - "Collapse room list section": "Σύμπτυξη ενότητας λίστας δωματίων", - "Select room from the room list": "Επιλέξτε δωμάτιο από τη λίστα δωματίων", - "Jump to room search": "Μετάβαση στην αναζήτηση δωματίων", - "Scroll down in the timeline": "Κύλιση προς τα κάτω στη γραμμή χρόνου", - "Scroll up in the timeline": "Κύλιση προς τα πάνω στη γραμμή χρόνου", - "Upload a file": "Μεταφόρτωση αρχείου", - "Toggle webcam on/off": "Ενεργοποίηση/απενεργοποίηση κάμερας web", - "Toggle microphone mute": "Εναλλαγή σίγασης μικροφώνου", - "Send a sticker": "Αποστολή αυτοκόλλητου", - "Navigate to previous message to edit": "Μετάβαση στο προηγούμενο μήνυμα για επεξεργασία", - "Navigate to next message to edit": "Μετάβαση στο επόμενο μήνυμα για επεξεργασία", - "Cancel replying to a message": "Ακύρωση απάντησης σε μήνυμα", - "Autocomplete": "Αυτόματη συμπλήρωση", - "Navigation": "Πλοήγηση", - "Room List": "Λίστα Δωματίων", - "Calls": "Κλήσεις", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s από %(totalRooms)s", "Indexed rooms:": "Ευρετηριασμένα δωμάτια:", "Indexed messages:": "Ευρετηριασμένα μηνύματα:", @@ -1971,12 +1902,6 @@ "Verify with Security Key or Phrase": "Επαλήθευση με Κλειδί Ασφαλείας ή Φράση Ασφαλείας", "Proceed with reset": "Προχωρήστε με την επαναφορά", "Create account": "Δημιουργία λογαριασμού", - "Registration Successful": "Επιτυχής Εγγραφή", - "Log in to your new account.": "Συνδεθείτε στον νέο σας λογαριασμό.", - "Continue with previous account": "Συνέχεια με τον προηγούμενο λογαριασμό", - "Already have an account? Sign in here": "Έχετε ήδη λογαριασμό; Συνδεθείτε εδώ", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Ή %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Συνέχεια με %(ssoButtons)s", "Someone already has that username, please try another.": "Κάποιος έχει ήδη αυτό το όνομα χρήστη, δοκιμάστε ένα άλλο.", "Registration has been disabled on this homeserver.": "Η εγγραφή έχει απενεργοποιηθεί σε αυτόν τον κεντρικό διακομιστή.", "Unable to query for supported registration methods.": "Αδυναμία λήψης των υποστηριζόμενων μεθόδων εγγραφής.", @@ -2041,7 +1966,6 @@ "Terms and Conditions": "Οροι και Προϋποθέσεις", "If you know what you're doing, Element is open-source, be sure to check out our GitHub (https://github.com/vector-im/element-web/) and contribute!": "Εάν ξέρετε τι κάνετε, το Element είναι ανοιχτού κώδικα, ανατρέξετε στο GitHub (https://github.com/vector-im/element-web/) και συνεισφέρετε!", "Open dial pad": "Άνοιγμα πληκτρολογίου κλήσης", - "Great, that'll help people know it's you": "Τέλεια, αυτό θα βοηθήσει άλλα άτομα να καταλάβουν ότι είστε εσείς", "Unnamed audio": "Ήχος χωρίς όνομα", "Use email or phone to optionally be discoverable by existing contacts.": "Χρησιμοποιήστε email ή τηλέφωνο για να είστε προαιρετικά ανιχνεύσιμος από υπάρχουσες επαφές.", "Use email to optionally be discoverable by existing contacts.": "Χρησιμοποιήστε email για να είστε προαιρετικά ανιχνεύσιμος από υπάρχουσες επαφές.", @@ -2134,13 +2058,6 @@ "Transfer": "Μεταφορά", "Sent": "Απεσταλμένα", "PRO TIP: If you start a bug, please submit debug logs to help us track down the problem.": "ΣΥΜΒΟΥΛΗ: Εάν αναφέρετε ένα σφάλμα, υποβάλετε αρχεία καταγραφής εντοπισμού σφαλμάτων για να μας βοηθήσετε να εντοπίσουμε το πρόβλημα.", - "Jump to oldest unread message": "Μετάβαση στο παλαιότερο μη αναγνωσμένο μήνυμα", - "Jump to end of the composer": "Μετάβαση στο τέλους του επεξεργαστή κειμένου", - "Jump to start of the composer": "Μετάβαση στην αρχή του επεξεργαστή κειμένου", - "Toggle Link": "Σύνδεσμος", - "Toggle Code Block": "Μπλοκ Κώδικα", - "Toggle Italics": "Πλάγια Γραφή", - "Toggle Bold": "Έντονη Γραφή", "Space used:": "Χώρος που χρησιμοποιείται:", "Not currently indexing messages for any room.": "Αυτήν τη στιγμή δεν υπάρχει ευρετηρίαση μηνυμάτων για κανένα δωμάτιο.", "If disabled, messages from encrypted rooms won't appear in search results.": "Εάν απενεργοποιηθεί, τα μηνύματα από κρυπτογραφημένα δωμάτια δε θα εμφανίζονται στα αποτελέσματα αναζήτησης.", @@ -2153,9 +2070,6 @@ "Failed to re-authenticate": "Απέτυχε ο εκ νέου έλεγχος ταυτότητας", "Resetting your verification keys cannot be undone. After resetting, you won't have access to old encrypted messages, and any friends who have previously verified you will see security warnings until you re-verify with them.": "Δεν είναι δυνατή η αναίρεση της επαναφοράς των κλειδιών επαλήθευσης. Μετά την επαναφορά, δε θα έχετε πρόσβαση σε παλιά κρυπτογραφημένα μηνύματα και όλοι οι φίλοι που σας έχουν προηγουμένως επαληθεύσει θα βλέπουν προειδοποιήσεις ασφαλείας μέχρι να επαληθεύσετε ξανά μαζί τους.", "It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.": "Φαίνεται ότι δε διαθέτετε Κλειδί Ασφαλείας ή άλλες συσκευές με τις οποίες μπορείτε να επαληθεύσετε. Αυτή η συσκευή δε θα έχει πρόσβαση σε παλιά κρυπτογραφημένα μηνύματα. Για να επαληθεύσετε την ταυτότητά σας σε αυτήν τη συσκευή, θα πρέπει να επαναφέρετε τα κλειδιά επαλήθευσης.", - "Decide where your account is hosted": "Αποφασίστε πού θα φιλοξενείται ο λογαριασμός σας", - "Host account on": "Φιλοξενία λογαριασμού στο", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Ο νέος λογαριασμός σας (%(newAccountId)s) έχει εγγραφεί, αλλά έχετε ήδη συνδεθεί με διαφορετικό λογαριασμό (%(loggedInUserId)s).", "General failure": "Γενική αποτυχία", "Failed to create initial space rooms": "Αποτυχία δημιουργίας των αρχικών δωματίων του χώρου", "You can't send any messages until you review and agree to our terms and conditions.": "Δεν μπορείτε να στείλετε μηνύματα μέχρι να ελέγξετε και να συμφωνήσετε με τους όρους και τις προϋποθέσεις μας.", @@ -2309,14 +2223,6 @@ "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Απαντήστε σε ένα νήμα εκτέλεσης που βρίσκεται σε εξέλιξη ή χρησιμοποιήστε το \"%(replyInThread)s\" όταν τοποθετείτε το δείκτη του ποντικιού πάνω από ένα μήνυμα για να ξεκινήσετε ένα νέο.", "Hold": "Αναμονή", "These are likely ones other room admins are a part of.": "Πιθανότατα αυτά είναι μέρος στα οποία συμμετέχουν και άλλοι διαχειριστές δωματίου.", - "Toggle hidden event visibility": "Εναλλαγή ορατότητας κρυφού συμβάντος", - "Toggle space panel": "Εναλλαγή πίνακα χώρου", - "Go to Home View": "Μεταβείτε στην Αρχική προβολή", - "Toggle right panel": "Εναλλαγή δεξιού πίνακα", - "Toggle the top left menu": "Εναλλάξτε το επάνω αριστερό μενού", - "Dismiss read marker and jump to bottom": "Παραβλέψτε το δείκτη ανάγνωσης και μεταβείτε στο τέλος", - "Navigate to previous message in composer history": "Πλοηγηθείτε στο προηγούμενο μήνυμα στο ιστορικό συνθέτη", - "Navigate to next message in composer history": "Πλοηγηθείτε στο επόμενο μήνυμα στο ιστορικό συνθέτη", "%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "Το %(brand)s αποθηκεύει με ασφάλεια κρυπτογραφημένα μηνύματα τοπικά για να εμφανίζονται στα αποτελέσματα αναζήτησης:", "If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Εάν δεν καταργήσατε τη μέθοδο ανάκτησης, ένας εισβολέας μπορεί να προσπαθεί να αποκτήσει πρόσβαση στον λογαριασμό σας. Αλλάξτε τον κωδικό πρόσβασης του λογαριασμού σας και ορίστε μια νέα μέθοδο ανάκτησης αμέσως στις Ρυθμίσεις.", "If you did this accidentally, you can setup Secure Messages on this session which will re-encrypt this session's message history with a new recovery method.": "Εάν το κάνατε κατά λάθος, μπορείτε να ρυθμίσετε τα Ασφαλή Μηνύματα σε αυτήν τη συνεδρία, τα οποία θα κρυπτογραφούν εκ νέου το ιστορικό μηνυμάτων αυτής της συνεδρίας με μια νέα μέθοδο ανάκτησης.", @@ -2345,10 +2251,7 @@ "Thumbs up": "Μπράβο", "Message downloading sleep time(ms)": "Χρόνος αδράνειας λήψης μηνύματος (ms)", "Identity server URL does not appear to be a valid identity server": "Η διεύθυνση URL διακομιστή ταυτοποίησης δε φαίνεται να είναι έγκυρη", - "Toggle Quote": "Εναλλαγή Παράθεσης", "Currently indexing: %(currentRoom)s": "Γίνεται ευρετηρίαση: %(currentRoom)s", - "Force complete": "Εξαναγκασμός ολοκλήρωσης", - "Close dialog or context menu": "Κλείσιμο διαλόγου ή μενού περιβάλλοντος", "Close sidebar": "Κλείσιμο πλαϊνής γραμμής", "View List": "Προβολή Λίστας", "View list": "Προβολή λίστας", @@ -2638,7 +2541,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[αριθμός]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Κλήσεις", + "category_room_list": "Λίστα Δωματίων", + "category_navigation": "Πλοήγηση", + "category_autocomplete": "Αυτόματη συμπλήρωση", + "composer_toggle_bold": "Έντονη Γραφή", + "composer_toggle_italics": "Πλάγια Γραφή", + "composer_toggle_quote": "Εναλλαγή Παράθεσης", + "composer_toggle_code_block": "Μπλοκ Κώδικα", + "composer_toggle_link": "Σύνδεσμος", + "cancel_reply": "Ακύρωση απάντησης σε μήνυμα", + "navigate_next_message_edit": "Μετάβαση στο επόμενο μήνυμα για επεξεργασία", + "navigate_prev_message_edit": "Μετάβαση στο προηγούμενο μήνυμα για επεξεργασία", + "composer_jump_start": "Μετάβαση στην αρχή του επεξεργαστή κειμένου", + "composer_jump_end": "Μετάβαση στο τέλους του επεξεργαστή κειμένου", + "composer_navigate_next_history": "Πλοηγηθείτε στο επόμενο μήνυμα στο ιστορικό συνθέτη", + "composer_navigate_prev_history": "Πλοηγηθείτε στο προηγούμενο μήνυμα στο ιστορικό συνθέτη", + "send_sticker": "Αποστολή αυτοκόλλητου", + "toggle_microphone_mute": "Εναλλαγή σίγασης μικροφώνου", + "toggle_webcam_mute": "Ενεργοποίηση/απενεργοποίηση κάμερας web", + "dismiss_read_marker_and_jump_bottom": "Παραβλέψτε το δείκτη ανάγνωσης και μεταβείτε στο τέλος", + "jump_to_read_marker": "Μετάβαση στο παλαιότερο μη αναγνωσμένο μήνυμα", + "upload_file": "Μεταφόρτωση αρχείου", + "scroll_up_timeline": "Κύλιση προς τα πάνω στη γραμμή χρόνου", + "scroll_down_timeline": "Κύλιση προς τα κάτω στη γραμμή χρόνου", + "jump_room_search": "Μετάβαση στην αναζήτηση δωματίων", + "room_list_select_room": "Επιλέξτε δωμάτιο από τη λίστα δωματίων", + "room_list_collapse_section": "Σύμπτυξη ενότητας λίστας δωματίων", + "room_list_expand_section": "Ανάπτυξη ενότητας λίστας δωματίων", + "room_list_navigate_down": "Πλοήγηση προς τα κάτω στη λίστα δωματίων", + "room_list_navigate_up": "Πλοήγηση προς τα πάνω στη λίστα δωματίων", + "toggle_top_left_menu": "Εναλλάξτε το επάνω αριστερό μενού", + "toggle_right_panel": "Εναλλαγή δεξιού πίνακα", + "keyboard_shortcuts_tab": "Άνοιγμα της καρτέλας ρυθμίσεων", + "go_home_view": "Μεταβείτε στην Αρχική προβολή", + "next_unread_room": "Επόμενο μη αναγνωσμένο δωμάτιο ή ΑΜ", + "prev_unread_room": "Προηγούμενο μη αναγνωσμένο δωμάτιο ή ΑΜ", + "next_room": "Επόμενο δωμάτιο ή ΑΜ", + "prev_room": "Προηγούμενο δωμάτιο ή ΑΜ", + "autocomplete_cancel": "Ακύρωση αυτόματης συμπλήρωσης", + "autocomplete_navigate_next": "Επόμενη πρόταση αυτόματης συμπλήρωσης", + "autocomplete_navigate_prev": "Προηγούμενη πρόταση αυτόματης συμπλήρωσης", + "toggle_space_panel": "Εναλλαγή πίνακα χώρου", + "toggle_hidden_events": "Εναλλαγή ορατότητας κρυφού συμβάντος", + "jump_first_message": "Μετάβαση στο πρώτο μήνυμα", + "jump_last_message": "Μετάβαση στο τελευταίο μήνυμα", + "composer_undo": "Αναίρεση επεξεργασίας", + "composer_redo": "Ακύρωση αναίρεσης επεξεργασίας", + "navigate_prev_history": "Προηγούμενο δωμάτιο ή χώρος που επισκεφτήκατε πρόσφατα", + "navigate_next_history": "Επόμενο δωμάτιο ή χώρος που επισκεφτήκατε πρόσφατα", + "switch_to_space": "Εναλλαγή σε χώρο με αριθμό", + "open_user_settings": "Άνοιγμα ρυθμίσεων χρήστη", + "close_dialog_menu": "Κλείσιμο διαλόγου ή μενού περιβάλλοντος", + "activate_button": "Ενεργοποίηση επιλεγμένου κουμπιού", + "composer_new_line": "Νέα γραμμή", + "autocomplete_force": "Εξαναγκασμός ολοκλήρωσης", + "search": "Αναζήτηση (πρέπει να είναι ενεργοποιημένη)" }, "composer": { "format_bold": "Έντονα", @@ -3213,7 +3172,21 @@ "category_admin": "Διαχειριστής", "category_advanced": "Προχωρημένες", "category_effects": "Εφέ", - "category_other": "Άλλα" + "category_other": "Άλλα", + "addwidget_missing_url": "Παρακαλώ εισάγετε ένα widget URL ή ενσωματώστε κώδικα", + "addwidget_invalid_protocol": "Παρακαλώ εισάγετε ένα widget URL με https:// ή http://", + "addwidget_no_permissions": "Δεν μπορείτε να τροποποιήσετε μικροεφαρμογές σε αυτό το δωμάτιο.", + "converttodm": "Μετατρέπει το δωμάτιο σε προσωπική συνομιλία", + "converttoroom": "Μετατρέπει την προσωπική συνομιλία σε δωμάτιο", + "discardsession": "Επιβάλλει την τρέχουσα εξερχόμενη ομαδική συνεδρία σε κρυπτογραφημένο δωμάτιο για απόρριψη", + "tovirtual": "Μεταβαίνει στο εικονικό δωμάτιο αυτού του δωματίου, εάν υπάρχει", + "tovirtual_not_found": "Δεν υπάρχει εικονικό δωμάτιο για αυτό το δωμάτιο", + "query": "Ανοίγει την συνομιλία με τον δοσμένο χρήστη", + "query_not_found_phone_number": "Δεν είναι δυνατή η εύρεση του αναγνωριστικού Matrix για τον αριθμό τηλεφώνου", + "holdcall": "Βάζει την κλήση στο τρέχον δωμάτιο σε αναμονή", + "no_active_call": "Δεν υπάρχει ενεργή κλήση σε αυτό το δωμάτιο", + "unholdcall": "Επαναφέρει την κλήση στο τρέχον δωμάτιο από την αναμονή", + "me": "Εμφανίζει την ενέργεια" }, "presence": { "busy": "Απασχολημένος", @@ -3379,7 +3352,16 @@ "auth": { "continue_with_idp": "Συνεχίστε με %(provider)s", "sign_in_with_sso": "Συνδεθείτε με απλή σύνδεση", - "sso": "Single Sign On" + "sso": "Single Sign On", + "continue_with_sso": "Συνέχεια με %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Ή %(usernamePassword)s", + "sign_in_instead": "Έχετε ήδη λογαριασμό; Συνδεθείτε εδώ", + "account_clash": "Ο νέος λογαριασμός σας (%(newAccountId)s) έχει εγγραφεί, αλλά έχετε ήδη συνδεθεί με διαφορετικό λογαριασμό (%(loggedInUserId)s).", + "account_clash_previous_account": "Συνέχεια με τον προηγούμενο λογαριασμό", + "log_in_new_account": "Συνδεθείτε στον νέο σας λογαριασμό.", + "registration_successful": "Επιτυχής Εγγραφή", + "server_picker_title": "Φιλοξενία λογαριασμού στο", + "server_picker_dialog_title": "Αποφασίστε πού θα φιλοξενείται ο λογαριασμός σας" }, "room_list": { "sort_unread_first": "Εμφάνιση δωματίων με μη αναγνωσμένα μηνύματα πρώτα", @@ -3410,5 +3392,29 @@ "report_entire_room": "Αναφορά ολόκληρου του δωματίου", "report_content_to_homeserver": "Αναφορά Περιεχομένου στον Διαχειριστή του Διακομιστή σας", "description": "Η αναφορά αυτού του μηνύματος θα στείλει το μοναδικό «αναγνωριστικό συμβάντος» στον διαχειριστή του διακομιστή σας. Εάν τα μηνύματα σε αυτό το δωμάτιο είναι κρυπτογραφημένα, ο διαχειριστής του διακομιστή σας δε θα μπορεί να διαβάσει το κείμενο του μηνύματος ή να προβάλει αρχεία και εικόνες." + }, + "onboarding": { + "has_avatar_label": "Τέλεια, αυτό θα βοηθήσει άλλα άτομα να καταλάβουν ότι είστε εσείς", + "no_avatar_label": "Προσθέστε μια φωτογραφία για να σας αναγνωρίζουν οι άλλοι ευκολότερα.", + "welcome_user": "Καλώς όρισες %(name)s", + "welcome_detail": "Τώρα, ας σας βοηθήσουμε να ξεκινήσετε", + "intro_welcome": "Καλώς ορίσατε στο %(appName)s", + "intro_byline": "Οι συνομιλίες σας ανήκουν σε εσάς.", + "send_dm": "Στείλτε ένα άμεσο μήνυμα", + "explore_rooms": "Εξερευνήστε Δημόσια Δωμάτια", + "create_room": "Δημιουργήστε μια Ομαδική Συνομιλία" + }, + "setting": { + "help_about": { + "brand_version": "Έκδοση %(brand)s:", + "olm_version": "Έκδοση Olm:", + "help_link": "Για βοήθεια σχετικά με τη χρήση του %(brand)s, κάντε κλικ εδώ.", + "help_link_chat_bot": "Για βοήθεια σχετικά με τη χρήση του %(brand)s, κάντε κλικ εδώ ή ξεκινήστε μια συνομιλία με το bot μας χρησιμοποιώντας το παρακάτω κουμπί.", + "chat_bot": "Συνομιλία με το %(brand)s Bot", + "title": "Βοήθεια & Σχετικά", + "versions": "Εκδόσεις", + "access_token_detail": "Το διακριτικό πρόσβασής σας παρέχει πλήρη πρόσβαση στον λογαριασμό σας. Μην το μοιραστείτε με κανέναν.", + "clear_cache_reload": "Εκκαθάριση προσωρινής μνήμης και επαναφόρτωση" + } } } diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index e470dc2543..3511f38b58 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -10,7 +10,16 @@ "continue_with_idp": "Continue with %(provider)s", "sign_in_with_sso": "Sign in with single sign-on", "reset_password_action": "Reset password", - "reset_password_title": "Reset your password" + "reset_password_title": "Reset your password", + "continue_with_sso": "Continue with %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Or %(usernamePassword)s", + "sign_in_instead": "Already have an account? Sign in here", + "account_clash": "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).", + "account_clash_previous_account": "Continue with previous account", + "log_in_new_account": "Log in to your new account.", + "registration_successful": "Registration Successful", + "server_picker_title": "Host account on", + "server_picker_dialog_title": "Decide where your account is hosted" }, "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.", @@ -409,12 +418,29 @@ "unignore": "Stops ignoring a user, showing their messages going forward", "devtools": "Opens the Developer Tools dialog", "addwidget": "Adds a custom widget by URL to the room", + "addwidget_missing_url": "Please supply a widget URL or embed code", + "addwidget_iframe_missing_src": "iframe has no src attribute", + "addwidget_invalid_protocol": "Please supply a https:// or http:// widget URL", + "addwidget_no_permissions": "You cannot modify widgets in this room.", + "discardsession": "Forces the current outbound group session in an encrypted room to be discarded", + "remakeolm": "Developer command: Discards the current outbound group session and sets up new Olm sessions", "rainbow": "Sends the given message coloured as a rainbow", "rainbowme": "Sends the given emote coloured as a rainbow", "help": "Displays list of commands with usages and descriptions", "whois": "Displays information about a user", "rageshake": "Send a bug report with logs", + "tovirtual": "Switches to this room's virtual room, if it has one", + "tovirtual_not_found": "No virtual room for this room", + "query": "Opens chat with the given user", + "query_not_found_phone_number": "Unable to find Matrix ID for phone number", "msg": "Sends a message to the given user", + "holdcall": "Places the call in the current room on hold", + "no_active_call": "No active call in this room", + "unholdcall": "Takes the call in the current room off hold", + "converttodm": "Converts the room to a DM", + "could_not_find_room": "Could not find room", + "converttoroom": "Converts the DM to a room", + "me": "Displays action", "usage": "Usage", "category_messages": "Messages", "category_actions": "Actions", @@ -432,10 +458,6 @@ "You are now ignoring %(userId)s": "You are now ignoring %(userId)s", "Unignored user": "Unignored user", "You are no longer ignoring %(userId)s": "You are no longer ignoring %(userId)s", - "Please supply a widget URL or embed code": "Please supply a widget URL or embed code", - "iframe has no src attribute": "iframe has no src attribute", - "Please supply a https:// or http:// widget URL": "Please supply a https:// or http:// widget URL", - "You cannot modify widgets in this room.": "You cannot modify widgets in this room.", "Verifies a user, session, and pubkey tuple": "Verifies a user, session, and pubkey tuple", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)", "Session already verified!": "Session already verified!", @@ -443,19 +465,6 @@ "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!": "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!", "Verified key": "Verified key", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.", - "Forces the current outbound group session in an encrypted room to be discarded": "Forces the current outbound group session in an encrypted room to be discarded", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Developer command: Discards the current outbound group session and sets up new Olm sessions", - "Switches to this room's virtual room, if it has one": "Switches to this room's virtual room, if it has one", - "No virtual room for this room": "No virtual room for this room", - "Opens chat with the given user": "Opens chat with the given user", - "Unable to find Matrix ID for phone number": "Unable to find Matrix ID for phone number", - "Places the call in the current room on hold": "Places the call in the current room on hold", - "No active call in this room": "No active call in this room", - "Takes the call in the current room off hold": "Takes the call in the current room off hold", - "Converts the room to a DM": "Converts the room to a DM", - "Could not find room": "Could not find room", - "Converts the DM to a room": "Converts the DM to a room", - "Displays action": "Displays action", "timeline": { "m.call": { "video_call_started": "Video call started in %(roomName)s.", @@ -1343,7 +1352,16 @@ "download_google_play": "Get it on Google Play", "download_f_droid": "Get it on F-Droid", "apple_trademarks": "App Store® and the Apple logo® are trademarks of Apple Inc.", - "google_trademarks": "Google Play and the Google Play logo are trademarks of Google LLC." + "google_trademarks": "Google Play and the Google Play logo are trademarks of Google LLC.", + "has_avatar_label": "Great, that'll help people know it's you", + "no_avatar_label": "Add a photo so people know it's you.", + "welcome_user": "Welcome %(name)s", + "welcome_detail": "Now, let's help you get started", + "intro_welcome": "Welcome to %(appName)s", + "intro_byline": "Own your conversations.", + "send_dm": "Send a Direct Message", + "explore_rooms": "Explore Public Rooms", + "create_room": "Create a Group Chat" }, "Ongoing call": "Ongoing call", "You do not have permission to start video calls": "You do not have permission to start video calls", @@ -1661,22 +1679,26 @@ "Deactivating your account is a permanent action — be careful!": "Deactivating your account is a permanent action — be careful!", "Deactivate Account": "Deactivate Account", "Discovery": "Discovery", - "%(brand)s version:": "%(brand)s version:", - "Olm version:": "Olm version:", + "setting": { + "help_about": { + "brand_version": "%(brand)s version:", + "olm_version": "Olm version:", + "help_link": "For help with using %(brand)s, click here.", + "help_link_chat_bot": "For help with using %(brand)s, click here or start a chat with our bot using the button below.", + "chat_bot": "Chat with %(brand)s Bot", + "title": "Help & About", + "versions": "Versions", + "homeserver": "Homeserver is %(homeserverUrl)s", + "identity_server": "Identity server is %(identityServerUrl)s", + "access_token_detail": "Your access token gives full access to your account. Do not share it with anyone.", + "clear_cache_reload": "Clear cache and reload" + } + }, "credits": { "default_cover_photo": "The default cover photo is © Jesús Roncero used under the terms of CC-BY-SA 4.0.", "twemoji_colr": "The twemoji-colr font is © Mozilla Foundation used under the terms of Apache 2.0.", "twemoji": "The Twemoji emoji art is © Twitter, Inc and other contributors used under the terms of CC-BY 4.0." }, - "For help with using %(brand)s, click here.": "For help with using %(brand)s, click here.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "For help with using %(brand)s, click here or start a chat with our bot using the button below.", - "Chat with %(brand)s Bot": "Chat with %(brand)s Bot", - "Help & About": "Help & About", - "Versions": "Versions", - "Homeserver is %(homeserverUrl)s": "Homeserver is %(homeserverUrl)s", - "Identity server is %(identityServerUrl)s": "Identity server is %(identityServerUrl)s", - "Your access token gives full access to your account. Do not share it with anyone.": "Your access token gives full access to your account. Do not share it with anyone.", - "Clear cache and reload": "Clear cache and reload", "Keyboard": "Keyboard", "Upcoming features": "Upcoming features", "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.": "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.", @@ -2665,7 +2687,63 @@ "alt": "Alt", "control": "Ctrl", "shift": "Shift", - "number": "[number]" + "number": "[number]", + "category_calls": "Calls", + "category_room_list": "Room List", + "category_navigation": "Navigation", + "category_autocomplete": "Autocomplete", + "composer_toggle_bold": "Toggle Bold", + "composer_toggle_italics": "Toggle Italics", + "composer_toggle_quote": "Toggle Quote", + "composer_toggle_code_block": "Toggle Code Block", + "composer_toggle_link": "Toggle Link", + "cancel_reply": "Cancel replying to a message", + "navigate_next_message_edit": "Navigate to next message to edit", + "navigate_prev_message_edit": "Navigate to previous message to edit", + "composer_jump_start": "Jump to start of the composer", + "composer_jump_end": "Jump to end of the composer", + "composer_navigate_next_history": "Navigate to next message in composer history", + "composer_navigate_prev_history": "Navigate to previous message in composer history", + "send_sticker": "Send a sticker", + "toggle_microphone_mute": "Toggle microphone mute", + "toggle_webcam_mute": "Toggle webcam on/off", + "dismiss_read_marker_and_jump_bottom": "Dismiss read marker and jump to bottom", + "jump_to_read_marker": "Jump to oldest unread message", + "upload_file": "Upload a file", + "scroll_up_timeline": "Scroll up in the timeline", + "scroll_down_timeline": "Scroll down in the timeline", + "jump_room_search": "Jump to room search", + "room_list_select_room": "Select room from the room list", + "room_list_collapse_section": "Collapse room list section", + "room_list_expand_section": "Expand room list section", + "room_list_navigate_down": "Navigate down in the room list", + "room_list_navigate_up": "Navigate up in the room list", + "toggle_top_left_menu": "Toggle the top left menu", + "toggle_right_panel": "Toggle right panel", + "keyboard_shortcuts_tab": "Open this settings tab", + "go_home_view": "Go to Home View", + "next_unread_room": "Next unread room or DM", + "prev_unread_room": "Previous unread room or DM", + "next_room": "Next room or DM", + "prev_room": "Previous room or DM", + "autocomplete_cancel": "Cancel autocomplete", + "autocomplete_navigate_next": "Next autocomplete suggestion", + "autocomplete_navigate_prev": "Previous autocomplete suggestion", + "toggle_space_panel": "Toggle space panel", + "toggle_hidden_events": "Toggle hidden event visibility", + "jump_first_message": "Jump to first message", + "jump_last_message": "Jump to last message", + "composer_undo": "Undo edit", + "composer_redo": "Redo edit", + "navigate_prev_history": "Previous recently visited room or space", + "navigate_next_history": "Next recently visited room or space", + "switch_to_space": "Switch to space by number", + "open_user_settings": "Open user settings", + "close_dialog_menu": "Close dialog or context menu", + "activate_button": "Activate selected button", + "composer_new_line": "New line", + "autocomplete_force": "Force complete", + "search": "Search (must be enabled)" }, "Something went wrong!": "Something went wrong!", "Image view": "Image view", @@ -3417,15 +3495,6 @@ "You must join the room to see its files": "You must join the room to see its files", "No files visible in this room": "No files visible in this room", "Attach files from chat or just drag and drop them anywhere in a room.": "Attach files from chat or just drag and drop them anywhere in a room.", - "Great, that'll help people know it's you": "Great, that'll help people know it's you", - "Add a photo so people know it's you.": "Add a photo so people know it's you.", - "Welcome %(name)s": "Welcome %(name)s", - "Now, let's help you get started": "Now, let's help you get started", - "Welcome to %(appName)s": "Welcome to %(appName)s", - "Own your conversations.": "Own your conversations.", - "Send a Direct Message": "Send a Direct Message", - "Explore Public Rooms": "Explore Public Rooms", - "Create a Group Chat": "Create a Group Chat", "Open dial pad": "Open dial pad", "Wait!": "Wait!", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!", @@ -3581,15 +3650,6 @@ "This server does not support authentication with a phone number.": "This server does not support authentication with a phone number.", "Someone already has that username, please try another.": "Someone already has that username, please try another.", "That e-mail address or phone number is already in use.": "That e-mail address or phone number is already in use.", - "Continue with %(ssoButtons)s": "Continue with %(ssoButtons)s", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Or %(usernamePassword)s", - "Already have an account? Sign in here": "Already have an account? Sign in here", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).", - "Continue with previous account": "Continue with previous account", - "Log in to your new account.": "Log in to your new account.", - "Registration Successful": "Registration Successful", - "Host account on": "Host account on", - "Decide where your account is hosted": "Decide where your account is hosted", "%(brand)s has been opened in another tab.": "%(brand)s has been opened in another tab.", "It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.": "It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.", "Proceed with reset": "Proceed with reset", @@ -3703,61 +3763,5 @@ "Message downloading sleep time(ms)": "Message downloading sleep time(ms)", "Failed to set direct message tag": "Failed to set direct message tag", "Failed to remove tag %(tagName)s from room": "Failed to remove tag %(tagName)s from room", - "Failed to add tag %(tagName)s to room": "Failed to add tag %(tagName)s to room", - "Calls": "Calls", - "Room List": "Room List", - "Navigation": "Navigation", - "Autocomplete": "Autocomplete", - "Toggle Bold": "Toggle Bold", - "Toggle Italics": "Toggle Italics", - "Toggle Quote": "Toggle Quote", - "Toggle Code Block": "Toggle Code Block", - "Toggle Link": "Toggle Link", - "Cancel replying to a message": "Cancel replying to a message", - "Navigate to next message to edit": "Navigate to next message to edit", - "Navigate to previous message to edit": "Navigate to previous message to edit", - "Jump to start of the composer": "Jump to start of the composer", - "Jump to end of the composer": "Jump to end of the composer", - "Navigate to next message in composer history": "Navigate to next message in composer history", - "Navigate to previous message in composer history": "Navigate to previous message in composer history", - "Send a sticker": "Send a sticker", - "Toggle microphone mute": "Toggle microphone mute", - "Toggle webcam on/off": "Toggle webcam on/off", - "Dismiss read marker and jump to bottom": "Dismiss read marker and jump to bottom", - "Jump to oldest unread message": "Jump to oldest unread message", - "Upload a file": "Upload a file", - "Scroll up in the timeline": "Scroll up in the timeline", - "Scroll down in the timeline": "Scroll down in the timeline", - "Jump to room search": "Jump to room search", - "Select room from the room list": "Select room from the room list", - "Collapse room list section": "Collapse room list section", - "Expand room list section": "Expand room list section", - "Navigate down in the room list": "Navigate down in the room list", - "Navigate up in the room list": "Navigate up in the room list", - "Toggle the top left menu": "Toggle the top left menu", - "Toggle right panel": "Toggle right panel", - "Open this settings tab": "Open this settings tab", - "Go to Home View": "Go to Home View", - "Next unread room or DM": "Next unread room or DM", - "Previous unread room or DM": "Previous unread room or DM", - "Next room or DM": "Next room or DM", - "Previous room or DM": "Previous room or DM", - "Cancel autocomplete": "Cancel autocomplete", - "Next autocomplete suggestion": "Next autocomplete suggestion", - "Previous autocomplete suggestion": "Previous autocomplete suggestion", - "Toggle space panel": "Toggle space panel", - "Toggle hidden event visibility": "Toggle hidden event visibility", - "Jump to first message": "Jump to first message", - "Jump to last message": "Jump to last message", - "Undo edit": "Undo edit", - "Redo edit": "Redo edit", - "Previous recently visited room or space": "Previous recently visited room or space", - "Next recently visited room or space": "Next recently visited room or space", - "Switch to space by number": "Switch to space by number", - "Open user settings": "Open user settings", - "Close dialog or context menu": "Close dialog or context menu", - "Activate selected button": "Activate selected button", - "New line": "New line", - "Force complete": "Force complete", - "Search (must be enabled)": "Search (must be enabled)" + "Failed to add tag %(tagName)s to room": "Failed to add tag %(tagName)s to room" } diff --git a/src/i18n/strings/en_US.json b/src/i18n/strings/en_US.json index f983d456ed..9f83575594 100644 --- a/src/i18n/strings/en_US.json +++ b/src/i18n/strings/en_US.json @@ -33,7 +33,6 @@ "Deops user with given id": "Deops user with given id", "Default": "Default", "Delete widget": "Delete widget", - "Displays action": "Displays action", "Download %(text)s": "Download %(text)s", "Email": "Email", "Email address": "Email address", @@ -96,7 +95,6 @@ "Return to login screen": "Return to login screen", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s does not have permission to send you notifications - please check your browser settings", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s was not given permission to send notifications - please try again", - "%(brand)s version:": "%(brand)s version:", "Room %(roomId)s not visible": "Room %(roomId)s not visible", "Rooms": "Rooms", "Search failed": "Search failed", @@ -262,7 +260,6 @@ "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s", "Restricted": "Restricted", "Missing roomId.": "Missing roomId.", - "Forces the current outbound group session in an encrypted room to be discarded": "Forces the current outbound group session in an encrypted room to be discarded", "Spanner": "Wrench", "Aeroplane": "Airplane", "Cat": "Cat", @@ -271,8 +268,6 @@ "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "The file '%(fileName)s' exceeds this homeserver's size limit for uploads", "The server does not support the room version specified.": "The server does not support the room version specified.", "Unable to load! Check your network connectivity and try again.": "Unable to load! Check your network connectivity and try again.", - "Please supply a https:// or http:// widget URL": "Please supply an https:// or http:// widget URL", - "You cannot modify widgets in this room.": "You cannot modify widgets in this room.", "Your %(brand)s is misconfigured": "Your %(brand)s is misconfigured", "Call failed due to misconfigured server": "Call failed due to misconfigured server", "Please ask the administrator of your homeserver (%(homeserverDomain)s) to configure a TURN server in order for calls to work reliably.": "Please ask the administrator of your homeserver (%(homeserverDomain)s) to configure a TURN server in order for calls to work reliably.", @@ -486,7 +481,11 @@ "category_actions": "Actions", "category_admin": "Admin", "category_advanced": "Advanced", - "category_other": "Other" + "category_other": "Other", + "addwidget_invalid_protocol": "Please supply an https:// or http:// widget URL", + "addwidget_no_permissions": "You cannot modify widgets in this room.", + "discardsession": "Forces the current outbound group session in an encrypted room to be discarded", + "me": "Displays action" }, "presence": { "online": "Online", @@ -519,5 +518,10 @@ }, "export_chat": { "messages": "Messages" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s version:" + } } } diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index 67a3162783..4fad725c23 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -232,7 +232,6 @@ "Notifications": "Sciigoj", "Profile": "Profilo", "Account": "Konto", - "%(brand)s version:": "versio de %(brand)s:", "The email address linked to your account must be entered.": "Vi devas enigi retpoŝtadreson ligitan al via konto.", "A new password must be entered.": "Vi devas enigi novan pasvorton.", "New passwords must match each other.": "Novaj pasvortoj devas akordi.", @@ -241,7 +240,6 @@ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Hejmservilo ne alkonekteblas per HTTP kun HTTPS URL en via adresbreto. Aŭ uzu HTTPS aŭ ŝaltu malsekurajn skriptojn.", "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.": "Ne eblas konekti al hejmservilo – bonvolu kontroli vian konekton, certigi ke la SSL-atestilo de via hejmservilo estas fidata, kaj ke neniu foliumila kromprogramo blokas petojn.", "This server does not support authentication with a phone number.": "Ĉi tiu servilo ne subtenas aŭtentikigon per telefona numero.", - "Displays action": "Montras agon", "Define the power level of a user": "Difini la povnivelon de uzanto", "Deops user with given id": "Senestrigas uzanton kun donita identigilo", "Commands": "Komandoj", @@ -401,11 +399,6 @@ "Display Name": "Vidiga nomo", "Email addresses": "Retpoŝtadresoj", "Phone numbers": "Telefonnumeroj", - "For help with using %(brand)s, click here.": "Por helpo pri uzado de %(brand)s, klaku ĉi tien.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Por helpo pri uzado de %(brand)s, klaku ĉi tien aŭ komencu babilon kun nia roboto per la butono sube.", - "Chat with %(brand)s Bot": "Babilu kun la roboto %(brand)s Bot", - "Help & About": "Helpo kaj Prio", - "Versions": "Versioj", "Composer": "Komponilo", "Room list": "Ĉambrolisto", "Ignored users": "Malatentaj uzantoj", @@ -444,7 +437,6 @@ "Set up": "Agordi", "The file '%(fileName)s' failed to upload.": "Malsukcesis alŝuti dosieron « %(fileName)s ».", "The server does not support the room version specified.": "La servilo ne subtenas la donitan ĉambran version.", - "Please supply a https:// or http:// widget URL": "Bonvolu doni URL-on de fenestraĵo kun https:// aŭ http://", "Unrecognised address": "Nerekonita adreso", "The user must be unbanned before they can be invited.": "Necesas malforbari ĉi tiun uzanton antaŭ ol ĝin inviti.", "The user's homeserver does not support the version of the room.": "Hejmservilo de ĉi tiu uzanto ne subtenas la version de la ĉambro.", @@ -559,12 +551,6 @@ "This homeserver does not support login using email address.": "Ĉi tiu hejmservilo ne subtenas saluton per retpoŝtadreso.", "Registration has been disabled on this homeserver.": "Registriĝoj malŝaltiĝis sur ĉi tiu hejmservilo.", "Unable to query for supported registration methods.": "Ne povas peti subtenatajn registrajn metodojn.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Via nova konto (%(newAccountId)s) estas registrita, sed vi jam salutis per alia konto (%(loggedInUserId)s).", - "Continue with previous account": "Daŭrigi per antaŭa konto", - "Log in to your new account.": "Saluti per via nova konto.", - "Registration Successful": "Registro sukcesis", - "You cannot modify widgets in this room.": "Vi ne rajtas modifi fenestraĵojn en ĉi tiu ĉambro.", - "Forces the current outbound group session in an encrypted room to be discarded": "Devigas la aktualan eliran grupan salutaĵon en ĉifrita ĉambro forĵetiĝi", "Cannot reach homeserver": "Ne povas atingi hejmservilon", "Ensure you have a stable internet connection, or get in touch with the server admin": "Certiĝu ke vi havas stabilan retkonekton, aŭ kontaktu la administranton de la servilo", "Ask your %(brand)s admin to check your config for incorrect or duplicate entries.": "Petu vian %(brand)s-administranton kontroli vian agordaron je malĝustaj aŭ duoblaj eroj.", @@ -741,7 +727,6 @@ "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "kontrolu kromprogramojn de via foliumilo je ĉio, kio povus malhelpi konekton al la identiga servilo (ekzemple « Privacy Badger »)", "contact the administrators of identity server ": "kontaktu la administrantojn de la identiga servilo ", "wait and try again later": "atendu, kaj reprovu poste", - "Clear cache and reload": "Vakigi kaŝmemoron kaj relegi", "Read Marker lifetime (ms)": "Vivodaŭro de legomarko (ms)", "Read Marker off-screen lifetime (ms)": "Vivodaŭro de eksterekrana legomarko (ms)", "Unable to revoke sharing for email address": "Ne povas senvalidigi havigadon je retpoŝtadreso", @@ -1022,24 +1007,6 @@ "Confirm by comparing the following with the User Settings in your other session:": "Konfirmu per komparo de la sekva kun la agardoj de uzanto en via alia salutaĵo:", "Confirm this user's session by comparing the following with their User Settings:": "Konfirmu la salutaĵon de ĉi tiu uzanto per komparo de la sekva kun ĝiaj agordoj de uzanto:", "If they don't match, the security of your communication may be compromised.": "Se ili ne akordas, la sekureco de via komunikado eble estas rompita.", - "Navigation": "Navigacio", - "Calls": "Vokoj", - "Room List": "Listo de ĉambroj", - "Autocomplete": "Memkompletigo", - "Toggle Bold": "Ŝalti grason", - "Toggle Italics": "Ŝalti kursivon", - "Toggle Quote": "Ŝalti citaĵon", - "New line": "Nova linio", - "Toggle microphone mute": "Baskuligi silentigon de mikrofono", - "Jump to room search": "Salti al serĉo de ĉambroj", - "Select room from the room list": "Elekti ĉambron el la listo de ĉambroj", - "Collapse room list section": "Maletendi parton kun listo de ĉambroj", - "Expand room list section": "Etendi parton kun listo de ĉambroj", - "Toggle the top left menu": "Baskuligi la supran maldekstran menuon", - "Close dialog or context menu": "Fermi interagujon aŭ kuntekstan menuon", - "Activate selected button": "Aktivigi la elektitan butonon", - "Toggle right panel": "Baskuligi la dekstran panelon", - "Cancel autocomplete": "Nuligi memkompletigon", "Manually verify all remote sessions": "Permane kontroli ĉiujn forajn salutaĵojn", "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Unuope kontroli ĉiun salutaĵon de uzanto por marki ĝin fidata, ne fidante delege subskribitajn aparatojn.", "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "En ĉifritaj ĉambroj, viaj mesaĝoj estas sekurigitaj, kaj nur vi kaj la ricevanto havas la unikajn malĉifrajn ŝlosilojn.", @@ -1054,7 +1021,6 @@ "New login. Was this you?": "Nova saluto. Ĉu tio estis vi?", "%(name)s is requesting verification": "%(name)s petas kontrolon", "Could not find user in room": "Ne povis trovi uzanton en ĉambro", - "Please supply a widget URL or embed code": "Bonvolu provizi URL-on al fenestraĵo aŭ enkorpigi kodon", "You signed in to a new session without verifying it:": "Vi salutis novan salutaĵon sen kontrolo:", "Verify your other session using one of the options below.": "Kontrolu vian alian salutaĵon per unu el la ĉi-subaj elektebloj.", "well formed": "bone formita", @@ -1082,24 +1048,15 @@ "Keys restored": "Ŝlosiloj rehaviĝis", "Successfully restored %(sessionCount)s keys": "Sukcese rehavis %(sessionCount)s ŝlosilojn", "Sign in with SSO": "Saluti per ununura saluto", - "Welcome to %(appName)s": "Bonvenu al %(appName)s", - "Send a Direct Message": "Sendi rektan mesaĝon", - "Explore Public Rooms": "Esplori publikajn ĉambrojn", - "Create a Group Chat": "Krei grupan babilon", "If you've joined lots of rooms, this might take a while": "Se vi aliĝis al multaj ĉambroj, tio povas daŭri longe", "Unable to query secret storage status": "Ne povis peti staton de sekreta deponejo", "Currently indexing: %(currentRoom)s": "Nun indeksante: %(currentRoom)s", - "Cancel replying to a message": "Nuligi respondon al mesaĝo", - "Opens chat with the given user": "Malfermas babilon kun la uzanto", "You've successfully verified your device!": "Vi sukcese kontrolis vian aparaton!", "To continue, use Single Sign On to prove your identity.": "Por daŭrigi, pruvu vian identecon per ununura saluto.", "Confirm to continue": "Konfirmu por daŭrigi", "Click the button below to confirm your identity.": "Klaku sube la butonon por konfirmi vian identecon.", "Confirm encryption setup": "Konfirmi agordon de ĉifrado", "Click the button below to confirm setting up encryption.": "Klaku sube la butonon por konfirmi agordon de ĉifrado.", - "Dismiss read marker and jump to bottom": "Forigi legomarkon kaj iri al fundo", - "Jump to oldest unread message": "Iri al plej malnova nelegita mesaĝo", - "Upload a file": "Alŝuti dosieron", "IRC display name width": "Larĝo de vidiga nomo de IRC", "Size must be a number": "Grando devas esti nombro", "Custom font size can only be between %(min)s pt and %(max)s pt": "Propra grando de tiparo povas interi nur %(min)s punktojn kaj %(max)s punktojn", @@ -1441,8 +1398,6 @@ "Change which room you're viewing": "Ŝanĝi la vidatan ĉambron", "Send stickers into your active room": "Sendi glumarkojn al via aktiva ĉambro", "Send stickers into this room": "Sendi glumarkojn al ĉi tiu ĉambro", - "Takes the call in the current room off hold": "Malpaŭzigas la vokon en la nuna ĉambro", - "Places the call in the current room on hold": "Paŭzigas la vokon en la nuna ĉambro", "Zimbabwe": "Zimbabvo", "Zambia": "Zambio", "Yemen": "Jemeno", @@ -1545,26 +1500,15 @@ "Channel: ": "Kanalo: ", "Remain on your screen while running": "Resti sur via ekrano rulante", "Remain on your screen when viewing another room, when running": "Resti sur via ekrano rulante, dum rigardo al alia ĉambro", - "Go to Home View": "Iri al ĉefpaĝo", - "Search (must be enabled)": "Serĉi (devas esti ŝaltita)", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Tiu ĉi salutaĵo trovis, ke viaj Sekureca frazo kaj ŝlosilo por Sekuraj mesaĝoj foriĝis.", "A new Security Phrase and key for Secure Messages have been detected.": "Novaj Sekureca frazo kaj ŝlosilo por Sekuraj mesaĝoj troviĝis.", "Confirm your Security Phrase": "Konfirmu vian Sekurecan frazon", "Great! This Security Phrase looks strong enough.": "Bonege! La Sekureca frazo ŝajnas sufiĉe forta.", - "Decide where your account is hosted": "Decidu, kie via konto gastiĝos", - "Host account on": "Gastigi konton ĉe", - "Already have an account? Sign in here": "Ĉu vi jam havas konton? Salutu tie ĉi", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s aŭ %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Daŭrigi per %(ssoButtons)s", "New? Create account": "Ĉu vi novas? Kreu konton", "There was a problem communicating with the homeserver, please try again later.": "Eraris komunikado kun la hejmservilo, bonvolu reprovi poste.", "New here? Create an account": "Ĉu vi novas? Kreu konton", "Got an account? Sign in": "Ĉu vi havas konton? Salutu", "You have no visible notifications.": "Vi havas neniujn videblajn sciigojn.", - "Now, let's help you get started": "Nun, ni helpos al vi komenci", - "Welcome %(name)s": "Bonvenu, %(name)s", - "Add a photo so people know it's you.": "Aldonu foton, por ke oni vin rekonu.", - "Great, that'll help people know it's you": "Bonege, tio helpos al aliuloj scii, ke temas pri vi", "Use email to optionally be discoverable by existing contacts.": "Uzu retpoŝtadreson por laŭplaĉe esti trovebla de jamaj kontaktoj.", "Use email or phone to optionally be discoverable by existing contacts.": "Uzu retpoŝtadreson aŭ telefonnumeron por laŭplaĉe esti trovebla de jamaj kontaktoj.", "Add an email to be able to reset your password.": "Aldonu retpoŝtadreson por ebligi rehavon de via pasvorto.", @@ -1624,8 +1568,6 @@ "Send text messages as you in your active room": "Sendi tekstajn mesaĝojn kiel vi en via aktiva ĉambro", "Send text messages as you in this room": "Sendi tekstajn mesaĝojn kiel vi en ĉi tiu ĉambro", "Change which room, message, or user you're viewing": "Ŝanĝu, kiun ĉambron, mesaĝon, aŭ uzanton vi rigardas", - "Converts the DM to a room": "Malindividuigas la ĉambron", - "Converts the room to a DM": "Individuigas la ĉambron", "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.": "Ni petis la foliumilon memori, kiun hejmservilon vi uzas por saluti, sed domaĝe, via foliumilo forgesis. Iru al la saluta paĝo kaj reprovu.", "We couldn't log you in": "Ni ne povis salutigi vin", "%(creator)s created this DM.": "%(creator)s kreis ĉi tiun individuan ĉambron.", @@ -1738,7 +1680,6 @@ "unknown person": "nekonata persono", "%(deviceId)s from %(ip)s": "%(deviceId)s de %(ip)s", "Review to ensure your account is safe": "Kontrolu por certigi sekurecon de via konto", - "Your access token gives full access to your account. Do not share it with anyone.": "Via alirpeco donas plenan aliron al via konto. Donu ĝin al neniu.", "We couldn't create your DM.": "Ni ne povis krei vian individuan ĉambron.", "You may contact me if you have any follow up questions": "Vi povas min kontakti okaze de pliaj demandoj", "To leave the beta, visit your settings.": "Por foriri de la prova versio, iru al viaj agordoj.", @@ -1860,7 +1801,6 @@ "Images, GIFs and videos": "Bildoj, GIF-bildoj kaj filmoj", "Code blocks": "Kodujoj", "Keyboard shortcuts": "Ŝparklavoj", - "Olm version:": "Versio de Olm:", "Identity server URL must be HTTPS": "URL de identiga servilo devas esti je HTTPS", "There was an error loading your notification settings.": "Eraris enlegado de viaj agordoj pri sciigoj.", "Mentions & keywords": "Mencioj kaj ĉefvortoj", @@ -1966,7 +1906,6 @@ "Some encryption parameters have been changed.": "Ŝanĝiĝis iuj parametroj de ĉifrado.", "Role in ": "Rolo en ", "Message didn't send. Click for info.": "Mesaĝo ne sendiĝis. Klaku por akiri informojn.", - "Send a sticker": "Sendi glumarkon", "To avoid these issues, create a new public room for the conversation you plan to have.": "Por eviti ĉi tiujn problemojn, kreu novan publikan ĉambron por la dezirata interparolo.", "It's not recommended to make encrypted rooms public. It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "Publikigo de ĉifrataj ĉambroj estas malrekomendata. Ĝi implicas, ke ĉiu povos trovi la ĉambron kaj aliĝi al ĝi, kaj ĉiu do povos legi mesaĝojn. Vi havos neniujn avantaĝojn de ĉifrado. Ĉifrado de mesaĝoj en publika ĉambro malrapidigos iliajn ricevadon kaj sendadon.", "Are you sure you want to make this encrypted room public?": "Ĉu vi certas, ke vi volas publikigi ĉi tiun ĉifratan ĉambron?", @@ -1975,9 +1914,6 @@ "Command error: Unable to find rendering type (%(renderingType)s)": "Komanda eraro: Ne povas trovi bildigan tipon (%(renderingType)s)", "Failed to invite users to %(roomName)s": "Malsukcesis inviti uzantojn al %(roomName)s", "You cannot place calls without a connection to the server.": "Vi ne povas voki sen konektaĵo al la servilo.", - "Unable to find Matrix ID for phone number": "Ne povas trovi Matrix-an identigilon por tiu telefonnumero", - "No virtual room for this room": "Tiu ĉambro ne havas virtuala ĉambro", - "Switches to this room's virtual room, if it has one": "Iri al virtuala ĉambro de tiu ĉambro, se la virtuala ĉambro ekzistas", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Nekonata (uzanto, salutaĵo) duopo: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Komando malsukcesis: Ne povas trovi ĉambron (%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "Nekonata ĉambra adreso: %(roomAlias)s", @@ -2010,7 +1946,6 @@ "Can't edit poll": "Ne povas redakti balotenketon", "Poll": "Balotenketo", "Light high contrast": "Malpeza alta kontrasto", - "No active call in this room": "Neniu aktiva voko en ĉi tiu ĉambro", "Failed to read events": "Malsukcesis legi okazojn", "Failed to send event": "Malsukcesis sendi okazon", "You need to be able to kick users to do that.": "Vi devas povi piedbati uzantojn por fari tion.", @@ -2044,19 +1979,6 @@ "Voice broadcast": "Voĉan elsendo", "Live": "Vivi", "play voice broadcast": "ludu voĉan elsendon", - "Scroll down in the timeline": "Rulumu malsupren en la historio", - "Scroll up in the timeline": "Rulumu supren en la historio", - "Toggle webcam on/off": "Ŝaltigu/malŝaltu retfilmilon", - "Toggle space panel": "Ŝaltigu panelon de aroj", - "Toggle hidden event visibility": "Ŝaltu la videblecon de kaŝita okazoj", - "Jump to first message": "Saltu al la unua mesaĝo", - "Jump to last message": "Saltu al la lasta mesaĝo", - "Undo edit": "Malfari redakton", - "Previous recently visited room or space": "Antaŭa lastatempe vizitita ĉambro aŭ aro", - "Redo edit": "Refari redakton", - "Next recently visited room or space": "Poste lastatempe vizitita ĉambro aŭ aro", - "Switch to space by number": "Ŝanĝu al aro per nombro", - "Open user settings": "Malfermu uzantajn agordojn", "Change input device": "Ŝanĝu enigan aparaton", "pause voice broadcast": "paŭzi voĉan elsendon", "resume voice broadcast": "rekomenci voĉan elsendon", @@ -2097,7 +2019,6 @@ "%(space1Name)s and %(space2Name)s": "%(space1Name)s kaj %(space2Name)s", "30s forward": "30s. antaŭen", "30s backward": "30s. reen", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Komando de programisto: Forĵetas la nunan eliran grupsesion kaj starigas novajn Olm-salutaĵojn", "Command error: Unable to handle slash command.": "Komanda eraro: Ne eblas trakti oblikvan komandon.", "What location type do you want to share?": "Kiel vi volas kunhavigi vian lokon?", "My live location": "Mia realtempa loko", @@ -2138,12 +2059,6 @@ "Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "Konservu vian Sekurecan ŝlosilon ie sekure, kiel pasvortadministranto aŭ monŝranko, ĉar ĝi estas uzata por protekti viajn ĉifritajn datumojn.", "We'll generate a Security Key for you to store somewhere safe, like a password manager or a safe.": "Ni generos Sekurecan ŝlosilon por ke vi stoku ie sekura, kiel pasvort-administranto aŭ monŝranko.", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s aŭ %(copyButton)s", - "Toggle Code Block": "Ŝaltigu kodblokon", - "Toggle Link": "Ŝaltigu la formatadon de ligilo", - "Next unread room or DM": "Sekva nelegita konversacio", - "Previous unread room or DM": "Antaŭa nelegita konversacio", - "Next room or DM": "Sekva konversacio", - "Previous room or DM": "Antaŭa konversacio", "Unfortunately we're unable to start a recording right now. Please try again later.": "Bedaŭrinde ni ne povas komenci registradon nun. Bonvolu reprovi poste.", "Connection error": "eraro de konekto", "You have unverified sessions": "Vi havas nekontrolitajn salutaĵojn", @@ -2419,7 +2334,51 @@ "end": "Finen-klavo", "alt": "Alt-klavo", "control": "Stir-klavo", - "shift": "Majuskliga klavo" + "shift": "Majuskliga klavo", + "category_calls": "Vokoj", + "category_room_list": "Listo de ĉambroj", + "category_navigation": "Navigacio", + "category_autocomplete": "Memkompletigo", + "composer_toggle_bold": "Ŝalti grason", + "composer_toggle_italics": "Ŝalti kursivon", + "composer_toggle_quote": "Ŝalti citaĵon", + "composer_toggle_code_block": "Ŝaltigu kodblokon", + "composer_toggle_link": "Ŝaltigu la formatadon de ligilo", + "cancel_reply": "Nuligi respondon al mesaĝo", + "send_sticker": "Sendi glumarkon", + "toggle_microphone_mute": "Baskuligi silentigon de mikrofono", + "toggle_webcam_mute": "Ŝaltigu/malŝaltu retfilmilon", + "dismiss_read_marker_and_jump_bottom": "Forigi legomarkon kaj iri al fundo", + "jump_to_read_marker": "Iri al plej malnova nelegita mesaĝo", + "upload_file": "Alŝuti dosieron", + "scroll_up_timeline": "Rulumu supren en la historio", + "scroll_down_timeline": "Rulumu malsupren en la historio", + "jump_room_search": "Salti al serĉo de ĉambroj", + "room_list_select_room": "Elekti ĉambron el la listo de ĉambroj", + "room_list_collapse_section": "Maletendi parton kun listo de ĉambroj", + "room_list_expand_section": "Etendi parton kun listo de ĉambroj", + "toggle_top_left_menu": "Baskuligi la supran maldekstran menuon", + "toggle_right_panel": "Baskuligi la dekstran panelon", + "go_home_view": "Iri al ĉefpaĝo", + "next_unread_room": "Sekva nelegita konversacio", + "prev_unread_room": "Antaŭa nelegita konversacio", + "next_room": "Sekva konversacio", + "prev_room": "Antaŭa konversacio", + "autocomplete_cancel": "Nuligi memkompletigon", + "toggle_space_panel": "Ŝaltigu panelon de aroj", + "toggle_hidden_events": "Ŝaltu la videblecon de kaŝita okazoj", + "jump_first_message": "Saltu al la unua mesaĝo", + "jump_last_message": "Saltu al la lasta mesaĝo", + "composer_undo": "Malfari redakton", + "composer_redo": "Refari redakton", + "navigate_prev_history": "Antaŭa lastatempe vizitita ĉambro aŭ aro", + "navigate_next_history": "Poste lastatempe vizitita ĉambro aŭ aro", + "switch_to_space": "Ŝanĝu al aro per nombro", + "open_user_settings": "Malfermu uzantajn agordojn", + "close_dialog_menu": "Fermi interagujon aŭ kuntekstan menuon", + "activate_button": "Aktivigi la elektitan butonon", + "composer_new_line": "Nova linio", + "search": "Serĉi (devas esti ŝaltita)" }, "composer": { "format_bold": "Grase", @@ -2900,7 +2859,22 @@ "category_admin": "Administranto", "category_advanced": "Altnivela", "category_effects": "Efektoj", - "category_other": "Alia" + "category_other": "Alia", + "addwidget_missing_url": "Bonvolu provizi URL-on al fenestraĵo aŭ enkorpigi kodon", + "addwidget_invalid_protocol": "Bonvolu doni URL-on de fenestraĵo kun https:// aŭ http://", + "addwidget_no_permissions": "Vi ne rajtas modifi fenestraĵojn en ĉi tiu ĉambro.", + "converttodm": "Individuigas la ĉambron", + "converttoroom": "Malindividuigas la ĉambron", + "discardsession": "Devigas la aktualan eliran grupan salutaĵon en ĉifrita ĉambro forĵetiĝi", + "remakeolm": "Komando de programisto: Forĵetas la nunan eliran grupsesion kaj starigas novajn Olm-salutaĵojn", + "tovirtual": "Iri al virtuala ĉambro de tiu ĉambro, se la virtuala ĉambro ekzistas", + "tovirtual_not_found": "Tiu ĉambro ne havas virtuala ĉambro", + "query": "Malfermas babilon kun la uzanto", + "query_not_found_phone_number": "Ne povas trovi Matrix-an identigilon por tiu telefonnumero", + "holdcall": "Paŭzigas la vokon en la nuna ĉambro", + "no_active_call": "Neniu aktiva voko en ĉi tiu ĉambro", + "unholdcall": "Malpaŭzigas la vokon en la nuna ĉambro", + "me": "Montras agon" }, "presence": { "online_for": "Enreta jam je %(duration)s", @@ -3048,7 +3022,16 @@ "sign_in_with_sso": "Saluti per ununura saluto", "sso": "Ununura saluto", "reset_password_action": "Restarigu vian pasvorton", - "reset_password_title": "Restarigu vian pasvorton" + "reset_password_title": "Restarigu vian pasvorton", + "continue_with_sso": "Daŭrigi per %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s aŭ %(usernamePassword)s", + "sign_in_instead": "Ĉu vi jam havas konton? Salutu tie ĉi", + "account_clash": "Via nova konto (%(newAccountId)s) estas registrita, sed vi jam salutis per alia konto (%(loggedInUserId)s).", + "account_clash_previous_account": "Daŭrigi per antaŭa konto", + "log_in_new_account": "Saluti per via nova konto.", + "registration_successful": "Registro sukcesis", + "server_picker_title": "Gastigi konton ĉe", + "server_picker_dialog_title": "Decidu, kie via konto gastiĝos" }, "room_list": { "sort_unread_first": "Montri ĉambrojn kun nelegitaj mesaĝoj kiel unuajn", @@ -3079,5 +3062,28 @@ "report_entire_room": "Raporti la tutan ĉambron", "report_content_to_homeserver": "Raporti enhavon al la administrantode via hejmservilo", "description": "Per raporto de ĉi tiu mesaĝo vi sendos ĝian unikan «identigilon de okazo» al la administranto de via hejmservilo. Se mesaĝoj en ĉi tiu ĉambro estas ĉifrataj, la administranto de via hejmservilo ne povos legi la tekston de la mesaĝo, nek rigardi dosierojn aŭ bildojn." + }, + "onboarding": { + "has_avatar_label": "Bonege, tio helpos al aliuloj scii, ke temas pri vi", + "no_avatar_label": "Aldonu foton, por ke oni vin rekonu.", + "welcome_user": "Bonvenu, %(name)s", + "welcome_detail": "Nun, ni helpos al vi komenci", + "intro_welcome": "Bonvenu al %(appName)s", + "send_dm": "Sendi rektan mesaĝon", + "explore_rooms": "Esplori publikajn ĉambrojn", + "create_room": "Krei grupan babilon" + }, + "setting": { + "help_about": { + "brand_version": "versio de %(brand)s:", + "olm_version": "Versio de Olm:", + "help_link": "Por helpo pri uzado de %(brand)s, klaku ĉi tien.", + "help_link_chat_bot": "Por helpo pri uzado de %(brand)s, klaku ĉi tien aŭ komencu babilon kun nia roboto per la butono sube.", + "chat_bot": "Babilu kun la roboto %(brand)s Bot", + "title": "Helpo kaj Prio", + "versions": "Versioj", + "access_token_detail": "Via alirpeco donas plenan aliron al via konto. Donu ĝin al neniu.", + "clear_cache_reload": "Vakigi kaŝmemoron kaj relegi" + } } } diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index d9cf94639c..640608ba99 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -22,7 +22,6 @@ "Decrypt %(text)s": "Descifrar %(text)s", "Deops user with given id": "Quita el poder de operador al usuario con la ID dada", "Default": "Por defecto", - "Displays action": "Hacer una acción", "Download %(text)s": "Descargar %(text)s", "Email": "Correo electrónico", "Email address": "Dirección de correo electrónico", @@ -118,7 +117,6 @@ "Return to login screen": "Regresar a la pantalla de inicio de sesión", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s no tiene permiso para enviarte notificaciones - por favor, comprueba los ajustes de tu navegador", "%(brand)s was not given permission to send notifications - please try again": "No le has dado permiso a %(brand)s para enviar notificaciones. Por favor, inténtalo de nuevo", - "%(brand)s version:": "Versión de %(brand)s:", "Room %(roomId)s not visible": "La sala %(roomId)s no es visible", "This email address is already in use": "Esta dirección de correo electrónico ya está en uso", "This email address was not found": "No se ha encontrado la dirección de correo electrónico", @@ -344,7 +342,6 @@ "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.": "Tu mensaje no se ha enviado porque este servidor base ha alcanzado su límite mensual de usuarios activos. Por favor, contacta con el administrador de tu servicio para continuar utilizándolo.", "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "Tu mensaje no se ha enviado porque este servidor base ha excedido un límite de recursos. Por favor contacta con el administrador de tu servicio para continuar utilizándolo.", "Please contact your service administrator to continue using this service.": "Por favor, contacta al administrador de tu servicio para continuar utilizando este servicio.", - "Forces the current outbound group session in an encrypted room to be discarded": "Obliga a que la sesión de salida grupal actual en una sala cifrada se descarte", "Please contact your homeserver administrator.": "Por favor, contacta con la administración de tu servidor base.", "This room has been replaced and is no longer active.": "Esta sala ha sido reemplazada y ya no está activa.", "The conversation continues here.": "La conversación continúa aquí.", @@ -476,11 +473,6 @@ "General": "General", "Room Addresses": "Direcciones de la sala", "Account management": "Gestión de la cuenta", - "For help with using %(brand)s, click here.": "Si necesitas ayuda usando %(brand)s, haz clic aquí.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Si necesitas ayuda usando %(brand)s, haz clic aquí o abre un chat con nuestro bot usando el botón de abajo.", - "Chat with %(brand)s Bot": "Hablar con %(brand)s Bot", - "Help & About": "Ayuda y acerca de", - "Versions": "Versiones", "Room list": "Lista de salas", "Autocomplete delay (ms)": "Retardo autocompletado (ms)", "Roles & Permissions": "Roles y permisos", @@ -532,8 +524,6 @@ "Use an identity server": "Usar un servidor de identidad", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Usar un servidor de identidad para invitar por correo. Presiona continuar par usar el servidor de identidad por defecto (%(defaultIdentityServerName)s) o adminístralo en Ajustes.", "Use an identity server to invite by email. Manage in Settings.": "Usa un servidor de identidad para invitar por correo. Puedes configurarlo en tus ajustes.", - "Please supply a https:// or http:// widget URL": "Por favor indica un URL de accesorio de tipo http:// o https://", - "You cannot modify widgets in this room.": "No puedes modificar los accesorios de esta sala.", "Add Email Address": "Añadir dirección de correo", "Add Phone Number": "Añadir número de teléfono", "Identity server has no terms of service": "El servidor de identidad no tiene términos de servicio", @@ -624,7 +614,6 @@ "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Acepta los términos de servicio del servidor de identidad %(serverName)s para poder ser encontrado por dirección de correo electrónico o número de teléfono.", "Discovery": "Descubrimiento", "Deactivate account": "Desactivar cuenta", - "Clear cache and reload": "Limpiar caché y recargar", "Ignored/Blocked": "Ignorado/Bloqueado", "Error adding ignored user/server": "Error al añadir usuario/servidor ignorado", "Error subscribing to list": "Error al suscribirse a la lista", @@ -692,7 +681,6 @@ "Use your account or create a new one to continue.": "Entra con tu cuenta si ya tienes una o crea una nueva para continuar.", "Create Account": "Crear cuenta", "Could not find user in room": "No se ha encontrado el usuario en la sala", - "Please supply a widget URL or embed code": "Por favor, proporciona la URL del accesorio o un código de incrustación", "You signed in to a new session without verifying it:": "Iniciaste una nueva sesión sin verificarla:", "Verify your other session using one of the options below.": "Verifica la otra sesión utilizando una de las siguientes opciones.", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) inició una nueva sesión sin verificarla:", @@ -999,10 +987,6 @@ "Join millions for free on the largest public server": "Únete de forma gratuita a millones de personas en el servidor público más grande", "Sign in with SSO": "Ingrese con SSO", "Couldn't load page": "No se ha podido cargar la página", - "Welcome to %(appName)s": "Te damos la bienvenida a %(appName)s", - "Send a Direct Message": "Envía un mensaje directo", - "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.", "Explore rooms": "Explorar salas", "Jump to first invite.": "Salte a la primera invitación.", @@ -1022,7 +1006,6 @@ "Ok": "Ok", "Are you sure you want to cancel entering passphrase?": "¿Estas seguro que quieres cancelar el ingresar tu contraseña de recuperación?", "Joins room with given address": "Entrar a la sala con la dirección especificada", - "Opens chat with the given user": "Abrir una conversación con el usuario especificado", "Unexpected server error trying to leave the room": "Error inesperado del servidor al abandonar esta sala", "Error leaving room": "Error al salir de la sala", "Your homeserver has exceeded its user limit.": "Tú servidor ha excedido su limite de usuarios.", @@ -1114,10 +1097,6 @@ "Create account": "Crear una cuenta", "Unable to query for supported registration methods.": "No se pueden consultar los métodos de registro admitidos.", "Registration has been disabled on this homeserver.": "Se han desactivado los registros en este servidor base.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Su nueva cuenta (%(newAccountId)s) está registrada, pero ya inició sesión en una cuenta diferente (%(loggedInUserId)s).", - "Continue with previous account": "Continuar con la cuenta anterior", - "Log in to your new account.": "Inicie sesión en su nueva cuenta.", - "Registration Successful": "Registro exitoso", "Failed to re-authenticate due to a homeserver problem": "No ha sido posible volver a autenticarse debido a un problema con el servidor base", "Failed to re-authenticate": "No se pudo volver a autenticar", "Enter your password to sign in and regain access to your account.": "Ingrese su contraseña para iniciar sesión y recuperar el acceso a su cuenta.", @@ -1174,28 +1153,6 @@ "Indexed rooms:": "Salas indexadas:", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s fuera de %(totalRooms)s", "Message downloading sleep time(ms)": "Tiempo de suspensión de descarga de mensajes(ms)", - "Navigation": "Navegación", - "Calls": "Llamadas", - "Room List": "Lista de salas", - "Autocomplete": "Autocompletar", - "Toggle Bold": "Alternar negrita", - "Toggle Italics": "Alternar cursiva", - "Toggle Quote": "Alternar cita", - "New line": "Insertar salto de línea", - "Cancel replying to a message": "Cancelar responder al mensaje", - "Toggle microphone mute": "Activar o desactivar tu micrófono", - "Dismiss read marker and jump to bottom": "Descartar el marcador de lectura y saltar al final", - "Jump to oldest unread message": "Ir al mensaje no leído más antiguo", - "Upload a file": "Cargar un archivo", - "Jump to room search": "Ir a la búsqueda de salas", - "Select room from the room list": "Seleccionar sala de la lista de salas", - "Collapse room list section": "Encoger la sección de lista de salas", - "Expand room list section": "Expandir la sección de la lista de salas", - "Toggle the top left menu": "Alternar el menú superior izquierdo", - "Close dialog or context menu": "Cerrar cuadro de diálogo o menú contextual", - "Activate selected button": "Activar botón seleccionado", - "Toggle right panel": "Alternar panel derecho", - "Cancel autocomplete": "Cancelar autocompletar", "Your server requires encryption to be enabled in private rooms.": "Tu servidor obliga a usar cifrado en las salas privadas.", "This version of %(brand)s does not support searching encrypted messages": "Esta versión de %(brand)s no puede buscar mensajes cifrados", "Video conference ended by %(senderName)s": "Videoconferencia terminada por %(senderName)s", @@ -1239,12 +1196,9 @@ "This looks like a valid Security Key!": "¡Parece que es una clave de seguridad válida!", "Not a valid Security Key": "No es una clave de seguridad válida", "That phone number doesn't look quite right, please check and try again": "Ese número de teléfono no parece ser correcto, compruébalo e inténtalo de nuevo", - "Great, that'll help people know it's you": "Genial, ayudará a que la gente sepa que eres tú", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s o %(usernamePassword)s", "Confirm your Security Phrase": "Confirma tu frase de seguridad", "A new Security Phrase and key for Secure Messages have been detected.": "Se ha detectado una nueva frase de seguridad y clave para mensajes seguros.", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Esta sesión ha detectado que tu frase de seguridad y clave para mensajes seguros ha sido eliminada.", - "Search (must be enabled)": "Buscar (si está activado)", "Zimbabwe": "Zimbabue", "Yemen": "Yemen", "Wallis & Futuna": "Wallis y Futuna", @@ -1310,7 +1264,6 @@ "Slovakia": "Eslovaquia", "Use email to optionally be discoverable by existing contacts.": "También puedes usarlo para que tus contactos te encuentren fácilmente.", "Add an email to be able to reset your password.": "Añade un correo para poder restablecer tu contraseña si te olvidas.", - "Continue with %(ssoButtons)s": "Continuar con %(ssoButtons)s", "Channel: ": "Canal: ", "Update %(brand)s": "Actualizar %(brand)s", "Nigeria": "Nigeria", @@ -1412,20 +1365,13 @@ "American Samoa": "Samoa Americana", "Algeria": "Argelia", "Åland Islands": "Åland", - "Go to Home View": "Ir a la vista de inicio", "Great! This Security Phrase looks strong enough.": "¡Genial! Esta frase de seguridad parece lo suficientemente segura.", - "Decide where your account is hosted": "Decide dónde quieres alojar tu cuenta", - "Host account on": "Alojar la cuenta en", - "Already have an account? Sign in here": "¿Ya tienes una cuenta? Inicia sesión aquí", "New? Create account": "¿Primera vez? Crea una cuenta", "There was a problem communicating with the homeserver, please try again later.": "Ha ocurrido un error al conectarse a tu servidor base, inténtalo de nuevo más tarde.", "New here? Create an account": "¿Primera vez? Crea una cuenta", "Got an account? Sign in": "¿Ya tienes una cuenta? Iniciar sesión", "You have no visible notifications.": "No tienes notificaciones pendientes.", "%(creator)s created this DM.": "%(creator)s creó este mensaje directo.", - "Now, let's help you get started": "Vamos a empezar", - "Welcome %(name)s": "Te damos la bienvenida, %(name)s", - "Add a photo so people know it's you.": "Añade una imagen para que la gente sepa que eres tú.", "Enter phone number": "Escribe tu teléfono móvil", "Enter email address": "Escribe tu dirección de correo electrónico", "Something went wrong in confirming your identity. Cancel and try again.": "Ha ocurrido un error al confirmar tu identidad. Cancela e inténtalo de nuevo.", @@ -1533,10 +1479,6 @@ "Change the topic of your active room": "Cambiar el asunto de la sala en la que estés", "See when the topic changes in this room": "Ver cuándo cambia el asunto de esta sala", "Change the topic of this room": "Cambiar el asunto de esta sala", - "Converts the DM to a room": "Convierte el mensaje directo a sala", - "Converts the room to a DM": "Convierte la sala a un mensaje directo", - "Takes the call in the current room off hold": "Quita la llamada de la sala actual de espera", - "Places the call in the current room on hold": "Pone la llamada de la sala actual en espera", "Japan": "Japón", "Jamaica": "Jamaica", "Italy": "Italia", @@ -1779,7 +1721,6 @@ "No microphone found": "Micrófono no detectado", "We were unable to access your microphone. Please check your browser settings and try again.": "No hemos podido acceder a tu micrófono. Por favor, comprueba los ajustes de tu navegador e inténtalo de nuevo.", "Unable to access your microphone": "No se ha podido acceder a tu micrófono", - "Your access token gives full access to your account. Do not share it with anyone.": "Tu token de acceso da acceso completo a tu cuenta. No lo compartas con nadie.", "Please enter a name for the space": "Por favor, elige un nombre para el espacio", "Connecting": "Conectando", "Message search initialisation failed": "Ha fallado la inicialización de la búsqueda de mensajes", @@ -1941,7 +1882,6 @@ "Call declined": "Llamada rechazada", "Stop recording": "Dejar de grabar", "Send voice message": "Enviar un mensaje de voz", - "Olm version:": "Versión de Olm:", "More": "Más", "Show sidebar": "Ver menú lateral", "Hide sidebar": "Ocultar menú lateral", @@ -1965,7 +1905,6 @@ "Select the roles required to change various parts of the space": "Elige los roles que los usuarios deben tener para poder cambiar los distintos ajustes del espacio", "Failed to update the join rules": "Fallo al actualizar las reglas para unirse", "Anyone in can find and join. You can select other spaces too.": "Cualquiera en puede encontrar y unirse. También puedes seleccionar otros espacios.", - "Send a sticker": "Enviar una pegatina", "Unknown failure": "Fallo desconocido", "Message didn't send. Click for info.": "Mensaje no enviado. Haz clic para más info.", "To join a space you'll need an invite.": "Para unirte a un espacio, necesitas que te inviten a él.", @@ -2042,7 +1981,6 @@ }, "Use a more compact 'Modern' layout": "Usar una disposición más compacta y «moderna»", "Light high contrast": "Claro con contraste alto", - "Own your conversations.": "Toma el control de tus conversaciones.", "We call the places where you can host your account 'homeservers'.": "Llamamos «servidores base» a los sitios donde puedes tener tu cuenta.", "Matrix.org is the biggest public homeserver in the world, so it's a good place for many.": "Matrix.org es el mayor servidor base público del mundo, por lo que mucha gente lo considera un buen sitio.", "If you can't see who you're looking for, send them your invite link below.": "Si no encuentras a quien buscas, envíale tu enlace de invitación que encontrarás abajo.", @@ -2095,7 +2033,6 @@ "Files": "Archivos", "Pin to sidebar": "Fijar a la barra lateral", "Without verifying, you won't have access to all your messages and may appear as untrusted to others.": "Si decides no verificar, no tendrás acceso a todos tus mensajes y puede que le aparezcas a los demás como «no confiado».", - "Toggle space panel": "Activar o desactivar el panel de espacio", "Recent searches": "Búsquedas recientes", "To search messages, look for this icon at the top of a room ": "Para buscar contenido de mensajes, usa este icono en la parte de arriba de una sala: ", "Other searches": "Otras búsquedas", @@ -2160,8 +2097,6 @@ "Back to chat": "Volver a la conversación", "Remove, ban, or invite people to your active room, and make you leave": "Quitar, vetas o invitar personas a tu sala activa, y hacerte salir", "Remove, ban, or invite people to this room, and make you leave": "Quitar, vetar o invitar personas a esta sala, y hacerte salir", - "No active call in this room": "No hay llamadas activas en la sala", - "Unable to find Matrix ID for phone number": "No se ha podido encontrar ninguna ID de Matrix para el número de teléfono", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Pareja (usuario, sesión) desconocida: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "El comando ha fallado: no se ha encontrado la sala %(roomId)s", "Unrecognised room address: %(roomAlias)s": "Dirección de sala no reconocida: %(roomAlias)s", @@ -2197,28 +2132,11 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Esperando a que verifiques en tu otro dispositivo, %(deviceName)s (%(deviceId)s)…", "From a thread": "Desde un hilo", "Back to thread": "Volver al hilo", - "Open this settings tab": "Abrir esta pestaña de ajustes", "Space home": "Inicio del espacio", "Message pending moderation": "Mensaje esperando revisión", "Message pending moderation: %(reason)s": "Mensaje esperando revisión: %(reason)s", "You can't see earlier messages": "No puedes ver mensajes anteriores", "Keyboard": "Teclado", - "Redo edit": "Rehacer edición", - "Force complete": "Forzar a que termine", - "Undo edit": "Deshacer edición", - "Jump to last message": "Ir al último mensaje", - "Jump to first message": "Ir al primer mensaje", - "Previous autocomplete suggestion": "Sugerencia anterior", - "Next autocomplete suggestion": "Sugerencia siguiente", - "Previous room or DM": "Siguiente sala o conversación", - "Previous unread room or DM": "Anterior sala o conversación sin leer", - "Next unread room or DM": "Siguiente sala o conversación sin leer", - "Next room or DM": "Siguiente sala o conversación", - "Toggle webcam on/off": "Activar o desactivar la cámara", - "Jump to end of the composer": "Saltar al final del editor", - "Jump to start of the composer": "Saltar al principio del editor", - "Navigate to previous message to edit": "Ir al anterior mensaje a editar", - "Navigate to next message to edit": "Ir al siguiente mensaje a editar", "Pick a date to jump to": "Elige la fecha a la que saltar", "Jump to date": "Saltar a una fecha", "The beginning of the room": "Inicio de la sala", @@ -2235,15 +2153,11 @@ "You don't have permission to view messages from before you joined.": "No tienes permisos para ver mensajes enviados antes de que te unieras.", "You don't have permission to view messages from before you were invited.": "No tienes permisos para ver mensajes enviados antes de que te invitaran.", "%(space1Name)s and %(space2Name)s": "%(space1Name)s y %(space2Name)s", - "Scroll up in the timeline": "Subir en la línea de tiempo", - "Navigate to previous message in composer history": "Ir al anterior mensaje en el historial del editor", - "Navigate to next message in composer history": "Ir al siguiente mensaje en el historial del editor", "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Responde a un hilo en curso o usa «%(replyInThread)s» al pasar el ratón por encima de un mensaje para iniciar uno nuevo.", "This address does not point at this room": "La dirección no apunta a esta sala", "Missing room name or separator e.g. (my-room:domain.org)": "Falta el nombre de la sala o el separador (ej.: mi-sala:dominio.org)", "Timed out trying to fetch your location. Please try again later.": "Tras un tiempo intentándolo, no hemos podido obtener tu ubicación. Por favor, inténtalo de nuevo más tarde.", "Pinned": "Fijado", - "Open user settings": "Abrir los ajustes de usuario", "If you know what you're doing, Element is open-source, be sure to check out our GitHub (https://github.com/vector-im/element-web/) and contribute!": "Si sabes de estos temas, Element es de código abierto. ¡Echa un vistazo a nuestro GitHub (https://github.com/vector-im/element-web/) y colabora!", "Unable to check if username has been taken. Try again later.": "No ha sido posible comprobar si el nombre de usuario está libre. Inténtalo de nuevo más tarde.", "Search Dialog": "Ventana de búsqueda", @@ -2273,19 +2187,10 @@ "other": "Confirma que quieres cerrar sesión de estos dispositivos usando Single Sign On para probar tu identidad." }, "Automatically send debug logs when key backup is not functioning": "Enviar automáticamente los registros de depuración cuando la clave de respaldo no funcione", - "Switches to this room's virtual room, if it has one": "Cambia a la sala virtual de esta sala, si tiene una", - "No virtual room for this room": "Esta sala no tiene una sala virtual", "Match system": "Usar el del sistema", - "Switch to space by number": "Ir a un espacio por número", - "Toggle hidden event visibility": "Alternar visibilidad del evento oculto", - "Navigate up in the room list": "Subir en la lista de salas", - "Navigate down in the room list": "Navegar hacia abajo en la lista de salas", - "Scroll down in the timeline": "Bajar en la línea de tiempo", "Show polls button": "Mostrar botón de encuestas", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Los espacios son una nueva manera de agrupar salas y personas. ¿Qué tipo de espacio quieres crear? Lo puedes cambiar más tarde.", "Can't create a thread from an event with an existing relation": "No ha sido posible crear un hilo a partir de un evento con una relación existente", - "Toggle Code Block": "Alternar bloque de código", - "Toggle Link": "Alternar enlace", "We'll create rooms for each of them.": "Crearemos una sala para cada uno.", "You are sharing your live location": "Estás compartiendo tu ubicación en tiempo real", "This homeserver is not configured to display maps.": "Este servidor base no está configurado para mostrar mapas.", @@ -2310,8 +2215,6 @@ "one": "Borrando mensajes en %(count)s sala", "other": "Borrando mensajes en %(count)s salas" }, - "Next recently visited room or space": "Siguiente sala o espacio visitado", - "Previous recently visited room or space": "Anterior sala o espacio visitado", "Unsent": "No enviado", "Developer tools": "Herramientas de desarrollo", "%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s en navegadores para móviles está en prueba. Para una mejor experiencia y para poder usar las últimas funcionalidades, usa nuestra aplicación nativa gratuita.", @@ -2483,7 +2386,6 @@ }, "In %(spaceName)s.": "En el espacio %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "En los espacios %(space1Name)s y %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Comando para desarrolladores: descarta la sesión de grupo actual saliente y crea nuevas sesiones de Olm", "Send your first message to invite to chat": "Envía tu primer mensaje para invitar a a la conversación", "Saved Items": "Elementos guardados", "Messages in this chat will be end-to-end encrypted.": "Los mensajes en esta conversación serán cifrados de extremo a extremo.", @@ -2733,13 +2635,10 @@ "Yes, end my recording": "Sí, terminar grabación", "Connection error": "Error de conexión", "Can't start a new voice broadcast": "No se ha podido iniciar una nueva difusión de voz", - "Could not find room": "No se ha encontrado la sala", "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.", "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", "Ended a poll": "Cerró una encuesta", "Unfortunately we're unable to start a recording right now. Please try again later.": "Lamentablemente, no hemos podido empezar a grabar ahora mismo. Inténtalo de nuevo más tarde.", "Unable to connect to Homeserver. Retrying…": "No se ha podido conectar al servidor base. Reintentando…", @@ -3044,7 +2943,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[número]", - "backspace": "Tecta de retroceso" + "backspace": "Tecta de retroceso", + "category_calls": "Llamadas", + "category_room_list": "Lista de salas", + "category_navigation": "Navegación", + "category_autocomplete": "Autocompletar", + "composer_toggle_bold": "Alternar negrita", + "composer_toggle_italics": "Alternar cursiva", + "composer_toggle_quote": "Alternar cita", + "composer_toggle_code_block": "Alternar bloque de código", + "composer_toggle_link": "Alternar enlace", + "cancel_reply": "Cancelar responder al mensaje", + "navigate_next_message_edit": "Ir al siguiente mensaje a editar", + "navigate_prev_message_edit": "Ir al anterior mensaje a editar", + "composer_jump_start": "Saltar al principio del editor", + "composer_jump_end": "Saltar al final del editor", + "composer_navigate_next_history": "Ir al siguiente mensaje en el historial del editor", + "composer_navigate_prev_history": "Ir al anterior mensaje en el historial del editor", + "send_sticker": "Enviar una pegatina", + "toggle_microphone_mute": "Activar o desactivar tu micrófono", + "toggle_webcam_mute": "Activar o desactivar la cámara", + "dismiss_read_marker_and_jump_bottom": "Descartar el marcador de lectura y saltar al final", + "jump_to_read_marker": "Ir al mensaje no leído más antiguo", + "upload_file": "Cargar un archivo", + "scroll_up_timeline": "Subir en la línea de tiempo", + "scroll_down_timeline": "Bajar en la línea de tiempo", + "jump_room_search": "Ir a la búsqueda de salas", + "room_list_select_room": "Seleccionar sala de la lista de salas", + "room_list_collapse_section": "Encoger la sección de lista de salas", + "room_list_expand_section": "Expandir la sección de la lista de salas", + "room_list_navigate_down": "Navegar hacia abajo en la lista de salas", + "room_list_navigate_up": "Subir en la lista de salas", + "toggle_top_left_menu": "Alternar el menú superior izquierdo", + "toggle_right_panel": "Alternar panel derecho", + "keyboard_shortcuts_tab": "Abrir esta pestaña de ajustes", + "go_home_view": "Ir a la vista de inicio", + "next_unread_room": "Siguiente sala o conversación sin leer", + "prev_unread_room": "Anterior sala o conversación sin leer", + "next_room": "Siguiente sala o conversación", + "prev_room": "Siguiente sala o conversación", + "autocomplete_cancel": "Cancelar autocompletar", + "autocomplete_navigate_next": "Sugerencia siguiente", + "autocomplete_navigate_prev": "Sugerencia anterior", + "toggle_space_panel": "Activar o desactivar el panel de espacio", + "toggle_hidden_events": "Alternar visibilidad del evento oculto", + "jump_first_message": "Ir al primer mensaje", + "jump_last_message": "Ir al último mensaje", + "composer_undo": "Deshacer edición", + "composer_redo": "Rehacer edición", + "navigate_prev_history": "Anterior sala o espacio visitado", + "navigate_next_history": "Siguiente sala o espacio visitado", + "switch_to_space": "Ir a un espacio por número", + "open_user_settings": "Abrir los ajustes de usuario", + "close_dialog_menu": "Cerrar cuadro de diálogo o menú contextual", + "activate_button": "Activar botón seleccionado", + "composer_new_line": "Insertar salto de línea", + "autocomplete_force": "Forzar a que termine", + "search": "Buscar (si está activado)" }, "credits": { "default_cover_photo": "La foto de fondo por defecto es © Jesús Roncero, usada bajo los términos de la licencia CC-BY-SA 4.0." @@ -3167,7 +3122,16 @@ "download_google_play": "Disponible en Google Play", "download_f_droid": "Disponible en F-Droid", "apple_trademarks": "App Store® y el logo de Apple® son marcas registradas de Apple Inc.", - "google_trademarks": "Google Play y el logo de Google Play son marcas registradas de Google LLC." + "google_trademarks": "Google Play y el logo de Google Play son marcas registradas de Google LLC.", + "has_avatar_label": "Genial, ayudará a que la gente sepa que eres tú", + "no_avatar_label": "Añade una imagen para que la gente sepa que eres tú.", + "welcome_user": "Te damos la bienvenida, %(name)s", + "welcome_detail": "Vamos a empezar", + "intro_welcome": "Te damos la bienvenida a %(appName)s", + "intro_byline": "Toma el control de tus conversaciones.", + "send_dm": "Envía un mensaje directo", + "explore_rooms": "Explora las salas públicas", + "create_room": "Crea un grupo" }, "settings": { "show_breadcrumbs": "Incluir encima de la lista de salas unos atajos a las últimas salas que hayas visto", @@ -3700,7 +3664,24 @@ "category_admin": "Admin", "category_advanced": "Avanzado", "category_effects": "Efectos", - "category_other": "Otros" + "category_other": "Otros", + "addwidget_missing_url": "Por favor, proporciona la URL del accesorio o un código de incrustación", + "addwidget_iframe_missing_src": "el iframe no tiene atributo src", + "addwidget_invalid_protocol": "Por favor indica un URL de accesorio de tipo http:// o https://", + "addwidget_no_permissions": "No puedes modificar los accesorios de esta sala.", + "converttodm": "Convierte la sala a un mensaje directo", + "could_not_find_room": "No se ha encontrado la sala", + "converttoroom": "Convierte el mensaje directo a sala", + "discardsession": "Obliga a que la sesión de salida grupal actual en una sala cifrada se descarte", + "remakeolm": "Comando para desarrolladores: descarta la sesión de grupo actual saliente y crea nuevas sesiones de Olm", + "tovirtual": "Cambia a la sala virtual de esta sala, si tiene una", + "tovirtual_not_found": "Esta sala no tiene una sala virtual", + "query": "Abrir una conversación con el usuario especificado", + "query_not_found_phone_number": "No se ha podido encontrar ninguna ID de Matrix para el número de teléfono", + "holdcall": "Pone la llamada de la sala actual en espera", + "no_active_call": "No hay llamadas activas en la sala", + "unholdcall": "Quita la llamada de la sala actual de espera", + "me": "Hacer una acción" }, "presence": { "busy": "Ocupado", @@ -3878,7 +3859,16 @@ "auth": { "continue_with_idp": "Continuar con %(provider)s", "sign_in_with_sso": "Ingresar con un Registro Único", - "sso": "Single Sign On" + "sso": "Single Sign On", + "continue_with_sso": "Continuar con %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s o %(usernamePassword)s", + "sign_in_instead": "¿Ya tienes una cuenta? Inicia sesión aquí", + "account_clash": "Su nueva cuenta (%(newAccountId)s) está registrada, pero ya inició sesión en una cuenta diferente (%(loggedInUserId)s).", + "account_clash_previous_account": "Continuar con la cuenta anterior", + "log_in_new_account": "Inicie sesión en su nueva cuenta.", + "registration_successful": "Registro exitoso", + "server_picker_title": "Alojar la cuenta en", + "server_picker_dialog_title": "Decide dónde quieres alojar tu cuenta" }, "room_list": { "sort_unread_first": "Colocar al principio las salas con mensajes sin leer", @@ -3911,5 +3901,19 @@ "report_entire_room": "Denunciar la sala entera", "report_content_to_homeserver": "Denunciar contenido al administrador de tu servidor base", "description": "Denunciar este mensaje enviará su único «event ID al administrador de tu servidor base. Si los mensajes en esta sala están cifrados, el administrador de tu servidor no podrá leer el texto del mensaje ni ver ningún archivo o imagen." + }, + "setting": { + "help_about": { + "brand_version": "Versión de %(brand)s:", + "olm_version": "Versión de Olm:", + "help_link": "Si necesitas ayuda usando %(brand)s, haz clic aquí.", + "help_link_chat_bot": "Si necesitas ayuda usando %(brand)s, haz clic aquí o abre un chat con nuestro bot usando el botón de abajo.", + "chat_bot": "Hablar con %(brand)s Bot", + "title": "Ayuda y acerca de", + "versions": "Versiones", + "homeserver": "El servidor base es %(homeserverUrl)s", + "access_token_detail": "Tu token de acceso da acceso completo a tu cuenta. No lo compartas con nadie.", + "clear_cache_reload": "Limpiar caché y recargar" + } } } diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index f59a056d20..9dfbc1b004 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -25,8 +25,6 @@ "Ask this user to verify their session, or manually verify it below.": "Palu nimetatud kasutajal verifitseerida see sessioon või tee seda alljärgnevaga käsitsi.", "Enable message search in encrypted rooms": "Võta kasutusele sõnumite otsing krüptitud jututubades", "Verify this user by confirming the following emoji appear on their screen.": "Verifitseeri see kasutaja tehes kindlaks et järgnev emoji kuvatakse tema ekraanil.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "%(brand)s'i kasutamisega seotud abiteabe otsimiseks klõpsi seda viidet või vajutades järgnevat nuppu alusta vestlust meie robotiga.", - "Chat with %(brand)s Bot": "Vestle %(brand)s'i robotiga", "Invite to this room": "Kutsu siia jututuppa", "The conversation continues here.": "Vestlus jätkub siin.", "Direct Messages": "Isiklikud sõnumid", @@ -56,7 +54,6 @@ "All rooms": "Kõik jututoad", "Enter the name of a new server you want to explore.": "Sisesta uue serveri nimi mida tahad uurida.", "Other users can invite you to rooms using your contact details": "Teades sinu kontaktinfot võivad teised kutsuda sind osalema jututubades", - "Explore Public Rooms": "Sirvi avalikke jututubasid", "Explore rooms": "Tutvu jututubadega", "If you've joined lots of rooms, this might take a while": "Kui oled liitunud paljude jututubadega, siis see võib natuke aega võtta", "If disabled, messages from encrypted rooms won't appear in search results.": "Kui see seadistus pole kasutusel, siis krüptitud jututubade sõnumeid otsing ei vaata.", @@ -93,21 +90,8 @@ "Home": "Avaleht", "Remove for everyone": "Eemalda kõigilt", "You must join the room to see its files": "Failide nägemiseks pead jututoaga liituma", - "Create a Group Chat": "Loo rühmavestlus", "You seem to be uploading files, are you sure you want to quit?": "Tundub, et sa parasjagu laadid faile üles. Kas sa kindlasti soovid väljuda?", "Failed to remove tag %(tagName)s from room": "Sildi %(tagName)s eemaldamine jututoast ebaõnnestus", - "Calls": "Kõned", - "Room List": "Jututubade loend", - "Toggle Bold": "Lülita paks kiri sisse/välja", - "Toggle Italics": "Lülita kaldkiri sisse/välja", - "Toggle Quote": "Lülita tsiteerimine sisse/välja", - "New line": "Reavahetus", - "Cancel replying to a message": "Tühista sõnumile vastamine", - "Toggle microphone mute": "Lülita mikrofoni summutamine sisse/välja", - "Jump to room search": "Suundu jututoa otsingusse", - "Select room from the room list": "Vali tubade loendist jututuba", - "Collapse room list section": "Ahenda jututubade loendi valikut", - "Expand room list section": "Laienda jututubade loendi valikut", "Create Account": "Loo konto", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Kui soovid teatada Matrix'iga seotud turvaveast, siis palun tutvu enne Matrix.org Turvalisuse avalikustamise juhendiga.", "Server or user ID to ignore": "Serverid või kasutajate tunnused, mida soovid eirata", @@ -271,7 +255,6 @@ "Space used:": "Kasutatud andmeruum:", "Indexed messages:": "Indekseeritud sõnumid:", "Failed to add tag %(tagName)s to room": "Sildi %(tagName)s lisamine jututoale ebaõnnestus", - "Close dialog or context menu": "Sulge dialoogiaken või kontekstimenüü", "Unable to add email address": "E-posti aadressi lisamine ebaõnnestus", "We've sent you an email to verify your address. Please follow the instructions there and then click the button below.": "Sinu aadressi kontrollimiseks saatsime sulle e-kirja. Palun järgi kirjas näidatud juhendit ja siis klõpsi alljärgnevat nuppu.", "Email Address": "E-posti aadress", @@ -440,9 +423,6 @@ "Set up Secure Messages": "Võta kasutusele krüptitud sõnumid", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s / %(totalRooms)s", "Message downloading sleep time(ms)": "Paus millisekundites sõnumite allalaadimisel", - "Toggle the top left menu": "Lülita ülemine vasak menüü sisse/välja", - "Activate selected button": "Aktiveeri valitud nupp", - "Toggle right panel": "Lülita parem paan sisse/välja", "You seem to be in a call, are you sure you want to quit?": "Tundub, et sul parasjagu on kõne pooleli. Kas sa kindlasti soovid väljuda?", "Failed to reject invite": "Kutse tagasilükkamine ei õnnestunud", "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Üritasin laadida teatud hetke selle jututoa ajajoonelt, kuid sul ei ole õigusi selle sõnumi nägemiseks.", @@ -467,10 +447,6 @@ "Unable to query for supported registration methods.": "Ei õnnestunud pärida toetatud registreerimismeetodite loendit.", "Registration has been disabled on this homeserver.": "Väline registreerimine ei ole selles koduserveris kasutusel.", "This server does not support authentication with a phone number.": "See server ei toeta autentimist telefoninumbri alusel.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Sinu uus kasutajakonto (%(newAccountId)s) on registreeritud, kuid sa jube oled sisse loginud teise kasutajakontoga (%(loggedInUserId)s).", - "Continue with previous account": "Jätka senise konto kasutamist", - "Log in to your new account.": "Logi sisse oma uuele kasutajakontole.", - "Registration Successful": "Registreerimine õnnestus", "You're signed out": "Sa oled loginud välja", "Clear personal data": "Kustuta privaatsed andmed", "Commands": "Käsud", @@ -481,8 +457,6 @@ "Couldn't load page": "Lehe laadimine ei õnnestunud", "You must register to use this functionality": "Selle funktsionaalsuse kasutamiseks pead sa registreeruma", "Upload avatar": "Laadi üles profiilipilt ehk avatar", - "Welcome to %(appName)s": "Tere tulemast suhtlusrakenduse %(appName)s kasutajaks", - "Send a Direct Message": "Saada otsesõnum", "Are you sure you want to leave the room '%(roomName)s'?": "Kas oled kindel, et soovid lahkuda jututoast „%(roomName)s“?", "Unknown error": "Teadmata viga", "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Selleks et jätkata koduserveri %(homeserverDomain)s kasutamist sa pead üle vaatama ja nõustuma meie kasutustingimustega.", @@ -552,7 +526,6 @@ "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Sinu antud allkirjavõti vastab allkirjavõtmele, mille sa said kasutaja %(userId)s sessioonist %(deviceId)s. Sessioon on märgitud verifitseerituks.", "Logs sent": "Logikirjed saadetud", "Thank you!": "Suur tänu!", - "Opens chat with the given user": "Avab vestluse näidatud kasutajaga", "Short keyboard patterns are easy to guess": "Lühikesi klahvijärjestusi on lihtne ära arvata", "This room is bridging messages to the following platforms. Learn more.": "See jututuba kasutab sõnumisildasid liidestamiseks järgmiste süsteemidega. Lisateave.", "Bridges": "Sõnumisillad", @@ -629,9 +602,6 @@ "one": "Sinul on selle jututoa varasemas versioonis %(count)s lugemata teavitus." }, "Your password has been reset.": "Sinu salasõna on muudetud.", - "Dismiss read marker and jump to bottom": "Ära arvesta loetud sõnumite järjehoidjat ning mine kõige lõppu", - "Jump to oldest unread message": "Mine vanima lugemata sõnumi juurde", - "Upload a file": "Laadi fail üles", "Read Marker lifetime (ms)": "Lugemise markeri iga (ms)", "Unignore": "Lõpeta eiramine", "": "", @@ -884,9 +854,6 @@ "Size must be a number": "Suurus peab olema number", "Custom font size can only be between %(min)s pt and %(max)s pt": "Kohandatud fondisuurus peab olema vahemikus %(min)s pt ja %(max)s pt", "Use between %(min)s pt and %(max)s pt": "Kasuta suurust vahemikus %(min)s pt ja %(max)s pt", - "Clear cache and reload": "Tühjenda puhver ja laadi uuesti", - "Versions": "Versioonid", - "%(brand)s version:": "%(brand)s'i versioon:", "Ignored/Blocked": "Eiratud või ligipääs blokeeritud", "Error adding ignored user/server": "Viga eiratud kasutaja või serveri lisamisel", "Something went wrong. Please try again or view your console for hints.": "Midagi läks valesti. Proovi uuesti või otsi lisavihjeid konsoolilt.", @@ -968,7 +935,6 @@ "Unavailable": "Ei ole saadaval", "Changelog": "Versioonimuudatuste loend", "You cannot delete this message. (%(code)s)": "Sa ei saa seda sõnumit kustutada. (%(code)s)", - "Cancel autocomplete": "Lülita automaatne sõnalõpetus välja", "Removing…": "Eemaldan…", "Destroy cross-signing keys?": "Kas hävitame risttunnustamise võtmed?", "Deleting cross-signing keys is permanent. Anyone you have verified with will see security alerts. You almost certainly don't want to do this, unless you've lost every device you can cross-sign from.": "Risttunnustamise võtmete kustutamine on tegevus, mida ei saa tagasi pöörata. Kõik sinu verifitseeritud vestluskaaslased näevad seejärel turvateateid. Kui sa just pole kaotanud ligipääsu kõikidele oma seadmetele, kust sa risttunnustamist oled teinud, siis sa ilmselgelt ei peaks kustutamist ette võtma.", @@ -1047,7 +1013,6 @@ "Save your Security Key": "Salvesta turvavõti", "Unable to set up secret storage": "Turvahoidla kasutuselevõtmine ei õnnestu", "Your keys are being backed up (the first backup could take a few minutes).": "Sinu krüptovõtmeid varundatakse (esimese varukoopia tegemine võib võtta paar minutit).", - "Autocomplete": "Automaatne sõnalõpetus", "Favourited": "Märgitud lemmikuks", "Forget Room": "Unusta jututuba ära", "Error upgrading room": "Viga jututoa uuendamisel", @@ -1076,7 +1041,6 @@ "Deactivate Account": "Deaktiveeri konto", "Discovery": "Leia kasutajaid", "Deactivate account": "Deaktiveeri kasutajakonto", - "For help with using %(brand)s, click here.": "Kui otsid lisateavet %(brand)s'i kasutamise kohta, palun vaata siia.", "Add users and servers you want to ignore here. Use asterisks to have %(brand)s match any characters. For example, @bot:* would ignore all users that have the name 'bot' on any server.": "Lisa siia kasutajad ja serverid, mida sa soovid eirata. Kui soovid, et %(brand)s kasutaks üldist asendamist, siis kasuta tärni. Näiteks @bot:* eirab kõikide serverite kasutajat 'bot'.", "Room options": "Jututoa eelistused", "This room is public": "See jututuba on avalik", @@ -1131,17 +1095,12 @@ "Unignored user": "Kasutaja, kelle eiramine on lõppenud", "You are no longer ignoring %(userId)s": "Sa edaspidi ei eira kasutajat %(userId)s", "Deops user with given id": "Eemalda antud tunnusega kasutajalt haldusõigused selles jututoas", - "Please supply a widget URL or embed code": "Palun lisa antud vidina aadress või lisatav kood", - "Please supply a https:// or http:// widget URL": "Vidina aadressi alguses peab olema kas https:// või http://", - "You cannot modify widgets in this room.": "Sul pole õigusi vidinate muutmiseks selles jututoas.", "Verifies a user, session, and pubkey tuple": "Verifitseerib kasutaja, sessiooni ja avalikud võtmed", - "Displays action": "Näitab tegevusi", "Reason": "Põhjus", "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Ära usalda risttunnustamist ning verifitseeri kasutaja iga sessioon eraldi.", "Connect this session to Key Backup": "Seo see sessioon krüptovõtmete varundusega", "not stored": "ei ole salvestatud", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Isikutuvastusserveri kasutamine ei ole kohustuslik. Kui sa seda ei tee, siis sa ei ole leitav teiste kasutajate poolt ega sulle ei saa telefoninumbri või e-posti aadressi alusel kutset saata. Küll aga saab kutset saata Matrix'i kasutajatunnuse alusel.", - "Help & About": "Abiteave ning info meie kohta", "Success!": "Õnnestus!", "Create key backup": "Tee võtmetest varukoopia", "Unable to create key backup": "Ei õnnestu teha võtmetest varukoopiat", @@ -1171,11 +1130,9 @@ "Master private key:": "Üldine privaatvõti:", "Recent changes that have not yet been received": "Hiljutised muudatused, mis pole veel alla laetud või saabunud", "Explore public rooms": "Sirvi avalikke jututubasid", - "Forces the current outbound group session in an encrypted room to be discarded": "Sunnib loobuma praeguse krüptitud jututoa rühmavestluse seansist", "You've previously used %(brand)s on %(host)s with lazy loading of members enabled. In this version lazy loading is disabled. As the local cache is not compatible between these two settings, %(brand)s needs to resync your account.": "Oled varem kasutanud %(brand)s serveriga %(host)s ja lubanud andmete laisa laadimise. Selles versioonis on laisk laadimine keelatud. Kuna kohalik vahemälu nende kahe seadistuse vahel ei ühildu, peab %(brand)s sinu konto uuesti sünkroonima.", "If the other version of %(brand)s is still open in another tab, please close it as using %(brand)s on the same host with both lazy loading enabled and disabled simultaneously will cause issues.": "Kui %(brand)s teine versioon on mõnel teisel vahekaardil endiselt avatud, palun sulge see. %(brand)s kasutamine samal serveril põhjustab vigu olukorras, kus laisk laadimine on samal ajal lubatud ja keelatud.", "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 vanema versiooni andmed on tuvastatud. See kindlasti põhjustab läbiva krüptimise tõrke vanemas versioonis. Läbivalt krüptitud sõnumid, mida on vanema versiooni kasutamise ajal hiljuti vahetatud, ei pruugi selles versioonis olla dekrüptitavad. See võib põhjustada vigu ka selle versiooniga saadetud sõnumite lugemisel. Kui teil tekib probleeme, logige välja ja uuesti sisse. Sõnumite ajaloo säilitamiseks eksportige ja uuesti importige oma krüptovõtmed.", - "Navigation": "Navigeerimine", "Preparing to download logs": "Valmistun logikirjete allalaadimiseks", "Unexpected server error trying to leave the room": "Jututoast lahkumisel tekkis serveris ootamatu viga", "Error leaving room": "Viga jututoast lahkumisel", @@ -1236,14 +1193,10 @@ "Please view existing bugs on Github first. No match? Start a new one.": "Palun esmalt vaata, kas Githubis on selline viga juba kirjeldatud. Sa ei leidnud midagi? Siis saada uus veateade.", "Comment": "Kommentaar", "Feedback sent": "Tagasiside on saadetud", - "Welcome %(name)s": "Tere tulemast, %(name)s", - "Add a photo so people know it's you.": "Enda tutvustamiseks lisa foto.", - "Great, that'll help people know it's you": "Suurepärane, nüüd teised teavad et tegemist on sinuga", "New version of %(brand)s is available": "%(brand)s ralenduse uus versioon on saadaval", "Update %(brand)s": "Uuenda %(brand)s rakendust", "Enable desktop notifications": "Võta kasutusele töölauakeskkonna teavitused", "Don't miss a reply": "Ära jäta vastust vahele", - "Now, let's help you get started": "Nüüd näitame sulle, mida saad järgmiseks teha", "Invite someone using their name, email address, username (like ) or share this room.": "Kutsu teist osapoolt tema nime, e-posti aadressi, kasutajanime (nagu ) alusel või jaga seda jututuba.", "Start a conversation with someone using their name, email address or username (like ).": "Alusta vestlust kasutades teise osapoole nime, e-posti aadressi või kasutajanime (näiteks ).", "Invite by email": "Saada kutse e-kirjaga", @@ -1506,9 +1459,6 @@ "Topic: %(topic)s (edit)": "Teema: %(topic)s (muudetud)", "This is the beginning of your direct message history with .": "See on sinu ja kasutaja otsesuhtluse ajaloo algus.", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "Kuni kumbki teist kolmandaid osapooli liituma ei kutsu, olete siin vestluses vaid teie kahekesi.", - "Takes the call in the current room off hold": "Võtab selles jututoas ootel oleva kõne", - "Places the call in the current room on hold": "Jätab kõne selles jututoas ootele", - "Go to Home View": "Avalehele", "Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": { "one": "Selleks, et sisu saaks otsingus kasutada, puhverda krüptitud sõnumid kohalikus seadmes turvaliselt. %(rooms)s jututoa andmete salvestamiseks kulub hetkel %(size)s.", "other": "Selleks, et sisu saaks otsingus kasutada, puhverda krüptitud sõnumid kohalikus seadmes turvaliselt. %(rooms)s jututoa andmete salvestamiseks kulub hetkel %(size)s." @@ -1578,11 +1528,6 @@ "Got an account? Sign in": "Sul on kasutajakonto olemas? Siis logi sisse", "Continuing without email": "Jätka ilma e-posti aadressi seadistamiseta", "Server Options": "Serveri seadistused", - "Host account on": "Sinu kasutajakontot teenindab", - "Decide where your account is hosted": "Vali kes võiks sinu kasutajakontot teenindada", - "Already have an account? Sign in here": "Sul juba on kasutajakonto olemas? Logi siin sisse", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s või %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Jätkamiseks kasuta %(ssoButtons)s teenuseid", "New? Create account": "Täitsa uus asi sinu jaoks? Loo omale kasutajakonto", "There was a problem communicating with the homeserver, please try again later.": "Serveriühenduses tekkis viga. Palun proovi mõne aja pärast uuesti.", "Use email to optionally be discoverable by existing contacts.": "Kui soovid, et teised kasutajad saaksid sind leida, siis palun lisa oma e-posti aadress.", @@ -1634,12 +1579,9 @@ "Confirm your Security Phrase": "Kinnita oma turvafraasi", "Great! This Security Phrase looks strong enough.": "Suurepärane! Turvafraas on piisavalt kange.", "Set my room layout for everyone": "Kasuta minu jututoa paigutust kõigi jaoks", - "Search (must be enabled)": "Otsing (peab olema lubatud)", "Remember this": "Jäta see meelde", "The widget will verify your user ID, but won't be able to perform actions for you:": "See vidin verifitseerib sinu kasutajatunnuse, kuid ta ei saa sinu nimel toiminguid teha:", "Allow this widget to verify your identity": "Luba sellel vidinal sinu isikut verifitseerida", - "Converts the DM to a room": "Muuda otsevestlus jututoaks", - "Converts the room to a DM": "Muuda jututuba otsevestluseks", "Use app for a better experience": "Rakendusega saad Matrix'is suhelda parimal viisil", "Something went wrong in confirming your identity. Cancel and try again.": "Midagi läks sinu isiku tuvastamisel viltu. Tühista viimane toiming ja proovi uuesti.", "Use app": "Kasuta rakendust", @@ -1780,7 +1722,6 @@ "No microphone found": "Mikrofoni ei leidu", "We were unable to access your microphone. Please check your browser settings and try again.": "Meil puudub ligipääs sinu mikrofonile. Palun kontrolli oma veebibrauseri seadistusi ja proovi uuesti.", "Unable to access your microphone": "Puudub ligipääs mikrofonile", - "Your access token gives full access to your account. Do not share it with anyone.": "Sinu pääsuluba annab täismahulise ligipääsu sinu kasutajakontole. Palun ära jaga seda teistega.", "Please enter a name for the space": "Palun sisesta kogukonnakeskuse nimi", "Connecting": "Kõne on ühendamisel", "Search names and descriptions": "Otsi nimede ja kirjelduste seast", @@ -1918,7 +1859,6 @@ "Show sidebar": "Näita külgpaani", "More": "Veel", "Add space": "Lisa kogukonnakeskus", - "Olm version:": "Olm-teegi versioon:", "Delete avatar": "Kustuta tunnuspilt", "Unknown failure: %(reason)s": "Tundmatu viga: %(reason)s", "We sent the others, but the below people couldn't be invited to ": "Teised kasutajad said kutse, kuid allpool toodud kasutajatele ei õnnestunud saata kutset jututuppa", @@ -1960,7 +1900,6 @@ "The above, but in as well": "Ülaltoodu, aga samuti jututoas", "Some encryption parameters have been changed.": "Mõned krüptimise parameetrid on muutunud.", "Role in ": "Roll jututoas ", - "Send a sticker": "Saada kleeps", "Unknown failure": "Määratlemata viga", "Failed to update the join rules": "Liitumisreeglite uuendamine ei õnnestunud", "Anyone in can find and join. You can select other spaces too.": "Kõik kogukonnakeskuse liikmed saavad leida ja liituda. Sa võid valida ka muid kogukonnakeskuseid.", @@ -2069,7 +2008,6 @@ "Thread options": "Jutulõnga valikud", "Someone already has that username. Try another or if it is you, sign in below.": "Keegi juba pruugib sellist kasutajanime. Katseta mõne muuga või kui oled sina ise, siis logi sisse.", "Someone already has that username, please try another.": "Keegi juba pruugib sellist kasutajanime. Palun katseta mõne muuga.", - "Own your conversations.": "Vestlused, mida sa tegelikult ka omad.", "Show tray icon and minimise window to it on close": "Näita süsteemisalve ikooni ja Element'i akna sulgemisel minimeeri ta salve", "Show all your rooms in Home, even if they're in a space.": "Näita kõiki oma jututubasid avalehel ka siis kui nad on osa mõnest kogukonnast.", "Home is useful for getting an overview of everything.": "Avalehelt saad kõigest hea ülevaate.", @@ -2127,7 +2065,6 @@ "That's fine": "Sobib", "You cannot place calls without a connection to the server.": "Kui ühendus sinu serveriga on katkenud, siis sa ei saa helistada.", "Connectivity to the server has been lost": "Ühendus sinu serveriga on katkenud", - "Toggle space panel": "Lülita kogukondade riba sisse/välja", "%(count)s votes cast. Vote to see the results": { "one": "%(count)s hääl antud. Tulemuste nägemiseks tee oma valik", "other": "%(count)s häält antud. Tulemuste nägemiseks tee oma valik" @@ -2183,8 +2120,6 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Ootan, et sa verifitseerid oma teises seadmes: %(deviceName)s (%(deviceId)s)…", "Expand map": "Kuva kaart laiemana", "From a thread": "Jutulõngast", - "No active call in this room": "Jututoas ei ole kõnet pooleli", - "Unable to find Matrix ID for phone number": "Sellele telefoninumbrile vastavat Matrix'i kasutajatunnust ei õnnestu leida", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Tundmatu kasutaja ja sessiooni kombinatsioon: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Viga käsu täitmisel: jututuba ei õnnestu leida (%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "Jututoa tundmatu aadress: %(roomAlias)s", @@ -2203,7 +2138,6 @@ "You were removed from %(roomName)s by %(memberName)s": "%(memberName)s eemaldas sind %(roomName)s jututoast", "Remove, ban, or invite people to this room, and make you leave": "Sellest jututoast inimeste eemaldamine, väljamüksamine, keelamine või tuppa kutsumine", "Remove, ban, or invite people to your active room, and make you leave": "Aktiivsest jututoast inimeste eemaldamine, väljamüksamine, keelamine või tuppa kutsumine", - "Open this settings tab": "Ava see seadistuste vaates", "Space home": "Kogukonnakeskuse avaleht", "Message pending moderation": "Sõnum on modereerimise ootel", "Message pending moderation: %(reason)s": "Sõnum on modereerimise ootel: %(reason)s", @@ -2212,34 +2146,12 @@ "Encrypted messages before this point are unavailable.": "Enne seda ajahetke saadetud krüptitud sõnumid pole saadaval.", "You don't have permission to view messages from before you joined.": "Sul pole õigusi vaadata enne liitumist saadetud sõnumeid.", "You don't have permission to view messages from before you were invited.": "Sul pole õigusi vaadata enne kutse saatmist saadetud sõnumeid.", - "Navigate down in the room list": "Suundu jututubade loendis alla", - "Navigate up in the room list": "Suundu jututubade loendis üles", - "Scroll down in the timeline": "Liigu ajajoonel alla", - "Scroll up in the timeline": "Liigu ajajoonel üles", - "Toggle webcam on/off": "Lülita veebikaamera sisse/välja", - "Jump to end of the composer": "Hüppa sõnumite kirjutamise vaate lõppu", - "Jump to start of the composer": "Hüppa sõnumite kirjutamise vaate algusesse", - "Navigate to previous message to edit": "Muutmiseks liigu eelmise sõnumi juurde", - "Navigate to next message to edit": "Muutmiseks liigu järgmise sõnumi juurde", "Internal room ID": "Jututoa tehniline tunnus", "Group all your rooms that aren't part of a space in one place.": "Koonda ühte kohta kõik oma jututoad, mis ei kuulu mõnda kogukonda.", - "Previous autocomplete suggestion": "Eelmine sisestussoovitus", - "Next autocomplete suggestion": "Järgmine sisestussoovitus", - "Previous room or DM": "Eelmine otsevestlus või jututuba", - "Next room or DM": "Järgmine otsevestlus või jututuba", - "Previous unread room or DM": "Eelmine lugemata otsevestlus või jututuba", - "Next unread room or DM": "Järgmine lugemata otsevestlus või jututuba", - "Navigate to previous message in composer history": "Mine muutmisvaate ajaloos eelmise sõnumi juurde", - "Navigate to next message in composer history": "Mine muutmisvaate ajaloos järgmise sõnumi juurde", "Unable to check if username has been taken. Try again later.": "Kasutajanime saadavust ei õnnestu kontrollida. Palun proovi hiljem uuesti.", "Group all your people in one place.": "Koonda oma olulised sõbrad ühte kohta.", "Group all your favourite rooms and people in one place.": "Koonda oma olulised sõbrad ning lemmikjututoad ühte kohta.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Kogukonnakeskused on kasutajate ja jututubade koondamise viis. Lisaks kogukonnakeskustele, mille liiga sa oled, võid sa kasutada ka eelseadistatud kogukonnakeskusi.", - "Toggle hidden event visibility": "Lülita peidetud sündmuste näitamine sisse/välja", - "Redo edit": "Korda muudatust", - "Undo edit": "Võta muudatus tagasi", - "Jump to last message": "Mine viimase sõnumi juurde", - "Jump to first message": "Mine esimese sõnumi juurde", "Pick a date to jump to": "Vali kuupäev, mida soovid vaadata", "Jump to date": "Vaata kuupäeva", "The beginning of the room": "Jututoa algus", @@ -2266,9 +2178,7 @@ "Voters see results as soon as they have voted": "Osalejad näevad tulemusi kohe peale oma valiku tegemist", "Results are only revealed when you end the poll": "Tulemused on näha vaid siis, kui küsitlus in lõppenud", "Search Dialog": "Otsinguvaade", - "Open user settings": "Ava kasutaja seadistused", "Open thread": "Ava jutulõng", - "Switch to space by number": "Vaata kogukonnakeskust tema numbri alusel", "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Vasta jätkuvas jutulõngas või uue jutulõnga loomiseks kasuta „%(replyInThread)s“ valikut, mida kuvatakse hiire liigutamisel sõnumi kohal.", "What location type do you want to share?": "Missugust asukohta sa soovid jagada?", "Drop a Pin": "Märgi nööpnõelaga", @@ -2278,8 +2188,6 @@ "We couldn't send your location": "Sinu asukoha saatmine ei õnnestunud", "Pinned": "Klammerdatud", "Show polls button": "Näita küsitluste nuppu", - "No virtual room for this room": "Sellel jututoal pole virtuaalset olekut", - "Switches to this room's virtual room, if it has one": "Kui jututoal on virtuaalne olek, siis kasuta seda", "Match system": "Kasuta süsteemset väärtust", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Kogukonnakeskused on uus võimalus jututubade ja inimeste liitmiseks. Missugust kogukonnakeskust sa tahaksid luua? Sa saad seda hiljem muuta.", "Expand quotes": "Näita viidatud sisu", @@ -2294,8 +2202,6 @@ "This homeserver is not configured to display maps.": "See koduserver pole seadistatud kuvama kaarte.", "This homeserver is not configured correctly to display maps, or the configured map server may be unreachable.": "See koduserver kas pole korrektselt seadistatud kuvama kaarte või seadistatud kaardiserver ei tööta.", "Can't create a thread from an event with an existing relation": "Jutulõnga ei saa luua sõnumist, mis juba on jutulõnga osa", - "Toggle Code Block": "Lülita koodiblokk sisse/välja", - "Toggle Link": "Lülita link sisse/välja", "You are sharing your live location": "Sa jagad oma asukohta reaalajas", "%(displayName)s's live location": "%(displayName)s asukoht reaalajas", "Currently removing messages in %(count)s rooms": { @@ -2309,14 +2215,11 @@ "Preserve system messages": "Näita süsteemseid teateid", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Kui sa samuti soovid mitte kuvada selle kasutajaga seotud süsteemseid teateid (näiteks liikmelisuse muutused, profiili muutused, jne), siis eemalda see valik", "Share for %(duration)s": "Jaga nii kaua - %(duration)s", - "Next recently visited room or space": "Järgmine viimati külastatud jututuba või kogukond", - "Previous recently visited room or space": "Eelmine viimati külastatud jututuba või kogukond", "Unsent": "Saatmata", "Developer tools": "Arendusvahendid", "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.": "Kohandatud serveriseadistusi saad kasutada selleks, et logida sisse sinu valitud koduserverisse. See võimaldab sinul kasutada %(brand)s'i mõnes teises koduserveri hallatava kasutajakontoga.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s ei saanud asukohta tuvastada. Palun luba vastavad õigused brauseri seadistustes.", "%(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", "%(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.", @@ -2472,7 +2375,6 @@ }, "In %(spaceName)s.": "Kogukonnas %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "Kogukondades %(space1Name)s ja %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Arendaja toiming: Lõpetab kehtiva väljuva rühmasessiooni ja seadistab uue Olm sessiooni", "Stop and close": "Peata ja sulge", "Online community members": "Võrgupõhise kogukonna liikmed", "Coworkers and teams": "Kolleegid ja töörühmad", @@ -2780,8 +2682,6 @@ "The sender has blocked you from receiving this message": "Sõnumi saatja on keelanud sul selle sõnumi saamise", "Room directory": "Jututubade loend", "Ended a poll": "Lõpetas küsitluse", - "Identity server is %(identityServerUrl)s": "Isikutuvastusserveri aadress %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Koduserveri aadress %(homeserverUrl)s", "Yes, it was me": "Jah, see olin mina", "Answered elsewhere": "Vastatud mujal", "If you know a room address, try joining through that instead.": "Kui sa tead jututoa aadressi, siis proovi liitumiseks seda kasutada.", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Eira (%(counter)s)", "Once everyone has joined, you’ll be able to chat": "Te saate vestelda, kui kõik on liitunud", "Invites by email can only be sent one at a time": "Kutseid saad e-posti teel saata vaid ükshaaval", - "Could not find room": "Jututuba ei õnnestunud leida", - "iframe has no src attribute": "iframe elemendil puudub src atribuut", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Teavituste eelistuste muutmisel tekkis viga. Palun proovi sama valikut uuesti sisse/välja lülitada.", "Use your account to continue.": "Jätkamaks kasuta oma kontot.", "Desktop app logo": "Töölauarakenduse logo", @@ -3195,7 +3093,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[number]", - "backspace": "Tagasisammuklahv" + "backspace": "Tagasisammuklahv", + "category_calls": "Kõned", + "category_room_list": "Jututubade loend", + "category_navigation": "Navigeerimine", + "category_autocomplete": "Automaatne sõnalõpetus", + "composer_toggle_bold": "Lülita paks kiri sisse/välja", + "composer_toggle_italics": "Lülita kaldkiri sisse/välja", + "composer_toggle_quote": "Lülita tsiteerimine sisse/välja", + "composer_toggle_code_block": "Lülita koodiblokk sisse/välja", + "composer_toggle_link": "Lülita link sisse/välja", + "cancel_reply": "Tühista sõnumile vastamine", + "navigate_next_message_edit": "Muutmiseks liigu järgmise sõnumi juurde", + "navigate_prev_message_edit": "Muutmiseks liigu eelmise sõnumi juurde", + "composer_jump_start": "Hüppa sõnumite kirjutamise vaate algusesse", + "composer_jump_end": "Hüppa sõnumite kirjutamise vaate lõppu", + "composer_navigate_next_history": "Mine muutmisvaate ajaloos järgmise sõnumi juurde", + "composer_navigate_prev_history": "Mine muutmisvaate ajaloos eelmise sõnumi juurde", + "send_sticker": "Saada kleeps", + "toggle_microphone_mute": "Lülita mikrofoni summutamine sisse/välja", + "toggle_webcam_mute": "Lülita veebikaamera sisse/välja", + "dismiss_read_marker_and_jump_bottom": "Ära arvesta loetud sõnumite järjehoidjat ning mine kõige lõppu", + "jump_to_read_marker": "Mine vanima lugemata sõnumi juurde", + "upload_file": "Laadi fail üles", + "scroll_up_timeline": "Liigu ajajoonel üles", + "scroll_down_timeline": "Liigu ajajoonel alla", + "jump_room_search": "Suundu jututoa otsingusse", + "room_list_select_room": "Vali tubade loendist jututuba", + "room_list_collapse_section": "Ahenda jututubade loendi valikut", + "room_list_expand_section": "Laienda jututubade loendi valikut", + "room_list_navigate_down": "Suundu jututubade loendis alla", + "room_list_navigate_up": "Suundu jututubade loendis üles", + "toggle_top_left_menu": "Lülita ülemine vasak menüü sisse/välja", + "toggle_right_panel": "Lülita parem paan sisse/välja", + "keyboard_shortcuts_tab": "Ava see seadistuste vaates", + "go_home_view": "Avalehele", + "next_unread_room": "Järgmine lugemata otsevestlus või jututuba", + "prev_unread_room": "Eelmine lugemata otsevestlus või jututuba", + "next_room": "Järgmine otsevestlus või jututuba", + "prev_room": "Eelmine otsevestlus või jututuba", + "autocomplete_cancel": "Lülita automaatne sõnalõpetus välja", + "autocomplete_navigate_next": "Järgmine sisestussoovitus", + "autocomplete_navigate_prev": "Eelmine sisestussoovitus", + "toggle_space_panel": "Lülita kogukondade riba sisse/välja", + "toggle_hidden_events": "Lülita peidetud sündmuste näitamine sisse/välja", + "jump_first_message": "Mine esimese sõnumi juurde", + "jump_last_message": "Mine viimase sõnumi juurde", + "composer_undo": "Võta muudatus tagasi", + "composer_redo": "Korda muudatust", + "navigate_prev_history": "Eelmine viimati külastatud jututuba või kogukond", + "navigate_next_history": "Järgmine viimati külastatud jututuba või kogukond", + "switch_to_space": "Vaata kogukonnakeskust tema numbri alusel", + "open_user_settings": "Ava kasutaja seadistused", + "close_dialog_menu": "Sulge dialoogiaken või kontekstimenüü", + "activate_button": "Aktiveeri valitud nupp", + "composer_new_line": "Reavahetus", + "autocomplete_force": "Sunni lõpetama", + "search": "Otsing (peab olema lubatud)" }, "credits": { "default_cover_photo": "Vaikimisi kasutatava kaanepildi autoriõiguste omanik on Jesús Roncero ja seda fotot kasutame vastavalt CC-BY-SA 4.0 litsentsi tingimustele.", @@ -3320,7 +3274,16 @@ "download_google_play": "Laadi alla Google Play'st", "download_f_droid": "Laadi alla F-Droid'ist", "apple_trademarks": "App Store® ja Apple logo® on Apple Inc kaubamärgid.", - "google_trademarks": "Google Play ja Google Play logo on Google LLC kaubamärgid." + "google_trademarks": "Google Play ja Google Play logo on Google LLC kaubamärgid.", + "has_avatar_label": "Suurepärane, nüüd teised teavad et tegemist on sinuga", + "no_avatar_label": "Enda tutvustamiseks lisa foto.", + "welcome_user": "Tere tulemast, %(name)s", + "welcome_detail": "Nüüd näitame sulle, mida saad järgmiseks teha", + "intro_welcome": "Tere tulemast suhtlusrakenduse %(appName)s kasutajaks", + "intro_byline": "Vestlused, mida sa tegelikult ka omad.", + "send_dm": "Saada otsesõnum", + "explore_rooms": "Sirvi avalikke jututubasid", + "create_room": "Loo rühmavestlus" }, "settings": { "show_breadcrumbs": "Näita viimati külastatud jututubade viiteid jututubade loendi kohal", @@ -3888,7 +3851,24 @@ "category_admin": "Peakasutaja", "category_advanced": "Teave arendajatele", "category_effects": "Vahvad täiendused", - "category_other": "Muud" + "category_other": "Muud", + "addwidget_missing_url": "Palun lisa antud vidina aadress või lisatav kood", + "addwidget_iframe_missing_src": "iframe elemendil puudub src atribuut", + "addwidget_invalid_protocol": "Vidina aadressi alguses peab olema kas https:// või http://", + "addwidget_no_permissions": "Sul pole õigusi vidinate muutmiseks selles jututoas.", + "converttodm": "Muuda jututuba otsevestluseks", + "could_not_find_room": "Jututuba ei õnnestunud leida", + "converttoroom": "Muuda otsevestlus jututoaks", + "discardsession": "Sunnib loobuma praeguse krüptitud jututoa rühmavestluse seansist", + "remakeolm": "Arendaja toiming: Lõpetab kehtiva väljuva rühmasessiooni ja seadistab uue Olm sessiooni", + "tovirtual": "Kui jututoal on virtuaalne olek, siis kasuta seda", + "tovirtual_not_found": "Sellel jututoal pole virtuaalset olekut", + "query": "Avab vestluse näidatud kasutajaga", + "query_not_found_phone_number": "Sellele telefoninumbrile vastavat Matrix'i kasutajatunnust ei õnnestu leida", + "holdcall": "Jätab kõne selles jututoas ootele", + "no_active_call": "Jututoas ei ole kõnet pooleli", + "unholdcall": "Võtab selles jututoas ootel oleva kõne", + "me": "Näitab tegevusi" }, "presence": { "busy": "Hõivatud", @@ -4069,7 +4049,16 @@ "sign_in_with_sso": "Logi sisse ühekordse sisselogimise abil", "sso": "SSO Ühekordne sisselogimine", "reset_password_action": "Lähtesta salasõna", - "reset_password_title": "Lähtesta oma salasõna" + "reset_password_title": "Lähtesta oma salasõna", + "continue_with_sso": "Jätkamiseks kasuta %(ssoButtons)s teenuseid", + "sso_or_username_password": "%(ssoButtons)s või %(usernamePassword)s", + "sign_in_instead": "Sul juba on kasutajakonto olemas? Logi siin sisse", + "account_clash": "Sinu uus kasutajakonto (%(newAccountId)s) on registreeritud, kuid sa jube oled sisse loginud teise kasutajakontoga (%(loggedInUserId)s).", + "account_clash_previous_account": "Jätka senise konto kasutamist", + "log_in_new_account": "Logi sisse oma uuele kasutajakontole.", + "registration_successful": "Registreerimine õnnestus", + "server_picker_title": "Sinu kasutajakontot teenindab", + "server_picker_dialog_title": "Vali kes võiks sinu kasutajakontot teenindada" }, "room_list": { "sort_unread_first": "Näita lugemata sõnumitega jututubasid esimesena", @@ -4105,5 +4094,20 @@ "report_entire_room": "Teata tervest jututoast", "report_content_to_homeserver": "Teata sisust Sinu koduserveri haldurile", "description": "Sellest sõnumist teatamine saadab tema unikaalse sõnumi tunnuse sinu koduserveri haldurile. Kui selle jututoa sõnumid on krüptitud, siis sinu koduserveri haldur ei saa lugeda selle sõnumi teksti ega vaadata seal leiduvaid faile ja pilte." + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s'i versioon:", + "olm_version": "Olm-teegi versioon:", + "help_link": "Kui otsid lisateavet %(brand)s'i kasutamise kohta, palun vaata siia.", + "help_link_chat_bot": "%(brand)s'i kasutamisega seotud abiteabe otsimiseks klõpsi seda viidet või vajutades järgnevat nuppu alusta vestlust meie robotiga.", + "chat_bot": "Vestle %(brand)s'i robotiga", + "title": "Abiteave ning info meie kohta", + "versions": "Versioonid", + "homeserver": "Koduserveri aadress %(homeserverUrl)s", + "identity_server": "Isikutuvastusserveri aadress %(identityServerUrl)s", + "access_token_detail": "Sinu pääsuluba annab täismahulise ligipääsu sinu kasutajakontole. Palun ära jaga seda teistega.", + "clear_cache_reload": "Tühjenda puhver ja laadi uuesti" + } } } diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json index ceeb344734..56e3b805f3 100644 --- a/src/i18n/strings/eu.json +++ b/src/i18n/strings/eu.json @@ -65,7 +65,6 @@ "Deactivate Account": "Itxi kontua", "Decrypt %(text)s": "Deszifratu %(text)s", "Default": "Lehenetsia", - "Displays action": "Ekintza bistaratzen du", "%(items)s and %(lastItem)s": "%(items)s eta %(lastItem)s", "Download %(text)s": "Deskargatu %(text)s", "Error decrypting attachment": "Errorea eranskina deszifratzean", @@ -108,7 +107,6 @@ "Reject all %(invitedRooms)s invites": "Baztertu %(invitedRooms)s gelarako gonbidapen guztiak", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)sek ez du zuri jakinarazpenak bidaltzeko baimenik, egiaztatu nabigatzailearen ezarpenak", "%(brand)s was not given permission to send notifications - please try again": "Ez zaio jakinarazpenak bidaltzeko baimena eman %(brand)si, saiatu berriro", - "%(brand)s version:": "%(brand)s bertsioa:", "Room %(roomId)s not visible": "%(roomId)s gela ez dago ikusgai", "%(roomName)s does not exist.": "Ez dago %(roomName)s izeneko gela.", "%(roomName)s is not accessible at this time.": "%(roomName)s ez dago eskuragarri orain.", @@ -352,7 +350,6 @@ "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.": "Zure mezua ez da bidali zure hasiera zerbitzariak hilabeteko erabiltzaile aktiboen muga jo duelako. Jarri kontaktuan zerbitzuaren administratzailearekin zerbitzua erabiltzen jarraitzeko.", "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "Zure mezua ez da bidali zure hasiera zerbitzariak baliabide mugaren bat jo duelako. Jarri kontaktuan zerbitzuaren administratzailearekin zerbitzua erabiltzen jarraitzeko.", "Please contact your service administrator to continue using this service.": "Jarri kontaktuan zerbitzuaren administratzailearekin zerbitzu hau erabiltzen jarraitzeko.", - "Forces the current outbound group session in an encrypted room to be discarded": "Uneko irteerako talde saioa zifratutako gela batean baztertzera behartzen du", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Egunkariak bidali aurretik, GitHub arazo bat sortu behar duzu gertatzen zaizuna azaltzeko.", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s-ek orain 3-5 aldiz memoria gutxiago darabil, beste erabiltzaileen informazioa behar denean besterik ez kargatzen. Itxaron zerbitzariarekin sinkronizatzen garen bitartean!", "Updating %(brand)s": "%(brand)s eguneratzen", @@ -481,11 +478,6 @@ "Phone numbers": "Telefono zenbakiak", "Language and region": "Hizkuntza eta eskualdea", "Account management": "Kontuen kudeaketa", - "For help with using %(brand)s, click here.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik hemen.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik hemen edo hasi txat bat gure botarekin beheko botoia sakatuz.", - "Chat with %(brand)s Bot": "Txateatu %(brand)s botarekin", - "Help & About": "Laguntza eta honi buruz", - "Versions": "Bertsioak", "Room list": "Gelen zerrenda", "Autocomplete delay (ms)": "Automatikoki osatzeko atzerapena (ms)", "Roles & Permissions": "Rolak eta baimenak", @@ -564,7 +556,6 @@ "Power level": "Botere maila", "Room Settings - %(roomName)s": "Gelaren ezarpenak - %(roomName)s", "Could not load user profile": "Ezin izan da erabiltzaile-profila kargatu", - "You cannot modify widgets in this room.": "Ezin dituzu gela honetako trepetak aldatu.", "Upgrade this room to the recommended room version": "Bertsio-berritu gela hau aholkatutako bertsiora", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Gela hau bertsio-berritzeak gelaren oraingo instantzia itzaliko du eta izen bereko beste gela berri bat sortuko du.", "Failed to revoke invite": "Gonbidapena indargabetzeak huts egin du", @@ -577,7 +568,6 @@ }, "The file '%(fileName)s' failed to upload.": "Huts egin du '%(fileName)s' fitxategia igotzean.", "The server does not support the room version specified.": "Zerbitzariak ez du emandako gela-bertsioa onartzen.", - "Please supply a https:// or http:// widget URL": "Eman https:// edo http:// motako trepetaren URL-a", "Cannot reach homeserver": "Ezin izan da hasiera-zerbitzaria atzitu", "Ensure you have a stable internet connection, or get in touch with the server admin": "Baieztatu Internet konexio egonkor bat duzula, edo jarri kontaktuan zerbitzariaren administratzailearekin", "Your %(brand)s is misconfigured": "Zure %(brand)s gaizki konfiguratuta dago", @@ -654,11 +644,7 @@ "Failed to get autodiscovery configuration from server": "Huts egin du aurkikuntza automatikoaren konfigurazioa zerbitzaritik eskuratzean", "Invalid base_url for m.homeserver": "Baliogabeko base_url m.homeserver zerbitzariarentzat", "Invalid base_url for m.identity_server": "Baliogabeko base_url m.identity_server zerbitzariarentzat", - "Log in to your new account.": "Hasi saioa zure kontu berrian.", - "Registration Successful": "Ongi erregistratuta", "Upload all": "Igo denak", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Zure kontu berria (%(newAccountId)s) erregistratuta dago, baina dagoeneko saioa hasi duzu beste kontu batekin (%(loggedInUserId)s).", - "Continue with previous account": "Jarraitu aurreko kontuarekin", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Gela hau bertsio-berritzeak gelaren oraingo instantzia itzaliko du eta izen bereko beste gela berri bat sortuko du. Kideei esperientziarik onena emateko, hau egingo dugu:", "Edited at %(date)s. Click to view edits.": "Edizio data: %(date)s. Sakatu edizioak ikusteko.", "Message edits": "Mezuaren edizioak", @@ -728,7 +714,6 @@ "If you don't want to use to discover and be discoverable by existing contacts you know, enter another identity server below.": "Ez baduzu erabili nahi jendea aurkitzeko eta zure kontaktuek zu aurkitzeko, idatzi beste identitate-zerbitzari bat behean.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Identitate-zerbitzari bat erabiltzea aukerazkoa da. Identitate-zerbitzari bat ez erabiltzea erabakitzen baduzu, ezin izango zaituztete e-mail edo telefonoa erabilita aurkitu eta ezin izango dituzu besteak e-mail edo telefonoa erabiliz gonbidatu.", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Onartu %(serverName)s identitate-zerbitzariaren erabilera baldintzak besteek zu e-mail helbidea edo telefonoa erabiliz aurkitzea ahalbidetzeko.", - "Clear cache and reload": "Garbitu cachea eta birkargatu", "Read Marker lifetime (ms)": "Orri-markagailuaren biziraupena (ms)", "Read Marker off-screen lifetime (ms)": "Orri-markagailuaren biziraupena pantailaz kanpo (ms)", "Error changing power level requirement": "Errorea botere-maila eskaria aldatzean", @@ -1015,24 +1000,6 @@ "Confirm by comparing the following with the User Settings in your other session:": "Berretsi honako hau zure beste saioaren erabiltzaile-ezarpenetan agertzen denarekin alderatuz:", "Confirm this user's session by comparing the following with their User Settings:": "Egiaztatu erabiltzailearen saio hau, honako hau bestearen erabiltzaile-ezarpenekin alderatuz:", "If they don't match, the security of your communication may be compromised.": "Ez badatoz bat, komunikazioaren segurtasuna konprometitua egon daiteke.", - "Navigation": "Nabigazioa", - "Calls": "Deiak", - "Room List": "Gelen zerrenda", - "Autocomplete": "Osatze automatikoa", - "Toggle Bold": "Txandakatu lodia", - "Toggle Italics": "Txandakatu etzana", - "Toggle Quote": "Txandakatu aipamena", - "New line": "Lerro berria", - "Toggle microphone mute": "Txandakatu mikrofonoa mututzea", - "Jump to room search": "Jauzi gelaren bilaketara", - "Select room from the room list": "Hautatu gela gelen zerrendan", - "Collapse room list section": "Tolestu gelen zerrendako hautaketa", - "Expand room list section": "Hedatu gelen zerrendako hautaketa", - "Toggle the top left menu": "Txandakatu goi ezkerreko menua", - "Close dialog or context menu": "Itxi elkarrizketa-koadroa edo laster-menua", - "Activate selected button": "Aktibatu hautatutako botoia", - "Toggle right panel": "Txandakatu eskumako panela", - "Cancel autocomplete": "Ezeztatu osatze automatikoa", "Manually verify all remote sessions": "Egiaztatu eskuz urruneko saio guztiak", "Self signing private key:": "Norberak sinatutako gako pribatua:", "cached locally": "cache lokalean", @@ -1042,7 +1009,6 @@ "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Gela zifratuetan, zuon mezuak babestuta daude, zuk zeuk eta hartzaileak bakarrik duzue hauek deszifratzeko gako bakanak.", "Verify all users in a room to ensure it's secure.": "Egiaztatu gela bateko erabiltzaile guztiak segurua dela baieztatzeko.", "Sign in with SSO": "Hasi saioa SSO-rekin", - "Cancel replying to a message": "Utzi mezua erantzuteari", "Use Single Sign On to continue": "Erabili Single sign-on jarraitzeko", "Confirm adding this email address by using Single Sign On to prove your identity.": "Baieztatu e-mail hau gehitzea Single sign-on bidez zure identitatea frogatuz.", "Confirm adding email": "Baieztatu e-maila gehitzea", @@ -1067,12 +1033,7 @@ "Server did not require any authentication": "Zerbitzariak ez du autentifikaziorik eskatu", "Server did not return valid authentication information.": "Zerbitzariak ez du baliozko autentifikazio informaziorik itzuli.", "There was a problem communicating with the server. Please try again.": "Arazo bat egon da zerbitzariarekin komunikatzeko. Saiatu berriro.", - "Welcome to %(appName)s": "Ongi etorri %(appName)s-era", - "Send a Direct Message": "Bidali mezu zuzena", - "Explore Public Rooms": "Arakatu gela publikoak", - "Create a Group Chat": "Sortu talde-txata", "Could not find user in room": "Ezin izan da erabiltzailea gelan aurkitu", - "Please supply a widget URL or embed code": "Eman trepetaren URLa edo txertatu kodea", "Can't load this message": "Ezin izan da mezu hau kargatu", "Submit logs": "Bidali egunkariak", "Reminder: Your browser is unsupported, so your experience may be unpredictable.": "Oroigarria: Ez dugu zure nabigatzailearentzako euskarririk, ezin da zure esperientzia nolakoa izango den aurreikusi.", @@ -1081,7 +1042,6 @@ "Unable to query secret storage status": "Ezin izan da biltegi sekretuaren egoera kontsultatu", "Currently indexing: %(currentRoom)s": "Orain indexatzen: %(currentRoom)s", "New login. Was this you?": "Saio berria. Zu izan zara?", - "Opens chat with the given user": "Erabiltzailearekin txata irekitzen du", "You signed in to a new session without verifying it:": "Saio berria hasi duzu hau egiaztatu gabe:", "Verify your other session using one of the options below.": "Egiaztatu zure beste saioa beheko aukeretako batekin.", "IRC display name width": "IRC-ko pantaila izenaren zabalera", @@ -1098,9 +1058,6 @@ "Successfully restored %(sessionCount)s keys": "%(sessionCount)s gako ongi berreskuratuta", "Confirm encryption setup": "Berretsi zifratze ezarpena", "Click the button below to confirm setting up encryption.": "Sakatu azpiko botoia zifratze-ezarpena berresteko.", - "Dismiss read marker and jump to bottom": "Baztertu irakurtze-marka eta jauzi beheraino", - "Jump to oldest unread message": "Jauzi irakurri gabeko mezu zaharrenera", - "Upload a file": "Igo fitxategia", "Joins room with given address": "Emandako helbidea duen gelara elkartzen da", "Your homeserver has exceeded its user limit.": "Zure hasiera-zerbitzariak erabiltzaile muga gainditu du.", "Your homeserver has exceeded one of its resource limits.": "Zure hasiera-zerbitzariak bere baliabide mugetako bat gainditu du.", @@ -1308,7 +1265,29 @@ "end": "Amaiera", "alt": "Alt", "control": "Ctrl", - "shift": "Maius." + "shift": "Maius.", + "category_calls": "Deiak", + "category_room_list": "Gelen zerrenda", + "category_navigation": "Nabigazioa", + "category_autocomplete": "Osatze automatikoa", + "composer_toggle_bold": "Txandakatu lodia", + "composer_toggle_italics": "Txandakatu etzana", + "composer_toggle_quote": "Txandakatu aipamena", + "cancel_reply": "Utzi mezua erantzuteari", + "toggle_microphone_mute": "Txandakatu mikrofonoa mututzea", + "dismiss_read_marker_and_jump_bottom": "Baztertu irakurtze-marka eta jauzi beheraino", + "jump_to_read_marker": "Jauzi irakurri gabeko mezu zaharrenera", + "upload_file": "Igo fitxategia", + "jump_room_search": "Jauzi gelaren bilaketara", + "room_list_select_room": "Hautatu gela gelen zerrendan", + "room_list_collapse_section": "Tolestu gelen zerrendako hautaketa", + "room_list_expand_section": "Hedatu gelen zerrendako hautaketa", + "toggle_top_left_menu": "Txandakatu goi ezkerreko menua", + "toggle_right_panel": "Txandakatu eskumako panela", + "autocomplete_cancel": "Ezeztatu osatze automatikoa", + "close_dialog_menu": "Itxi elkarrizketa-koadroa edo laster-menua", + "activate_button": "Aktibatu hautatutako botoia", + "composer_new_line": "Lerro berria" }, "composer": { "format_bold": "Lodia", @@ -1635,7 +1614,13 @@ "category_actions": "Ekintzak", "category_admin": "Kudeatzailea", "category_advanced": "Aurreratua", - "category_other": "Beste bat" + "category_other": "Beste bat", + "addwidget_missing_url": "Eman trepetaren URLa edo txertatu kodea", + "addwidget_invalid_protocol": "Eman https:// edo http:// motako trepetaren URL-a", + "addwidget_no_permissions": "Ezin dituzu gela honetako trepetak aldatu.", + "discardsession": "Uneko irteerako talde saioa zifratutako gela batean baztertzera behartzen du", + "query": "Erabiltzailearekin txata irekitzen du", + "me": "Ekintza bistaratzen du" }, "presence": { "online_for": "Konektatua %(duration)s", @@ -1717,7 +1702,11 @@ }, "auth": { "sign_in_with_sso": "Hai saioa urrats batean", - "sso": "Single sign-on" + "sso": "Single sign-on", + "account_clash": "Zure kontu berria (%(newAccountId)s) erregistratuta dago, baina dagoeneko saioa hasi duzu beste kontu batekin (%(loggedInUserId)s).", + "account_clash_previous_account": "Jarraitu aurreko kontuarekin", + "log_in_new_account": "Hasi saioa zure kontu berrian.", + "registration_successful": "Ongi erregistratuta" }, "export_chat": { "messages": "Mezuak" @@ -1738,5 +1727,22 @@ "missing_reason": "Idatzi zergatik salatzen duzun.", "report_content_to_homeserver": "Salatu edukia zure hasiera-zerbitzariko administratzaileari", "description": "Mezu hau salatzeak bere 'gertaera ID'-a bidaliko dio hasiera-zerbitzariko administratzaileari. Gela honetako mezuak zifratuta badaude, zure hasiera-zerbitzariko administratzaileak ezin izango du mezuaren testua irakurri edo irudirik ikusi." + }, + "onboarding": { + "intro_welcome": "Ongi etorri %(appName)s-era", + "send_dm": "Bidali mezu zuzena", + "explore_rooms": "Arakatu gela publikoak", + "create_room": "Sortu talde-txata" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s bertsioa:", + "help_link": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik hemen.", + "help_link_chat_bot": "%(brand)s erabiltzeko laguntza behar baduzu, egin klik hemen edo hasi txat bat gure botarekin beheko botoia sakatuz.", + "chat_bot": "Txateatu %(brand)s botarekin", + "title": "Laguntza eta honi buruz", + "versions": "Bertsioak", + "clear_cache_reload": "Garbitu cachea eta birkargatu" + } } } diff --git a/src/i18n/strings/fa.json b/src/i18n/strings/fa.json index 3fb7fdc98f..af8e616f65 100644 --- a/src/i18n/strings/fa.json +++ b/src/i18n/strings/fa.json @@ -423,9 +423,6 @@ "Joins room with given address": "به اتاق با آدرس داده‌شده بپیوندید", "Session already verified!": "نشست پیش از این تائید شده‌است!", "Verifies a user, session, and pubkey tuple": "یک کاربر، نشست و عبارت کلید عمومی را تائید می‌کند", - "You cannot modify widgets in this room.": "شما امکان تغییر ویجت‌ها در این اتاق را ندارید.", - "Please supply a https:// or http:// widget URL": "لطفا نشانی یک ویجت را به پروتکل http:// یا https:// وارد کنید", - "Please supply a widget URL or embed code": "لطفا نشانی (URL) ویجت یا یک کد قابل جاسازی (embeded) وارد کنید", "Could not find user in room": "کاربر در اتاق پیدا نشد", "Define the power level of a user": "سطح قدرت یک کاربر را تعریف کنید", "You are no longer ignoring %(userId)s": "شما دیگر کاربر %(userId)s را نادیده نمی‌گیرید", @@ -435,19 +432,12 @@ "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "کلید امضای ارائه شده با کلید امضای دریافت شده از جلسه %(deviceId)s کاربر %(userId)s مطابقت دارد. نشست به عنوان تأیید شده علامت گذاری شد.", "Verified key": "کلید تأیید شده", "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!": "هشدار: تایید کلید ناموفق بود! کلید امضا کننده %(userId)s در نشست %(deviceId)s برابر %(fprint)s است که با کلید %(fingerprint)s تطابق ندارد. این می تواند به معنی رهگیری ارتباطات شما باشد!", - "Forces the current outbound group session in an encrypted room to be discarded": "جلسه گروه خروجی فعلی را در یک اتاق رمزگذاری شده مجبور می کند که کنار گذاشته شود", "Reason": "دلیل", - "Displays action": "عملکرد را نمایش می دهد", - "Places the call in the current room on hold": "تماس را در اتاق فعلی در حالت تعلیق قرار می دهد", - "Opens chat with the given user": "گپ با کاربر داده شده را باز می کند", "See when anyone posts a sticker to your active room": "ببینید چه وقتی برچسب به اتاق فعال شما ارسال می شود", "Send stickers to your active room as you": "همانطور که هستید ، برچسب ها را به اتاق فعال خود ارسال کنید", "See when a sticker is posted in this room": "زمان نصب برچسب در این اتاق را ببینید", "Repeats like \"aaa\" are easy to guess": "تکرارهایی مانند بببب به راحتی قابل حدس هستند", "with an empty state key": "با یک کلید حالت خالی", - "Converts the DM to a room": "DM را به اتاق تبدیل می کند", - "Converts the room to a DM": "اتاق را به DM تبدیل می کند", - "Takes the call in the current room off hold": "تماس را در اتاق فعلی خاموش نگه می دارد", "See when people join, leave, or are invited to this room": "ببینید که کی مردم در این اتاق عضو شده اند، ترک کرده اند یا به آن دعوت شده اند", "Your %(brand)s is misconfigured": "%(brand)s‌ی شما به درستی پیکربندی نشده‌است", "Ensure you have a stable internet connection, or get in touch with the server admin": "از اتصال اینترنت پایدار اطمینان حاصل‌کرده و سپس با مدیر سرور ارتباط بگیرید", @@ -519,7 +509,6 @@ "%(completed)s of %(total)s keys restored": "%(completed)s از %(total)s کلید بازیابی شدند", "a new cross-signing key signature": "یک کلید امضای متقابل جدید", "a new master key signature": "یک شاه‌کلید جدید", - "Close dialog or context menu": "بستن پنجره یا منوی محتوا", "Password is allowed, but unsafe": "گذرواژه مجاز است ، اما ناامن است", "Upload files (%(current)s of %(total)s)": "بارگذاری فایل‌ها (%(current)s از %(total)s)", "Failed to decrypt %(failedCount)s sessions!": "رمزگشایی %(failedCount)s نشست موفقیت‌آمیز نبود!", @@ -735,12 +724,7 @@ "other": "و %(count)s مورد بیشتر ..." }, "This server does not support authentication with a phone number.": "این سرور از قابلیت احراز با شماره تلفن پشتیبانی نمی کند.", - "Continue with %(ssoButtons)s": "با %(ssoButtons)s ادامه بده", "Join millions for free on the largest public server": "به بزرگترین سرور عمومی با میلیون ها نفر کاربر بپیوندید", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s یا %(usernamePassword)s", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "حساب جدید شما (%(newAccountId)s) s) ثبت شده‌است ، اما شما قبلاً به حساب کاربری دیگری (%(loggedInUserId)s) وارد شده‌اید.", - "Continue with previous account": "با حساب کاربری قبلی ادامه دهید", - "Log in to your new account.": "به حساب کاربری جدید خود وارد شوید.", "Failed to re-authenticate due to a homeserver problem": "به دلیل مشکلی که در سرور وجود دارد ، احراز هویت مجدد انجام نشد", "You cannot sign in to your account. Please contact your homeserver admin for more information.": "نمی توانید وارد حساب کاربری خود شوید. لطفا برای اطلاعات بیشتر با مدیر سرور خود تماس بگیرید.", "Server Options": "گزینه های سرور", @@ -1143,11 +1127,7 @@ "You are currently subscribed to:": "شما هم‌اکنون مشترک شده‌اید در:", "You are currently ignoring:": "شما در حال حاضر این موارد را نادیده گرفته‌اید:", "Ban list rules - %(roomName)s": "قوانین لیست تحریم - %(roomName)s", - "%(brand)s version:": "نسخه‌ی %(brand)s:", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "برای گزارش مشکلات امنیتی مربوط به ماتریکس، لطفا سایت Matrix.org بخش Security Disclosure Policy را مطالعه فرمائید.", - "Chat with %(brand)s Bot": "گفتگو با بات %(brand)s", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "برای گرفتن کمک در استفاده از %(brand)s، اینجا کلید کرده یا با استفاده از دکمه‌ی زیر اقدام به شروع گفتگو با بات ما نمائید.", - "For help with using %(brand)s, click here.": "برای گرفتن کمک در استفاده از %(brand)s، اینجا کلیک کنید.", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "با شرایط و ضوایط سرویس سرور هویت‌سنجی (%(serverName)s) موافقت کرده تا بتوانید از طریق آدرس ایمیل و شماره تلفن قابل یافته‌شدن باشید.", "Use between %(min)s pt and %(max)s pt": "از عددی بین %(min)s pt و %(max)s pt استفاده کنید", "Custom font size can only be between %(min)s pt and %(max)s pt": "اندازه فونت دلخواه تنها می‌تواند عددی بین %(min)s pt و %(max)s pt باشد", @@ -1379,30 +1359,8 @@ "Send %(eventType)s events as you in this room": "رویدادهای %(eventType)s هنگامی که داخل این اتاق هستید ارسال شود", "Indexed rooms:": "اتاق‌های ایندکس‌شده:", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s از %(totalRooms)s", - "Navigation": "پیمایش", - "Calls": "تماس‌ها", - "Room List": "لیست اتاق‌ها", "Remain on your screen while running": "بر روی صفحه خود باقی بمانید", - "Autocomplete": "تکمیل خودکار", "Remain on your screen when viewing another room, when running": "هنگام مشاهده اتاق دیگر، روی صفحه خود باشید", - "Toggle Bold": "بولد‌کردن", - "Toggle Quote": "نقل‌قول کردن", - "Toggle Italics": "ایتالیک‌کردن", - "New line": "خط جدید", - "Cancel replying to a message": "پاسخ به پیام را لغو کن", - "Toggle microphone mute": "میکروفون را قطع کنید", - "Dismiss read marker and jump to bottom": "نشانه‌ی خوانده‌شده را بیخیال شو و به انتها پرش کن", - "Jump to oldest unread message": "به قدیمی‌ترین پیام خوانده نشده پرش کن", - "Upload a file": "فایل بارگذاری کنید", - "Search (must be enabled)": "جستجو (باید فعال باشد)", - "Jump to room search": "به قسمت جستجوی اتاق پرش کن", - "Select room from the room list": "از لیست اتاق‌ها انتخاب کنید", - "Collapse room list section": "قسمت لیست اتاق‌ها را جمع کن", - "Expand room list section": "قسمت لیست اتاق‌ها را بسط بده", - "Toggle the top left menu": "منوی بالا سمت چپ را تغییر دهید", - "Activate selected button": "دکمه انتخاب شده را فعال کنید", - "Toggle right panel": "پانل سمت راست را تغییر دهید", - "Go to Home View": "به صفحه اصلی بروید", "This event could not be displayed": "امکان نمایش این رخداد وجود ندارد", "Edit message": "ویرایش پیام", "Send as message": "ارسال به عنوان پیام", @@ -1448,7 +1406,6 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "شما می‌توانید حساب کاربری بسازید، اما برخی قابلیت‌ها تا زمان اتصال مجدد به سرور هویت‌سنجی در دسترس نخواهند بود. اگر شما مدام این هشدار را مشاهده می‌کنید، پیکربندی خود را بررسی کرده و یا با مدیر سرور تماس بگیرید.", "Cannot reach identity server": "دسترسی به سرور هویت‌سنجی امکان پذیر نیست", "Ask your %(brand)s admin to check your config for incorrect or duplicate entries.": "از مدیر %(brand)s خود بخواهید تا پیکربندی شما را از جهت ورودی‌های نادرست یا تکراری بررسی کند.", - "Cancel autocomplete": "لغو تکمیل خودکار", "Users": "کاربران", "Clear personal data": "پاک‌کردن داده‌های شخصی", "You're signed out": "شما خارج شدید", @@ -1458,11 +1415,7 @@ "Failed to re-authenticate": "احراز هویت مجدد موفیت‌آمیز نبود", "Incorrect password": "گذرواژه صحیح نیست", "Verify your identity to access encrypted messages and prove your identity to others.": "با تائید هویت خود به پیام‌های رمزشده دسترسی یافته و هویت خود را به دیگران ثابت می‌کنید.", - "Decide where your account is hosted": "حساب کاربری شما بر روی کجا ساخته شود", - "Host account on": "ساختن حساب کاربری بر روی", "Create account": "ساختن حساب کاربری", - "Registration Successful": "ثبت‌نام موفقیت‌آمیز بود", - "Already have an account? Sign in here": "حساب کاربری دارید؟ وارد شوید", "Registration has been disabled on this homeserver.": "ثبت‌نام بر روی این سرور غیرفعال شده‌است.", "New? Create account": "کاربر جدید هستید؟ حساب کاربری بسازید", "Return to login screen": "بازگشت به صفحه‌ی ورود", @@ -1504,14 +1457,6 @@ "This space is not public. You will not be able to rejoin without an invite.": "این فضا عمومی نیست. امکان پیوستن مجدد بدون دعوتنامه امکان‌پذیر نخواهد بود.", "You are the only person here. If you leave, no one will be able to join in the future, including you.": "شما در این‌جا تنها هستید. اگر اینجا را ترک کنید، دیگر هیچ‌کس حتی خودتان امکان پیوستن مجدد را نخواهید داشت.", "Failed to reject invitation": "رد دعوتنامه موفقیت‌آمیز نبود", - "Create a Group Chat": "ساختن یک گروه", - "Explore Public Rooms": "جستجوی اتاق‌های عمومی", - "Send a Direct Message": "ارسال یک پیام مستقیم", - "Welcome to %(appName)s": "به %(appName)s خوش‌آمدید", - "Now, let's help you get started": "همین الان شروع کنید", - "Welcome %(name)s": "%(name)s خوش‌آمدید", - "Add a photo so people know it's you.": "برای اینکه بقیه شما را بشناسند، یک تصویر اضافه کنید.", - "Great, that'll help people know it's you": "احسنت، با این کار شما به سایر افراد کمک می‌کنید که شما را بشناسند", "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.": "امضاء متقابل برای استفاده در دسترس است.", @@ -1644,10 +1589,6 @@ "Something went wrong. Please try again or view your console for hints.": "مشکلی پیش آمد. لطفا مجددا تلاش کرده و در صورت نیاز، کنسول مرورگر خود را برای کسب اطلاعات بیشتر مشاهده نمائید.", "Error adding ignored user/server": "افزودن کاربر/سرور به لیست نادیده‌گرفته‌ها با خطا همراه بود", "Ignored/Blocked": "نادیده گرفته‌شده/بلاک‌شده", - "Clear cache and reload": "پاک‌کردن حافظه‌ی کش و راه‌اندازی مجدد", - "Your access token gives full access to your account. Do not share it with anyone.": "توکن دسترسی شما، دسترسی کامل به حساب کاربری شما را میسر می‌سازد. لطفا آن را در اختیار فرد دیگری قرار ندهید.", - "Versions": "نسخه‌ها", - "Help & About": "کمک و درباره‌ی‌ ما", "General": "عمومی", "Discovery": "کاوش", "Deactivate account": "غیرفعال‌کردن حساب کاربری", @@ -1811,37 +1752,17 @@ "We sent the others, but the below people couldn't be invited to ": "ما برای باقی ارسال کردیم، ولی افراد زیر نمی توانند به دعوت شوند", "You cannot place calls without a connection to the server.": "شما نمی توانید بدون اتصال به سرور تماس برقرار کنید.", "Connectivity to the server has been lost": "اتصال با سرور قطع شده است", - "No active call in this room": "تماس فعالی در این اتفاق وجود ندارد", - "Unable to find Matrix ID for phone number": "ناتوانی در ییافتن شناسه ماتریکس برای شماره تلفن", "Unrecognised room address: %(roomAlias)s": "نشانی اتاق %(roomAlias)s شناسایی نشد", "Command error: Unable to handle slash command.": "خطای دستور: ناتوانی در اجرای دستور اسلش.", "%(space1Name)s and %(space2Name)s": "%(space1Name)s و %(space2Name)s", "Command failed: Unable to find room (%(roomId)s": "دستور با خطا روبرو شد: اتاق %(roomId)s پیدا نشد", "Command error: Unable to find rendering type (%(renderingType)s)": "خطای دستوری: نوع نمایش (%(renderingType)s ) یافت نشد", - "Open this settings tab": "این تب تنظیمات را باز کنید", - "Navigate up in the room list": "پیمایش به بالا در لیست اتاق ها", - "Navigate down in the room list": "پیمایش به پایین در لیست اتاق ها", - "Previous room or DM": "اتاق یا گفتگوی خصوصی قبلی", - "Next room or DM": "اتاق یا گفتگوی خصوصی بعدی", - "Previous unread room or DM": "اتاق یا پیام خصوصی خوانده نشده قبلی", - "Next unread room or DM": "اتاق یا پیام خصوصی خوانده نشده بعدی", - "Redo edit": "انجام مجدد ویرایش", - "Force complete": "اتمام اجباری", - "Undo edit": "برگشت از ویرایش", - "Jump to last message": "پرش به آخرین پیام", - "Jump to first message": "پرش به اولین پیام", - "Toggle hidden event visibility": "حالت نمایش رخدادهای پنهان را تغییر دهید", - "Toggle space panel": "پنل فاصله را تغییر حالت دهید", - "Previous autocomplete suggestion": "پیشنهاد تکمیل-خودکار قبلی", - "Next autocomplete suggestion": "پیشنهاد تکمیل-خودکار بعدی", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "دوتایی (کاربر و نشست) ناشناخته : ( %(userId)sو%(deviceId)s )", "Failed to invite users to %(roomName)s": "افزودن کاربران به %(roomName)s با شکست روبرو شد", "Inviting %(user)s and %(count)s others": { "other": "دعوت کردن %(user)s و %(count)s دیگر", "one": "دعوت کردن %(user)s و ۱ دیگر" }, - "No virtual room for this room": "اتاق مجازی برای این اتاق وجود ندارد", - "Switches to this room's virtual room, if it has one": "جابجایی به اتاق مجازی این اتاق، اگر یکی وجود داشت", "You need to be able to kick users to do that.": "برای انجام این کار نیاز دارید که بتوانید کاربران را حذف کنید.", "Empty room (was %(oldName)s)": "اتاق خالی (نام قبلی: %(oldName)s)", "%(user)s and %(count)s others": { @@ -1853,19 +1774,7 @@ "Sidebar": "نوارکناری", "Show sidebar": "نمایش نوار کناری", "Hide sidebar": "پنهان سازی نوار کناری", - "Scroll up in the timeline": "بالا رفتن در تایم لاین", - "Scroll down in the timeline": "پایین آمدن در تایم لاین", - "Toggle webcam on/off": "روشن/خاموش کردن دوربین", "Hide stickers": "پنهان سازی استیکرها", - "Send a sticker": "ارسال یک استیکر", - "Navigate to previous message in composer history": "انتقال به پیام قبلی در تاریخچه نوشته ها", - "Navigate to next message in composer history": "انتقال به پیام بعدی در تاریخچه نوشته ها", - "Navigate to previous message to edit": "انتقال به پیام قبلی جهت ویرایش", - "Navigate to next message to edit": "انتقال به پیام بعدی جهت ویرایش", - "Jump to start of the composer": "پرش به ابتدای نوشته", - "Jump to end of the composer": "پرش به انتهای نوشته", - "Toggle Code Block": "تغییر بلاک کد", - "Toggle Link": "تغییر لینک", "Displaying time": "نمایش زمان", "To view all keyboard shortcuts, click here.": "برای مشاهده تمام میانبرهای صفحه کلید اینجا را کلیک کنید.", "Show all your rooms in Home, even if they're in a space.": "تمامی اتاق ها را در صفحه ی خانه نمایش بده، حتی آنهایی که در یک فضا هستند.", @@ -1935,7 +1844,6 @@ "Remove, ban, or invite people to your active room, and make you leave": "حذف کردن،محدود کردن و یا دعوت از افراد به این اتاق فعال و سپس ترک آن", "Remove, ban, or invite people to this room, and make you leave": "حذف کردن،محدود کردن و یا دعوت کردن افراد به این اتاق و ترک این اتاق", "Light high contrast": "بالاترین کنتراست قالب روشن", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "فرمان توسعه دهنده: سشن گروه خارجی فعلی رد شد و یک سشن دیگر تعریف شد", "Inviting %(user1)s and %(user2)s": "دعوت کردن %(user1)s و %(user2)s", "User is not logged in": "کاربر وارد نشده است", "Database unexpectedly closed": "پایگاه داده به طور غیرمنتظره ای بسته شد", @@ -2158,7 +2066,59 @@ "end": "End", "alt": "Alt", "control": "Ctrl", - "shift": "Shift" + "shift": "Shift", + "category_calls": "تماس‌ها", + "category_room_list": "لیست اتاق‌ها", + "category_navigation": "پیمایش", + "category_autocomplete": "تکمیل خودکار", + "composer_toggle_bold": "بولد‌کردن", + "composer_toggle_italics": "ایتالیک‌کردن", + "composer_toggle_quote": "نقل‌قول کردن", + "composer_toggle_code_block": "تغییر بلاک کد", + "composer_toggle_link": "تغییر لینک", + "cancel_reply": "پاسخ به پیام را لغو کن", + "navigate_next_message_edit": "انتقال به پیام بعدی جهت ویرایش", + "navigate_prev_message_edit": "انتقال به پیام قبلی جهت ویرایش", + "composer_jump_start": "پرش به ابتدای نوشته", + "composer_jump_end": "پرش به انتهای نوشته", + "composer_navigate_next_history": "انتقال به پیام بعدی در تاریخچه نوشته ها", + "composer_navigate_prev_history": "انتقال به پیام قبلی در تاریخچه نوشته ها", + "send_sticker": "ارسال یک استیکر", + "toggle_microphone_mute": "میکروفون را قطع کنید", + "toggle_webcam_mute": "روشن/خاموش کردن دوربین", + "dismiss_read_marker_and_jump_bottom": "نشانه‌ی خوانده‌شده را بیخیال شو و به انتها پرش کن", + "jump_to_read_marker": "به قدیمی‌ترین پیام خوانده نشده پرش کن", + "upload_file": "فایل بارگذاری کنید", + "scroll_up_timeline": "بالا رفتن در تایم لاین", + "scroll_down_timeline": "پایین آمدن در تایم لاین", + "jump_room_search": "به قسمت جستجوی اتاق پرش کن", + "room_list_select_room": "از لیست اتاق‌ها انتخاب کنید", + "room_list_collapse_section": "قسمت لیست اتاق‌ها را جمع کن", + "room_list_expand_section": "قسمت لیست اتاق‌ها را بسط بده", + "room_list_navigate_down": "پیمایش به پایین در لیست اتاق ها", + "room_list_navigate_up": "پیمایش به بالا در لیست اتاق ها", + "toggle_top_left_menu": "منوی بالا سمت چپ را تغییر دهید", + "toggle_right_panel": "پانل سمت راست را تغییر دهید", + "keyboard_shortcuts_tab": "این تب تنظیمات را باز کنید", + "go_home_view": "به صفحه اصلی بروید", + "next_unread_room": "اتاق یا پیام خصوصی خوانده نشده بعدی", + "prev_unread_room": "اتاق یا پیام خصوصی خوانده نشده قبلی", + "next_room": "اتاق یا گفتگوی خصوصی بعدی", + "prev_room": "اتاق یا گفتگوی خصوصی قبلی", + "autocomplete_cancel": "لغو تکمیل خودکار", + "autocomplete_navigate_next": "پیشنهاد تکمیل-خودکار بعدی", + "autocomplete_navigate_prev": "پیشنهاد تکمیل-خودکار قبلی", + "toggle_space_panel": "پنل فاصله را تغییر حالت دهید", + "toggle_hidden_events": "حالت نمایش رخدادهای پنهان را تغییر دهید", + "jump_first_message": "پرش به اولین پیام", + "jump_last_message": "پرش به آخرین پیام", + "composer_undo": "برگشت از ویرایش", + "composer_redo": "انجام مجدد ویرایش", + "close_dialog_menu": "بستن پنجره یا منوی محتوا", + "activate_button": "دکمه انتخاب شده را فعال کنید", + "composer_new_line": "خط جدید", + "autocomplete_force": "اتمام اجباری", + "search": "جستجو (باید فعال باشد)" }, "composer": { "format_bold": "پررنگ", @@ -2601,7 +2561,22 @@ "category_admin": "ادمین", "category_advanced": "پیشرفته", "category_effects": "جلوه‌ها", - "category_other": "دیگر" + "category_other": "دیگر", + "addwidget_missing_url": "لطفا نشانی (URL) ویجت یا یک کد قابل جاسازی (embeded) وارد کنید", + "addwidget_invalid_protocol": "لطفا نشانی یک ویجت را به پروتکل http:// یا https:// وارد کنید", + "addwidget_no_permissions": "شما امکان تغییر ویجت‌ها در این اتاق را ندارید.", + "converttodm": "اتاق را به DM تبدیل می کند", + "converttoroom": "DM را به اتاق تبدیل می کند", + "discardsession": "جلسه گروه خروجی فعلی را در یک اتاق رمزگذاری شده مجبور می کند که کنار گذاشته شود", + "remakeolm": "فرمان توسعه دهنده: سشن گروه خارجی فعلی رد شد و یک سشن دیگر تعریف شد", + "tovirtual": "جابجایی به اتاق مجازی این اتاق، اگر یکی وجود داشت", + "tovirtual_not_found": "اتاق مجازی برای این اتاق وجود ندارد", + "query": "گپ با کاربر داده شده را باز می کند", + "query_not_found_phone_number": "ناتوانی در ییافتن شناسه ماتریکس برای شماره تلفن", + "holdcall": "تماس را در اتاق فعلی در حالت تعلیق قرار می دهد", + "no_active_call": "تماس فعالی در این اتفاق وجود ندارد", + "unholdcall": "تماس را در اتاق فعلی خاموش نگه می دارد", + "me": "عملکرد را نمایش می دهد" }, "presence": { "online_for": "آنلاین برای مدت %(duration)s", @@ -2734,7 +2709,16 @@ "auth": { "continue_with_idp": "با %(provider)s ادامه دهید", "sign_in_with_sso": "با احراز هویت یکپارچه وارد شوید", - "sso": "ورود یکپارچه" + "sso": "ورود یکپارچه", + "continue_with_sso": "با %(ssoButtons)s ادامه بده", + "sso_or_username_password": "%(ssoButtons)s یا %(usernamePassword)s", + "sign_in_instead": "حساب کاربری دارید؟ وارد شوید", + "account_clash": "حساب جدید شما (%(newAccountId)s) s) ثبت شده‌است ، اما شما قبلاً به حساب کاربری دیگری (%(loggedInUserId)s) وارد شده‌اید.", + "account_clash_previous_account": "با حساب کاربری قبلی ادامه دهید", + "log_in_new_account": "به حساب کاربری جدید خود وارد شوید.", + "registration_successful": "ثبت‌نام موفقیت‌آمیز بود", + "server_picker_title": "ساختن حساب کاربری بر روی", + "server_picker_dialog_title": "حساب کاربری شما بر روی کجا ساخته شود" }, "room_list": { "sort_unread_first": "ابتدا اتاق های با پیام خوانده نشده را نمایش بده", @@ -2754,5 +2738,27 @@ "missing_reason": "لطفا توضیح دهید که چرا گزارش می‌دهید.", "report_content_to_homeserver": "گزارش محتوا به مدیر سرور خود", "description": "گزارش این پیام شناسه‌ی منحصر به فرد رخداد آن را برای مدیر سرور ارسال می‌کند. اگر پیام‌های این اتاق رمزشده باشند، مدیر سرور شما امکان خواندن متن آن پیام یا مشاهده‌ی عکس یا فایل‌های دیگر را نخواهد داشت." + }, + "onboarding": { + "has_avatar_label": "احسنت، با این کار شما به سایر افراد کمک می‌کنید که شما را بشناسند", + "no_avatar_label": "برای اینکه بقیه شما را بشناسند، یک تصویر اضافه کنید.", + "welcome_user": "%(name)s خوش‌آمدید", + "welcome_detail": "همین الان شروع کنید", + "intro_welcome": "به %(appName)s خوش‌آمدید", + "send_dm": "ارسال یک پیام مستقیم", + "explore_rooms": "جستجوی اتاق‌های عمومی", + "create_room": "ساختن یک گروه" + }, + "setting": { + "help_about": { + "brand_version": "نسخه‌ی %(brand)s:", + "help_link": "برای گرفتن کمک در استفاده از %(brand)s، اینجا کلیک کنید.", + "help_link_chat_bot": "برای گرفتن کمک در استفاده از %(brand)s، اینجا کلید کرده یا با استفاده از دکمه‌ی زیر اقدام به شروع گفتگو با بات ما نمائید.", + "chat_bot": "گفتگو با بات %(brand)s", + "title": "کمک و درباره‌ی‌ ما", + "versions": "نسخه‌ها", + "access_token_detail": "توکن دسترسی شما، دسترسی کامل به حساب کاربری شما را میسر می‌سازد. لطفا آن را در اختیار فرد دیگری قرار ندهید.", + "clear_cache_reload": "پاک‌کردن حافظه‌ی کش و راه‌اندازی مجدد" + } } } diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index e4751de030..ba89d1220a 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -81,7 +81,6 @@ "Reason": "Syy", "Reject invitation": "Hylkää kutsu", "Return to login screen": "Palaa kirjautumissivulle", - "%(brand)s version:": "%(brand)s-versio:", "Rooms": "Huoneet", "Search failed": "Haku epäonnistui", "Server error": "Palvelinvirhe", @@ -147,7 +146,6 @@ "Incorrect password": "Virheellinen salasana", "Unable to restore session": "Istunnon palautus epäonnistui", "Decrypt %(text)s": "Pura %(text)s", - "Displays action": "Näyttää toiminnan", "Publish this room to the public in %(domain)s's room directory?": "Julkaise tämä huone verkkotunnuksen %(domain)s huoneluettelossa?", "Missing room_id in request": "room_id puuttuu kyselystä", "Missing user_id in request": "user_id puuttuu kyselystä", @@ -386,8 +384,6 @@ "Account management": "Tilin hallinta", "Composer": "Viestin kirjoitus", "Voice & Video": "Ääni ja video", - "Help & About": "Ohje ja tietoja", - "Versions": "Versiot", "Send analytics data": "Lähetä analytiikkatietoja", "No Audio Outputs detected": "Äänen ulostuloja ei havaittu", "Audio Output": "Äänen ulostulo", @@ -427,7 +423,6 @@ "Delete Backup": "Poista varmuuskopio", "Email Address": "Sähköpostiosoite", "Elephant": "Norsu", - "Chat with %(brand)s Bot": "Keskustele %(brand)s-botin kanssa", "You'll lose access to your encrypted messages": "Menetät pääsyn salattuihin viesteihisi", "Create a new room with the same name, description and avatar": "luomme uuden huoneen samalla nimellä, kuvauksella ja kuvalla", "Update any local room aliases to point to the new room": "päivitämme kaikki huoneen aliakset osoittamaan uuteen huoneeseen", @@ -476,8 +471,6 @@ "Start using Key Backup": "Aloita avainvarmuuskopion käyttö", "Unable to verify phone number.": "Puhelinnumeron vahvistaminen epäonnistui.", "Verification code": "Varmennuskoodi", - "For help with using %(brand)s, click here.": "Saadaksesi apua %(brand)sin käyttämisessä, napsauta tästä.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Saadaksesi apua %(brand)sin käytössä, napsauta tästä tai aloita keskustelu bottimme kanssa alla olevasta painikkeesta.", "Autocomplete delay (ms)": "Automaattisen täydennyksen viive (ms)", "Ignored users": "Sivuutetut käyttäjät", "Bulk options": "Massatoimintoasetukset", @@ -491,7 +484,6 @@ "Scissors": "Sakset", "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s %(day)s. %(monthName)s %(fullYear)s", "Missing roomId.": "roomId puuttuu.", - "Forces the current outbound group session in an encrypted room to be discarded": "Pakottaa hylkäämään nykyisen ulospäin suuntautuvan ryhmäistunnon salatussa huoneessa", "Enable widget screenshots on supported widgets": "Ota sovelmien kuvankaappaukset käyttöön tuetuissa sovelmissa", "This event could not be displayed": "Tätä tapahtumaa ei voitu näyttää", "Demote yourself?": "Alenna itsesi?", @@ -554,8 +546,6 @@ "Go back to set it again.": "Palaa asettamaan se uudelleen.", "Your keys are being backed up (the first backup could take a few minutes).": "Avaimiasi varmuuskopioidaan (ensimmäinen varmuuskopio voi viedä muutaman minuutin).", "Unable to create key backup": "Avaimen varmuuskopiota ei voi luoda", - "Please supply a https:// or http:// widget URL": "Lisää sovelman osoitteen alkuun https:// tai http://", - "You cannot modify widgets in this room.": "Et voi muokata tämän huoneen sovelmia.", "Upgrade this room to the recommended room version": "Päivitä tämä huone suositeltuun huoneversioon", "This room is running room version , which this homeserver has marked as unstable.": "Tämä huone pyörii versiolla , jonka tämä kotipalvelin on merkannut epävakaaksi.", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Huoneen päivittäminen sulkee huoneen nykyisen instanssin ja luo päivitetyn huoneen samalla nimellä.", @@ -652,10 +642,6 @@ "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", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Uusi tilisi (%(newAccountId)s) on rekisteröity, mutta olet jo kirjautuneena toisella tilillä (%(loggedInUserId)s).", - "Continue with previous account": "Jatka aiemmalla tilillä", - "Log in to your new account.": "Kirjaudu uudelle tilillesi.", - "Registration Successful": "Rekisteröityminen onnistui", "Edited at %(date)s. Click to view edits.": "Muokattu %(date)s. Napsauta nähdäksesi muokkaukset.", "Message edits": "Viestin muokkaukset", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Tämän huoneen päivittäminen edellyttää huoneen nykyisen instanssin sulkemista ja uuden huoneen luomista sen tilalle. Jotta tämä kävisi huoneen jäsenten kannalta mahdollisimman sujuvasti, teemme seuraavaa:", @@ -740,7 +726,6 @@ "e.g. my-room": "esim. oma-huone", "Please enter a name for the room": "Syötä huoneelle nimi", "Topic (optional)": "Aihe (valinnainen)", - "Clear cache and reload": "Tyhjennä välimuisti ja lataa uudelleen", "Show image": "Näytä kuva", "Close dialog": "Sulje dialogi", "To continue you need to accept the terms of this service.": "Sinun täytyy hyväksyä palvelun käyttöehdot jatkaaksesi.", @@ -948,16 +933,6 @@ "Your server": "Palvelimesi", "Add a new server": "Lisää uusi palvelin", "Server name": "Palvelimen nimi", - "Calls": "Puhelut", - "Room List": "Huoneluettelo", - "Autocomplete": "Automaattinen täydennys", - "Toggle Bold": "Lihavointi päälle/pois", - "Toggle Italics": "Kursivointi päälle/pois", - "Toggle Quote": "Lainaus päälle/pois", - "New line": "Rivinvaihto", - "Toggle microphone mute": "Mikrofonin mykistys päälle/pois", - "Activate selected button": "Aktivoi valittu painike", - "Cancel autocomplete": "Peruuta automaattinen täydennys", "Use Single Sign On to continue": "Jatka kertakirjautumista käyttäen", "Confirm adding this email address by using Single Sign On to prove your identity.": "Vahvista tämän sähköpostiosoitteen lisääminen todistamalla henkilöllisyytesi kertakirjautumista käyttäen.", "Confirm adding email": "Vahvista sähköpostin lisääminen", @@ -974,12 +949,6 @@ "New published address (e.g. #alias:server)": "Uusi julkaistu osoite (esim. #alias:palvelin)", "Ask %(displayName)s to scan your code:": "Pyydä käyttäjää %(displayName)s lukemaan koodisi:", "Sign in with SSO": "Kirjaudu kertakirjautumista käyttäen", - "Welcome to %(appName)s": "Tervetuloa %(appName)s-sovellukseen", - "Send a Direct Message": "Lähetä yksityisviesti", - "Explore Public Rooms": "Selaa julkisia huoneita", - "Create a Group Chat": "Luo huone", - "Cancel replying to a message": "Peruuta viestiin vastaaminen", - "Jump to room search": "Siirry huonehakuun", "Could not find user in room": "Käyttäjää ei löytynyt huoneesta", "Can't load this message": "Tätä viestiä ei voi ladata", "Submit logs": "Lähetä lokit", @@ -990,7 +959,6 @@ "Click the button below to confirm adding this phone number.": "Napsauta alapuolella olevaa painiketta lisätäksesi tämän puhelinnumeron.", "New login. Was this you?": "Uusi sisäänkirjautuminen. Olitko se sinä?", "%(name)s is requesting verification": "%(name)s pyytää varmennusta", - "Please supply a widget URL or embed code": "Anna sovelman osoite tai upotettava koodinpätkä", "You signed in to a new session without verifying it:": "Olet kirjautunut uuteen istuntoon varmentamatta sitä:", "Verify your other session using one of the options below.": "Varmenna toinen istuntosi käyttämällä yhtä seuraavista tavoista.", "Almost there! Is %(displayName)s showing the same shield?": "Melkein valmista! Näyttääkö %(displayName)s saman kilven?", @@ -1001,8 +969,6 @@ "Keys restored": "Avaimet palautettu", "Successfully restored %(sessionCount)s keys": "%(sessionCount)s avaimen palautus onnistui", "Currently indexing: %(currentRoom)s": "Indeksoidaan huonetta: %(currentRoom)s", - "Jump to oldest unread message": "Siirry vanhimpaan lukemattomaan viestiin", - "Opens chat with the given user": "Avaa keskustelun annetun käyttäjän kanssa", "Manually verify all remote sessions": "Varmenna kaikki etäistunnot käsin", "IRC display name width": "IRC-näyttönimen leveys", "Your homeserver does not support cross-signing.": "Kotipalvelimesi ei tue ristiinvarmennusta.", @@ -1041,7 +1007,6 @@ "Size must be a number": "Koon täytyy olla luku", "Custom font size can only be between %(min)s pt and %(max)s pt": "Mukautetun fonttikoon täytyy olla vähintään %(min)s pt ja enintään %(max)s pt", "Use between %(min)s pt and %(max)s pt": "Käytä kokoa väliltä %(min)s pt ja %(max)s pt", - "Select room from the room list": "Valitse huone huoneluettelosta", "Start verification again from the notification.": "Aloita varmennus uudelleen ilmoituksesta.", "Start verification again from their profile.": "Aloita varmennus uudelleen hänen profiilista.", "Verification timed out.": "Varmennuksessa kesti liikaa.", @@ -1111,7 +1076,6 @@ "Answered Elsewhere": "Vastattu muualla", "The call could not be established": "Puhelua ei voitu muodostaa", "%(creator)s created this DM.": "%(creator)s loi tämän yksityisviestin.", - "Welcome %(name)s": "Tervetuloa, %(name)s", "No files visible in this room": "Tässä huoneessa ei näy tiedostoja", "Take a picture": "Ota kuva", "Your server isn't responding to some of your requests. Below are some of the most likely reasons.": "Palvelimesi ei vastaa joihinkin pyynnöistäsi. Alla on joitakin todennäköisimpiä syitä.", @@ -1137,12 +1101,8 @@ "New version of %(brand)s is available": "%(brand)s-sovelluksesta on saatavilla uusi versio", "Update %(brand)s": "Päivitä %(brand)s", "Enable desktop notifications": "Ota työpöytäilmoitukset käyttöön", - "Takes the call in the current room off hold": "Ottaa nykyisen huoneen puhelun pois pidosta", - "Places the call in the current room on hold": "Asettaa nykyisen huoneen puhelun pitoon", "Enter email address": "Syötä sähköpostiosoite", "Enter phone number": "Syötä puhelinnumero", - "Now, let's help you get started": "Autetaanpa sinut alkuun", - "Go to Home View": "Siirry kotinäkymään", "Decline All": "Kieltäydy kaikista", "Your area is experiencing difficulties connecting to the internet.": "Alueellasi on ongelmia internet-yhteyksissä.", "The server is offline.": "Palvelin ei ole verkossa.", @@ -1437,8 +1397,6 @@ "Not encrypted": "Ei salattu", "Got an account? Sign in": "Sinulla on jo tili? Kirjaudu sisään", "New here? Create an account": "Uusi täällä? Luo tili", - "Add a photo so people know it's you.": "Lisää kuva, jotta ihmiset tietävät, että se olet sinä.", - "Great, that'll help people know it's you": "Hienoa, tämä auttaa ihmisiä tietämään, että se olet sinä", "Attach files from chat or just drag and drop them anywhere in a room.": "Liitä tiedostoja alalaidan klemmarilla, tai raahaa ja pudota ne mihin tahansa huoneen kohtaan.", "Use email or phone to optionally be discoverable by existing contacts.": "Käytä sähköpostiosoitetta tai puhelinnumeroa, jos haluat olla löydettävissä nykyisille yhteystiedoille.", "Use email to optionally be discoverable by existing contacts.": "Käytä sähköpostiosoitetta, jos haluat olla löydettävissä nykyisille yhteystiedoille.", @@ -1458,10 +1416,7 @@ "other": "Voit kiinnittää enintään %(count)s sovelmaa" }, "Favourited": "Suositut", - "Expand room list section": "Laajenna huoneluettelon osa", - "Collapse room list section": "Supista huoneluettelon osa", "Use a different passphrase?": "Käytä eri salalausetta?", - "Already have an account? Sign in here": "Onko sinulla jo tili? Kirjaudu tästä", "There was a problem communicating with the homeserver, please try again later.": "Yhteydessä kotipalvelimeen ilmeni ongelma, yritä myöhemmin uudelleen.", "This widget would like to:": "Tämä sovelma haluaa:", "Other homeserver": "Muu kotipalvelin", @@ -1484,16 +1439,12 @@ "See when the avatar changes in this room": "Näe milloin avatar vaihtuu tässä huoneessa", "See when the name changes in your active room": "Näe milloin käyttäjän nimi muuttuu aktiivisessa huoneessa", "If disabled, messages from encrypted rooms won't appear in search results.": "Jos ei ole käytössä, salattujen huoneiden viestejä ei näytetä hakutuloksissa.", - "Dismiss read marker and jump to bottom": "Hylkää lukumerkki ja hyppää pohjaan", - "Toggle the top left menu": "Vaihda vasemman yläkulman valikkoa", "New? Create account": "Uusi? Luo tili", "Continuing without email": "Jatka ilman sähköpostia", "Invite by email": "Kutsu sähköpostilla", "Confirm Security Phrase": "Vahvista turvalause", - "Upload a file": "Lähetä tiedosto", "Confirm encryption setup": "Vahvista salauksen asetukset", "Confirm account deactivation": "Vahvista tilin deaktivointi", - "Toggle right panel": "Vaihda oikea paneeli", "a key signature": "avaimen allekirjoitus", "Homeserver feature support:": "Kotipalvelimen ominaisuuksien tuki:", "Create key backup": "Luo avaimen varmuuskopio", @@ -1506,7 +1457,6 @@ "Hold": "Pidä", "Resume": "Jatka", "Comment": "Kommentti", - "Navigation": "Navigointi", "Remain on your screen when viewing another room, when running": "Pysy ruudulla katsellessasi huonetta, kun se on käynnissä", "Remain on your screen while running": "Pysy ruudulla käynnissä olon ajan", "Please verify the room ID or address and try again.": "Tarkista huonetunnus ja yritä uudelleen.", @@ -1514,10 +1464,6 @@ "Data on this screen is shared with %(widgetDomain)s": "Tällä näytöllä olevaa tietoa jaetaan verkkotunnuksen %(widgetDomain)s kanssa", "A browser extension is preventing the request.": "Selainlaajennus estää pyynnön.", "Approve widget permissions": "Hyväksy sovelman käyttöoikeudet", - "Continue with %(ssoButtons)s": "Jatka %(ssoButtons)slla", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Tai %(usernamePassword)s", - "Host account on": "Ylläpidä tiliä osoitteessa", - "Decide where your account is hosted": "Päätä, missä tiliäsi isännöidään", "Message downloading sleep time(ms)": "Viestin lataamisen odotusaika (ms)", "Enter a Security Phrase": "Kirjoita turvalause", "Set a Security Phrase": "Aseta turvalause", @@ -1527,7 +1473,6 @@ "Save your Security Key": "Tallenna turva-avain", "This session is encrypting history using the new recovery method.": "Tämä istunto salaa historiansa käyttäen uutta palautustapaa.", "If you did this accidentally, you can setup Secure Messages on this session which will re-encrypt this session's message history with a new recovery method.": "", - "Close dialog or context menu": "Sulje valintaikkuna tai pikavalikko", "%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s tallentaa turvallisesti salattuja viestejä välimuistiin, jotta ne näkyvät hakutuloksissa:", "Failed to transfer call": "Puhelunsiirto epäonnistui", "A call can only be transferred to a single user.": "Puhelun voi siirtää vain yhdelle käyttäjälle.", @@ -1539,15 +1484,12 @@ "Use app": "Käytä sovellusta", "Use app for a better experience": "Parempi kokemus sovelluksella", "Change which room, message, or user you're viewing": "Vaihda näytettävää huonetta, viestiä tai käyttäjää", - "Converts the DM to a room": "Muuntaa yksityisviestin huoneeksi", - "Converts the room to a DM": "Muuntaa huoneen yksityisviestiksi", "Add users and servers you want to ignore here. Use asterisks to have %(brand)s match any characters. For example, @bot:* would ignore all users that have the name 'bot' on any server.": "Lisää tähän käyttäjät ja palvelimet, jotka haluat sivuuttaa. Asteriski täsmää mihin tahansa merkkiin. Esimerkiksi @bot:* sivuuttaa kaikki käyttäjät, joiden nimessä on \"bot\".", "Recently visited rooms": "Hiljattain vieraillut huoneet", "You might disable this if the room will be used for collaborating with external teams who have their own homeserver. This cannot be changed later.": "Voi olla paikallaan poistaa tämä käytöstä, jos huonetta käyttävät myös ulkoiset tiimit joilla on oma kotipalvelimensa. Asetusta ei voi muuttaa myöhemmin.", "You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Voi olla paikallaan ottaa tämä käyttöön, jos huonetta käyttävät vain sisäiset tiimit kotipalvelimellasi. Asetusta ei voi muuttaa myöhemmin.", "Recent changes that have not yet been received": "Tuoreet muutokset, joita ei ole vielä otettu vastaan", "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.": "Pyysimme selainta muistamaan kirjautumista varten mitä kotipalvelinta käytät, mutta selain on unohtanut sen. Mene kirjautumissivulle ja yritä uudelleen.", - "Search (must be enabled)": "Haku (pitää olla käytössä)", "Channel: ": "Kanava: ", "Share %(name)s": "Jaa %(name)s", "Skip for now": "Ohita tältä erää", @@ -1678,7 +1620,6 @@ "Stop recording": "Pysäytä nauhoittaminen", "Invite to just this room": "Kutsu vain tähän huoneeseen", "Send voice message": "Lähetä ääniviesti", - "Send a sticker": "Lähetä tarra", "Invite to this space": "Kutsu tähän avaruuteen", "Are you sure you want to make this encrypted room public?": "Haluatko varmasti tehdä tästä salatusta huoneesta julkisen?", "Unknown failure": "Tuntematon virhe", @@ -1740,8 +1681,6 @@ "Code blocks": "Koodilohkot", "Keyboard shortcuts": "Pikanäppäimet", "Displaying time": "Ajan näyttäminen", - "Olm version:": "Olm-versio:", - "Your access token gives full access to your account. Do not share it with anyone.": "Käyttöpolettisi (ns. token) antaa täyden pääsyn tilillesi. Älä jaa sitä kenenkään kanssa.", "Select spaces": "Valitse avaruudet", "Want to add a new space instead?": "Haluatko lisätä sen sijaan uuden avaruuden?", "Add existing space": "Lisää olemassa oleva avaruus", @@ -1845,7 +1784,6 @@ "You cannot place calls without a connection to the server.": "Et voi soittaa puheluja ilman yhteyttä palvelimeen.", "Connectivity to the server has been lost": "Yhteys palvelimeen on katkennut", "Files": "Tiedostot", - "Toggle space panel": "Avaruuspaneeli päälle/pois", "Space Autocomplete": "Avaruuksien automaattinen täydennys", "What are some things you want to discuss in %(spaceName)s?": "Mistä asioista haluat puhua avaruudessa %(spaceName)s?", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Valitse lisättävät huoneet tai keskustelut. Tämä avaruus on vain sinulle, kenellekään ei tiedoteta siitä. Voit lisätä lisää myöhemmin.", @@ -1904,8 +1842,6 @@ "Forget": "Unohda", "Report": "Ilmoita", "Collapse reply thread": "Supista vastausketju", - "No active call in this room": "Huoneessa ei ole aktiivista puhelua", - "Unable to find Matrix ID for phone number": "Puhelinnumerolla ei löydy Matrix ID:tä", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Tuntematon (käyttäjä, laite) (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Komento epäonnistui: Huonetta %(roomId)s ei löydetty", "Unrecognised room address: %(roomAlias)s": "Huoneen osoitetta %(roomAlias)s ei tunnistettu", @@ -2003,8 +1939,6 @@ "one": "Kirjaa laite ulos", "other": "Kirjaa laitteet ulos" }, - "No virtual room for this room": "Tällä huoneella ei ole virtuaalihuonetta", - "Switches to this room's virtual room, if it has one": "Vaihtaa tämän huoneen virtuaalihuoneeseen, mikäli huoneella sellainen on", "Recent searches": "Viimeaikaiset haut", "Other searches": "Muut haut", "Public rooms": "Julkiset huoneet", @@ -2050,12 +1984,6 @@ "User is already invited to the room": "Käyttäjä on jo kutsuttu huoneeseen", "%(space1Name)s and %(space2Name)s": "%(space1Name)s ja %(space2Name)s", "Failed to invite users to %(roomName)s": "Käyttäjien kutsuminen huoneeseen %(roomName)s epäonnistui", - "Open user settings": "Avaa käyttäjäasetukset", - "Redo edit": "Tee uudelleen muokkaus", - "Undo edit": "Kumoa muokkaus", - "Jump to last message": "Siirry viimeiseen viestiin", - "Jump to first message": "Siirry ensimmäiseen viestiin", - "Toggle webcam on/off": "Kamera päälle/pois", "Your new device is now verified. Other users will see it as trusted.": "Uusi laitteesi on nyt vahvistettu. Muut käyttäjät näkevät sen luotettuna.", "Your new device is now verified. It has access to your encrypted messages, and other users will see it as trusted.": "Uusi laitteesi on nyt vahvistettu. Laitteella on pääsy salattuihin viesteihisi, ja muut käyttäjät näkevät sen luotettuna.", "Verify with another device": "Vahvista toisella laitteella", @@ -2067,7 +1995,6 @@ "Joined": "Liitytty", "Joining": "Liitytään", "Wait!": "Odota!", - "Own your conversations.": "Omista keskustelusi.", "Unnamed audio": "Nimetön ääni", "Start audio stream": "Käynnistä äänen suoratoisto", "Unable to start audio streaming.": "Äänen suoratoiston aloittaminen ei onnistu.", @@ -2130,8 +2057,6 @@ "Sorry, your homeserver is too old to participate here.": "Kotipalvelimesi on liian vanha osallistumaan tänne.", "Send %(eventType)s events as you in your active room": "Lähetä %(eventType)s-tapahtumia aktiiviseen huoneeseesi itsenäsi", "Send %(eventType)s events as you in this room": "Lähetä %(eventType)s-tapahtumia tähän huoneeseen itsenäsi", - "Scroll down in the timeline": "Vieritä alas aikajanalla", - "Scroll up in the timeline": "Vieritä ylös aikajanalla", "Someone already has that username, please try another.": "Jollakin on jo kyseinen käyttäjätunnus. Valitse eri käyttäjätunnus.", "We'll create rooms for each of them.": "Luomme huoneet jokaiselle niistä.", "What projects are your team working on?": "Minkä projektien parissa tiimisi työskentelee?", @@ -2229,9 +2154,6 @@ "one": "Vahvista tämän laitteen uloskirjaaminen todistamalla henkilöllisyytesi kertakirjautumista käyttäen.", "other": "Vahvista näiden laitteiden uloskirjaaminen todistamalla henkilöllisyytesi kertakirjautumista käyttäen." }, - "Switch to space by number": "Vaihda avaruuteen numerolla", - "Navigate up in the room list": "Liiku ylös huoneluettelossa", - "Navigate down in the room list": "Liiku alas huoneluettelossa", "Threads help keep your conversations on-topic and easy to track.": "Ketjut auttavat pitämään keskustelut asiayhteyteen sopivina ja helposti seurattavina.", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Jos joku pyysi kopioimaan ja liittämään jotakin tänne, on mahdollista että sinua yritetään huijata!", "To create your account, open the link in the email we just sent to %(emailAddress)s.": "Luo tili avaamalla osoitteeseen %(emailAddress)s lähetetyssä viestissä oleva linkki.", @@ -2261,8 +2183,6 @@ "Moderation": "Moderointi", "You were disconnected from the call. (Error: %(message)s)": "Yhteytesi puheluun katkaistiin. (Virhe: %(message)s)", "See when people join, leave, or are invited to this room": "Näe milloin ihmiset liittyvät, poistuvat tai tulevat kutsutuiksi tähän huoneeseen", - "Previous autocomplete suggestion": "Edellinen automaattitäydennyksen ehdotus", - "Next autocomplete suggestion": "Seuraava automaattitäydennyksen ehdotus", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s tai %(copyButton)s", "Waiting for device to sign in": "Odotetaan laitteen sisäänkirjautumista", "Review and approve the sign in": "Katselmoi ja hyväksy sisäänkirjautuminen", @@ -2363,21 +2283,13 @@ "other": "%(user)s ja %(count)s muuta" }, "%(user1)s and %(user2)s": "%(user1)s ja %(user2)s", - "Force complete": "Pakota täydennys", - "Open this settings tab": "Avaa tämä asetusvälilehti", - "Jump to end of the composer": "Hyppää viestimuokkaimen loppuun", - "Jump to start of the composer": "Hyppää viestimuokkaimen alkuun", - "Toggle Link": "Linkki päälle/pois", "Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": { "other": "Pidä salatut viestit turvallisessa välimuistissa, jotta ne näkyvät hakutuloksissa. Käytössä %(size)s, talletetaan viestit %(rooms)s huoneesta.", "one": "Pidä salatut viestit turvallisessa välimuistissa, jotta ne näkyvät hakutuloksissa. Käytössä %(size)s, talletetaan viestit %(rooms)s huoneesta." }, "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Security Key.": "Varmuuskopioi salausavaimesi tilisi datan kanssa siltä varalta, että menetät pääsyn istuntoihisi. Avaimesi turvataan yksilöllisellä turva-avaimella.", "Your server doesn't support disabling sending read receipts.": "Palvelimesi ei tue lukukuittausten lähettämisen poistamista käytöstä.", - "Next recently visited room or space": "Seuraava vierailtu huone tai avaruus", - "Previous recently visited room or space": "Edellinen vierailtu huone tai avaruus", "Group all your rooms that aren't part of a space in one place.": "Ryhmitä kaikki huoneesi, jotka eivät ole osa avaruutta, yhteen paikkaan.", - "Toggle Code Block": "Koodilohko päälle/pois", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Avaruudet ovat uusi tapa ryhmitellä huoneita ja ihmisiä. Voit käyttää esiluotuja avaruuksia niiden avaruuksien lisäksi, joissa jo olet.", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Avaruudet ovat uusi tapa ryhmitellä huoneita ja ihmisiä. Minkälaisen avaruuden sinä haluat luoda? Voit muuttaa tätä asetusta myöhemmin.", "Automatically send debug logs on decryption errors": "Lähetä vianjäljityslokit automaattisesti salauksen purkuun liittyvien virheiden tapahtuessa", @@ -2401,10 +2313,6 @@ "See when the topic changes in your active room": "Näe kun aihe vaihtuu aktiivisessa huoneessa", "See when the topic changes in this room": "Näe kun aihe vaihtuu tässä huoneessa", "Show Labs settings": "Näytä laboratorion asetukset", - "Next unread room or DM": "Seuraava lukematon huone tai yksityisviesti", - "Previous unread room or DM": "Edellinen lukematon huone tai yksityisviesti", - "Previous room or DM": "Edellinen huone tai yksityisviesti", - "Next room or DM": "Seuraava huone tai yksityisviesti", "Record the client name, version, and url to recognise sessions more easily in session manager": "Talleta asiakasohjelmiston nimi, versio ja URL-osoite tunnistaaksesi istunnot istuntohallinnassa", "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device.": "Sinut on kirjattu ulos kaikilta laitteilta, etkä enää vastaanota push-ilmoituksia. Ota ilmoitukset uudelleen käyttöön kirjautumalla jokaiselle haluamallesi laitteelle.", "Toggle push notifications on this session.": "Push-ilmoitukset tälle istunnolle päälle/pois.", @@ -2447,10 +2355,6 @@ "That e-mail address or phone number is already in use.": "Tämä sähköpostiosoite tai puhelinnumero on jo käytössä.", "You can't disable this later. The room will be encrypted but the embedded call will not.": "Et voi poistaa tätä käytöstä myöhemmin. Huone salataan, mutta siihen upotettu puhelu ei ole salattu.", "This address had invalid server or is already in use": "Tässä osoitteessa on virheellinen palvelin tai se on jo käytössä", - "Navigate to previous message in composer history": "Siirry edelliseen viestiin muokkainhistoriassa", - "Navigate to next message in composer history": "Siirry seuraavaan viestiin muokkainhistoriassa", - "Navigate to previous message to edit": "Siirry edelliseen viestiin muokataksesi", - "Navigate to next message to edit": "Siirry seuraavaan viestiin muokataksesi", "Original event source": "Alkuperäinen tapahtumalähde", "Sign in new device": "Kirjaa sisään uusi laite", "Drop a Pin": "Sijoita karttaneula", @@ -2543,9 +2447,7 @@ "Yes, it was me": "Kyllä, se olin minä", "Starting export process…": "Käynnistetään vientitoimenpide…", "Unable to connect to Homeserver. Retrying…": "Kotipalvelimeen yhdistäminen ei onnistunut. Yritetään uudelleen…", - "Could not find room": "Huonetta ei löytynyt", "WARNING: session already verified, but keys do NOT MATCH!": "VAROITUS: istunto on jo vahvistettu, mutta avaimet EIVÄT TÄSMÄÄ!", - "iframe has no src attribute": "iframella ei ole src-attribuuttia", "Use your account to continue.": "Käytä tiliäsi jatkaaksesi.", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Suojaudu salattuihin viesteihin ja tietoihin pääsyn menettämiseltä varmuuskopioimalla salausavaimesi palvelimellesi.", "Signing In…": "Kirjaudutaan…", @@ -2597,8 +2499,6 @@ "You do not have permission to invite users": "Sinulla ei ole lupaa kutsua käyttäjiä", "This provides them with confidence that they are really speaking to you, but it also means they can see the session name you enter here.": "Tämä antaa heille varmuuden, että he keskustelevat oikeasti sinun kanssasi, mutta se myös tarkoittaa, että he näkevät tähän syöttämäsi istunnon nimen.", "Other users in direct messages and rooms that you join are able to view a full list of your sessions.": "Muut käyttäjät yksityisviesteissä ja huoneissa, joihin liityt, näkevät luettelon kaikista istunnoistasi.", - "Identity server is %(identityServerUrl)s": "Identiteettipalvelin on %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Kotipalvelin on %(homeserverUrl)s", "Manage account": "Hallitse tiliä", "Error changing password": "Virhe salasanan vaihtamisessa", "Unknown password change error (%(stringifiedError)s)": "Tuntematon salasananvaihtovirhe (%(stringifiedError)s)", @@ -2884,7 +2784,62 @@ "control": "Ctrl", "shift": "Vaihto", "number": "[numero]", - "backspace": "Askelpalautin" + "backspace": "Askelpalautin", + "category_calls": "Puhelut", + "category_room_list": "Huoneluettelo", + "category_navigation": "Navigointi", + "category_autocomplete": "Automaattinen täydennys", + "composer_toggle_bold": "Lihavointi päälle/pois", + "composer_toggle_italics": "Kursivointi päälle/pois", + "composer_toggle_quote": "Lainaus päälle/pois", + "composer_toggle_code_block": "Koodilohko päälle/pois", + "composer_toggle_link": "Linkki päälle/pois", + "cancel_reply": "Peruuta viestiin vastaaminen", + "navigate_next_message_edit": "Siirry seuraavaan viestiin muokataksesi", + "navigate_prev_message_edit": "Siirry edelliseen viestiin muokataksesi", + "composer_jump_start": "Hyppää viestimuokkaimen alkuun", + "composer_jump_end": "Hyppää viestimuokkaimen loppuun", + "composer_navigate_next_history": "Siirry seuraavaan viestiin muokkainhistoriassa", + "composer_navigate_prev_history": "Siirry edelliseen viestiin muokkainhistoriassa", + "send_sticker": "Lähetä tarra", + "toggle_microphone_mute": "Mikrofonin mykistys päälle/pois", + "toggle_webcam_mute": "Kamera päälle/pois", + "dismiss_read_marker_and_jump_bottom": "Hylkää lukumerkki ja hyppää pohjaan", + "jump_to_read_marker": "Siirry vanhimpaan lukemattomaan viestiin", + "upload_file": "Lähetä tiedosto", + "scroll_up_timeline": "Vieritä ylös aikajanalla", + "scroll_down_timeline": "Vieritä alas aikajanalla", + "jump_room_search": "Siirry huonehakuun", + "room_list_select_room": "Valitse huone huoneluettelosta", + "room_list_collapse_section": "Supista huoneluettelon osa", + "room_list_expand_section": "Laajenna huoneluettelon osa", + "room_list_navigate_down": "Liiku alas huoneluettelossa", + "room_list_navigate_up": "Liiku ylös huoneluettelossa", + "toggle_top_left_menu": "Vaihda vasemman yläkulman valikkoa", + "toggle_right_panel": "Vaihda oikea paneeli", + "keyboard_shortcuts_tab": "Avaa tämä asetusvälilehti", + "go_home_view": "Siirry kotinäkymään", + "next_unread_room": "Seuraava lukematon huone tai yksityisviesti", + "prev_unread_room": "Edellinen lukematon huone tai yksityisviesti", + "next_room": "Seuraava huone tai yksityisviesti", + "prev_room": "Edellinen huone tai yksityisviesti", + "autocomplete_cancel": "Peruuta automaattinen täydennys", + "autocomplete_navigate_next": "Seuraava automaattitäydennyksen ehdotus", + "autocomplete_navigate_prev": "Edellinen automaattitäydennyksen ehdotus", + "toggle_space_panel": "Avaruuspaneeli päälle/pois", + "jump_first_message": "Siirry ensimmäiseen viestiin", + "jump_last_message": "Siirry viimeiseen viestiin", + "composer_undo": "Kumoa muokkaus", + "composer_redo": "Tee uudelleen muokkaus", + "navigate_prev_history": "Edellinen vierailtu huone tai avaruus", + "navigate_next_history": "Seuraava vierailtu huone tai avaruus", + "switch_to_space": "Vaihda avaruuteen numerolla", + "open_user_settings": "Avaa käyttäjäasetukset", + "close_dialog_menu": "Sulje valintaikkuna tai pikavalikko", + "activate_button": "Aktivoi valittu painike", + "composer_new_line": "Rivinvaihto", + "autocomplete_force": "Pakota täydennys", + "search": "Haku (pitää olla käytössä)" }, "credits": { "default_cover_photo": "Oletuskansikuva © Jesús Roncero, käytössä CC-BY-SA 4.0:n ehtojen mukaisesti.", @@ -3005,7 +2960,16 @@ "download_google_play": "Hanki Google Playsta", "download_f_droid": "Hanki F-Droidista", "apple_trademarks": "App Store® ja Apple logo® ovat Apple Inc.:n tavaramerkkejä", - "google_trademarks": "Google Play ja the Google Play -logo ovat Google LLC.:n tavaramerkkejä" + "google_trademarks": "Google Play ja the Google Play -logo ovat Google LLC.:n tavaramerkkejä", + "has_avatar_label": "Hienoa, tämä auttaa ihmisiä tietämään, että se olet sinä", + "no_avatar_label": "Lisää kuva, jotta ihmiset tietävät, että se olet sinä.", + "welcome_user": "Tervetuloa, %(name)s", + "welcome_detail": "Autetaanpa sinut alkuun", + "intro_welcome": "Tervetuloa %(appName)s-sovellukseen", + "intro_byline": "Omista keskustelusi.", + "send_dm": "Lähetä yksityisviesti", + "explore_rooms": "Selaa julkisia huoneita", + "create_room": "Luo huone" }, "settings": { "show_breadcrumbs": "Näytä oikotiet viimeksi katsottuihin huoneisiin huoneluettelon yläpuolella", @@ -3505,7 +3469,23 @@ "category_admin": "Ylläpitäjä", "category_advanced": "Lisäasetukset", "category_effects": "Tehosteet", - "category_other": "Muut" + "category_other": "Muut", + "addwidget_missing_url": "Anna sovelman osoite tai upotettava koodinpätkä", + "addwidget_iframe_missing_src": "iframella ei ole src-attribuuttia", + "addwidget_invalid_protocol": "Lisää sovelman osoitteen alkuun https:// tai http://", + "addwidget_no_permissions": "Et voi muokata tämän huoneen sovelmia.", + "converttodm": "Muuntaa huoneen yksityisviestiksi", + "could_not_find_room": "Huonetta ei löytynyt", + "converttoroom": "Muuntaa yksityisviestin huoneeksi", + "discardsession": "Pakottaa hylkäämään nykyisen ulospäin suuntautuvan ryhmäistunnon salatussa huoneessa", + "tovirtual": "Vaihtaa tämän huoneen virtuaalihuoneeseen, mikäli huoneella sellainen on", + "tovirtual_not_found": "Tällä huoneella ei ole virtuaalihuonetta", + "query": "Avaa keskustelun annetun käyttäjän kanssa", + "query_not_found_phone_number": "Puhelinnumerolla ei löydy Matrix ID:tä", + "holdcall": "Asettaa nykyisen huoneen puhelun pitoon", + "no_active_call": "Huoneessa ei ole aktiivista puhelua", + "unholdcall": "Ottaa nykyisen huoneen puhelun pois pidosta", + "me": "Näyttää toiminnan" }, "presence": { "busy": "Varattu", @@ -3677,7 +3657,16 @@ "sign_in_with_sso": "Kirjaudu sisään käyttäen kertakirjautumista", "sso": "Kertakirjautuminen", "reset_password_action": "Nollaa salasana", - "reset_password_title": "Nollaa salasanasi" + "reset_password_title": "Nollaa salasanasi", + "continue_with_sso": "Jatka %(ssoButtons)slla", + "sso_or_username_password": "%(ssoButtons)s Tai %(usernamePassword)s", + "sign_in_instead": "Onko sinulla jo tili? Kirjaudu tästä", + "account_clash": "Uusi tilisi (%(newAccountId)s) on rekisteröity, mutta olet jo kirjautuneena toisella tilillä (%(loggedInUserId)s).", + "account_clash_previous_account": "Jatka aiemmalla tilillä", + "log_in_new_account": "Kirjaudu uudelle tilillesi.", + "registration_successful": "Rekisteröityminen onnistui", + "server_picker_title": "Ylläpidä tiliä osoitteessa", + "server_picker_dialog_title": "Päätä, missä tiliäsi isännöidään" }, "room_list": { "sort_unread_first": "Näytä ensimmäisenä huoneet, joissa on lukemattomia viestejä", @@ -3702,5 +3691,20 @@ "report_entire_room": "Raportoi koko huone", "report_content_to_homeserver": "Ilmoita sisällöstä kotipalvelimesi ylläpitäjälle", "description": "Tämän viestin ilmoittaminen lähettää sen yksilöllisen tapahtumatunnuksen (event ID) kotipalvelimesi ylläpitäjälle. Jos tämän huoneen viestit on salattu, kotipalvelimesi ylläpitäjä ei voi lukea viestin tekstiä tai nähdä tiedostoja tai kuvia." + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s-versio:", + "olm_version": "Olm-versio:", + "help_link": "Saadaksesi apua %(brand)sin käyttämisessä, napsauta tästä.", + "help_link_chat_bot": "Saadaksesi apua %(brand)sin käytössä, napsauta tästä tai aloita keskustelu bottimme kanssa alla olevasta painikkeesta.", + "chat_bot": "Keskustele %(brand)s-botin kanssa", + "title": "Ohje ja tietoja", + "versions": "Versiot", + "homeserver": "Kotipalvelin on %(homeserverUrl)s", + "identity_server": "Identiteettipalvelin on %(identityServerUrl)s", + "access_token_detail": "Käyttöpolettisi (ns. token) antaa täyden pääsyn tilillesi. Älä jaa sitä kenenkään kanssa.", + "clear_cache_reload": "Tyhjennä välimuisti ja lataa uudelleen" + } } } diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 8c59641258..8cc6428fab 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -1,5 +1,4 @@ { - "Displays action": "Affiche l’action", "Download %(text)s": "Télécharger %(text)s", "Export E2E room keys": "Exporter les clés de chiffrement de salon", "Failed to ban user": "Échec du bannissement de l’utilisateur", @@ -78,7 +77,6 @@ "Return to login screen": "Retourner à l’écran de connexion", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s n’a pas l’autorisation de vous envoyer des notifications - merci de vérifier les paramètres de votre navigateur", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s n’a pas reçu l’autorisation de vous envoyer des notifications - veuillez réessayer", - "%(brand)s version:": "Version de %(brand)s :", "Room %(roomId)s not visible": "Le salon %(roomId)s n’est pas visible", "Rooms": "Salons", "Search failed": "Échec de la recherche", @@ -352,7 +350,6 @@ "Failed to upgrade room": "Échec de la mise à niveau du salon", "The room upgrade could not be completed": "La mise à niveau du salon n’a pas pu être effectuée", "Upgrade this room to version %(version)s": "Mettre à niveau ce salon vers la version %(version)s", - "Forces the current outbound group session in an encrypted room to be discarded": "Force la session de groupe sortante actuelle dans un salon chiffré à être rejetée", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s utilise maintenant 3 à 5 fois moins de mémoire, en ne chargeant les informations des autres utilisateurs que quand elles sont nécessaires. Veuillez patienter pendant que l’on se resynchronise avec le serveur !", "Updating %(brand)s": "Mise à jour de %(brand)s", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Avant de soumettre vos journaux, vous devez créer une « issue » sur GitHub pour décrire votre problème.", @@ -441,14 +438,9 @@ "Phone numbers": "Numéros de téléphone", "Language and region": "Langue et région", "Account management": "Gestion du compte", - "For help with using %(brand)s, click here.": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez ici.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez ici ou commencez une discussion avec notre bot en utilisant le bouton ci-dessous.", - "Help & About": "Aide et À propos", - "Versions": "Versions", "Composer": "Compositeur", "Room list": "Liste de salons", "Autocomplete delay (ms)": "Délai pour l’autocomplétion (ms)", - "Chat with %(brand)s Bot": "Discuter avec le bot %(brand)s", "Roles & Permissions": "Rôles et permissions", "Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Les modifications concernant l'accès à l’historique ne s'appliqueront qu’aux futurs messages de ce salon. La visibilité de l’historique existant ne sera pas modifiée.", "Security & Privacy": "Sécurité et vie privée", @@ -565,8 +557,6 @@ "Enable encryption?": "Activer le chiffrement ?", "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.": "Le chiffrement du salon ne peut pas être désactivé après son activation. Les messages d’un salon chiffré ne peuvent pas être vus par le serveur, seulement par les membres du salon. Activer le chiffrement peut empêcher certains robots et certaines passerelles de fonctionner correctement. En savoir plus sur le chiffrement.", "Power level": "Rang", - "Please supply a https:// or http:// widget URL": "Veuillez fournir une URL du widget en https:// ou http://", - "You cannot modify widgets in this room.": "Vous ne pouvez pas modifier les widgets de ce salon.", "Upgrade this room to the recommended room version": "Mettre à niveau ce salon vers la version recommandée", "This room is running room version , which this homeserver has marked as unstable.": "Ce salon utilise la version , que ce serveur d’accueil a marqué comme instable.", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "La mise à niveau du salon désactivera cette instance du salon et créera un salon mis à niveau avec le même nom.", @@ -656,11 +646,7 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Vous pouvez vous inscrire, mais certaines fonctionnalités ne seront pas disponibles jusqu’au retour du serveur d’identité. Si vous continuez à voir cet avertissement, vérifiez votre configuration ou contactez un administrateur du serveur.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Vous pouvez réinitialiser votre mot de passe, mais certaines fonctionnalités ne seront pas disponibles jusqu’au retour du serveur d’identité. Si vous continuez à voir cet avertissement, vérifiez votre configuration ou contactez un administrateur du serveur.", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Vous pouvez vous connecter, mais certaines fonctionnalités ne seront pas disponibles jusqu’au retour du serveur d’identité. Si vous continuez à voir cet avertissement, vérifiez votre configuration ou contactez un administrateur du serveur.", - "Log in to your new account.": "Connectez-vous à votre nouveau compte.", - "Registration Successful": "Inscription réussie", "Upload all": "Tout envoyer", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Votre nouveau compte (%(newAccountId)s) est créé, mais vous êtes déjà connecté avec un autre compte (%(loggedInUserId)s).", - "Continue with previous account": "Continuer avec le compte précédent", "Edited at %(date)s. Click to view edits.": "Modifié le %(date)s. Cliquer pour voir les modifications.", "Message edits": "Modifications du message", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "La mise à niveau de ce salon nécessite de fermer l’instance actuelle du salon et de créer un nouveau salon à la place. Pour fournir la meilleure expérience possible aux utilisateurs, nous allons :", @@ -765,7 +751,6 @@ "Room Autocomplete": "Autocomplétion de salon", "User Autocomplete": "Autocomplétion d’utilisateur", "Show image": "Afficher l’image", - "Clear cache and reload": "Vider le cache et recharger", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Clé public du captcha manquante dans la configuration du serveur d’accueil. Veuillez le signaler à l’administrateur de votre serveur d’accueil.", "Your email address hasn't been verified yet": "Votre adresse e-mail n’a pas encore été vérifiée", "Click the link in the email you received to verify and then click continue again.": "Cliquez sur le lien dans l’e-mail que vous avez reçu pour la vérifier et cliquez encore sur continuer.", @@ -1015,27 +1000,9 @@ "Cancelled signature upload": "Envoi de signature annulé", "Signature upload success": "Succès de l’envoi de signature", "Signature upload failed": "Échec de l’envoi de signature", - "Navigation": "Navigation", - "Calls": "Appels", - "Room List": "Liste de salons", - "Autocomplete": "Autocomplétion", - "Toggle Bold": "(Dés)activer le gras", - "Toggle Italics": "(Dés)activer l’italique", - "Toggle Quote": "(Dés)activer la citation", - "New line": "Nouvelle ligne", - "Toggle microphone mute": "Activer/désactiver le micro", - "Jump to room search": "Sauter à la recherche de salon", - "Select room from the room list": "Sélectionner un salon de la liste des salons", - "Collapse room list section": "Réduire la section de la liste des salons", - "Expand room list section": "Développer la section de la liste des salons", - "Toggle the top left menu": "Afficher/masquer le menu en haut à gauche", - "Close dialog or context menu": "Fermer le dialogue ou le menu contextuel", - "Activate selected button": "Activer le bouton sélectionné", - "Cancel autocomplete": "Annuler l’autocomplétion", "Confirm by comparing the following with the User Settings in your other session:": "Confirmez en comparant ceci avec les paramètres utilisateurs de votre autre session :", "Confirm this user's session by comparing the following with their User Settings:": "Confirmez la session de cet utilisateur en comparant ceci avec ses paramètres utilisateur :", "If they don't match, the security of your communication may be compromised.": "S’ils ne correspondent pas, la sécurité de vos communications est peut-être compromise.", - "Toggle right panel": "Afficher/masquer le panneau de droite", "Manually verify all remote sessions": "Vérifier manuellement toutes les sessions à distance", "Self signing private key:": "Clé privée d’auto-signature :", "cached locally": "mise en cache localement", @@ -1045,7 +1012,6 @@ "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Dans les salons chiffrés, vos messages sont sécurisés et seuls vous et le destinataire avez les clés uniques pour les déchiffrer.", "Verify all users in a room to ensure it's secure.": "Vérifiez tous les utilisateurs d’un salon pour vous assurer qu’il est sécurisé.", "Sign in with SSO": "Se connecter avec l’authentification unique", - "Cancel replying to a message": "Annuler la réponse à un message", "Use Single Sign On to continue": "Utiliser l’authentification unique pour continuer", "Confirm adding this email address by using Single Sign On to prove your identity.": "Confirmez l’ajout de cette adresse e-mail en utilisant l’authentification unique pour prouver votre identité.", "Confirm adding email": "Confirmer l’ajout de l’e-mail", @@ -1060,10 +1026,6 @@ "Verification timed out.": "La vérification a expiré.", "%(displayName)s cancelled verification.": "%(displayName)s a annulé la vérification.", "You cancelled verification.": "Vous avez annulé la vérification.", - "Welcome to %(appName)s": "Bienvenue sur %(appName)s", - "Send a Direct Message": "Envoyez un message privé", - "Explore Public Rooms": "Explorez les salons publics", - "Create a Group Chat": "Créez une discussion de groupe", "%(name)s is requesting verification": "%(name)s demande une vérification", "well formed": "bien formée", "unexpected type": "type inattendu", @@ -1081,7 +1043,6 @@ "Reminder: Your browser is unsupported, so your experience may be unpredictable.": "Rappel : Votre navigateur n’est pas pris en charge donc votre expérience pourrait être aléatoire.", "Unable to upload": "Envoi impossible", "Currently indexing: %(currentRoom)s": "En train d’indexer : %(currentRoom)s", - "Please supply a widget URL or embed code": "Veuillez fournir l’URL ou le code d’intégration du widget", "Unable to query secret storage status": "Impossible de demander le statut du coffre secret", "New login. Was this you?": "Nouvelle connexion. Était-ce vous ?", "Restoring keys from backup": "Restauration des clés depuis la sauvegarde", @@ -1090,16 +1051,12 @@ "Successfully restored %(sessionCount)s keys": "%(sessionCount)s clés ont été restaurées avec succès", "You signed in to a new session without verifying it:": "Vous vous êtes connecté à une nouvelle session sans la vérifier :", "Verify your other session using one of the options below.": "Vérifiez votre autre session en utilisant une des options ci-dessous.", - "Opens chat with the given user": "Ouvre une discussion avec l’utilisateur fourni", "You've successfully verified your device!": "Vous avez bien vérifié votre appareil !", "To continue, use Single Sign On to prove your identity.": "Pour continuer, utilisez l’authentification unique pour prouver votre identité.", "Confirm to continue": "Confirmer pour continuer", "Click the button below to confirm your identity.": "Cliquez sur le bouton ci-dessous pour confirmer votre identité.", "Confirm encryption setup": "Confirmer la configuration du chiffrement", "Click the button below to confirm setting up encryption.": "Cliquez sur le bouton ci-dessous pour confirmer la configuration du chiffrement.", - "Dismiss read marker and jump to bottom": "Ignorer le signet de lecture et aller en bas", - "Jump to oldest unread message": "Aller au plus ancien message non lu", - "Upload a file": "Envoyer un fichier", "IRC display name width": "Largeur du nom d’affichage IRC", "Size must be a number": "La taille doit être un nombre", "Custom font size can only be between %(min)s pt and %(max)s pt": "La taille de police personnalisée doit être comprise entre %(min)s pt et %(max)s pt", @@ -1236,18 +1193,11 @@ "You might disable this if the room will be used for collaborating with external teams who have their own homeserver. This cannot be changed later.": "Vous devriez le déactiver si le salon est utilisé pour collaborer avec des équipes externes qui ont leur propre serveur d’accueil. Ceci ne peut pas être changé plus tard.", "You might enable this if the room will only be used for collaborating with internal teams on your homeserver. This cannot be changed later.": "Vous devriez l’activer si le salon n’est utilisé que pour collaborer avec des équipes internes sur votre serveur d’accueil. Ceci ne peut pas être changé plus tard.", "Your server requires encryption to be enabled in private rooms.": "Votre serveur impose d’activer le chiffrement dans les salons privés.", - "Add a photo so people know it's you.": "Ajoutez une photo pour que les gens sachent qu’il s’agit de vous.", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s ou %(usernamePassword)s", - "Decide where your account is hosted": "Décidez où votre compte est hébergé", - "Go to Home View": "Revenir à la page d’accueil", "%(creator)s created this DM.": "%(creator)s a créé cette conversation privée.", - "Now, let's help you get started": "Maintenant, laissez-nous vous aider à démarrer", - "Welcome %(name)s": "Bienvenue %(name)s", "Got an account? Sign in": "Vous avez un compte ? Connectez-vous", "New here? Create an account": "Nouveau ici ? Créez un compte", "There was a problem communicating with the homeserver, please try again later.": "Il y a eu un problème lors de la communication avec le serveur d’accueil, veuillez réessayer ultérieurement.", "New? Create account": "Nouveau ? Créez un compte", - "Already have an account? Sign in here": "Vous avez déjà un compte ? Connectez-vous ici", "Algeria": "Algérie", "Albania": "Albanie", "Åland Islands": "Îles Åland", @@ -1395,7 +1345,6 @@ "Macedonia": "Macédoine du Nord", "Macau": "Macao", "Benin": "Bénin", - "Host account on": "Héberger le compte sur", "Belize": "Bélize", "Luxembourg": "Luxembourg", "Lithuania": "Lituanie", @@ -1520,8 +1469,6 @@ "Change the topic of this room": "Changer le sujet de ce salon", "Send stickers into this room": "Envoyer des autocollants dans ce salon", "Remain on your screen when viewing another room, when running": "Reste sur votre écran lors de l’appel quand vous regardez un autre salon", - "Takes the call in the current room off hold": "Reprend l’appel en attente dans ce salon", - "Places the call in the current room on hold": "Met l’appel dans ce salon en attente", "Zimbabwe": "Zimbabwe", "Send images as you in your active room": "Envoie des images sous votre nom dans le salon actuel", "Send images as you in this room": "Envoie des images sous votre nom dans ce salon", @@ -1545,7 +1492,6 @@ "See %(eventType)s events posted to this room": "Voir les évènements %(eventType)s envoyés dans ce salon", "Send %(eventType)s events as you in this room": "Envoie des évènements %(eventType)s sous votre nom dans ce salon", "Send stickers to your active room as you": "Envoie des autocollants sous votre nom dans le salon actuel", - "Continue with %(ssoButtons)s": "Continuer avec %(ssoButtons)s", "About homeservers": "À propos des serveurs d’accueil", "Use your preferred Matrix homeserver if you have one, or host your own.": "Utilisez votre serveur d’accueil Matrix préféré si vous en avez un, ou hébergez le vôtre.", "Other homeserver": "Autre serveur d’accueil", @@ -1582,13 +1528,11 @@ "See general files posted to this room": "Voir les fichiers envoyés dans ce salon", "Send general files as you in your active room": "Envoyer des fichiers sous votre nom dans votre salon actif", "Send general files as you in this room": "Envoyer des fichiers sous votre nom dans ce salon", - "Search (must be enabled)": "Recherche (si activée)", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Cette session a détecté que votre phrase secrète et clé de sécurité pour les messages sécurisés ont été supprimées.", "A new Security Phrase and key for Secure Messages have been detected.": "Une nouvelle phrase secrète et clé de sécurité pour les messages sécurisés ont été détectées.", "Confirm your Security Phrase": "Confirmez votre phrase secrète", "Great! This Security Phrase looks strong enough.": "Super ! Cette phrase secrète a l’air assez solide.", "You have no visible notifications.": "Vous n’avez aucune notification visible.", - "Great, that'll help people know it's you": "Super, ceci aidera des personnes à confirmer qu’il s’agit bien de vous", "Use email to optionally be discoverable by existing contacts.": "Utiliser une adresse e-mail pour pouvoir être découvert par des contacts existants.", "Use email or phone to optionally be discoverable by existing contacts.": "Utiliser une adresse e-mail ou un numéro de téléphone pour pouvoir être découvert par des contacts existants.", "Add an email to be able to reset your password.": "Ajouter une adresse e-mail pour pouvoir réinitialiser votre mot de passe.", @@ -1642,8 +1586,6 @@ "Change which room, message, or user you're viewing": "Changer le salon, message, ou la personne que vous visualisez", "Change which room you're viewing": "Changer le salon que vous êtes en train de lire", "Remain on your screen while running": "Reste sur votre écran pendant l’appel", - "Converts the DM to a room": "Transforme la conversation privée en salon", - "Converts the room to a DM": "Transforme le salon en conversation privée", "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.": "Nous avons demandé à votre navigateur de mémoriser votre serveur d’accueil, mais il semble l’avoir oublié. Rendez-vous à la page de connexion et réessayez.", "We couldn't log you in": "Nous n’avons pas pu vous connecter", "Invite someone using their name, username (like ) or share this space.": "Invitez quelqu’un grâce à son nom, nom d’utilisateur (tel que ) ou partagez cet espace.", @@ -1767,7 +1709,6 @@ "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Choisissez des salons ou conversations à ajouter. C’est un espace rien que pour vous, personne n’en sera informé. Vous pourrez en ajouter plus tard.", "What do you want to organise?": "Que voulez-vous organiser ?", "You have no ignored users.": "Vous n’avez ignoré personne.", - "Your access token gives full access to your account. Do not share it with anyone.": "Votre jeton d’accès donne un accès intégral à votre compte. Ne le partagez avec personne.", "Select a room below first": "Sélectionnez un salon ci-dessous d’abord", "Want to add a new room instead?": "Voulez-vous plutôt ajouter un nouveau salon ?", "Adding rooms... (%(progress)s out of %(count)s)": { @@ -1940,7 +1881,6 @@ "Call declined": "Appel rejeté", "Stop recording": "Arrêter l’enregistrement", "Send voice message": "Envoyer un message vocal", - "Olm version:": "Version de Olm :", "More": "Plus", "Show sidebar": "Afficher la barre latérale", "Hide sidebar": "Masquer la barre latérale", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "Comme ci-dessus, mais également dans tous les salons dans lesquels vous avez été invité ou que vous avez rejoint", "Some encryption parameters have been changed.": "Certains paramètres de chiffrement ont été changés.", "Role in ": "Rôle dans ", - "Send a sticker": "Envoyer un autocollant", "%(reactors)s reacted with %(content)s": "%(reactors)s ont réagi avec %(content)s", "Message didn't send. Click for info.": "Le message n’a pas été envoyé. Cliquer pour plus d’info.", "Unknown failure": "Erreur inconnue", @@ -2058,7 +1997,6 @@ "Use a more compact 'Modern' layout": "Utiliser une mise en page « moderne » plus compacte", "Light high contrast": "Contraste élevé clair", "Someone already has that username, please try another.": "Quelqu’un possède déjà ce nom d’utilisateur, veuillez en essayer un autre.", - "Own your conversations.": "Contrôlez vos conversations.", "Someone already has that username. Try another or if it is you, sign in below.": "Quelqu’un d’autre a déjà ce nom d’utilisateur. Essayez-en un autre ou bien, si c’est vous, connecter vous ci-dessous.", "Copy link to thread": "Copier le lien du fil de discussion", "Thread options": "Options des fils de discussion", @@ -2125,7 +2063,6 @@ "one": "%(spaceName)s et %(count)s autre", "other": "%(spaceName)s et %(count)s autres" }, - "Toggle space panel": "(Dés)activer le panneau des espaces", "Link to room": "Lien vers le salon", "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.": "Êtes-vous sûr de vouloir terminer ce sondage ? Les résultats définitifs du sondage seront affichés et les gens ne pourront plus voter.", "End Poll": "Terminer le sondage", @@ -2183,14 +2120,11 @@ "Back to thread": "Retour au fil de discussion", "Room members": "Membres du salon", "Back to chat": "Retour à la conversation", - "No active call in this room": "Aucun appel en cours dans ce salon", - "Unable to find Matrix ID for phone number": "Impossible de trouver un Matrix ID pour le numéro de téléphone", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Paire (utilisateur, session) inconnue : (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Commande échouée : Salon introuvable (%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "Adresse de salon non reconnue : %(roomAlias)s", "Command error: Unable to find rendering type (%(renderingType)s)": "Erreur de commande : Impossible de trouver le type de rendu (%(renderingType)s)", "Command error: Unable to handle slash command.": "Erreur de commande : Impossible de gérer la commande de barre oblique.", - "Open this settings tab": "Ouvrir cet onglet de paramètres", "Space home": "Accueil de l’espace", "Unknown error fetching location. Please try again later.": "Erreur inconnue en récupérant votre position. Veuillez réessayer plus tard.", "Timed out trying to fetch your location. Please try again later.": "Délai d’attente expiré en essayant de récupérer votre position. Veuillez réessayer plus tard.", @@ -2217,30 +2151,7 @@ "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.", "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", - "Next autocomplete suggestion": "Prochaine suggestion d’autocomplétion", - "Previous room or DM": "Précédent salon ou conversation privée", - "Next room or DM": "Prochain salon ou conversation privée", - "Previous unread room or DM": "Précédent salon ou conversation privée non lu", - "Next unread room or DM": "Prochain salon ou conversation privée non lu", - "Navigate down in the room list": "Descendre dans la liste des salons", - "Navigate up in the room list": "Remonter dans la liste des salons", - "Scroll down in the timeline": "Faire défiler le fil de discussion vers le bas", - "Scroll up in the timeline": "Faire défiler le fil de discussion vers le haut", - "Toggle webcam on/off": "(Dés)activer la caméra", - "Navigate to previous message in composer history": "Aller au précédent message de l’historique du compositeur", - "Navigate to next message in composer history": "Aller au prochain message de l’historique du compositeur", - "Jump to end of the composer": "Avancer à la fin du compositeur", - "Jump to start of the composer": "Revenir au début du compositeur", - "Navigate to previous message to edit": "Allez vers le précédent message à modifier", - "Navigate to next message to edit": "Aller vers le prochain message à modifier", "Unable to check if username has been taken. Try again later.": "Impossible de vérifier si le nom d’utilisateur est déjà utilisé. Veuillez réessayer plus tard.", - "Force complete": "Terminer de force", - "Redo edit": "Restaurer la modification", - "Undo edit": "Annuler la modification", - "Jump to last message": "Aller au dernier message", - "Jump to first message": "Aller au premier message", - "Toggle hidden event visibility": "Changer la visibilité de l’évènement caché", "Pick a date to jump to": "Choisissez vers quelle date aller", "Jump to date": "Aller à la date", "The beginning of the room": "Le début de ce salon", @@ -2254,8 +2165,6 @@ "Hide stickers": "Cacher les autocollants", "Feedback sent! Thanks, we appreciate it!": "Commentaire envoyé ! Merci, nous l’apprécions !", "%(space1Name)s and %(space2Name)s": "%(space1Name)s et %(space2Name)s", - "No virtual room for this room": "Aucun salon virtuel pour ce salon", - "Switches to this room's virtual room, if it has one": "Bascule dans le salon virtuel de ce salon, s'il en a un", "Automatically send debug logs when key backup is not functioning": "Envoyer automatiquement les journaux de débogage lorsque la sauvegarde des clés ne fonctionne pas", "Open thread": "Ouvrir le fil de discussion", "Pinned": "Épinglé", @@ -2277,8 +2186,6 @@ "Edit poll": "Modifier le sondage", "%(brand)s could not send your location. Please try again later.": "%(brand)s n'a pas pu envoyer votre position. Veuillez réessayer plus tard.", "We couldn't send your location": "Nous n'avons pas pu envoyer votre position", - "Open user settings": "Ouvrir les paramètres de l'utilisateur", - "Switch to space by number": "Basculer vers l'espace par numéro", "Match system": "S’adapter au système", "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Répondez à un fil de discussion en cours ou utilisez \"%(replyInThread)s\" lorsque vous passez la souris sur un message pour en commencer un nouveau.", "Show polls button": "Afficher le bouton des sondages", @@ -2295,10 +2202,6 @@ "Collapse quotes": "Réduire les citations", "Can't create a thread from an event with an existing relation": "Impossible de créer un fil de discussion à partir d’un événement avec une relation existante", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Les espaces sont une nouvelle manière de regrouper les salons et les personnes. Quel type d’espace voulez-vous créer ? Vous pouvez changer ceci plus tard.", - "Next recently visited room or space": "Prochain salon ou espace récemment visité", - "Previous recently visited room or space": "Salon ou espace précédemment visité", - "Toggle Link": "Afficher/masquer le lien", - "Toggle Code Block": "Afficher/masquer le bloc de code", "You are sharing your live location": "Vous partagez votre position en direct", "Unsent": "Non envoyé", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Décocher si vous voulez également retirer les messages systèmes de cet utilisateur (par exemple changement de statut ou de profil…)", @@ -2474,7 +2377,6 @@ }, "In %(spaceName)s.": "Dans l’espace %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "Dans les espaces %(space1Name)s et %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Commande développeur : oublier la session de groupe sortante actuelle et négocier une nouvelle session Olm", "Stop and close": "Arrêter et fermer", "Online community members": "Membres de la communauté en ligne", "Coworkers and teams": "Collègues et équipes", @@ -2776,8 +2678,6 @@ "Secure Backup successful": "Sauvegarde sécurisée réalisée avec succès", "Your keys are now being backed up from this device.": "Vos clés sont maintenant sauvegardées depuis cet appareil.", "Loading polls": "Chargement des sondages", - "Identity server is %(identityServerUrl)s": "Le serveur d’identité est %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Le serveur d’accueil est %(homeserverUrl)s", "Ended a poll": "Sondage terminé", "Due to decryption errors, some votes may not be counted": "À cause d’erreurs de déchiffrement, certains votes pourraient ne pas avoir été pris en compte", "The sender has blocked you from receiving this message": "L’expéditeur a bloqué la réception de votre message", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Ignorer (%(counter)s)", "Invites by email can only be sent one at a time": "Les invitations par e-mail ne peuvent être envoyées qu’une par une", "Once everyone has joined, you’ll be able to chat": "Quand tout le monde sera présent, vous pourrez discuter", - "Could not find room": "Impossible de trouver le salon", - "iframe has no src attribute": "L’iframe n’a pas d’attribut src", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Nous avons rencontré une erreur lors de la mise-à-jour de vos préférences de notification. Veuillez essayer de réactiver l’option.", "Desktop app logo": "Logo de l’application de bureau", "Use your account to continue.": "Utilisez votre compte pour continuer.", @@ -3195,7 +3093,63 @@ "control": "Ctrl", "shift": "Maj", "number": "[numéro]", - "backspace": "Retour arrière" + "backspace": "Retour arrière", + "category_calls": "Appels", + "category_room_list": "Liste de salons", + "category_navigation": "Navigation", + "category_autocomplete": "Autocomplétion", + "composer_toggle_bold": "(Dés)activer le gras", + "composer_toggle_italics": "(Dés)activer l’italique", + "composer_toggle_quote": "(Dés)activer la citation", + "composer_toggle_code_block": "Afficher/masquer le bloc de code", + "composer_toggle_link": "Afficher/masquer le lien", + "cancel_reply": "Annuler la réponse à un message", + "navigate_next_message_edit": "Aller vers le prochain message à modifier", + "navigate_prev_message_edit": "Allez vers le précédent message à modifier", + "composer_jump_start": "Revenir au début du compositeur", + "composer_jump_end": "Avancer à la fin du compositeur", + "composer_navigate_next_history": "Aller au prochain message de l’historique du compositeur", + "composer_navigate_prev_history": "Aller au précédent message de l’historique du compositeur", + "send_sticker": "Envoyer un autocollant", + "toggle_microphone_mute": "Activer/désactiver le micro", + "toggle_webcam_mute": "(Dés)activer la caméra", + "dismiss_read_marker_and_jump_bottom": "Ignorer le signet de lecture et aller en bas", + "jump_to_read_marker": "Aller au plus ancien message non lu", + "upload_file": "Envoyer un fichier", + "scroll_up_timeline": "Faire défiler le fil de discussion vers le haut", + "scroll_down_timeline": "Faire défiler le fil de discussion vers le bas", + "jump_room_search": "Sauter à la recherche de salon", + "room_list_select_room": "Sélectionner un salon de la liste des salons", + "room_list_collapse_section": "Réduire la section de la liste des salons", + "room_list_expand_section": "Développer la section de la liste des salons", + "room_list_navigate_down": "Descendre dans la liste des salons", + "room_list_navigate_up": "Remonter dans la liste des salons", + "toggle_top_left_menu": "Afficher/masquer le menu en haut à gauche", + "toggle_right_panel": "Afficher/masquer le panneau de droite", + "keyboard_shortcuts_tab": "Ouvrir cet onglet de paramètres", + "go_home_view": "Revenir à la page d’accueil", + "next_unread_room": "Prochain salon ou conversation privée non lu", + "prev_unread_room": "Précédent salon ou conversation privée non lu", + "next_room": "Prochain salon ou conversation privée", + "prev_room": "Précédent salon ou conversation privée", + "autocomplete_cancel": "Annuler l’autocomplétion", + "autocomplete_navigate_next": "Prochaine suggestion d’autocomplétion", + "autocomplete_navigate_prev": "Précédente suggestion d’autocomplétion", + "toggle_space_panel": "(Dés)activer le panneau des espaces", + "toggle_hidden_events": "Changer la visibilité de l’évènement caché", + "jump_first_message": "Aller au premier message", + "jump_last_message": "Aller au dernier message", + "composer_undo": "Annuler la modification", + "composer_redo": "Restaurer la modification", + "navigate_prev_history": "Salon ou espace précédemment visité", + "navigate_next_history": "Prochain salon ou espace récemment visité", + "switch_to_space": "Basculer vers l'espace par numéro", + "open_user_settings": "Ouvrir les paramètres de l'utilisateur", + "close_dialog_menu": "Fermer le dialogue ou le menu contextuel", + "activate_button": "Activer le bouton sélectionné", + "composer_new_line": "Nouvelle ligne", + "autocomplete_force": "Terminer de force", + "search": "Recherche (si activée)" }, "credits": { "default_cover_photo": "La photo d’illustration par défaut est © Jesús Roncero utilisée selon les termes CC-BY-SA 4.0.", @@ -3320,7 +3274,16 @@ "download_google_play": "Récupérez-le sur Google Play", "download_f_droid": "Récupérez-le sur F-Droid", "apple_trademarks": "App Store® et le logo Apple® sont des marques déposées de Apple Inc.", - "google_trademarks": "Google Play et le logo Google Play sont des marques déposées de Google LLC." + "google_trademarks": "Google Play et le logo Google Play sont des marques déposées de Google LLC.", + "has_avatar_label": "Super, ceci aidera des personnes à confirmer qu’il s’agit bien de vous", + "no_avatar_label": "Ajoutez une photo pour que les gens sachent qu’il s’agit de vous.", + "welcome_user": "Bienvenue %(name)s", + "welcome_detail": "Maintenant, laissez-nous vous aider à démarrer", + "intro_welcome": "Bienvenue sur %(appName)s", + "intro_byline": "Contrôlez vos conversations.", + "send_dm": "Envoyez un message privé", + "explore_rooms": "Explorez les salons publics", + "create_room": "Créez une discussion de groupe" }, "settings": { "show_breadcrumbs": "Afficher les raccourcis vers les salons vus récemment au-dessus de la liste des salons", @@ -3888,7 +3851,24 @@ "category_admin": "Administrateur", "category_advanced": "Avancé", "category_effects": "Effets", - "category_other": "Autre" + "category_other": "Autre", + "addwidget_missing_url": "Veuillez fournir l’URL ou le code d’intégration du widget", + "addwidget_iframe_missing_src": "L’iframe n’a pas d’attribut src", + "addwidget_invalid_protocol": "Veuillez fournir une URL du widget en https:// ou http://", + "addwidget_no_permissions": "Vous ne pouvez pas modifier les widgets de ce salon.", + "converttodm": "Transforme le salon en conversation privée", + "could_not_find_room": "Impossible de trouver le salon", + "converttoroom": "Transforme la conversation privée en salon", + "discardsession": "Force la session de groupe sortante actuelle dans un salon chiffré à être rejetée", + "remakeolm": "Commande développeur : oublier la session de groupe sortante actuelle et négocier une nouvelle session Olm", + "tovirtual": "Bascule dans le salon virtuel de ce salon, s'il en a un", + "tovirtual_not_found": "Aucun salon virtuel pour ce salon", + "query": "Ouvre une discussion avec l’utilisateur fourni", + "query_not_found_phone_number": "Impossible de trouver un Matrix ID pour le numéro de téléphone", + "holdcall": "Met l’appel dans ce salon en attente", + "no_active_call": "Aucun appel en cours dans ce salon", + "unholdcall": "Reprend l’appel en attente dans ce salon", + "me": "Affiche l’action" }, "presence": { "busy": "Occupé", @@ -4069,7 +4049,16 @@ "sign_in_with_sso": "Se connecter avec l’authentification unique", "sso": "Authentification unique", "reset_password_action": "Réinitialiser le mot de passe", - "reset_password_title": "Réinitialise votre mot de passe" + "reset_password_title": "Réinitialise votre mot de passe", + "continue_with_sso": "Continuer avec %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s ou %(usernamePassword)s", + "sign_in_instead": "Vous avez déjà un compte ? Connectez-vous ici", + "account_clash": "Votre nouveau compte (%(newAccountId)s) est créé, mais vous êtes déjà connecté avec un autre compte (%(loggedInUserId)s).", + "account_clash_previous_account": "Continuer avec le compte précédent", + "log_in_new_account": "Connectez-vous à votre nouveau compte.", + "registration_successful": "Inscription réussie", + "server_picker_title": "Héberger le compte sur", + "server_picker_dialog_title": "Décidez où votre compte est hébergé" }, "room_list": { "sort_unread_first": "Afficher les salons non lus en premier", @@ -4105,5 +4094,20 @@ "report_entire_room": "Signaler le salon entier", "report_content_to_homeserver": "Signaler le contenu à l’administrateur de votre serveur d’accueil", "description": "Le signalement de ce message enverra son « event ID » unique à l’administrateur de votre serveur d’accueil. Si les messages dans ce salon sont chiffrés, l’administrateur ne pourra pas lire le texte du message ou voir les fichiers ou les images." + }, + "setting": { + "help_about": { + "brand_version": "Version de %(brand)s :", + "olm_version": "Version de Olm :", + "help_link": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez ici.", + "help_link_chat_bot": "Pour obtenir de l’aide sur l’utilisation de %(brand)s, cliquez ici ou commencez une discussion avec notre bot en utilisant le bouton ci-dessous.", + "chat_bot": "Discuter avec le bot %(brand)s", + "title": "Aide et À propos", + "versions": "Versions", + "homeserver": "Le serveur d’accueil est %(homeserverUrl)s", + "identity_server": "Le serveur d’identité est %(identityServerUrl)s", + "access_token_detail": "Votre jeton d’accès donne un accès intégral à votre compte. Ne le partagez avec personne.", + "clear_cache_reload": "Vider le cache et recharger" + } } } diff --git a/src/i18n/strings/ga.json b/src/i18n/strings/ga.json index 9dfcdca01c..30aaa840fd 100644 --- a/src/i18n/strings/ga.json +++ b/src/i18n/strings/ga.json @@ -1,6 +1,5 @@ { "Sign in with": "Sínigh isteach le", - "Already have an account? Sign in here": "An bhfuil cuntas agat cheana? Sínigh isteach anseo", "Show more": "Taispeáin níos mó", "Switch to dark mode": "Athraigh go mód dorcha", "Switch to light mode": "Athraigh go mód geal", @@ -34,7 +33,6 @@ "Ignored/Blocked": "Neamhairde/Tachta", "Avoid sequences": "Seachain seicheamh", "Unrecognised address": "Seoladh nár aithníodh", - "Displays action": "Taispeáin gníomh", "Verified key": "Eochair deimhnithe", "Unignored user": "Úsáideoir leis aird", "Ignored user": "Úsáideoir neamhairde", @@ -238,9 +236,6 @@ "Favourited": "Roghnaithe", "Feedback": "Aiseolas", "Ok": "Togha", - "Autocomplete": "Uathiomlánaigh", - "Calls": "Glaonna", - "Navigation": "Nascleanúint", "Accepting…": "ag Glacadh leis…", "Cancelling…": "ag Cealú…", "exists": "a bheith ann", @@ -307,7 +302,6 @@ "Cryptography": "Cripteagrafaíocht", "Composer": "Eagarthóir", "Notifications": "Fógraí", - "Versions": "Leaganacha", "General": "Ginearálta", "Account": "Cuntas", "Profile": "Próifíl", @@ -421,7 +415,6 @@ "Are you sure you want to sign out?": "An bhfuil tú cinnte go dteastaíonn uait sínigh amach?", "Signed Out": "Sínithe Amach", "Unable to query for supported registration methods.": "Ní féidir iarratas a dhéanamh faoi modhanna cláraithe tacaithe.", - "Host account on": "Óstáil cuntas ar", "Create account": "Déan cuntas a chruthú", "Deactivate Account": "Cuir cuntas as feidhm", "Account management": "Bainistíocht cuntais", @@ -659,7 +652,10 @@ "alt": "Alt", "control": "Ctrl", "shift": "Shift", - "number": "[uimhir]" + "number": "[uimhir]", + "category_calls": "Glaonna", + "category_navigation": "Nascleanúint", + "category_autocomplete": "Uathiomlánaigh" }, "composer": { "format_bold": "Trom", @@ -730,7 +726,8 @@ "category_admin": "Riarthóir", "category_advanced": "Forbartha", "category_effects": "Tionchair", - "category_other": "Eile" + "category_other": "Eile", + "me": "Taispeáin gníomh" }, "presence": { "online": "Ar Líne", @@ -799,7 +796,9 @@ "categories": "Catagóire" }, "auth": { - "sso": "Single Sign On" + "sso": "Single Sign On", + "sign_in_instead": "An bhfuil cuntas agat cheana? Sínigh isteach anseo", + "server_picker_title": "Óstáil cuntas ar" }, "export_chat": { "messages": "Teachtaireachtaí" @@ -815,5 +814,10 @@ }, "report_content": { "disagree": "Easaontaigh" + }, + "setting": { + "help_about": { + "versions": "Leaganacha" + } } } diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json index 4fbc89971a..3e6aa4ce52 100644 --- a/src/i18n/strings/gl.json +++ b/src/i18n/strings/gl.json @@ -234,7 +234,6 @@ "Notifications": "Notificacións", "Profile": "Perfil", "Account": "Conta", - "%(brand)s version:": "versión %(brand)s:", "The email address linked to your account must be entered.": "Debe introducir o correo electrónico ligado a súa conta.", "A new password must be entered.": "Debe introducir un novo contrasinal.", "New passwords must match each other.": "Os novos contrasinais deben ser coincidentes.", @@ -245,7 +244,6 @@ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Non se pode conectar ao servidor vía HTTP cando na barra de enderezos do navegador está HTTPS. Utiliza HTTPS ou active scripts non seguros.", "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.": "Non se conectou ao servidor - por favor comprobe a conexión, asegúrese de que ocertificado SSL do servidor sexa de confianza, e que ningún engadido do navegador estea bloqueando as peticións.", "This server does not support authentication with a phone number.": "O servidor non soporta a autenticación con número de teléfono.", - "Displays action": "Mostra acción", "Define the power level of a user": "Define o nivel de permisos de unha usuaria", "Commands": "Comandos", "Notify the whole room": "Notificar a toda a sala", @@ -383,23 +381,15 @@ "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Usar un servidor de identidade para convidar por email. Preme continuar para usar o servidor de identidade por defecto (%(defaultIdentityServerName)s) ou cambiao en Axustes.", "Use an identity server to invite by email. Manage in Settings.": "Usar un servidor de indentidade para convidar por email. Xestionao en Axustes.", "Could not find user in room": "Non se atopa a usuaria na sala", - "Please supply a widget URL or embed code": "Proporciona o URL do widget ou incrusta o código", - "Please supply a https:// or http:// widget URL": "Escribe un https:// ou http:// como URL do widget", - "You cannot modify widgets in this room.": "Non podes modificar os widgets desta sala.", "Session already verified!": "A sesión xa está verificada!", "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!": "AVISO: FALLOU A VERIFICACIÓN DAS CHAVES! A chave de firma para %(userId)s na sesión %(deviceId)s é \"%(fprint)s\" que non concordan coa chave proporcionada \"%(fingerprint)s\". Esto podería significar que as túas comunicacións foron interceptadas!", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "A chave de firma proporcionada concorda coa chave de firma recibida desde a sesión %(deviceId)s de %(userId)s. Sesión marcada como verificada.", "Verifies a user, session, and pubkey tuple": "Verifica unha usuaria, sesión e chave pública", - "Forces the current outbound group session in an encrypted room to be discarded": "Forza que se descarte a sesión de saída actual nunha sala cifrada", - "Opens chat with the given user": "Abre unha conversa coa usuaria", "Capitalization doesn't help very much": "Escribir con maiúsculas non axuda moito", "Predictable substitutions like '@' instead of 'a' don't help very much": "Substitucións predecibles como '@' no lugar de 'a' non son de gran axuda", "General": "Xeral", "Discovery": "Descubrir", "Deactivate account": "Desactivar conta", - "For help with using %(brand)s, click here.": "Para ter axuda con %(brand)s, preme aquí.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Se precisas axuda usando %(brand)s, preme aquí ou inicia unha conversa co noso bot usando o botón inferior.", - "Help & About": "Axuda & Acerca de", "Security & Privacy": "Seguridade & Privacidade", "Roles & Permissions": "Roles & Permisos", "Room %(name)s": "Sala %(name)s", @@ -408,7 +398,6 @@ "Enter the name of a new server you want to explore.": "Escribe o nome do novo servidor que queres explorar.", "Command Help": "Comando Axuda", "To help us prevent this in future, please send us logs.": "Para axudarnos a evitar esto no futuro, envíanos o rexistro.", - "Explore Public Rooms": "Explorar Salas Públicas", "%(creator)s created and configured the room.": "%(creator)s creou e configurou a sala.", "Explore rooms": "Explorar salas", "General failure": "Fallo xeral", @@ -638,10 +627,7 @@ "Phone numbers": "Número de teléfono", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Acepta os Termos do Servizo do servidor (%(serverName)s) para permitir que te atopen polo enderezo de email ou número de teléfono.", "Account management": "Xestión da conta", - "Chat with %(brand)s Bot": "Chat co Bot %(brand)s", - "Clear cache and reload": "Baleirar caché e recargar", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Para informar dun asunto relacionado coa seguridade de Matrix, le a Política de Revelación de Privacidade de Matrix.org.", - "Versions": "Versións", "Ignored/Blocked": "Ignorado/Bloqueado", "Error adding ignored user/server": "Fallo ao engadir a ignorado usuaria/servidor", "Something went wrong. Please try again or view your console for hints.": "Algo fallou. Inténtao outra vez o mira na consola para ter algunha pista.", @@ -1037,9 +1023,6 @@ "Email (optional)": "Email (optativo)", "Phone (optional)": "Teléfono (optativo)", "Couldn't load page": "Non se puido cargar a páxina", - "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", "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.": { @@ -1065,10 +1048,6 @@ "Create account": "Crea unha conta", "Unable to query for supported registration methods.": "Non se puido consultar os métodos de rexistro soportados.", "Registration has been disabled on this homeserver.": "O rexistro está desactivado neste servidor.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "A tú conta (%(newAccountId)s) foi rexistrada, pero iniciaches sesión usando outra conta (%(loggedInUserId)s).", - "Continue with previous account": "Continúa coa conta anterior", - "Log in to your new account.": "Accede usando a conta nova.", - "Registration Successful": "Rexistro correcto", "Failed to re-authenticate due to a homeserver problem": "Fallo ó reautenticar debido a un problema no servidor", "Failed to re-authenticate": "Fallo na reautenticación", "Forgotten your password?": "¿Esqueceches o contrasinal?", @@ -1113,28 +1092,6 @@ "Indexed rooms:": "Salas indexadas:", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s de %(totalRooms)s", "Message downloading sleep time(ms)": "Tempo de espera da mensaxe de descarga(ms)", - "Navigation": "Navegación", - "Calls": "Chamadas", - "Room List": "Lista de Salas", - "Autocomplete": "Autocompletado", - "Toggle Bold": "Activa Resaltar", - "Toggle Italics": "Activa Cursiva", - "Toggle Quote": "Activa Citación", - "New line": "Nova liña", - "Cancel replying to a message": "Cancelar a resposta a mensaxe", - "Toggle microphone mute": "Acalar micrófono", - "Dismiss read marker and jump to bottom": "Ignorar marcador de lectura e ir ó final", - "Jump to oldest unread message": "Ir á mensaxe máis antiga non lida", - "Upload a file": "Subir ficheiro", - "Jump to room search": "Ir a busca na sala", - "Select room from the room list": "Escoller sala da lista de salas", - "Collapse room list section": "Contraer a sección de lista de salas", - "Expand room list section": "Despregar a sección da lista de salas", - "Toggle the top left menu": "Activar o menú superior esquerdo", - "Close dialog or context menu": "Pechar o diálogo ou menú contextual", - "Activate selected button": "Activar o botón seleccionado", - "Toggle right panel": "Activar panel dereito", - "Cancel autocomplete": "Cancelar autocompletado", "Message deleted on %(date)s": "Mensaxe eliminada o %(date)s", "Wrong file type": "Tipo de ficheiro erróneo", "Looks good!": "Pinta ben!", @@ -1236,10 +1193,6 @@ "PRO TIP: If you start a bug, please submit debug logs to help us track down the problem.": "PRO TIP: se inicias un novo informe, envía rexistros de depuración para axudarnos a investigar o problema.", "Please view existing bugs on Github first. No match? Start a new one.": "Primeiro revisa a lista existente de fallo en Github. Non hai nada? Abre un novo.", "Comment": "Comentar", - "Now, let's help you get started": "Ímosche axudar neste comezo", - "Welcome %(name)s": "Benvida %(name)s", - "Add a photo so people know it's you.": "Engade unha foto así a xente recoñecerate.", - "Great, that'll help people know it's you": "Moi ben, así axudarás a que outras persoas te recoñezan", "Invite someone using their name, email address, username (like ) or share this room.": "Convida a persoas usando o seu nome, enderezo de email, nome de usuaria (como ) ou comparte esta sala.", "Start a conversation with someone using their name, email address or username (like ).": "Inicia unha conversa con alguén usando o seu nome, enderezo de email ou nome de usuaria (como ).", "Invite by email": "Convidar por email", @@ -1315,8 +1268,6 @@ "Belize": "Belice", "Belgium": "Bélxica", "Belarus": "Belarús", - "Places the call in the current room on hold": "Pon en pausa a chamada da sala actual", - "Takes the call in the current room off hold": "Acepta a chamada na sala actual", "%(creator)s created this DM.": "%(creator)s creou esta MD.", "This is the start of .": "Este é o comezo de .", "Add a photo, so people can easily spot your room.": "Engade unha foto para que se poida identificar a sala facilmente.", @@ -1512,7 +1463,6 @@ "one": "Conservar na memoria local as mensaxes cifradas de xeito seguro para que aparezan nas buscas, usando %(size)s para gardar mensaxes de %(rooms)s salas.", "other": "Conservar na memoria local as mensaxes cifradas de xeito seguro para que aparezan nas buscas, usando %(size)s para gardar mensaxes de %(rooms)s salas." }, - "Go to Home View": "Ir á Páxina de Inicio", "The %(capability)s capability": "A capacidade de %(capability)s", "Decline All": "Rexeitar todo", "This widget would like to:": "O widget podería querer:", @@ -1576,11 +1526,6 @@ "Enter email address": "Escribe enderezo email", "New here? Create an account": "Acabas de coñecernos? Crea unha conta", "Got an account? Sign in": "Tes unha conta? Conéctate", - "Decide where your account is hosted": "Decide onde queres crear a túa conta", - "Host account on": "Crea a conta en", - "Already have an account? Sign in here": "Xa tes unha conta? Conecta aquí", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Ou %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Continúa con %(ssoButtons)s", "New? Create account": "Recén cheagada? Crea unha conta", "There was a problem communicating with the homeserver, please try again later.": "Houbo un problema de comunicación co servidor de inicio, inténtao máis tarde.", "Use email to optionally be discoverable by existing contacts.": "Usa o email para ser opcionalmente descubrible para os contactos existentes.", @@ -1634,11 +1579,8 @@ "Wrong Security Key": "Chave de Seguridade incorrecta", "Set my room layout for everyone": "Establecer a miña disposición da sala para todas", "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Security Key.": "Fai unha copia de apoio das chaves de cifrado da túa conta en caso de perder o acceso ás túas sesións. As chaves estarán seguras cunha única Chave de Seguridade.", - "Converts the room to a DM": "Converte a sala en MD", - "Converts the DM to a room": "Converte a MD nunha sala", "Use app for a better experience": "Para ter unha mellor experiencia usa a app", "Use app": "Usa a app", - "Search (must be enabled)": "Buscar (debe esta activa)", "Allow this widget to verify your identity": "Permitir a este widget verificar a túa identidade", "The widget will verify your user ID, but won't be able to perform actions for you:": "Este widget vai verificar o ID do teu usuario, pero non poderá realizar accións no teu nome:", "Remember this": "Lembrar isto", @@ -1780,7 +1722,6 @@ "No microphone found": "Non atopamos ningún micrófono", "We were unable to access your microphone. Please check your browser settings and try again.": "Non puidemos acceder ao teu micrófono. Comproba os axustes do navegador e proba outra vez.", "Unable to access your microphone": "Non se puido acceder ao micrófono", - "Your access token gives full access to your account. Do not share it with anyone.": "O teu token de acceso da acceso completo á túa conta. Non o compartas con ninguén.", "Please enter a name for the space": "Escribe un nome para o espazo", "Connecting": "Conectando", "Search names and descriptions": "Buscar nome e descricións", @@ -1941,7 +1882,6 @@ "Call declined": "Chamada rexeitada", "Stop recording": "Deter a gravación", "Send voice message": "Enviar mensaxe de voz", - "Olm version:": "Version olm:", "More": "Máis", "Show sidebar": "Mostrar a barra lateral", "Hide sidebar": "Agochar barra lateral", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "O de enriba, pero en calquera sala á que te uniches ou foches convidada", "Some encryption parameters have been changed.": "Algún dos parámetros de cifrado foron cambiados.", "Role in ": "Rol en ", - "Send a sticker": "Enviar un adhesivo", "Unknown failure": "Fallo descoñecido", "Failed to update the join rules": "Fallou a actualización das normas para unirse", "Select the roles required to change various parts of the space": "Elexir os roles requeridos para cambiar varias partes do espazo", @@ -2082,7 +2021,6 @@ "Keep discussions organised with threads": "Manter as conversas organizadas con fíos", "Shows all threads you've participated in": "Mostra tódalas conversas nas que participaches", "You're all caught up": "Xa remataches", - "Own your conversations.": "As túas conversas son túas.", "Someone already has that username. Try another or if it is you, sign in below.": "Ese nome de usuaria xa está pillado. Inténtao con outro, ou se es ti, conéctate.", "Copy link to thread": "Copiar ligazón da conversa", "Thread options": "Opcións da conversa", @@ -2135,7 +2073,6 @@ "That's fine": "Iso está ben", "You cannot place calls without a connection to the server.": "Non podes facer chamadas se non tes conexión ao servidor.", "Connectivity to the server has been lost": "Perdeuse a conexión ao servidor", - "Toggle space panel": "Activar panel do espazo", "Recent searches": "Buscas recentes", "To search messages, look for this icon at the top of a room ": "Para buscar mensaxes, busca esta icona arriba de todo na sala ", "Other searches": "Outras buscas", @@ -2158,8 +2095,6 @@ "Copy room link": "Copiar ligazón á sala", "Remove, ban, or invite people to your active room, and make you leave": "Eliminar, vetar ou convidar persoas á túa sala activa, e saír ti mesmo", "Remove, ban, or invite people to this room, and make you leave": "Eliminar, vetar, ou convidar persas a esta sala, e saír ti mesmo", - "No active call in this room": "Sen chamada activa nesta sala", - "Unable to find Matrix ID for phone number": "Non se atopa un ID Matrix para o número de teléfono", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Parella (usuaria, sesión) descoñecida: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Fallo no comando: Non se atopa a sala (%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "Enderezo da sala non recoñecido: %(roomAlias)s", @@ -2221,30 +2156,6 @@ "Unknown error fetching location. Please try again later.": "Erro descoñecido ao obter a localización, inténtao máis tarde.", "Timed out trying to fetch your location. Please try again later.": "Caducou o intento de obter a localización, inténtao máis tarde.", "Failed to fetch your location. Please try again later.": "Non se obtivo a localización, inténtao máis tarde.", - "Redo edit": "Refacer a edición", - "Force complete": "Forzar completamento", - "Undo edit": "Desfacer a edición", - "Jump to last message": "Ir á última mensaxe", - "Jump to first message": "Ir á primeira mensaxe", - "Toggle hidden event visibility": "Cambiar a visibilidade do evento", - "Previous autocomplete suggestion": "Anterior suxestión de autocompletado", - "Next autocomplete suggestion": "Seguinte suxestión de autocompletado", - "Previous room or DM": "Sala ou MD anterior", - "Next room or DM": "Seguinte sala ou MD", - "Previous unread room or DM": "Anterior sala sen ler ou MD", - "Next unread room or DM": "Seguinte sala sen ler ou MD", - "Open this settings tab": "Abre esta lapela cos axustes", - "Navigate down in the room list": "Vai abaixo na lista de salas", - "Navigate up in the room list": "Vai arriba na lista de salas", - "Scroll down in the timeline": "Vai abaixo na cronoloxía", - "Scroll up in the timeline": "Desprázate na cronoloxía", - "Toggle webcam on/off": "Cambia a webcam on/off", - "Navigate to previous message in composer history": "Vai á mensaxe anterior no historial do editor", - "Navigate to next message in composer history": "Vai á seguinte mensaxe no historial do editor", - "Jump to end of the composer": "Vai ao final no editor", - "Jump to start of the composer": "Vai ao inicio do editor", - "Navigate to previous message to edit": "Vai á mensaxe anterior para editar", - "Navigate to next message to edit": "Vai á seguinte mensaxe para editar", "Your new device is now verified. Other users will see it as trusted.": "O dispositivo xa está verificado. Outras persoas verano como confiable.", "Your new device is now verified. It has access to your encrypted messages, and other users will see it as trusted.": "O novo dispositivo xa está verificado. Ten acceso a tódalas túas mensaxes cifradas, e outra usuarias verano como confiable.", "Verify with another device": "Verifica usando outro dispositivo", @@ -2266,8 +2177,6 @@ "Open poll": "Abrir enquisa", "Poll type": "Tipo de enquisa", "Results will be visible when the poll is ended": "Os resultados serán visibles cando remate a enquisa", - "Open user settings": "Abrir axustes", - "Switch to space by number": "Cambia á sala polo número", "What location type do you want to share?": "Que tipo de localización queres compartir?", "Drop a Pin": "Fixa a posición", "My live location": "Localización en direto", @@ -2277,7 +2186,6 @@ "Pinned": "Fixado", "Open thread": "Abrir fío", "Match system": "Seguir o sistema", - "No virtual room for this room": "No hai sala virtual para esta sala", "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Responde a unha conversa en curso ou usa \"%(replyInThread)s\" cando pasas por enriba dunha mensaxe co rato para iniciar unha nova.", "We'll create rooms for each of them.": "Imos crear salas para cada un deles.", "Click": "Premer", @@ -2285,9 +2193,6 @@ "Collapse quotes": "Pregar as citas", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Espazos é o novo xeito de agrupar salas e persoas. Que tipo de Espazo queres crear? Pódelo cambiar máis tarde.", "Show polls button": "Mostrar botón de enquisas", - "Switches to this room's virtual room, if it has one": "Cambia á sala virtual desta sala, se é que existe", - "Toggle Link": "Activar Ligazón", - "Toggle Code Block": "Activar Bloque de Código", "You are sharing your live location": "Vas compartir en directo a túa localización", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Desmarcar se tamén queres eliminar as mensaxes do sistema acerca da usuaria (ex. cambios na membresía, cambios no perfil...)", "Preserve system messages": "Conservar mensaxes do sistema", @@ -2310,8 +2215,6 @@ "other": "Eliminando agora mensaxes de %(count)s salas" }, "Command error: Unable to handle slash command.": "Erro no comando: non se puido xestionar o comando con barra.", - "Next recently visited room or space": "Seguinte sala ou espazo visitados recentemente", - "Previous recently visited room or space": "Anterior sala ou espazo visitados recentemente", "Unsent": "Sen enviar", "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.": "Podes usar as opcións personalizadas do servidor para acceder a outros servidores Matrix indicando o URL do servidor de inicio. Así podes usar %(brand)s cunha conta Matrix rexistrada nun servidor diferente.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s non ten permiso para obter a túa localización. Concede acceso á localización nos axustes do navegador.", @@ -2474,7 +2377,6 @@ }, "In %(spaceName)s.": "No espazo %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "Nos espazos %(space1Name)s e %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Comando de desenvolvemento: descarta a actual sesión en grupo e crea novas sesións Olm", "Stop and close": "Deter e pechar", "Online community members": "Membros de comunidades en liña", "Coworkers and teams": "Persoas e equipos do traballo", @@ -2795,7 +2697,63 @@ "control": "Ctrl", "shift": "Maiús", "number": "[número]", - "backspace": "Retroceso" + "backspace": "Retroceso", + "category_calls": "Chamadas", + "category_room_list": "Lista de Salas", + "category_navigation": "Navegación", + "category_autocomplete": "Autocompletado", + "composer_toggle_bold": "Activa Resaltar", + "composer_toggle_italics": "Activa Cursiva", + "composer_toggle_quote": "Activa Citación", + "composer_toggle_code_block": "Activar Bloque de Código", + "composer_toggle_link": "Activar Ligazón", + "cancel_reply": "Cancelar a resposta a mensaxe", + "navigate_next_message_edit": "Vai á seguinte mensaxe para editar", + "navigate_prev_message_edit": "Vai á mensaxe anterior para editar", + "composer_jump_start": "Vai ao inicio do editor", + "composer_jump_end": "Vai ao final no editor", + "composer_navigate_next_history": "Vai á seguinte mensaxe no historial do editor", + "composer_navigate_prev_history": "Vai á mensaxe anterior no historial do editor", + "send_sticker": "Enviar un adhesivo", + "toggle_microphone_mute": "Acalar micrófono", + "toggle_webcam_mute": "Cambia a webcam on/off", + "dismiss_read_marker_and_jump_bottom": "Ignorar marcador de lectura e ir ó final", + "jump_to_read_marker": "Ir á mensaxe máis antiga non lida", + "upload_file": "Subir ficheiro", + "scroll_up_timeline": "Desprázate na cronoloxía", + "scroll_down_timeline": "Vai abaixo na cronoloxía", + "jump_room_search": "Ir a busca na sala", + "room_list_select_room": "Escoller sala da lista de salas", + "room_list_collapse_section": "Contraer a sección de lista de salas", + "room_list_expand_section": "Despregar a sección da lista de salas", + "room_list_navigate_down": "Vai abaixo na lista de salas", + "room_list_navigate_up": "Vai arriba na lista de salas", + "toggle_top_left_menu": "Activar o menú superior esquerdo", + "toggle_right_panel": "Activar panel dereito", + "keyboard_shortcuts_tab": "Abre esta lapela cos axustes", + "go_home_view": "Ir á Páxina de Inicio", + "next_unread_room": "Seguinte sala sen ler ou MD", + "prev_unread_room": "Anterior sala sen ler ou MD", + "next_room": "Seguinte sala ou MD", + "prev_room": "Sala ou MD anterior", + "autocomplete_cancel": "Cancelar autocompletado", + "autocomplete_navigate_next": "Seguinte suxestión de autocompletado", + "autocomplete_navigate_prev": "Anterior suxestión de autocompletado", + "toggle_space_panel": "Activar panel do espazo", + "toggle_hidden_events": "Cambiar a visibilidade do evento", + "jump_first_message": "Ir á primeira mensaxe", + "jump_last_message": "Ir á última mensaxe", + "composer_undo": "Desfacer a edición", + "composer_redo": "Refacer a edición", + "navigate_prev_history": "Anterior sala ou espazo visitados recentemente", + "navigate_next_history": "Seguinte sala ou espazo visitados recentemente", + "switch_to_space": "Cambia á sala polo número", + "open_user_settings": "Abrir axustes", + "close_dialog_menu": "Pechar o diálogo ou menú contextual", + "activate_button": "Activar o botón seleccionado", + "composer_new_line": "Nova liña", + "autocomplete_force": "Forzar completamento", + "search": "Buscar (debe esta activa)" }, "composer": { "format_bold": "Resaltado", @@ -2907,7 +2865,16 @@ "download_google_play": "Descargar desde Google Play", "download_f_droid": "Descargar desde F-Droid", "apple_trademarks": "App Store® e o Apple logo® son marcas de Apple Inc.", - "google_trademarks": "Google Play e o logo de Google Play son marcas de Google LLC." + "google_trademarks": "Google Play e o logo de Google Play son marcas de Google LLC.", + "has_avatar_label": "Moi ben, así axudarás a que outras persoas te recoñezan", + "no_avatar_label": "Engade unha foto así a xente recoñecerate.", + "welcome_user": "Benvida %(name)s", + "welcome_detail": "Ímosche axudar neste comezo", + "intro_welcome": "Benvida a %(appName)s", + "intro_byline": "As túas conversas son túas.", + "send_dm": "Envía unha Mensaxe Directa", + "explore_rooms": "Explorar Salas Públicas", + "create_room": "Crear unha Conversa en Grupo" }, "settings": { "show_breadcrumbs": "Mostrar atallos a salas vistas recentemente enriba da lista de salas", @@ -3422,7 +3389,22 @@ "category_admin": "Administrador", "category_advanced": "Avanzado", "category_effects": "Efectos", - "category_other": "Outro" + "category_other": "Outro", + "addwidget_missing_url": "Proporciona o URL do widget ou incrusta o código", + "addwidget_invalid_protocol": "Escribe un https:// ou http:// como URL do widget", + "addwidget_no_permissions": "Non podes modificar os widgets desta sala.", + "converttodm": "Converte a sala en MD", + "converttoroom": "Converte a MD nunha sala", + "discardsession": "Forza que se descarte a sesión de saída actual nunha sala cifrada", + "remakeolm": "Comando de desenvolvemento: descarta a actual sesión en grupo e crea novas sesións Olm", + "tovirtual": "Cambia á sala virtual desta sala, se é que existe", + "tovirtual_not_found": "No hai sala virtual para esta sala", + "query": "Abre unha conversa coa usuaria", + "query_not_found_phone_number": "Non se atopa un ID Matrix para o número de teléfono", + "holdcall": "Pon en pausa a chamada da sala actual", + "no_active_call": "Sen chamada activa nesta sala", + "unholdcall": "Acepta a chamada na sala actual", + "me": "Mostra acción" }, "presence": { "busy": "Ocupado", @@ -3592,7 +3574,16 @@ "auth": { "continue_with_idp": "Continuar con %(provider)s", "sign_in_with_sso": "Entrar usando Single Sign On", - "sso": "Single Sign On" + "sso": "Single Sign On", + "continue_with_sso": "Continúa con %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Ou %(usernamePassword)s", + "sign_in_instead": "Xa tes unha conta? Conecta aquí", + "account_clash": "A tú conta (%(newAccountId)s) foi rexistrada, pero iniciaches sesión usando outra conta (%(loggedInUserId)s).", + "account_clash_previous_account": "Continúa coa conta anterior", + "log_in_new_account": "Accede usando a conta nova.", + "registration_successful": "Rexistro correcto", + "server_picker_title": "Crea a conta en", + "server_picker_dialog_title": "Decide onde queres crear a túa conta" }, "room_list": { "sort_unread_first": "Mostrar primeiro as salas con mensaxes sen ler", @@ -3625,5 +3616,18 @@ "report_entire_room": "Denunciar a toda a sala", "report_content_to_homeserver": "Denuncia sobre contido á Administración do teu servidor", "description": "Ao denunciar esta mensaxe vasnos enviar o seu 'event ID' único á administración do servidor. Se as mensaxes da sala están cifradas, a administración do servidor non poderá ler o texto da mensaxe ou ver imaxes ou ficheiros." + }, + "setting": { + "help_about": { + "brand_version": "versión %(brand)s:", + "olm_version": "Version olm:", + "help_link": "Para ter axuda con %(brand)s, preme aquí.", + "help_link_chat_bot": "Se precisas axuda usando %(brand)s, preme aquí ou inicia unha conversa co noso bot usando o botón inferior.", + "chat_bot": "Chat co Bot %(brand)s", + "title": "Axuda & Acerca de", + "versions": "Versións", + "access_token_detail": "O teu token de acceso da acceso completo á túa conta. Non o compartas con ninguén.", + "clear_cache_reload": "Baleirar caché e recargar" + } } } diff --git a/src/i18n/strings/he.json b/src/i18n/strings/he.json index 0b2d77d8c1..59eb7a1e31 100644 --- a/src/i18n/strings/he.json +++ b/src/i18n/strings/he.json @@ -79,16 +79,11 @@ "Add Email Address": "הוספת כתובת מייל", "Click the button below to confirm adding this email address.": "לחץ על הכפתור בכדי לאשר הוספה של כתובת מייל הזו.", "Confirm adding email": "אשר הוספת כתובת מייל", - "Opens chat with the given user": "פתח שיחה עם המשתמש הזה", - "Forces the current outbound group session in an encrypted room to be discarded": "מאלץ להתעלם מהתקשורת היוצאת מהתחברות של קבוצה בחדר מוצפן", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "המפתח החתום שנתתם תואם את המפתח שקבלתם מ %(userId)s מהתחברות %(deviceId)s. ההתחברות סומנה כמאושרת.", "Verified key": "מפתח מאושר", "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!": "אזהרה: אימות מפתח נכשל! חתימת המפתח של %(userId)s ושל ההתחברות של מכשיר %(deviceId)s הינו \"%(fprint)s\" אשר אינו תואם למפתח הנתון \"%(fingerprint)s\". דבר זה יכול להעיר על כך שישנו נסיון להאזין לתקשורת שלכם!", "Session already verified!": "ההתחברות כבר אושרה!", "Verifies a user, session, and pubkey tuple": "מוודא משתמש, התחברות וצמד מפתח ציבורי", - "You cannot modify widgets in this room.": "אינכם יכולים לערוך ווידג'ט בחדר זה.", - "Please supply a https:// or http:// widget URL": "אנא הוסיפו קישור לווידג'ט עם http:// או https://", - "Please supply a widget URL or embed code": "אנא ספקו כתובת של ווידג'ט או קוד הטמעה", "Deops user with given id": "מסיר משתמש עם קוד זיהוי זה", "Could not find user in room": "משתמש זה לא נמצא בחדר", "Define the power level of a user": "הגדירו את רמת ההרשאות של משתמש", @@ -491,9 +486,6 @@ "Verify your other session using one of the options below.": "אמתו את ההתחברות האחרת שלכם דרך אחת מהאפשרויות למטה.", "You signed in to a new session without verifying it:": "נכנסתם דרך התחברות חדשה מבלי לאמת אותה:", "Reason": "סיבה", - "Displays action": "הצג פעולה", - "Takes the call in the current room off hold": "מחזיר את השיחה הנוכחית ממצב המתנה", - "Places the call in the current room on hold": "שם את השיחה הנוכחית במצב המתנה", "Your keys are not being backed up from this session.": "המפתחות שלך אינם מגובים מהתחברות זו .", "Algorithm:": "אלגוריתם:", "Backup version:": "גירסת גיבוי:", @@ -1116,14 +1108,7 @@ "Something went wrong. Please try again or view your console for hints.": "משהו השתבש. נסה שוב או הצג את המסוף שלך לקבלת רמזים.", "Error adding ignored user/server": "שגיאה בהוספת שרת\\משתמש שהתעלמתם ממנו", "Ignored/Blocked": "התעלם\\חסום", - "Clear cache and reload": "נקה מטמון ואתחל", - "%(brand)s version:": "גרסאת %(brand)s:", - "Versions": "גרסאות", - "Help & About": "עזרה ואודות", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "כדי לדווח על בעיית אבטחה , אנא קראו את מדיניות גילוי האבטחה של Matrix.org .", - "Chat with %(brand)s Bot": "דבר עם הבוט של %(brand)s", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "לעזרה בשימוש ב-%(brand)s לחץ על כאן או התחל צ'אט עם הבוט שלנו באמצעות הלחצן למטה.", - "For help with using %(brand)s, click here.": "בשביל לעזור בקידום ושימוש ב- %(brand)s, לחצו כאן.", "General": "כללי", "Discovery": "מציאה", "Deactivate account": "סגור חשבון", @@ -1207,14 +1192,6 @@ "This room is not public. You will not be able to rejoin without an invite.": "חדר זה אינו ציבורי. לא תוכל להצטרף שוב ללא הזמנה.", "Failed to reject invitation": "דחיית ההזמנה נכשלה", "Explore rooms": "גלה חדרים", - "Create a Group Chat": "צור צ'אט קבוצתי", - "Explore Public Rooms": "חקור חדרים ציבוריים", - "Send a Direct Message": "שלח הודעה ישירה", - "Welcome to %(appName)s": "ברוכים הבאים אל %(appName)s", - "Now, let's help you get started": "עכשיו, בואו נעזור לכם להתחיל", - "Welcome %(name)s": "ברוכים הבאים %(name)s", - "Add a photo so people know it's you.": "הוסף תמונה כדי שאנשים יידעו שאתה זה.", - "Great, that'll help people know it's you": "נהדר, זה יעזור לאנשים לדעת שזה אתה", "Upload avatar": "העלה אוואטר", "Attach files from chat or just drag and drop them anywhere in a room.": "צרף קבצים מצ'ט או פשוט גרור ושחרר אותם לכל מקום בחדר.", "No files visible in this room": "אין קבצים גלויים בחדר זה", @@ -1433,29 +1410,6 @@ "Transfer": "לְהַעֲבִיר", "Failed to transfer call": "העברת השיחה נכשלה", "A call can only be transferred to a single user.": "ניתן להעביר שיחה רק למשתמש יחיד.", - "Cancel autocomplete": "בטל השלמה אוטומטית", - "Go to Home View": "עבור אל תצוגת הבית", - "Toggle right panel": "החלף את החלונית הימנית", - "Activate selected button": "הפעל את הלחצן שנבחר", - "Close dialog or context menu": "סגור את תיבת הדו-שיח או את תפריט ההקשר", - "Toggle the top left menu": "החלף את התפריט הימני העליון", - "Expand room list section": "הרחב את קטע רשימת החדרים", - "Collapse room list section": "כווץ את קטע רשימת החדרים", - "Select room from the room list": "בחר חדר מרשימת החדרים", - "Jump to room search": "קפצו לחיפוש חדרים", - "Upload a file": "לעלות קובץ", - "Jump to oldest unread message": "קפיצה להודעה הוותיקה ביותר שלא נקראה", - "Dismiss read marker and jump to bottom": "דחה את סמן הקריאה וקפוץ לתחתית", - "Toggle microphone mute": "הפעלת / השתקת מיקרופון", - "Cancel replying to a message": "בטל מענה להודעה", - "New line": "שורה חדשה", - "Toggle Quote": "גרשיים", - "Toggle Italics": "אותיות נטויות", - "Toggle Bold": "הדגשת אותיות", - "Autocomplete": "השלמה אוטומטית", - "Room List": "רשימת חדרים", - "Calls": "שיחות", - "Navigation": "ניווט", "Message downloading sleep time(ms)": "הורדת זמן שינה (ms)", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s מתוך %(totalRooms)s", "Indexed rooms:": "חדרים רשומים:", @@ -1526,16 +1480,7 @@ "Failed to re-authenticate": "האימות מחדש נכשל", "Incorrect password": "סיסמה שגויה", "Failed to re-authenticate due to a homeserver problem": "האימות מחדש נכשל עקב בעיית שרת בית", - "Decide where your account is hosted": "החלט היכן מתארח חשבונך", - "Host account on": "חשבון מארח ב", "Create account": "חשבון משתמש חדש", - "Registration Successful": "ההרשמה בוצעה בהצלחה", - "Log in to your new account.": " היכנס לחשבונך החדש.", - "Continue with previous account": "המשך בחשבון הקודם", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "החשבון החדש שלך (%(newAccountId)s) רשום, אך אתה כבר מחובר לחשבון אחר (%(loggedInUserId)s).", - "Already have an account? Sign in here": "כבר יש לכם חשבון? היכנסו כאן ", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s או %(usernamePassword)s", - "Continue with %(ssoButtons)s": "המשך עם %(ssoButtons)s", "This server does not support authentication with a phone number.": "שרת זה אינו תומך באימות עם מספר טלפון.", "Registration has been disabled on this homeserver.": "ההרשמה הושבתה בשרת הבית הזה.", "Unable to query for supported registration methods.": "לא ניתן לשאול לשיטות רישום נתמכות.", @@ -1612,7 +1557,6 @@ "Open dial pad": "פתח לוח חיוג", "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Security Key.": "גבה את מפתחות ההצפנה שלך עם נתוני חשבונך במקרה שתאבד את הגישה להפעלות שלך. המפתחות שלך מאובטחים באמצעות מפתח אבטחה ייחודי.", "If you've forgotten your Security Key you can ": "אם שכחת את מפתח האבטחה שלך תוכל ", - "Search (must be enabled)": "חיפוש (חייב להיות מופעל)", "Access your secure message history and set up secure messaging by entering your Security Key.": "גש להיסטוריית ההודעות המאובטחות שלך והגדר הודעות מאובטחות על ידי הזנת מפתח האבטחה שלך.", "Enter Security Key": "הזן מפתח אבטחה", "Backup could not be decrypted with this Security Key: please verify that you entered the correct Security Key.": "לא ניתן היה לפענח את הגיבוי באמצעות מפתח האבטחה הזה: ודא שהזנת את מפתח האבטחה הנכון.", @@ -1627,8 +1571,6 @@ "Change which room, message, or user you're viewing": "שנה את החדר, ההודעה או המשתמש שאתה צופה בו", "Use app": "השתמש באפליקציה", "Use app for a better experience": "השתמש באפליקציה לחוויה טובה יותר", - "Converts the DM to a room": "המר את השיחה הפרטית לחדר", - "Converts the room to a DM": "ממיר את החדר ל- DM", "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": "לא הצלחנו להתחבר אליך", "Your %(brand)s doesn't allow you to use an integration manager to do this. Please contact an admin.": "%(brand)s שלכם אינו מאפשר לך להשתמש במנהל שילוב לשם כך. אנא צרו קשר עם מנהל מערכת.", @@ -1643,8 +1585,6 @@ "Enter Security Phrase": "הזן ביטוי אבטחה", "Backup could not be decrypted with this Security Phrase: please verify that you entered the correct Security Phrase.": "לא ניתן לפענח גיבוי עם ביטוי אבטחה זה: אנא ודא שהזנת את ביטוי האבטחה הנכון.", "Incorrect Security Phrase": "ביטוי אבטחה שגוי", - "No active call in this room": "אין שיחה פעילה בחדר זה", - "Unable to find Matrix ID for phone number": "לא ניתן למצוא מזהה משתמש למספר טלפון", "Command failed: Unable to find room (%(roomId)s": "הפעולה נכשלה: לא ניתן למצוא את החדר (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "כתובת חדר לא מוכרת: %(roomAlias)s", "Some invites couldn't be sent": "לא ניתן לשלוח חלק מההזמנות", @@ -1744,9 +1684,6 @@ "Poll": "סקר", "You do not have permission to start polls in this room.": "אין לכם הרשאה להתחיל סקר בחדר זה.", "Preserve system messages": "שמור את הודעות המערכת", - "Next autocomplete suggestion": "הצעת השלמה אוטומטית הבאה", - "Previous room or DM": "חדר קודם או התכתבות ישירה", - "Next room or DM": "חדר הבא או התכתבות ישירה", "No unverified sessions found.": "לא נמצאו הפעלות לא מאומתות.", "Friends and family": "חברים ומשפחה", "An error occurred whilst sharing your live location, please try again": "אירעה שגיאה במהלך שיתוף המיקום החי שלכם, אנא נסו שוב", @@ -1770,7 +1707,6 @@ "Share your activity and status with others.": "שתפו את הפעילות והסטטוס שלכם עם אחרים.", "Room visibility": "נראות של החדר", "Send your first message to invite to chat": "שילחו את ההודעה הראשונה שלכם להזמין את לצ'אט", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "פקודת מפתחים: מסלקת את הפגישה הנוכחית של הקבוצה היוצאת ומגדירה הפעלות חדשות של Olm", "User Directory": "ספריית משתמשים", "Space Autocomplete": "השלמה אוטומטית של חלל העבודה", "Recommended for public spaces.": "מומלץ למרחבי עבודה ציבוריים.", @@ -1831,8 +1767,6 @@ "Failed to create initial space rooms": "יצירת חדר חלל עבודה ראשוני נכשלה", "Verify this device": "אמתו את מכשיר זה", "Unable to verify this device": "לא ניתן לאמת את מכשיר זה", - "Jump to last message": "קיפצו להודעה האחרונה", - "Jump to first message": "קיפצו להודעה הראשונה", "Messages in this chat will be end-to-end encrypted.": "הודעות בצ'אט זה יוצפו מקצה לקצה.", "Some encryption parameters have been changed.": "מספר פרמטרים של הצפנה שונו.", "Decrypting": "מפענח", @@ -1868,16 +1802,6 @@ "Home is useful for getting an overview of everything.": "מסך הבית עוזר לסקירה כללית.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "מרחבי עבודה הם דרך לקבץ חדרים ואנשים. במקביל למרחבי העבודה בהם אתם נמצאים ניתן להשתמש גם בכאלה שנבנו מראש.", "Spaces to show": "מרחבי עבודה להצגה", - "Toggle webcam on/off": "הפעלת / כיבוי מצלמה", - "Send a sticker": "שלח מדבקה", - "Navigate to previous message in composer history": "עבור להודעה הקודמת בהיסטוריית התכתבות", - "Navigate to next message in composer history": "עבור להודעה הבאה בהיסטוריית התכתבות", - "Navigate to previous message to edit": "עבור לעריכת ההודעה הקודמת", - "Navigate to next message to edit": "עבור לעריכת ההודעה הבאה", - "Jump to end of the composer": "עבור לסוף ההתכתבות", - "Jump to start of the composer": "עבור לתחילת ההתכתבות", - "Redo edit": "חזור על העריכה", - "Undo edit": "בטל את העריכה", "Images, GIFs and videos": "תמונות, GIF ווידאו", "Code blocks": "מקטעי קוד", "Show polls button": "הצג את כפתור הסקרים", @@ -1996,13 +1920,6 @@ "Voice settings": "הגדרות קול", "Close sidebar": "סגור סרגל צד", "Sidebar": "סרגל צד", - "Previous autocomplete suggestion": "הצעת השלמה אוטומטית קודמת", - "Force complete": "אלץ השלמת טקסט", - "Open this settings tab": "פתיחת חלון אפשרויות זה", - "Navigate down in the room list": "נווט מטה ברשימת החדרים", - "Navigate up in the room list": "נווט מעלה ברשימת החדרים", - "Scroll down in the timeline": "גלילה מטה בציר הזמן", - "Scroll up in the timeline": "גלילה מעלה בציר הזמן", "Deactivating your account is a permanent action — be careful!": "סגירת החשבון הינה פעולה שלא ניתנת לביטול - שים לב!", "Room info": "מידע על החדר", "You're all caught up": "אתם כבר מעודכנים בהכל", @@ -2232,7 +2149,53 @@ "alt": "ALT", "control": "CTRL", "shift": "הזזה", - "backspace": "מקש חזרה לאחור" + "backspace": "מקש חזרה לאחור", + "category_calls": "שיחות", + "category_room_list": "רשימת חדרים", + "category_navigation": "ניווט", + "category_autocomplete": "השלמה אוטומטית", + "composer_toggle_bold": "הדגשת אותיות", + "composer_toggle_italics": "אותיות נטויות", + "composer_toggle_quote": "גרשיים", + "cancel_reply": "בטל מענה להודעה", + "navigate_next_message_edit": "עבור לעריכת ההודעה הבאה", + "navigate_prev_message_edit": "עבור לעריכת ההודעה הקודמת", + "composer_jump_start": "עבור לתחילת ההתכתבות", + "composer_jump_end": "עבור לסוף ההתכתבות", + "composer_navigate_next_history": "עבור להודעה הבאה בהיסטוריית התכתבות", + "composer_navigate_prev_history": "עבור להודעה הקודמת בהיסטוריית התכתבות", + "send_sticker": "שלח מדבקה", + "toggle_microphone_mute": "הפעלת / השתקת מיקרופון", + "toggle_webcam_mute": "הפעלת / כיבוי מצלמה", + "dismiss_read_marker_and_jump_bottom": "דחה את סמן הקריאה וקפוץ לתחתית", + "jump_to_read_marker": "קפיצה להודעה הוותיקה ביותר שלא נקראה", + "upload_file": "לעלות קובץ", + "scroll_up_timeline": "גלילה מעלה בציר הזמן", + "scroll_down_timeline": "גלילה מטה בציר הזמן", + "jump_room_search": "קפצו לחיפוש חדרים", + "room_list_select_room": "בחר חדר מרשימת החדרים", + "room_list_collapse_section": "כווץ את קטע רשימת החדרים", + "room_list_expand_section": "הרחב את קטע רשימת החדרים", + "room_list_navigate_down": "נווט מטה ברשימת החדרים", + "room_list_navigate_up": "נווט מעלה ברשימת החדרים", + "toggle_top_left_menu": "החלף את התפריט הימני העליון", + "toggle_right_panel": "החלף את החלונית הימנית", + "keyboard_shortcuts_tab": "פתיחת חלון אפשרויות זה", + "go_home_view": "עבור אל תצוגת הבית", + "next_room": "חדר הבא או התכתבות ישירה", + "prev_room": "חדר קודם או התכתבות ישירה", + "autocomplete_cancel": "בטל השלמה אוטומטית", + "autocomplete_navigate_next": "הצעת השלמה אוטומטית הבאה", + "autocomplete_navigate_prev": "הצעת השלמה אוטומטית קודמת", + "jump_first_message": "קיפצו להודעה הראשונה", + "jump_last_message": "קיפצו להודעה האחרונה", + "composer_undo": "בטל את העריכה", + "composer_redo": "חזור על העריכה", + "close_dialog_menu": "סגור את תיבת הדו-שיח או את תפריט ההקשר", + "activate_button": "הפעל את הלחצן שנבחר", + "composer_new_line": "שורה חדשה", + "autocomplete_force": "אלץ השלמת טקסט", + "search": "חיפוש (חייב להיות מופעל)" }, "composer": { "format_bold": "מודגש", @@ -2722,7 +2685,20 @@ "category_admin": "אדמין", "category_advanced": "מתקדם", "category_effects": "אפקטים", - "category_other": "אחר" + "category_other": "אחר", + "addwidget_missing_url": "אנא ספקו כתובת של ווידג'ט או קוד הטמעה", + "addwidget_invalid_protocol": "אנא הוסיפו קישור לווידג'ט עם http:// או https://", + "addwidget_no_permissions": "אינכם יכולים לערוך ווידג'ט בחדר זה.", + "converttodm": "ממיר את החדר ל- DM", + "converttoroom": "המר את השיחה הפרטית לחדר", + "discardsession": "מאלץ להתעלם מהתקשורת היוצאת מהתחברות של קבוצה בחדר מוצפן", + "remakeolm": "פקודת מפתחים: מסלקת את הפגישה הנוכחית של הקבוצה היוצאת ומגדירה הפעלות חדשות של Olm", + "query": "פתח שיחה עם המשתמש הזה", + "query_not_found_phone_number": "לא ניתן למצוא מזהה משתמש למספר טלפון", + "holdcall": "שם את השיחה הנוכחית במצב המתנה", + "no_active_call": "אין שיחה פעילה בחדר זה", + "unholdcall": "מחזיר את השיחה הנוכחית ממצב המתנה", + "me": "הצג פעולה" }, "presence": { "online_for": "מחובר %(duration)s", @@ -2876,7 +2852,16 @@ "auth": { "continue_with_idp": "המשך עם %(provider)s", "sign_in_with_sso": "היכנס באמצעות כניסה יחידה", - "sso": "כניסה חד שלבית" + "sso": "כניסה חד שלבית", + "continue_with_sso": "המשך עם %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s או %(usernamePassword)s", + "sign_in_instead": "כבר יש לכם חשבון? היכנסו כאן ", + "account_clash": "החשבון החדש שלך (%(newAccountId)s) רשום, אך אתה כבר מחובר לחשבון אחר (%(loggedInUserId)s).", + "account_clash_previous_account": "המשך בחשבון הקודם", + "log_in_new_account": " היכנס לחשבונך החדש.", + "registration_successful": "ההרשמה בוצעה בהצלחה", + "server_picker_title": "חשבון מארח ב", + "server_picker_dialog_title": "החלט היכן מתארח חשבונך" }, "room_list": { "sort_unread_first": "הצג תחילה חדרים עם הודעות שלא נקראו", @@ -2896,5 +2881,26 @@ "missing_reason": "אנא מלאו מדוע אתם מדווחים.", "report_content_to_homeserver": "דווח על תוכן למנהל שרת הבית שלך", "description": "דיווח על הודעה זו ישלח את 'מזהה האירוע' הייחודי למנהל שרת הבית שלך. אם הודעות בחדר זה מוצפנות, מנהל שרת הבית שלך לא יוכל לקרוא את טקסט ההודעה או להציג קבצים או תמונות." + }, + "onboarding": { + "has_avatar_label": "נהדר, זה יעזור לאנשים לדעת שזה אתה", + "no_avatar_label": "הוסף תמונה כדי שאנשים יידעו שאתה זה.", + "welcome_user": "ברוכים הבאים %(name)s", + "welcome_detail": "עכשיו, בואו נעזור לכם להתחיל", + "intro_welcome": "ברוכים הבאים אל %(appName)s", + "send_dm": "שלח הודעה ישירה", + "explore_rooms": "חקור חדרים ציבוריים", + "create_room": "צור צ'אט קבוצתי" + }, + "setting": { + "help_about": { + "brand_version": "גרסאת %(brand)s:", + "help_link": "בשביל לעזור בקידום ושימוש ב- %(brand)s, לחצו כאן.", + "help_link_chat_bot": "לעזרה בשימוש ב-%(brand)s לחץ על כאן או התחל צ'אט עם הבוט שלנו באמצעות הלחצן למטה.", + "chat_bot": "דבר עם הבוט של %(brand)s", + "title": "עזרה ואודות", + "versions": "גרסאות", + "clear_cache_reload": "נקה מטמון ואתחל" + } } } diff --git a/src/i18n/strings/hi.json b/src/i18n/strings/hi.json index 6a57c6a436..df308fb0b1 100644 --- a/src/i18n/strings/hi.json +++ b/src/i18n/strings/hi.json @@ -61,8 +61,6 @@ "Define the power level of a user": "उपयोगकर्ता के पावर स्तर को परिभाषित करें", "Deops user with given id": "दिए गए आईडी के साथ उपयोगकर्ता को देओप्स करना", "Verified key": "सत्यापित कुंजी", - "Displays action": "कार्रवाई प्रदर्शित करता है", - "Forces the current outbound group session in an encrypted room to be discarded": "एक एन्क्रिप्टेड रूम में मौजूदा आउटबाउंड समूह सत्र को त्यागने के लिए मजबूर करता है", "Reason": "कारण", "Failure to create room": "रूम बनाने में विफलता", "Server may be unavailable, overloaded, or you hit a bug.": "सर्वर अनुपलब्ध, अधिभारित हो सकता है, या अपने एक सॉफ्टवेयर गर्बरी को पाया।", @@ -262,8 +260,6 @@ "Account management": "खाता प्रबंधन", "Deactivate Account": "खाता निष्क्रिय करें", "Check for update": "अपडेट के लिये जांचें", - "Help & About": "सहायता और के बारे में", - "Versions": "संस्करण", "Notifications": "सूचनाएं", "Scissors": "कैंची", "Room list": "कक्ष सूचि", @@ -288,8 +284,6 @@ "Banned by %(displayName)s": "%(displayName)s द्वारा प्रतिबंधित", "No users have specific privileges in this room": "इस कमरे में किसी भी उपयोगकर्ता के विशेष विशेषाधिकार नहीं हैं", "The file '%(fileName)s' failed to upload.": "फ़ाइल '%(fileName)s' अपलोड करने में विफल रही।", - "Please supply a https:// or http:// widget URL": "कृपया एक https:// या http:// विजेट URL की आपूर्ति करें", - "You cannot modify widgets in this room.": "आप इस रूम में विजेट्स को संशोधित नहीं कर सकते।", "The user must be unbanned before they can be invited.": "उपयोगकर्ता को आमंत्रित करने से पहले उन्हें प्रतिबंधित किया जाना चाहिए।", "Explore rooms": "रूम का अन्वेषण करें", "Create Account": "खाता बनाएं", @@ -649,7 +643,11 @@ "addwidget": "रूम में URL द्वारा एक कस्टम विजेट जोड़ता है", "usage": "प्रयोग", "category_admin": "व्यवस्थापक", - "category_advanced": "उन्नत" + "category_advanced": "उन्नत", + "addwidget_invalid_protocol": "कृपया एक https:// या http:// विजेट URL की आपूर्ति करें", + "addwidget_no_permissions": "आप इस रूम में विजेट्स को संशोधित नहीं कर सकते।", + "discardsession": "एक एन्क्रिप्टेड रूम में मौजूदा आउटबाउंड समूह सत्र को त्यागने के लिए मजबूर करता है", + "me": "कार्रवाई प्रदर्शित करता है" }, "presence": { "online_for": "%(duration)s के लिए ऑनलाइन", @@ -693,5 +691,11 @@ }, "auth": { "sso": "केवल हस्ताक्षर के ऊपर" + }, + "setting": { + "help_about": { + "title": "सहायता और के बारे में", + "versions": "संस्करण" + } } } diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index fa749f254e..be58c9e26a 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -39,7 +39,6 @@ "Deactivate Account": "Fiók felfüggesztése", "Decrypt %(text)s": "%(text)s visszafejtése", "Default": "Alapértelmezett", - "Displays action": "Megjeleníti a tevékenységet", "Download %(text)s": "%(text)s letöltése", "Email": "E-mail", "Email address": "E-mail-cím", @@ -94,7 +93,6 @@ "Return to login screen": "Vissza a bejelentkezési képernyőre", "%(brand)s does not have permission to send you notifications - please check your browser settings": "A(z) %(brand)s alkalmazásnak nincs jogosultsága értesítést küldeni – ellenőrizze a böngésző beállításait", "%(brand)s was not given permission to send notifications - please try again": "A(z) %(brand)s alkalmazásnak nincs jogosultsága értesítést küldeni – próbálja újra", - "%(brand)s version:": "%(brand)s verzió:", "Room %(roomId)s not visible": "A(z) %(roomId)s szoba nem látható", "%(roomName)s does not exist.": "%(roomName)s nem létezik.", "%(roomName)s is not accessible at this time.": "%(roomName)s jelenleg nem érhető el.", @@ -352,7 +350,6 @@ "Failed to upgrade room": "A szoba fejlesztése sikertelen", "The room upgrade could not be completed": "A szoba fejlesztését nem sikerült befejezni", "Upgrade this room to version %(version)s": "A szoba fejlesztése erre a verzióra: %(version)s", - "Forces the current outbound group session in an encrypted room to be discarded": "Kikényszeríti a jelenlegi kimeneti csoportos munkamenet törlését a titkosított szobában", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Mielőtt a naplót elküldöd, egy Github jegyet kell nyitni amiben leírod a problémádat.", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "Az %(brand)s harmad-ötöd annyi memóriát használ azáltal, hogy csak akkor tölti be a felhasználók információit, amikor az szükséges. Kis türelmet, amíg megtörténik az újbóli szinkronizálás a kiszolgálóval.", "Updating %(brand)s": "%(brand)s frissítése", @@ -441,10 +438,6 @@ "Phone numbers": "Telefonszámok", "Language and region": "Nyelv és régió", "Account management": "Fiókkezelés", - "For help with using %(brand)s, click here.": "Az %(brand)s használatában való segítséghez kattintson ide.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Az %(brand)s használatában való segítségért kattintson ide, vagy kezdjen beszélgetést a botunkkal az alábbi gombra kattintva.", - "Help & About": "Súgó és névjegy", - "Versions": "Verziók", "Composer": "Szerkesztő", "Room list": "Szobalista", "Autocomplete delay (ms)": "Automatikus kiegészítés késleltetése (ms)", @@ -470,7 +463,6 @@ "Create account": "Fiók létrehozása", "Recovery Method Removed": "Helyreállítási mód törölve", "If you didn't remove the recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Ha nem Ön törölte a helyreállítási módot, akkor lehet, hogy egy támadó hozzá akar férni a fiókjához. Azonnal változtassa meg a jelszavát, és állítson be egy helyreállítási módot a Beállításokban.", - "Chat with %(brand)s Bot": "Csevegés az %(brand)s bottal", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "A(z) „%(fileName)s” mérete túllépi a Matrix-kiszolgáló által megengedett korlátot", "Verify this user by confirming the following emoji appear on their screen.": "Ellenőrizze ezt a felhasználót azzal, hogy megerősíti, hogy a következő emodzsi jelenik meg a képernyőjén.", "Unable to find a supported verification method.": "Nem található támogatott ellenőrzési eljárás.", @@ -565,8 +557,6 @@ "Enable encryption?": "Titkosítás engedélyezése?", "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.": "Ha egyszer engedélyezve lett, a szoba titkosítását nem lehet kikapcsolni. A titkosított szobákban küldött üzenetek a kiszolgáló számára nem, csak a szoba tagjai számára láthatók. A titkosítás bekapcsolása megakadályoz sok botot és hidat a megfelelő működésben. Tudjon meg többet a titkosításról.", "Power level": "Hozzáférési szint", - "Please supply a https:// or http:// widget URL": "Adja meg a kisalkalmazás https:// vagy http:// webcímét", - "You cannot modify widgets in this room.": "Nem módosíthatja a kisalkalmazásokat ebben a szobában.", "Upgrade this room to the recommended room version": "A szoba fejlesztése a javasolt szobaverzióra", "This room is running room version , which this homeserver has marked as unstable.": "A szoba verziója: , amelyet a Matrix-kiszolgáló instabilnak tekint.", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "A szoba fejlesztése bezárja ezt a szobát és új, frissített verzióval ugyanezen a néven létrehoz egy újat.", @@ -656,11 +646,7 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Regisztrálhat, de néhány funkció nem lesz elérhető, amíg az azonosítási kiszolgáló újra elérhető nem lesz. Ha ezt a figyelmeztetést folyamatosan látja, akkor ellenőrizze a beállításokat, vagy vegye fel a kapcsolatot a kiszolgáló rendszergazdájával.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "A jelszavát visszaállíthatja, de néhány funkció nem lesz elérhető, amíg az azonosítási kiszolgáló újra elérhető nem lesz. Ha ezt a figyelmeztetést folyamatosan látja, akkor ellenőrizze a beállításokat, vagy vegye fel a kapcsolatot a kiszolgáló rendszergazdájával.", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Beléphet, de néhány funkció nem lesz elérhető, amíg az azonosítási kiszolgáló újra elérhető nem lesz. Ha ezt a figyelmeztetést folyamatosan látja, akkor ellenőrizze a beállításokat, vagy vegye fel a kapcsolatot a kiszolgáló rendszergazdájával.", - "Log in to your new account.": "Belépés az új fiókodba.", - "Registration Successful": "Regisztráció sikeres", "Upload all": "Összes feltöltése", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Az új (%(newAccountId)s) fiókod elkészült, de jelenleg egy másik fiókba (%(loggedInUserId)s) vagy bejelentkezve.", - "Continue with previous account": "Folytatás az előző fiókkal", "Edited at %(date)s. Click to view edits.": "Szerkesztés ideje: %(date)s. Kattintson a szerkesztések megtekintéséhez.", "Message edits": "Üzenetszerkesztések", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "A szoba fejlesztéséhez be kell zárnia ezt a szobát, és egy újat kell létrehoznia helyette. Hogy a szoba tagjai számára a lehető legjobb legyen a felhasználói élmény, a következők lépések lesznek végrehajtva:", @@ -758,7 +744,6 @@ "Hide advanced": "Speciális beállítások elrejtése", "Show advanced": "Speciális beállítások megjelenítése", "Close dialog": "Ablak bezárása", - "Clear cache and reload": "Gyorsítótár ürítése és újratöltés", "Show image": "Kép megjelenítése", "To continue you need to accept the terms of this service.": "A folytatáshoz el kell fogadnia a felhasználási feltételeket.", "Document": "Dokumentum", @@ -1026,24 +1011,6 @@ "Confirm by comparing the following with the User Settings in your other session:": "Erősítsd meg a felhasználói beállítások összehasonlításával a többi munkamenetedben:", "Confirm this user's session by comparing the following with their User Settings:": "Ezt a munkamenetet hitelesítsd az ő felhasználói beállításának az összehasonlításával:", "If they don't match, the security of your communication may be compromised.": "Ha nem egyeznek akkor a kommunikációtok biztonsága veszélyben lehet.", - "Navigation": "Navigáció", - "Calls": "Hívások", - "Room List": "Szobalista", - "Autocomplete": "Automatikus kiegészítés", - "Toggle Bold": "Félkövér be/ki", - "Toggle Italics": "Dőlt be/ki", - "Toggle Quote": "Idézet be/ki", - "New line": "Új sor", - "Toggle microphone mute": "Mikrofon némítása be/ki", - "Jump to room search": "A szobakeresésre ugrás", - "Select room from the room list": "Szoba kiválasztása a szobalistából", - "Collapse room list section": "Szobalista rész összecsukása", - "Expand room list section": "Szobalista rész kibontása", - "Toggle the top left menu": "Bal felső menü be/ki", - "Close dialog or context menu": "Párbeszédablak vagy menü bezárása", - "Activate selected button": "Kiválasztott gomb aktiválása", - "Toggle right panel": "Jobb oldali panel be/ki", - "Cancel autocomplete": "Automatikus kiegészítés megszakítása", "Use Single Sign On to continue": "A folytatáshoz használja az egyszeri bejelentkezést (SSO)", "%(name)s is requesting verification": "%(name)s ellenőrzést kér", "well formed": "helyesen formázott", @@ -1061,11 +1028,6 @@ "Server did not return valid authentication information.": "A kiszolgáló nem küldött vissza érvényes hitelesítési információkat.", "There was a problem communicating with the server. Please try again.": "A szerverrel való kommunikációval probléma történt. Kérlek próbáld újra.", "Sign in with SSO": "Belépés SSO-val", - "Welcome to %(appName)s": "Üdvözli a(z) %(appName)s", - "Send a Direct Message": "Közvetlen üzenet küldése", - "Explore Public Rooms": "Nyilvános szobák felfedezése", - "Create a Group Chat": "Készíts csoportos beszélgetést", - "Cancel replying to a message": "Üzenetre válaszolás megszakítása", "Confirm adding email": "E-mail-cím hozzáadásának megerősítése", "Click the button below to confirm adding this email address.": "Az e-mail-cím hozzáadásának megerősítéséhez kattintson a lenti gombra.", "Confirm adding phone number": "Telefonszám hozzáadásának megerősítése", @@ -1081,7 +1043,6 @@ "Unable to upload": "Nem lehet feltölteni", "If you've joined lots of rooms, this might take a while": "Ha sok szobához csatlakozott, ez eltarthat egy darabig", "Currently indexing: %(currentRoom)s": "Indexelés alatt: %(currentRoom)s", - "Please supply a widget URL or embed code": "Adja meg a kisalkalmazás webcímét vagy a beágyazási kódot", "Unable to query secret storage status": "A biztonsági tároló állapotát nem lehet lekérdezni", "New login. Was this you?": "Új bejelentkezés. Ön volt az?", "Restoring keys from backup": "Kulcsok helyreállítása mentésből", @@ -1090,16 +1051,12 @@ "Successfully restored %(sessionCount)s keys": "%(sessionCount)s kulcs sikeresen helyreállítva", "You signed in to a new session without verifying it:": "Ellenőrzés nélkül jelentkezett be egy új munkamenetbe:", "Verify your other session using one of the options below.": "Ellenőrizze a másik munkamenetét a lenti lehetőségek egyikével.", - "Opens chat with the given user": "Megnyitja a beszélgetést a megadott felhasználóval", "You've successfully verified your device!": "Sikeresen ellenőrizted az eszközödet!", "To continue, use Single Sign On to prove your identity.": "A folytatáshoz, használja az egyszeri bejelentkezést, hogy megerősítse a személyazonosságát.", "Confirm to continue": "Erősítsd meg a továbblépéshez", "Click the button below to confirm your identity.": "A személyazonossága megerősítéséhez kattintson a lenti gombra.", "Confirm encryption setup": "Erősítsd meg a titkosítási beállításokat", "Click the button below to confirm setting up encryption.": "Az alábbi gomb megnyomásával erősítsd meg, hogy megadod a titkosítási beállításokat.", - "Dismiss read marker and jump to bottom": "Az olvasási jelzés eltüntetése és ugrás az aljára", - "Jump to oldest unread message": "A legrégebbi olvasatlan üzenetre ugrás", - "Upload a file": "Fájl feltöltése", "Joins room with given address": "A megadott címmel csatlakozik a szobához", "IRC display name width": "IRC-n megjelenítendő név szélessége", "Size must be a number": "A méretnek számnak kell lennie", @@ -1236,13 +1193,9 @@ "Update %(brand)s": "A(z) %(brand)s frissítése", "Enable desktop notifications": "Asztali értesítések engedélyezése", "Don't miss a reply": "Ne szalasszon el egy választ se", - "Now, let's help you get started": "És most segítünk az indulásban", "Invite someone using their name, email address, username (like ) or share this room.": "Hívj meg valakit a nevét, e-mail címét, vagy felhasználónevét (például ) megadva, vagy oszd meg ezt a szobát.", "Start a conversation with someone using their name, email address or username (like ).": "Indítson beszélgetést valakivel a nevének, e-mail-címének vagy a felhasználónevének használatával (mint ).", "Invite by email": "Meghívás e-maillel", - "Welcome %(name)s": "Üdv %(name)s", - "Add a photo so people know it's you.": "Állítson be egy fényképet, hogy tudják mások, hogy Ön az.", - "Great, that'll help people know it's you": "Nagyszerű, ez segíteni eldönteni másoknak, hogy tényleg Ön az", "Send feedback": "Visszajelzés küldése", "PRO TIP: If you start a bug, please submit debug logs to help us track down the problem.": "Tipp: Ha hibajegyet készítesz, légyszíves segíts a probléma feltárásában azzal, hogy elküldöd a részletes naplót.", "Please view existing bugs on Github first. No match? Start a new one.": "Először nézd meg, hogy van-e már jegy róla a Github-on. Nincs? Adj fel egy új jegyet.", @@ -1337,8 +1290,6 @@ "Topic: %(topic)s (edit)": "Téma: %(topic)s (szerkesztés)", "This is the beginning of your direct message history with .": "Ez a közvetlen beszélgetés kezdete felhasználóval.", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "Csak önök ketten vannak ebben a beszélgetésben, hacsak valamelyikőjük nem hív meg valakit, hogy csatlakozzon.", - "Takes the call in the current room off hold": "Visszaveszi tartásból a jelenlegi szoba hívását", - "Places the call in the current room on hold": "Tartásba teszi a jelenlegi szoba hívását", "Zimbabwe": "Zimbabwe", "Zambia": "Zambia", "Yemen": "Jemen", @@ -1516,9 +1467,6 @@ "Change which room you're viewing": "Az Ön által nézett szoba megváltoztatása", "Send stickers into your active room": "Matricák küldése az aktív szobájába", "Send stickers into this room": "Matricák küldése ebbe a szobába", - "Go to Home View": "Ugrás a kezdőképernyőre", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s vagy %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Folytatás ezzel: %(ssoButtons)s", "New? Create account": "Új vagy? Készíts egy fiókot", "There was a problem communicating with the homeserver, please try again later.": "A kiszolgálóval való kommunikáció során probléma történt, próbálja újra.", "New here? Create an account": "Új vagy? Készíts egy fiókot", @@ -1570,7 +1518,6 @@ "Remain on your screen when viewing another room, when running": "Amíg fut, akkor is maradjon a képernyőn, ha egy másik szobát néz", "You've reached the maximum number of simultaneous calls.": "Elérte az egyidejű hívások maximális számát.", "Too Many Calls": "Túl sok hívás", - "Already have an account? Sign in here": "Van már fiókod? Belépés", "Use email to optionally be discoverable by existing contacts.": "Az e-mail (nem kötelező) megadása segíthet abban, hogy az ismerőseid megtaláljanak Matrix-on.", "Use email or phone to optionally be discoverable by existing contacts.": "Az e-mail, vagy telefonszám használatával a jelenlegi ismerőseid is megtalálhatnak.", "Add an email to be able to reset your password.": "Adj meg egy e-mail címet, hogy vissza tudd állítani a jelszavad.", @@ -1579,8 +1526,6 @@ "About homeservers": "A Matrix-kiszolgálókról", "Use your preferred Matrix homeserver if you have one, or host your own.": "Használja a választott Matrix-kiszolgálóját, ha van ilyenje, vagy üzemeltessen egy sajátot.", "Other homeserver": "Másik Matrix-kiszolgáló", - "Host account on": "Fiók létrehozása itt:", - "Decide where your account is hosted": "Döntse el, hol szeretne fiókot létrehozni", "Send %(msgtype)s messages as you in your active room": "%(msgtype)s üzenetek küldése az aktív szobájába saját néven", "Send %(msgtype)s messages as you in this room": "%(msgtype)s üzenetek küldése ebbe a szobába saját néven", "Send general files as you in your active room": "Fájlok küldése az aktív szobájába saját néven", @@ -1636,11 +1581,8 @@ "Set my room layout for everyone": "A szoba megjelenésének beállítása mindenki számára", "Use app": "Alkalmazás használata", "Use app for a better experience": "A jobb élmény érdekében használjon alkalmazást", - "Converts the DM to a room": "Szobává alakítja a közvetlen beszélgetést", - "Converts the room to a DM": "Közvetlen beszélgetéssé alakítja a szobát", "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.": "A böngészőt arra kértük, hogy jegyezze meg, melyik Matrix-kiszolgálót használta a bejelentkezéshez, de sajnos a böngészője elfelejtette. Navigáljon a bejelentkezési oldalra, és próbálja újra.", "We couldn't log you in": "Sajnos nem tudtuk bejelentkeztetni", - "Search (must be enabled)": "Keresés (engedélyezni kell)", "Something went wrong in confirming your identity. Cancel and try again.": "A személyazonosság ellenőrzésénél valami hiba történt. Megszakítás és próbálja újra.", "Remember this": "Emlékezzen erre", "The widget will verify your user ID, but won't be able to perform actions for you:": "A kisalkalmazás ellenőrizni fogja a felhasználói azonosítóját, de az alábbi tevékenységeket nem tudja végrehajtani:", @@ -1780,7 +1722,6 @@ "No microphone found": "Nem található mikrofon", "We were unable to access your microphone. Please check your browser settings and try again.": "Nem lehet a mikrofont használni. Ellenőrizze a böngésző beállításait és próbálja újra.", "Unable to access your microphone": "A mikrofont nem lehet használni", - "Your access token gives full access to your account. Do not share it with anyone.": "A hozzáférési kulcs teljes elérést biztosít a fiókhoz. Soha ne ossza meg mással.", "Please enter a name for the space": "Adjon meg egy nevet a térhez", "Connecting": "Kapcsolódás", "To leave the beta, visit your settings.": "A beállításokban tudja elhagyni a bétát.", @@ -1938,7 +1879,6 @@ "Decrypting": "Visszafejtés", "Missed call": "Nem fogadott hívás", "Call declined": "Hívás elutasítva", - "Olm version:": "Olm verzió:", "Stop recording": "Felvétel megállítása", "Send voice message": "Hang üzenet küldése", "More": "Több", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "A fentiek, de minden szobában, amelybe belépett vagy meghívták", "Some encryption parameters have been changed.": "Néhány titkosítási paraméter megváltozott.", "Role in ": "Szerep itt: ", - "Send a sticker": "Matrica küldése", "Unknown failure": "Ismeretlen hiba", "Failed to update the join rules": "A csatlakozási szabályokat nem sikerült frissíteni", "Select the roles required to change various parts of the space": "A tér bizonyos beállításainak megváltoztatásához szükséges szerep kiválasztása", @@ -2069,7 +2008,6 @@ "The homeserver the user you're verifying is connected to": "Az ellenőrizendő felhasználó ehhez a Matrix-kiszolgálóhoz kapcsolódik:", "Someone already has that username, please try another.": "Ez a felhasználónév már foglalt, próbáljon ki másikat.", "Someone already has that username. Try another or if it is you, sign in below.": "Valaki már használja ezt a felhasználói nevet. Próbáljon ki másikat, illetve ha ön az, jelentkezzen be alább.", - "Own your conversations.": "Az ön beszélgetései csak az öné.", "Show tray icon and minimise window to it on close": "Tálcaikon megjelenítése és az ablak minimalizálása bezáráskor", "Reply in thread": "Válasz üzenetszálban", "Spaces to show": "Megjelenítendő terek", @@ -2124,7 +2062,6 @@ "Start new chat": "Új beszélgetés indítása", "Recently viewed": "Nemrég megtekintett", "To view all keyboard shortcuts, click here.": "Az összes gyorsbillentyű megtekintéséhez kattintson ide.", - "Toggle space panel": "Tér panel be/ki", "%(count)s votes cast. Vote to see the results": { "one": "%(count)s leadott szavazat. Szavazzon az eredmény megtekintéséhez", "other": "%(count)s leadott szavazat. Szavazzon az eredmény megtekintéséhez" @@ -2182,14 +2119,11 @@ "Back to thread": "Vissza az üzenetszálhoz", "Room members": "Szobatagok", "Back to chat": "Vissza a csevegéshez", - "No active call in this room": "Nincs aktív hívás a szobában", - "Unable to find Matrix ID for phone number": "Nem található Matrix-azonosító a telefonszámhoz", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Ismeretlen (felhasználó, munkamenet) páros: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Parancs hiba: A szoba nem található (%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "Ismeretlen szoba cím: %(roomAlias)s", "Command error: Unable to find rendering type (%(renderingType)s)": "Parancs hiba: A megjelenítési típus nem található (%(renderingType)s)", "Command error: Unable to handle slash command.": "Parancs hiba: A / jellel kezdődő parancs támogatott.", - "Open this settings tab": "Beállítások fül megnyitása", "Space home": "Kezdő tér", "Unknown error fetching location. Please try again later.": "Ismeretlen hiba a földrajzi helyzetének lekérésekor. Próbálja újra később.", "Timed out trying to fetch your location. Please try again later.": "Időtúllépés történt a földrajzi helyzetének lekérésekor. Próbálja újra később.", @@ -2212,32 +2146,9 @@ "Encrypted messages before this point are unavailable.": "A régebbi titkosított üzenetek elérhetetlenek.", "You don't have permission to view messages from before you joined.": "A belépés előtti üzenetek megtekintése nincs engedélyezve számodra.", "You don't have permission to view messages from before you were invited.": "A meghívás előtti üzenetek megtekintéséhez nincs engedélye.", - "Navigate down in the room list": "Navigálás lefelé a szobalistában", - "Navigate up in the room list": "Navigálás felfelé a szobalistában", - "Scroll down in the timeline": "Görgetés lefelé az idővonalon", - "Scroll up in the timeline": "Görgetés felfelé az idővonalon", - "Toggle webcam on/off": "Webkamera be/ki", - "Jump to end of the composer": "Az üzenet végére ugrás a szerkesztőben", - "Jump to start of the composer": "Az üzenet elejére ugrás a szerkesztőben", "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.", - "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", - "Redo edit": "Szerkesztés újra érvényesítése", - "Force complete": "Befejezés mindenképp", - "Undo edit": "Szerkesztés visszavonása", - "Jump to last message": "Ugrás az utolsó üzenethez", - "Jump to first message": "Ugrás az első üzenethez", - "Toggle hidden event visibility": "Rejtett esemény láthatósága be/ki", - "Previous autocomplete suggestion": "Előző automatikus kiegészítési javaslat", - "Next autocomplete suggestion": "Következő automatikus kiegészítési javaslat", - "Previous room or DM": "Előző szoba vagy közvetlen üzenet", - "Next room or DM": "Következő szoba vagy közvetlen üzenet", - "Previous unread room or DM": "Előző olvasatlan szoba vagy közvetlen üzenet", - "Next unread room or DM": "Következő olvasatlan szoba vagy közvetlen üzenet", - "Navigate to previous message to edit": "Előző üzenetre navigálás szerkesztéshez", - "Navigate to next message to edit": "Következő üzenetre navigálás szerkesztéshez", "Unable to check if username has been taken. Try again later.": "A felhasználói név foglaltságának ellenőrzése nem sikerült. Kérjük próbálja meg később.", "Pick a date to jump to": "Idő kiválasztása az ugráshoz", "Jump to date": "Ugrás időpontra", @@ -2267,12 +2178,8 @@ "Open poll": "Nyitott szavazás", "Poll type": "Szavazás típusa", "Results will be visible when the poll is ended": "Az eredmény a szavazás végeztével válik láthatóvá", - "Open user settings": "Felhasználói beállítások megnyitása", - "Switch to space by number": "Tér váltás szám alapján", "Pinned": "Kitűzött", "Open thread": "Üzenetszál megnyitása", - "No virtual room for this room": "Ehhez a szobához nincs virtuális szoba", - "Switches to this room's virtual room, if it has one": "Átváltás a szoba virtuális szobájába, ha létezik", "Match system": "Rendszer beállításával megegyező", "What location type do you want to share?": "Milyen jellegű földrajzi helyzetet szeretne megosztani?", "Drop a Pin": "Hely kijelölése", @@ -2295,8 +2202,6 @@ "Collapse quotes": "Idézetek összecsukása", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "A terek a szobák és emberek csoportosításának új módja. Milyen teret szeretne létrehozni? Később megváltoztathatja.", "Can't create a thread from an event with an existing relation": "Nem lehet üzenetszálat indítani olyan eseményről ami már rendelkezik kapcsolattal", - "Toggle Link": "Hivatkozás be/ki", - "Toggle Code Block": "Kódblokk be/ki", "You are sharing your live location": "Ön folyamatosan megosztja az aktuális földrajzi pozícióját", "%(displayName)s's live location": "%(displayName)s élő földrajzi helyzete", "Preserve system messages": "Rendszerüzenetek megtartása", @@ -2304,8 +2209,6 @@ "one": "Üzenet törlése %(count)s szobából", "other": "Üzenet törlése %(count)s szobából" }, - "Next recently visited room or space": "Következő, nemrég meglátogatott szoba vagy tér", - "Previous recently visited room or space": "Előző, nemrég meglátogatott szoba vagy tér", "Unsent": "Elküldetlen", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Törölje a kijelölést ha a rendszer üzeneteket is törölni szeretné ettől a felhasználótól (pl. tagság változás, profil változás…)", "You are about to remove %(count)s messages by %(user)s. This will remove them permanently for everyone in the conversation. Do you wish to continue?": { @@ -2483,7 +2386,6 @@ }, "In %(spaceName)s.": "Ebben a térben: %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "Ezekben a terekben: %(space1Name)s és %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Fejlesztői parancs: Eldobja a jelenlegi kimenő csoport kapcsolatot és új Olm munkamenetet hoz létre", "Send your first message to invite to chat": "Küldj egy üzenetet ahhoz, hogy meghívd felhasználót", "Messages in this chat will be end-to-end encrypted.": "Az üzenetek ebben a beszélgetésben végponti titkosítással vannak védve.", "We're creating a room with %(names)s": "Szobát készítünk: %(names)s", @@ -2780,8 +2682,6 @@ "Due to decryption errors, some votes may not be counted": "Visszafejtési hibák miatt néhány szavazat nem kerül beszámításra", "The sender has blocked you from receiving this message": "A feladó megtagadta az Ön hozzáférését ehhez az üzenethez", "Room directory": "Szobalista", - "Identity server is %(identityServerUrl)s": "Azonosítási kiszolgáló: %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Matrix-kiszolgáló: %(homeserverUrl)s", "Yes, it was me": "Igen, én voltam", "Answered elsewhere": "Máshol lett felvéve", "There are no active polls for the past %(count)s days. Load more polls to view polls for previous months": { @@ -2798,8 +2698,6 @@ "Verify Session": "Munkamenet ellenőrzése", "Ignore (%(counter)s)": "Mellőzés (%(counter)s)", "If you know a room address, try joining through that instead.": "Ha ismeri a szoba címét próbáljon inkább azzal belépni.", - "Could not find room": "A szoba nem található", - "iframe has no src attribute": "az iframe-nek nincs src attribútuma", "View poll": "Szavazás megtekintése", "There are no past polls for the past %(count)s days. Load more polls to view polls for previous months": { "one": "Nincs aktív szavazás az elmúlt napokból. További szavazások betöltése az előző havi szavazások megjelenítéséhez", @@ -3120,7 +3018,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[szám]", - "backspace": "Visszatörlés" + "backspace": "Visszatörlés", + "category_calls": "Hívások", + "category_room_list": "Szobalista", + "category_navigation": "Navigáció", + "category_autocomplete": "Automatikus kiegészítés", + "composer_toggle_bold": "Félkövér be/ki", + "composer_toggle_italics": "Dőlt be/ki", + "composer_toggle_quote": "Idézet be/ki", + "composer_toggle_code_block": "Kódblokk be/ki", + "composer_toggle_link": "Hivatkozás be/ki", + "cancel_reply": "Üzenetre válaszolás megszakítása", + "navigate_next_message_edit": "Következő üzenetre navigálás szerkesztéshez", + "navigate_prev_message_edit": "Előző üzenetre navigálás szerkesztéshez", + "composer_jump_start": "Az üzenet elejére ugrás a szerkesztőben", + "composer_jump_end": "Az üzenet végére ugrás a szerkesztőben", + "composer_navigate_next_history": "Következő üzenetre navigálás a szerkesztőben", + "composer_navigate_prev_history": "Előző üzenetre navigálás a szerkesztőben", + "send_sticker": "Matrica küldése", + "toggle_microphone_mute": "Mikrofon némítása be/ki", + "toggle_webcam_mute": "Webkamera be/ki", + "dismiss_read_marker_and_jump_bottom": "Az olvasási jelzés eltüntetése és ugrás az aljára", + "jump_to_read_marker": "A legrégebbi olvasatlan üzenetre ugrás", + "upload_file": "Fájl feltöltése", + "scroll_up_timeline": "Görgetés felfelé az idővonalon", + "scroll_down_timeline": "Görgetés lefelé az idővonalon", + "jump_room_search": "A szobakeresésre ugrás", + "room_list_select_room": "Szoba kiválasztása a szobalistából", + "room_list_collapse_section": "Szobalista rész összecsukása", + "room_list_expand_section": "Szobalista rész kibontása", + "room_list_navigate_down": "Navigálás lefelé a szobalistában", + "room_list_navigate_up": "Navigálás felfelé a szobalistában", + "toggle_top_left_menu": "Bal felső menü be/ki", + "toggle_right_panel": "Jobb oldali panel be/ki", + "keyboard_shortcuts_tab": "Beállítások fül megnyitása", + "go_home_view": "Ugrás a kezdőképernyőre", + "next_unread_room": "Következő olvasatlan szoba vagy közvetlen üzenet", + "prev_unread_room": "Előző olvasatlan szoba vagy közvetlen üzenet", + "next_room": "Következő szoba vagy közvetlen üzenet", + "prev_room": "Előző szoba vagy közvetlen üzenet", + "autocomplete_cancel": "Automatikus kiegészítés megszakítása", + "autocomplete_navigate_next": "Következő automatikus kiegészítési javaslat", + "autocomplete_navigate_prev": "Előző automatikus kiegészítési javaslat", + "toggle_space_panel": "Tér panel be/ki", + "toggle_hidden_events": "Rejtett esemény láthatósága be/ki", + "jump_first_message": "Ugrás az első üzenethez", + "jump_last_message": "Ugrás az utolsó üzenethez", + "composer_undo": "Szerkesztés visszavonása", + "composer_redo": "Szerkesztés újra érvényesítése", + "navigate_prev_history": "Előző, nemrég meglátogatott szoba vagy tér", + "navigate_next_history": "Következő, nemrég meglátogatott szoba vagy tér", + "switch_to_space": "Tér váltás szám alapján", + "open_user_settings": "Felhasználói beállítások megnyitása", + "close_dialog_menu": "Párbeszédablak vagy menü bezárása", + "activate_button": "Kiválasztott gomb aktiválása", + "composer_new_line": "Új sor", + "autocomplete_force": "Befejezés mindenképp", + "search": "Keresés (engedélyezni kell)" }, "credits": { "default_cover_photo": "Az alapértelmezett borítóképre a következő vonatkozik: © Jesús Roncero, a CC BY-SA 4.0 licenc feltételei szerint használva.", @@ -3245,7 +3199,16 @@ "download_google_play": "Letöltés a Google Play-ből", "download_f_droid": "Letöltés az F-Droidról", "apple_trademarks": "Az App Store® és az Apple logo® az Apple Inc. védjegyei.", - "google_trademarks": "A Google Play és a Google Play logó a Google LLC védjegye." + "google_trademarks": "A Google Play és a Google Play logó a Google LLC védjegye.", + "has_avatar_label": "Nagyszerű, ez segíteni eldönteni másoknak, hogy tényleg Ön az", + "no_avatar_label": "Állítson be egy fényképet, hogy tudják mások, hogy Ön az.", + "welcome_user": "Üdv %(name)s", + "welcome_detail": "És most segítünk az indulásban", + "intro_welcome": "Üdvözli a(z) %(appName)s", + "intro_byline": "Az ön beszélgetései csak az öné.", + "send_dm": "Közvetlen üzenet küldése", + "explore_rooms": "Nyilvános szobák felfedezése", + "create_room": "Készíts csoportos beszélgetést" }, "settings": { "show_breadcrumbs": "Gyors elérési gombok megjelenítése a nemrég meglátogatott szobákhoz a szobalista felett", @@ -3792,7 +3755,24 @@ "category_admin": "Admin", "category_advanced": "Speciális", "category_effects": "Effektek", - "category_other": "Egyéb" + "category_other": "Egyéb", + "addwidget_missing_url": "Adja meg a kisalkalmazás webcímét vagy a beágyazási kódot", + "addwidget_iframe_missing_src": "az iframe-nek nincs src attribútuma", + "addwidget_invalid_protocol": "Adja meg a kisalkalmazás https:// vagy http:// webcímét", + "addwidget_no_permissions": "Nem módosíthatja a kisalkalmazásokat ebben a szobában.", + "converttodm": "Közvetlen beszélgetéssé alakítja a szobát", + "could_not_find_room": "A szoba nem található", + "converttoroom": "Szobává alakítja a közvetlen beszélgetést", + "discardsession": "Kikényszeríti a jelenlegi kimeneti csoportos munkamenet törlését a titkosított szobában", + "remakeolm": "Fejlesztői parancs: Eldobja a jelenlegi kimenő csoport kapcsolatot és új Olm munkamenetet hoz létre", + "tovirtual": "Átváltás a szoba virtuális szobájába, ha létezik", + "tovirtual_not_found": "Ehhez a szobához nincs virtuális szoba", + "query": "Megnyitja a beszélgetést a megadott felhasználóval", + "query_not_found_phone_number": "Nem található Matrix-azonosító a telefonszámhoz", + "holdcall": "Tartásba teszi a jelenlegi szoba hívását", + "no_active_call": "Nincs aktív hívás a szobában", + "unholdcall": "Visszaveszi tartásból a jelenlegi szoba hívását", + "me": "Megjeleníti a tevékenységet" }, "presence": { "busy": "Foglalt", @@ -3973,7 +3953,16 @@ "sign_in_with_sso": "Bejelentkezés „egyszeri bejelentkezéssel”", "sso": "Egyszeri bejelentkezés", "reset_password_action": "Jelszó visszaállítása", - "reset_password_title": "Jelszó megváltoztatása" + "reset_password_title": "Jelszó megváltoztatása", + "continue_with_sso": "Folytatás ezzel: %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s vagy %(usernamePassword)s", + "sign_in_instead": "Van már fiókod? Belépés", + "account_clash": "Az új (%(newAccountId)s) fiókod elkészült, de jelenleg egy másik fiókba (%(loggedInUserId)s) vagy bejelentkezve.", + "account_clash_previous_account": "Folytatás az előző fiókkal", + "log_in_new_account": "Belépés az új fiókodba.", + "registration_successful": "Regisztráció sikeres", + "server_picker_title": "Fiók létrehozása itt:", + "server_picker_dialog_title": "Döntse el, hol szeretne fiókot létrehozni" }, "room_list": { "sort_unread_first": "Olvasatlan üzeneteket tartalmazó szobák megjelenítése elől", @@ -4009,5 +3998,20 @@ "report_entire_room": "Az egész szoba jelentése", "report_content_to_homeserver": "Tartalom bejelentése a Matrix-kiszolgáló rendszergazdájának", "description": "Az üzenet bejelentése egy egyedi „eseményazonosítót” küld el a Matrix-kiszolgáló rendszergazdájának. Ha az üzenetek titkosítottak a szobában, akkor a Matrix-kiszolgáló rendszergazdája nem tudja elolvasni az üzenetet, vagy nem tudja megnézni a fájlokat vagy képeket." + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s verzió:", + "olm_version": "Olm verzió:", + "help_link": "Az %(brand)s használatában való segítséghez kattintson ide.", + "help_link_chat_bot": "Az %(brand)s használatában való segítségért kattintson ide, vagy kezdjen beszélgetést a botunkkal az alábbi gombra kattintva.", + "chat_bot": "Csevegés az %(brand)s bottal", + "title": "Súgó és névjegy", + "versions": "Verziók", + "homeserver": "Matrix-kiszolgáló: %(homeserverUrl)s", + "identity_server": "Azonosítási kiszolgáló: %(identityServerUrl)s", + "access_token_detail": "A hozzáférési kulcs teljes elérést biztosít a fiókhoz. Soha ne ossza meg mással.", + "clear_cache_reload": "Gyorsítótár ürítése és újratöltés" + } } } diff --git a/src/i18n/strings/id.json b/src/i18n/strings/id.json index 0dec0ef719..f42ebc3003 100644 --- a/src/i18n/strings/id.json +++ b/src/i18n/strings/id.json @@ -29,7 +29,6 @@ "Permissions": "Izin", "Profile": "Profil", "Reason": "Alasan", - "%(brand)s version:": "Versi %(brand)s:", "Return to login screen": "Kembali ke halaman masuk", "Rooms": "Ruangan", "Search failed": "Pencarian gagal", @@ -120,21 +119,11 @@ "Create Account": "Buat Akun", "%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s", "The call was answered on another device.": "Panggilan dijawab di perangkat lainnya.", - "Displays action": "Menampilkan aksi", - "Converts the DM to a room": "Mengubah pesan langsung ke ruangan", - "Converts the room to a DM": "Mengubah ruangan ini ke pesan langsung", - "Takes the call in the current room off hold": "Melanjutkan panggilan di ruang saat ini", - "Places the call in the current room on hold": "Menunda panggilan di ruangan saat ini", - "Opens chat with the given user": "Membuka obrolan dengan pengguna yang dicantumkan", - "Forces the current outbound group session in an encrypted room to be discarded": "Memaksa sesi grup keluar saat ini di ruang terenkripsi untuk dibuang", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Kunci penandatanganan yang Anda sediakan cocok dengan kunci penandatanganan yang Anda terima dari sesi %(userId)s %(deviceId)s. Sesi ditandai sebagai terverifikasi.", "Verified key": "Kunci terverifikasi", "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!": "PERINGATAN: VERIFIKASI KUNCI GAGAL! Kunci penandatanganan untuk %(userId)s dan sesi %(deviceId)s adalah \"%(fprint)s\" yang tidak cocok dengan kunci \"%(fingerprint)s\" yang disediakan. Ini bisa saja berarti komunikasi Anda sedang disadap!", "Session already verified!": "Sesi telah diverifikasi!", "Verifies a user, session, and pubkey tuple": "Memverifikasi sebuah pengguna, sesi, dan tupel pubkey", - "You cannot modify widgets in this room.": "Anda tidak dapat mengubah widget di ruangan ini.", - "Please supply a https:// or http:// widget URL": "Mohon masukkan sebuah URL widget https:// atau http://", - "Please supply a widget URL or embed code": "Silakan masukkan URL widget atau kode embed", "Deops user with given id": "De-op pengguna dengan ID yang dicantumkan", "Could not find user in room": "Tidak dapat menemukan pengguna di ruangan", "Define the power level of a user": "Tentukan tingkat daya pengguna", @@ -483,9 +472,6 @@ "Favourited": "Difavorit", "ready": "siap", "Algorithm:": "Algoritma:", - "Autocomplete": "Pelengkapan Otomatis", - "Calls": "Panggilan", - "Navigation": "Navigasi", "Feedback": "Masukan", "Unencrypted": "Tidak Dienkripsi", "Bridges": "Jembatan", @@ -571,7 +557,6 @@ "Demote": "Turunkan", "Replying": "Membalas", "Composer": "Komposer", - "Versions": "Versi", "Encryption": "Enkripsi", "General": "Umum", "Emoji Autocomplete": "Penyelesaian Otomatis Emoji", @@ -584,7 +569,6 @@ "Checking server": "Memeriksa server", "Show advanced": "Tampilkan lanjutan", "Hide advanced": "Sembunyikan lanjutan", - "Registration Successful": "Pendaftaran Berhasil", "Enter username": "Masukkan nama pengguna", "Enter password": "Masukkan kata sandi", "Upload Error": "Kesalahan saat Mengunggah", @@ -1085,14 +1069,7 @@ "Please verify the room ID or address and try again.": "Mohon verifikasi ID ruangan atau alamat dan coba lagi.", "Something went wrong. Please try again or view your console for hints.": "Ada sesuatu yang salah. Mohon coba lagi atau lihat konsol Anda untuk petunjuk.", "Error adding ignored user/server": "Terjadi kesalahan menambahkan pengguna/server yang diabaikan", - "Clear cache and reload": "Hapus cache dan muat ulang", - "Your access token gives full access to your account. Do not share it with anyone.": "Token akses Anda memberikan akses penuh ke akun Anda. Jangan bagikan dengan siapa pun.", - "Help & About": "Bantuan & Tentang", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Untuk melaporkan masalah keamanan yang berkaitan dengan Matrix, mohon baca Kebijakan Penyingkapan Keamanan Matrix.org.", - "Chat with %(brand)s Bot": "Mulai mengobrol dengan %(brand)s Bot", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Untuk bantuan dengan menggunakan %(brand)s, klik di sini atau mulai sebuah obrolan dengan bot kami dengan menggunakan tombol di bawah.", - "For help with using %(brand)s, click here.": "Untuk bantuan dengan menggunakan %(brand)s, klik di sini.", - "Olm version:": "Versi Olm:", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Terima Ketentuan Layanannya server identitas %(serverName)s untuk mengizinkan Anda untuk dapat ditemukan dengan alamat email atau nomor telepon.", "Language and region": "Bahasa dan wilayah", "Rooms outside of a space": "Ruangan yang tidak berada di sebuah space", @@ -1229,7 +1206,6 @@ "The conversation continues here.": "Obrolannya dilanjutkan di sini.", "More options": "Opsi lebih banyak", "Send voice message": "Kirim sebuah pesan suara", - "Send a sticker": "Kirim sebuah stiker", "Create poll": "Buat poll", "You do not have permission to start polls in this room.": "Anda tidak memiliki izin untuk memulai sebuah poll di ruangan ini.", "%(userName)s (power %(powerLevelNumber)s)": "%(userName)s (tingkat daya %(powerLevelNumber)s)", @@ -1619,9 +1595,6 @@ "PRO TIP: If you start a bug, please submit debug logs to help us track down the problem.": "Jika Anda membuat issue, silakan kirimkan log pengawakutu untuk membantu kami menemukan masalahnya.", "Feedback sent": "Masukan terkirim", "Unable to query secret storage status": "Tidak dapat menanyakan status penyimpanan rahasia", - "Already have an account? Sign in here": "Sudah memiliki sebuah akun? Masuk di sini", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Atau %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Lanjutkan dengan %(ssoButtons)s", "Someone already has that username, please try another.": "Seseorang sudah memiliki nama pengguna itu, mohon coba yang lain.", "This server does not support authentication with a phone number.": "Server ini tidak mendukung autentikasi dengan sebuah nomor telepon.", "Registration has been disabled on this homeserver.": "Pendaftaran telah dinonaktifkan di homeserver ini.", @@ -1746,15 +1719,6 @@ "This space is not public. You will not be able to rejoin without an invite.": "Space ini tidak publik. Anda tidak dapat bergabung lagi tanpa sebuah undangan.", "You are the only person here. If you leave, no one will be able to join in the future, including you.": "Anda adalah satu-satunya di sini. Jika Anda keluar, tidak ada siapa saja dapat bergabung di masa mendatang, termasuk Anda.", "Open dial pad": "Buka tombol penyetel", - "Create a Group Chat": "Buat sebuah Obrolan Grup", - "Explore Public Rooms": "Jelajahi Ruangan Publik", - "Send a Direct Message": "Kirim sebuah Pesan Langsung", - "Own your conversations.": "Miliki percakapan Anda.", - "Welcome to %(appName)s": "Selamat datang di %(appName)s", - "Now, let's help you get started": "Sekarang, mari bantu Anda memulai", - "Welcome %(name)s": "Selamat datang %(name)s", - "Add a photo so people know it's you.": "Tambahkan sebuah foto supaya orang-orang tahu bahwa itu Anda.", - "Great, that'll help people know it's you": "Hebat, itu akan membantu orang-orang tahu bahwa itu Anda", "Use email or phone to optionally be discoverable by existing contacts.": "Gunakan email atau nomor telepon untuk dapat ditemukan oleh kontak yang sudah ada secara opsional.", "Attach files from chat or just drag and drop them anywhere in a room.": "Lampirkan file dari komposer atau tarik dan lepaskan di mana saja di sebuah ruangan.", "No files visible in this room": "Tidak ada file di ruangan ini", @@ -1900,11 +1864,6 @@ "Verify with Security Key or Phrase": "Verifikasi dengan Kunci Keamanan atau Frasa", "Proceed with reset": "Lanjutkan dengan mengatur ulang", "It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.": "Sepertinya Anda tidak memiliki Kunci Keamanan atau perangkat lainnya yang Anda dapat gunakan untuk memverifikasi. Perangkat ini tidak dapat mengakses ke pesan terenkripsi lama. Untuk membuktikan identitas Anda, kunci verifikasi harus diatur ulang.", - "Decide where your account is hosted": "Putuskan di mana untuk menghost akun Anda", - "Host account on": "Host akun di", - "Log in to your new account.": "Masuk ke akun yang baru.", - "Continue with previous account": "Lanjutkan dengan akun sebelumnya", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Akun Anda yang baru (%(newAccountId)s) telah didaftarkan, tetapi Anda telah masuk ke akun yang lain (%(loggedInUserId)s).", "Upload %(count)s other files": { "one": "Unggah %(count)s file lainnya", "other": "Unggah %(count)s file lainnya" @@ -2048,18 +2007,6 @@ "one": "%(spaceName)s dan %(count)s lainnya", "other": "%(spaceName)s dan %(count)s lainnya" }, - "Jump to room search": "Pergi ke pencarian ruangan", - "Search (must be enabled)": "Cari (harus diaktifkan)", - "Upload a file": "Unggah sebuah file", - "Jump to oldest unread message": "Pergi ke pesan paling lama yang belum dibaca", - "Dismiss read marker and jump to bottom": "Abaikan penanda baca dan pergi ke bawah", - "Toggle microphone mute": "Bisukan/suarakan mikrofon", - "Cancel replying to a message": "Batalkan membalas ke pesan", - "Toggle Quote": "Kutip", - "Toggle Italics": "Italic", - "Toggle Bold": "Tebal", - "New line": "Baris baru", - "Room List": "Daftar Ruangan", "Message downloading sleep time(ms)": "Lama tidur pengunduhan pesan (md)", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s dari %(totalRooms)s", "Indexed rooms:": "Ruangan terindeks:", @@ -2088,15 +2035,6 @@ "Passphrase must not be empty": "Frasa sandi harus tidak kosong", "Passphrases must match": "Frasa sandi harus cocok", "Unable to set up secret storage": "Tidak dapat menyiapkan penyimpanan rahasia", - "Cancel autocomplete": "Batalkan penyelesaian otomatis", - "Go to Home View": "Pergi ke Tampilan Beranda", - "Toggle right panel": "Buka/tutup panel kanan", - "Activate selected button": "Aktivasi tombol yang dipilih", - "Close dialog or context menu": "Tutup dialog atau menu konteks", - "Toggle the top left menu": "Alihkan menu kiri atas", - "Expand room list section": "Buka bagian daftar ruangan", - "Collapse room list section": "Tutup bagian daftar ruangan", - "Select room from the room list": "Pilih ruangan dari daftar ruangan", "Sorry, the poll you tried to create was not posted.": "Maaf, poll yang Anda buat tidak dapat dikirim.", "Failed to post poll": "Gagal untuk mengirim poll", "Sorry, your vote was not registered. Please try again.": "Maaf, suara Anda tidak didaftarkan. Silakan coba lagi.", @@ -2135,7 +2073,6 @@ "Share location": "Bagikan lokasi", "You cannot place calls without a connection to the server.": "Anda tidak dapat membuat panggilan tanpa terhubung ke server.", "Connectivity to the server has been lost": "Koneksi ke server telah hilang", - "Toggle space panel": "Alih panel space", "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.": "Apakah Anda yakin untuk mengakhiri poll ini? Ini akan menampilkan hasil akhir dari poll dan orang-orang tidak dapat memberikan suara lagi.", "End Poll": "Akhiri Poll", "Sorry, the poll did not end. Please try again.": "Maaf, poll tidak berakhir. Silakan coba lagi.", @@ -2182,8 +2119,6 @@ "Verify this device by confirming the following number appears on its screen.": "Verifikasi perangkat ini dengan mengkonfirmasi nomor berikut ini yang ditampilkan di layarnya.", "Confirm the emoji below are displayed on both devices, in the same order:": "Konfirmasi emoji di bawah yang ditampilkan di kedua perangkat, dalam urutan yang sama:", "Expand map": "Buka peta", - "No active call in this room": "Tidak ada panggilan aktif di ruangan ini", - "Unable to find Matrix ID for phone number": "Tidak dapat menemukan ID Matrix untuk nomor telepon", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Pasangan tidak diketahui (pengguna, sesi): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Perintah gagal: Tidak dapat menemukan ruangan (%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "Alamat ruangan tidak dikenal: %(roomAlias)s", @@ -2204,7 +2139,6 @@ "Remove, ban, or invite people to your active room, and make you leave": "Keluarkan, cekal, atau undang orang-orang ke ruangan aktif Anda, dan keluarkan Anda sendiri", "Remove, ban, or invite people to this room, and make you leave": "Keluarkan, cekal, atau undang orang-orang ke ruangan ini, dan keluarkan Anda sendiri", "Message pending moderation: %(reason)s": "Pesan akan dimoderasikan: %(reason)s", - "Open this settings tab": "Buka tab pengaturan ini", "Message pending moderation": "Pesan akan dimoderasikan", "Keyboard": "Keyboard", "Space home": "Beranda space", @@ -2212,35 +2146,12 @@ "Encrypted messages before this point are unavailable.": "Pesan-pesan terenkripsi sebelum titik ini tidak tersedia.", "You don't have permission to view messages from before you joined.": "Anda tidak memiliki izin untuk melihat pesan-pesan sebelum Anda bergabung.", "You don't have permission to view messages from before you were invited.": "Anda tidak memiliki izin untuk melihat pesan-pesan sebelum Anda diundang.", - "Previous autocomplete suggestion": "Saran penyelesaian otomatis sebelumnya", - "Next autocomplete suggestion": "Saran penyelesaian otomatis berikutnya", - "Previous room or DM": "Ruangan atau pesan langsung sebelumnya", - "Next room or DM": "Ruangan atau pesan langsung berikutnya", - "Next unread room or DM": "Ruangan atau pesan langsung berikutnya yang belum dibaca", - "Previous unread room or DM": "Ruangan atau pesan langsung sebelumnya yang belum dibaca", - "Navigate down in the room list": "Pergi ke bawah di daftar ruangan", - "Navigate up in the room list": "Pergi ke atas di daftar ruangan", - "Scroll down in the timeline": "Gulir ke bawah di lini masa", - "Scroll up in the timeline": "Gulir ke atas di lini masa", - "Toggle webcam on/off": "Nyalakan/matikan webcam", - "Navigate to previous message in composer history": "Pergi ke pesan sebelumnya di riwayat komposer", - "Navigate to next message in composer history": "Pergi ke pesan berikutnya di riwayat komposer", - "Jump to end of the composer": "Pergi ke akhiran komposer", - "Jump to start of the composer": "Pergi ke awalan komposer", - "Navigate to previous message to edit": "Pergi ke pesan sebelumnya untuk diedit", - "Navigate to next message to edit": "Pergi ke pesan berikutnya untuk diedit", "Internal room ID": "ID ruangan internal", "Group all your people in one place.": "Kelompokkan semua orang di satu tempat.", "Group all your rooms that aren't part of a space in one place.": "Kelompokkan semua ruangan yang tidak ada di sebuah space di satu tempat.", "Unable to check if username has been taken. Try again later.": "Tidak dapat memeriksa jika nama pengguna telah dipakai. Coba lagi nanti.", "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.", - "Toggle hidden event visibility": "Alih visibilitas peristiwa tersembunyi", - "Redo edit": "Ulangi editan", - "Force complete": "Selesaikan dengan paksa", - "Undo edit": "Urungkan editan", - "Jump to last message": "Pergi ke pesan terakhir", - "Jump to first message": "Pergi ke pesan pertama", "Pick a date to jump to": "Pilih sebuah tanggal untuk pergi ke tanggalnya", "Jump to date": "Pergi ke tanggal", "The beginning of the room": "Awalan ruangan", @@ -2266,13 +2177,9 @@ "Open poll": "Pemungutan suara terbuka", "Poll type": "Tipe pemungutan suara", "Results will be visible when the poll is ended": "Hasil akan tersedia setelah pemungutan suara berakhir", - "Switches to this room's virtual room, if it has one": "Mengganti ke ruangan virtual ruangan ini, jika tersedia", - "Open user settings": "Buka pengaturan pengguna", - "Switch to space by number": "Ganti ke space oleh nomor", "Search Dialog": "Dialog Pencarian", "Pinned": "Disematkan", "Open thread": "Buka utasan", - "No virtual room for this room": "Tidak ada ruangan virtual untuk ruangan ini", "What location type do you want to share?": "Tipe lokasi apa yang Anda ingin bagikan?", "Drop a Pin": "Drop sebuah Pin", "My live location": "Lokasi langsung saya", @@ -2295,8 +2202,6 @@ "Shared their location: ": "Membagikan lokasinya: ", "Unable to load map": "Tidak dapat memuat peta", "Can't create a thread from an event with an existing relation": "Tidak dapat membuat utasan dari sebuah peristiwa dengan relasi yang sudah ada", - "Toggle Link": "Alih Tautan", - "Toggle Code Block": "Alih Blok Kode", "You are sharing your live location": "Anda membagikan lokasi langsung Anda", "%(displayName)s's live location": "Lokasi langsung %(displayName)s", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Jangan centang jika Anda juga ingin menghapus pesan-pesan sistem pada pengguna ini (mis. perubahan keanggotaan, perubahan profil…)", @@ -2310,8 +2215,6 @@ "other": "Saat ini menghapus pesan-pesan di %(count)s ruangan" }, "Share for %(duration)s": "Bagikan selama %(duration)s", - "Next recently visited room or space": "Ruangan atau space berikut yang dikunjungi", - "Previous recently visited room or space": "Ruangan atau space yang dikunjungi sebelumnya", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "Anda dapat menggunakan opsi server khusus untuk masuk ke server Matrix lain dengan menentukan URL homeserver yang berbeda. Ini memungkinkan Anda untuk menggunakan %(brand)s dengan akun Matrix yang ada di homeserver yang berbeda.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "Izin %(brand)s ditolak untuk mengakses lokasi Anda. Mohon izinkan akses lokasi di pengaturan peramban Anda.", "Developer tools": "Alat pengembang", @@ -2474,7 +2377,6 @@ }, "In %(spaceName)s.": "Dalam space %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "Dalam space %(space1Name)s dan %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Perintah pengembang: Membuang sesi grup keluar saat ini dan menyiapkan sesi Olm baru", "Stop and close": "Berhenti dan tutup", "Online community members": "Anggota komunitas daring", "Coworkers and teams": "Teman kerja dan tim", @@ -2780,8 +2682,6 @@ "Due to decryption errors, some votes may not be counted": "Karena kesalahan pendekripsian, beberapa suara tidak dihitung", "The sender has blocked you from receiving this message": "Pengirim telah memblokir Anda supaya tidak menerima pesan ini", "Room directory": "Direktori ruangan", - "Identity server is %(identityServerUrl)s": "Server identitas adalah %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Homeserver adalah %(homeserverUrl)s", "Yes, it was me": "Ya, itu saya", "Answered elsewhere": "Dijawab di tempat lain", "If you know a room address, try joining through that instead.": "Jika Anda tahu sebuah alamat ruangan, coba bergabung melalui itu saja.", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Abaikan (%(counter)s)", "Once everyone has joined, you’ll be able to chat": "Setelah semuanya bergabung, Anda akan dapat mengobrol", "Invites by email can only be sent one at a time": "Undangan lewat surel hanya dapat dikirim satu-satu", - "Could not find room": "Tidak dapat mencari ruangan", - "iframe has no src attribute": "iframe tidak memiliki atribut src", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Sebuah kesalahan terjadi saat memperbarui preferensi notifikasi Anda. Silakan coba mengubah opsi Anda lagi.", "Use your account to continue.": "Gunakan akun Anda untuk melanjutkan.", "Desktop app logo": "Logo aplikasi desktop", @@ -3200,7 +3098,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[nomor]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Panggilan", + "category_room_list": "Daftar Ruangan", + "category_navigation": "Navigasi", + "category_autocomplete": "Pelengkapan Otomatis", + "composer_toggle_bold": "Tebal", + "composer_toggle_italics": "Italic", + "composer_toggle_quote": "Kutip", + "composer_toggle_code_block": "Alih Blok Kode", + "composer_toggle_link": "Alih Tautan", + "cancel_reply": "Batalkan membalas ke pesan", + "navigate_next_message_edit": "Pergi ke pesan berikutnya untuk diedit", + "navigate_prev_message_edit": "Pergi ke pesan sebelumnya untuk diedit", + "composer_jump_start": "Pergi ke awalan komposer", + "composer_jump_end": "Pergi ke akhiran komposer", + "composer_navigate_next_history": "Pergi ke pesan berikutnya di riwayat komposer", + "composer_navigate_prev_history": "Pergi ke pesan sebelumnya di riwayat komposer", + "send_sticker": "Kirim sebuah stiker", + "toggle_microphone_mute": "Bisukan/suarakan mikrofon", + "toggle_webcam_mute": "Nyalakan/matikan webcam", + "dismiss_read_marker_and_jump_bottom": "Abaikan penanda baca dan pergi ke bawah", + "jump_to_read_marker": "Pergi ke pesan paling lama yang belum dibaca", + "upload_file": "Unggah sebuah file", + "scroll_up_timeline": "Gulir ke atas di lini masa", + "scroll_down_timeline": "Gulir ke bawah di lini masa", + "jump_room_search": "Pergi ke pencarian ruangan", + "room_list_select_room": "Pilih ruangan dari daftar ruangan", + "room_list_collapse_section": "Tutup bagian daftar ruangan", + "room_list_expand_section": "Buka bagian daftar ruangan", + "room_list_navigate_down": "Pergi ke bawah di daftar ruangan", + "room_list_navigate_up": "Pergi ke atas di daftar ruangan", + "toggle_top_left_menu": "Alihkan menu kiri atas", + "toggle_right_panel": "Buka/tutup panel kanan", + "keyboard_shortcuts_tab": "Buka tab pengaturan ini", + "go_home_view": "Pergi ke Tampilan Beranda", + "next_unread_room": "Ruangan atau pesan langsung berikutnya yang belum dibaca", + "prev_unread_room": "Ruangan atau pesan langsung sebelumnya yang belum dibaca", + "next_room": "Ruangan atau pesan langsung berikutnya", + "prev_room": "Ruangan atau pesan langsung sebelumnya", + "autocomplete_cancel": "Batalkan penyelesaian otomatis", + "autocomplete_navigate_next": "Saran penyelesaian otomatis berikutnya", + "autocomplete_navigate_prev": "Saran penyelesaian otomatis sebelumnya", + "toggle_space_panel": "Alih panel space", + "toggle_hidden_events": "Alih visibilitas peristiwa tersembunyi", + "jump_first_message": "Pergi ke pesan pertama", + "jump_last_message": "Pergi ke pesan terakhir", + "composer_undo": "Urungkan editan", + "composer_redo": "Ulangi editan", + "navigate_prev_history": "Ruangan atau space yang dikunjungi sebelumnya", + "navigate_next_history": "Ruangan atau space berikut yang dikunjungi", + "switch_to_space": "Ganti ke space oleh nomor", + "open_user_settings": "Buka pengaturan pengguna", + "close_dialog_menu": "Tutup dialog atau menu konteks", + "activate_button": "Aktivasi tombol yang dipilih", + "composer_new_line": "Baris baru", + "autocomplete_force": "Selesaikan dengan paksa", + "search": "Cari (harus diaktifkan)" }, "credits": { "default_cover_photo": "Foto kover bawaan © Jesús Roncero digunakan di bawah ketentuan CC-BY-SA 4.0.", @@ -3325,7 +3279,16 @@ "download_google_play": "Dapatkan di Google Play", "download_f_droid": "Dapatkan di F-Droid", "apple_trademarks": "App Store® dan logo Apple® adalah merek dagang Apple Inc.", - "google_trademarks": "Google Play dan logo Google Play adalah merek dagang Google LLC." + "google_trademarks": "Google Play dan logo Google Play adalah merek dagang Google LLC.", + "has_avatar_label": "Hebat, itu akan membantu orang-orang tahu bahwa itu Anda", + "no_avatar_label": "Tambahkan sebuah foto supaya orang-orang tahu bahwa itu Anda.", + "welcome_user": "Selamat datang %(name)s", + "welcome_detail": "Sekarang, mari bantu Anda memulai", + "intro_welcome": "Selamat datang di %(appName)s", + "intro_byline": "Miliki percakapan Anda.", + "send_dm": "Kirim sebuah Pesan Langsung", + "explore_rooms": "Jelajahi Ruangan Publik", + "create_room": "Buat sebuah Obrolan Grup" }, "settings": { "show_breadcrumbs": "Tampilkan jalan pintas ke ruangan yang baru saja ditampilkan di atas daftar ruangan", @@ -3893,7 +3856,24 @@ "category_admin": "Admin", "category_advanced": "Tingkat Lanjut", "category_effects": "Efek", - "category_other": "Lainnya" + "category_other": "Lainnya", + "addwidget_missing_url": "Silakan masukkan URL widget atau kode embed", + "addwidget_iframe_missing_src": "iframe tidak memiliki atribut src", + "addwidget_invalid_protocol": "Mohon masukkan sebuah URL widget https:// atau http://", + "addwidget_no_permissions": "Anda tidak dapat mengubah widget di ruangan ini.", + "converttodm": "Mengubah ruangan ini ke pesan langsung", + "could_not_find_room": "Tidak dapat mencari ruangan", + "converttoroom": "Mengubah pesan langsung ke ruangan", + "discardsession": "Memaksa sesi grup keluar saat ini di ruang terenkripsi untuk dibuang", + "remakeolm": "Perintah pengembang: Membuang sesi grup keluar saat ini dan menyiapkan sesi Olm baru", + "tovirtual": "Mengganti ke ruangan virtual ruangan ini, jika tersedia", + "tovirtual_not_found": "Tidak ada ruangan virtual untuk ruangan ini", + "query": "Membuka obrolan dengan pengguna yang dicantumkan", + "query_not_found_phone_number": "Tidak dapat menemukan ID Matrix untuk nomor telepon", + "holdcall": "Menunda panggilan di ruangan saat ini", + "no_active_call": "Tidak ada panggilan aktif di ruangan ini", + "unholdcall": "Melanjutkan panggilan di ruang saat ini", + "me": "Menampilkan aksi" }, "presence": { "busy": "Sibuk", @@ -4074,7 +4054,16 @@ "sign_in_with_sso": "Masuk dengan single sign on", "sso": "Single Sign On", "reset_password_action": "Atur ulang kata sandi", - "reset_password_title": "Atur ulang kata sandi Anda" + "reset_password_title": "Atur ulang kata sandi Anda", + "continue_with_sso": "Lanjutkan dengan %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Atau %(usernamePassword)s", + "sign_in_instead": "Sudah memiliki sebuah akun? Masuk di sini", + "account_clash": "Akun Anda yang baru (%(newAccountId)s) telah didaftarkan, tetapi Anda telah masuk ke akun yang lain (%(loggedInUserId)s).", + "account_clash_previous_account": "Lanjutkan dengan akun sebelumnya", + "log_in_new_account": "Masuk ke akun yang baru.", + "registration_successful": "Pendaftaran Berhasil", + "server_picker_title": "Host akun di", + "server_picker_dialog_title": "Putuskan di mana untuk menghost akun Anda" }, "room_list": { "sort_unread_first": "Tampilkan ruangan dengan pesan yang belum dibaca dahulu", @@ -4110,5 +4099,20 @@ "report_entire_room": "Laporkan seluruh ruangan", "report_content_to_homeserver": "Laporkan Konten ke Administrator Homeserver Anda", "description": "Melaporkan pesan ini akan mengirimkan ID peristiwa yang untuk ke administrator homeserver Anda. Jika pesan-pesan di ruangan ini terenkripsi, maka administrator homeserver Anda tidak akan dapat membaca teks pesan atau menampilkan file atau gambar apa saja." + }, + "setting": { + "help_about": { + "brand_version": "Versi %(brand)s:", + "olm_version": "Versi Olm:", + "help_link": "Untuk bantuan dengan menggunakan %(brand)s, klik di sini.", + "help_link_chat_bot": "Untuk bantuan dengan menggunakan %(brand)s, klik di sini atau mulai sebuah obrolan dengan bot kami dengan menggunakan tombol di bawah.", + "chat_bot": "Mulai mengobrol dengan %(brand)s Bot", + "title": "Bantuan & Tentang", + "versions": "Versi", + "homeserver": "Homeserver adalah %(homeserverUrl)s", + "identity_server": "Server identitas adalah %(identityServerUrl)s", + "access_token_detail": "Token akses Anda memberikan akses penuh ke akun Anda. Jangan bagikan dengan siapa pun.", + "clear_cache_reload": "Hapus cache dan muat ulang" + } } } diff --git a/src/i18n/strings/is.json b/src/i18n/strings/is.json index 0c96e104bf..da13bb42a3 100644 --- a/src/i18n/strings/is.json +++ b/src/i18n/strings/is.json @@ -144,7 +144,6 @@ "Email": "Tölvupóstfang", "Profile": "Notandasnið", "Account": "Notandaaðgangur", - "%(brand)s version:": "Útgáfa %(brand)s:", "The email address linked to your account must be entered.": "Það þarf að setja inn tölvupóstfangið sem tengt er notandaaðgangnum þínum.", "A new password must be entered.": "Það verður að setja inn nýtt lykilorð.", "New passwords must match each other.": "Nýju lykilorðin verða að vera þau sömu.", @@ -190,7 +189,6 @@ "": "", "No Microphones detected": "Engir hljóðnemar fundust", "No Webcams detected": "Engar vefmyndavélar fundust", - "Displays action": "Birtir aðgerð", "Notify the whole room": "Tilkynna öllum á spjallrásinni", "Room Notification": "Tilkynning á spjallrás", "Passphrases must match": "Lykilfrasar verða að stemma", @@ -214,7 +212,6 @@ "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Kerfisstjóri netþjónsins þíns hefur lokað á sjálfvirka dulritun í einkaspjallrásum og beinum skilaboðum.", "Voice & Video": "Tal og myndmerki", "Roles & Permissions": "Hlutverk og heimildir", - "Help & About": "Hjálp og um hugbúnaðinn", "Reject & Ignore user": "Hafna og hunsa notanda", "Security & Privacy": "Öryggi og gagnaleynd", "Feedback sent": "Umsögn send", @@ -223,7 +220,6 @@ "All settings": "Allar stillingar", "Change notification settings": "Breytta tilkynningastillingum", "You can't send any messages until you review and agree to our terms and conditions.": "Þú getur ekki sent nein skilaboð fyrr en þú hefur farið yfir og samþykkir skilmála okkar.", - "Send a Direct Message": "Senda bein skilaboð", "Send as message": "Senda sem skilaboð", "You can use /help to list available commands. Did you mean to send this as a message?": "Þú getur notað /help til að lista tilteknar skipanir. Ætlaðir þú að senda þetta sem skilaboð?", "Never send encrypted messages to unverified sessions in this room from this session": "Aldrei senda dulrituð skilaboð af þessu tæki til ósannvottaðra tækja á þessari spjallrás úr þessari setu", @@ -338,7 +334,6 @@ "Dog": "Hundur", "Encryption": "Dulritun", "Composer": "Skrifreitur", - "Versions": "Útgáfur", "General": "Almennt", "Demote": "Leggja til baka", "Replying": "Svara", @@ -348,11 +343,8 @@ "%(duration)ss": "%(duration)ss", "Message deleted on %(date)s": "Skilaboð eytt á %(date)s", "Message edits": "Breytingar á skilaboðum", - "Create a Group Chat": "Búa til hópspjall", - "Explore Public Rooms": "Kanna almenningsspjallrásir", "Explore public rooms": "Kanna almenningsspjallrásir", "Welcome to ": "Velkomin í ", - "Welcome to %(appName)s": "Velkomin í %(appName)s", "Search for rooms": "Leita að spjallrásum", "Create a new room": "Búa til nýja spjallrás", "Adding rooms... (%(progress)s out of %(count)s)": { @@ -639,7 +631,6 @@ "The user you called is busy.": "Notandinn sem þú hringdir í er upptekinn.", "User Busy": "Notandi upptekinn", "Use Single Sign On to continue": "Notaðu einfalda innskráningu (single-sign-on) til að halda áfram", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s eða %(usernamePassword)s", "Someone already has that username, please try another.": "Einhver annar er að nota þetta notandanafn, prófaðu eitthvað annað.", "Invite by username": "Bjóða með notandanafni", "Couldn't load page": "Gat ekki hlaðið inn síðu", @@ -654,22 +645,6 @@ "The call could not be established": "Ekki tókst að koma símtalinu á", "Confirm adding this phone number by using Single Sign On to prove your identity.": "Staðfestu viðbætingu þessa símanúmers með því að nota einfalda innskráningu (single-sign-on) til að sanna auðkennið þitt.", "Confirm adding this email address by using Single Sign On to prove your identity.": "Staðfestu viðbætingu þessa tölvupóstfangs með því að nota einfalda innskráningu (single-sign-on) til að sanna auðkennið þitt.", - "Redo edit": "Endurtaka breytingu", - "Activate selected button": "Virkja valinn hnapp", - "Close dialog or context menu": "Loka glugga eða samhengisvalmynd", - "New line": "Ný lína", - "Undo edit": "Afturkalla breytingu", - "Go to Home View": "Fara á forsíðu", - "Upload a file": "Senda inn skrá", - "Toggle webcam on/off": "Víxla vefmyndavél af/á", - "Toggle microphone mute": "Víxla þöggun hljóðnema af/á", - "Toggle Quote": "Víxla tilvitnun af/á", - "Toggle Italics": "Víxla skáletruðu af/á", - "Toggle Bold": "Víxla feitletruðu af/á", - "Autocomplete": "Sjálfvirk orðaklárun", - "Navigation": "Flakk", - "Room List": "Spjallrásalisti", - "Calls": "Símtöl", "Space used:": "Notað geymslupláss:", "Go to Settings": "Fara í stillingar", "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Útflutta skráin verður varin með lykilfrasa. Settu inn lykilfrasann hér til að afkóða skrána.", @@ -934,18 +909,6 @@ "You've reached the maximum number of simultaneous calls.": "Þú hefur náð hámarksfjölda samhliða símtala.", "You cannot place calls without a connection to the server.": "Þú getur ekki hringt símtöl án tengingar við netþjóninn.", "Please ask the administrator of your homeserver (%(homeserverDomain)s) to configure a TURN server in order for calls to work reliably.": "Spurðu kerfisstjóra (%(homeserverDomain)s) heimaþjónsins þíns um að setja upp TURN-þjón til að tryggja að símtöl virki eðlilega.", - "Search (must be enabled)": "Leita (verður að vera virkjað)", - "Toggle space panel": "Víxla svæðaspjaldi af/á", - "Open this settings tab": "Opna þennan stillingaflipa", - "Toggle right panel": "Víxla hægra hliðarspjaldi af/á", - "Toggle the top left menu": "Víxla valmynd efst til vinstri af/á", - "Navigate down in the room list": "Fara niður í spjallrásalista", - "Navigate up in the room list": "Fara upp í spjallrásalista", - "Jump to room search": "Hoppa í leit í spjallrásum", - "Scroll down in the timeline": "Skruna niður í tímalínu", - "Scroll up in the timeline": "Skruna upp í tímalínu", - "Jump to oldest unread message": "Fara í elstu ólesnu skilaboð", - "Cancel replying to a message": "Hætta við að svara skilaboðum", "Failed to add tag %(tagName)s to room": "Mistókst að bæta merkinu %(tagName)s á spjallrás", "Failed to remove tag %(tagName)s from room": "Mistókst að fjarlægja merkið %(tagName)s af spjallrás", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s af %(totalRooms)s", @@ -975,7 +938,6 @@ "Accept all %(invitedRooms)s invites": "Samþykkja alla boðsgesti %(invitedRooms)s", "Room ID or address of ban list": "Auðkenni spjallrásar eða vistfang bannlista", "Ban list rules - %(roomName)s": "Reglur bannlista - %(roomName)s", - "Clear cache and reload": "Hreinsa skyndiminni og endurhlaða", "Loading new room": "Hleð inn nýrri spjallrás", "Upgrading room": "Uppfæri spjallrás", "cached locally": "í staðværu skyndiminni", @@ -1003,7 +965,6 @@ }, "No homeserver URL provided": "Engin slóð heimaþjóns tilgreind", "Cannot reach identity server": "Næ ekki sambandi við auðkennisþjón", - "Send a sticker": "Senda límmerki", "Just me": "Bara ég", "Private space": "Einkasvæði", "Doesn't look like a valid email address": "Þetta lítur ekki út eins og gilt tölvupóstfang", @@ -1073,8 +1034,6 @@ "%(deviceId)s from %(ip)s": "%(deviceId)s frá %(ip)s", "New login. Was this you?": "Ný innskráning. Varst þetta þú?", "Other users may not trust it": "Aðrir notendur gætu ekki treyst því", - "Converts the DM to a room": "Umbreytir beinum skilaboðum yfir í spjallrás", - "Converts the room to a DM": "Umbreytir spjallrás yfir í bein skilaboð", "Define the power level of a user": "Skilgreindu völd notanda", "Failed to set display name": "Mistókst að stilla birtingarnafn", "Sign out devices": { @@ -1124,9 +1083,6 @@ "Unrecognised command: %(commandText)s": "Óþekkt skipun: %(commandText)s", "Server unavailable, overloaded, or something else went wrong.": "Netþjónninn gæti verið undir miklu álagi eða ekki til taks, nú eða að eitthvað hafi farið úrskeiðis.", "My Ban List": "Bannlistinn minn", - "Takes the call in the current room off hold": "Tekur símtalið í fyrirliggjandi spjallrás úr bið", - "No active call in this room": "Ekkert virkt símtal á þessari spjallrás", - "Places the call in the current room on hold": "Setur símtalið í fyrirliggjandi spjallrás í bið", "Keep discussions organised with threads": "Haltu umræðum skipulögðum með spjallþráðum", "Shows all threads from current room": "Birtir alla spjallþræði úr fyrirliggjandi spjallrás", "This room is not public. You will not be able to rejoin without an invite.": "Þessi spjallrás er ekki opinber. Þú munt ekki geta tekið aftur þátt nema að vera boðið.", @@ -1189,10 +1145,6 @@ "Group all your people in one place.": "Hópaðu allt fólk á einum stað.", "Group all your favourite rooms and people in one place.": "Hópaðu allar eftirlætisspjallrásir og fólk á einum stað.", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Til að tilkynna Matrix-tengd öryggisvandamál, skaltu lesa Security Disclosure Policy á matrix.org.", - "Chat with %(brand)s Bot": "Spjalla við %(brand)s vélmenni", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Til að fá aðstoð við að nota %(brand)s, smelltu hér eða byrjaðu að spjalla við vélmennið okkar með hnappnum hér fyrir neðan.", - "For help with using %(brand)s, click here.": "Til að fá aðstoð við að nota %(brand)s, smelltu hér.", - "Olm version:": "Útgáfa olm:", "Account management": "Umsýsla notandaaðgangs", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Samþykktu þjónustuskilmála auðkennisþjónsins (%(serverName)s) svo hægt sé að finna þig með tölvupóstfangi eða símanúmeri.", "Language and region": "Tungumál og landsvæði", @@ -1210,12 +1162,6 @@ "Disconnect from the identity server ?": "Aftengjast frá auðkennisþjóni ?", "Disconnect identity server": "Aftengja auðkennisþjón", "Mirror local video feed": "Spegla staðværu myndmerki", - "Jump to last message": "Fara í síðustu skilaboðin", - "Jump to first message": "Fara í fyrstu skilaboðin", - "Jump to end of the composer": "Hoppa á enda skrifreits", - "Jump to start of the composer": "Hoppa á byrjun skrifreits", - "Navigate to previous message to edit": "Fara í fyrri skilaboð sem á að breyta", - "Navigate to next message to edit": "Fara í næstu skilaboð sem á að breyta", "Spaces you know that contain this room": "Svæði sem þú veist að innihalda þetta svæði", "Spaces you know that contain this space": "Svæði sem þú veist að innihalda þetta svæði", "Pick a date to jump to": "Veldu dagsetningu til að hoppa á", @@ -1233,15 +1179,6 @@ "Jump to first unread room.": "Fara í fyrstu ólesnu spjallrásIna.", "Use a more compact 'Modern' layout": "Nota þjappaðri 'nútímalegri' framsetningu", "Show polls button": "Birta hnapp fyrir kannanir", - "Force complete": "Þvinga klárun", - "Open user settings": "Opna notandastillingar", - "Switch to space by number": "Skipta yfir í spjallrás með númeri", - "Previous room or DM": "Fyrri spjallrás eða bein skilaboð", - "Next room or DM": "Næsta spjallrás eða bein skilaboð", - "Previous unread room or DM": "Fyrri ólesna spjallrás eða bein skilaboð", - "Next unread room or DM": "Næsta ólesna spjallrás eða bein skilaboð", - "Navigate to previous message in composer history": "Fara í næstu skilaboð í ferli skrifreits", - "Navigate to next message in composer history": "Fara í næstu skilaboð í ferli skrifreits", "Generate a Security Key": "Útbúa öryggislykil", "User Autocomplete": "Orðaklárun notanda", "Space Autocomplete": "Orðaklárun svæða", @@ -1295,14 +1232,6 @@ "Make sure the right people have access to %(name)s": "Gakktu úr skugga um að rétta fólkið hafi aðgang að %(name)s", "Who are you working with?": "Hverjum ertu að vinna með?", "Go to my space": "Fara í svæðið mitt", - "Toggle hidden event visibility": "Víxla sýnileika falins atburðar", - "Previous autocomplete suggestion": "Fyrri tillaga sjálfvirkrar orðaklárunar", - "Next autocomplete suggestion": "Næsta tillaga sjálfvirkrar orðaklárunar", - "Cancel autocomplete": "Hætta orðaklárun", - "Expand room list section": "Fletta út hluta spjallrásalista", - "Collapse room list section": "Fella saman hluta spjallrásalista", - "Select room from the room list": "Veldu spjallrás úr spjallrásalistanum", - "Dismiss read marker and jump to bottom": "Hunsa lesmerki og hoppa neðst", "Indexed rooms:": "Spjallrásir í efnisyfirliti:", "Indexed messages:": "Skilaboð í efnisyfirliti:", "Currently indexing: %(currentRoom)s": "Set í efnisyfirlit: %(currentRoom)s", @@ -1320,7 +1249,6 @@ "%(creator)s created and configured the room.": "%(creator)s bjó til og stillti spjallrásina.", "Unable to copy a link to the room to the clipboard.": "Tókst ekki að afrita tengil á spjallrás á klippispjaldið.", "Unable to copy room link": "Tókst ekki að afrita tengil spjallrásar", - "Own your conversations.": "Eigðu samtölin þín.", "No files visible in this room": "Engar skrár sýnilegar á þessari spjallrás", "You must join the room to see its files": "Þú verður að taka þátt í spjallrás til að sjá skrárnar á henni", "Join %(roomAddress)s": "Taka þátt í %(roomAddress)s", @@ -1614,11 +1542,7 @@ "Open dial pad": "Opna talnaborð", "You cancelled": "Þú hættir við", "You accepted": "Þú samþykktir", - "Unable to find Matrix ID for phone number": "Gat ekki fundið Matrix-auðkenni fyrir símanúmer", - "Opens chat with the given user": "Opnar spjall við viðkomandi notanda", "Session already verified!": "Seta er þegar sannreynd!", - "You cannot modify widgets in this room.": "Þú getur ekki sýslað með viðmótshluta á þessari spjallrás.", - "Please supply a https:// or http:// widget URL": "Gefðu upp https:// eða http:// slóð á viðmótshluta", "Deops user with given id": "Tekur stjórnunarréttindi af notanda með uppgefið auðkenni", "Command failed: Unable to find room (%(roomId)s": "Skipun mistókst: Gat ekki fundið spjallrásina (%(roomId)s", "Use an identity server to invite by email. Manage in Settings.": "Notaðu auðkennisþjón til að geta boðið með tölvupósti. Sýslaðu með þetta í stillingunum.", @@ -1630,12 +1554,9 @@ "Confirm Security Phrase": "Staðfestu öryggisfrasa", "Confirm your Security Phrase": "Staðfestu öryggisfrasann þinn", "Enter a Security Phrase": "Settu inn öryggisfrasa", - "Continue with previous account": "Halda áfram með fyrri aðgangi", - "Continue with %(ssoButtons)s": "Halda áfram með %(ssoButtons)s", "Device verified": "Tæki er sannreynt", "Could not load user profile": "Gat ekki hlaðið inn notandasniði", " invites you": " býður þér", - "Add a photo so people know it's you.": "Bættu við mynd, svo fólk viti að þetta sért þú.", "Confirm your identity by entering your account password below.": "Staðfestu auðkennin þín með því að setja inn hér fyrir neðan lykilorðið á aðganginn þinn.", "Country Dropdown": "Fellilisti með löndum", "Collapse reply thread": "Fella saman svarþráð", @@ -1701,7 +1622,6 @@ "Enter your Security Phrase a second time to confirm it.": "Settu aftur inn öryggisfrasann þinn til að staðfesta hann.", "Forgotten your password?": "Gleymdirðu lykilorðinu þínu?", "Failed to re-authenticate": "Tókst ekki að endurauðkenna", - "Host account on": "Hýsa notandaaðgang á", "Failed to remove some rooms. Try again later": "Mistókst að fjarlægja sumar spjallrásir. Reyndu aftur síðar", "Error downloading audio": "Villa við að sækja hljóð", "Failed to start livestream": "Tókst ekki að ræsa beint streymi", @@ -1717,8 +1637,6 @@ "Failed to revoke invite": "Mistókst að afturkalla boð", "Forget this room": "Gleyma þessari spjallrás", "Recovery Method Removed": "Endurheimtuaðferð fjarlægð", - "Registration Successful": "Nýskráning tókst", - "Log in to your new account.": "Skráðu þig inn í nýja notandaaðganginn þinn.", "Skip verification for now": "Sleppa sannvottun í bili", "Verify this device": "Sannreyna þetta tæki", "Search names and descriptions": "Leita í nöfnum og lýsingum", @@ -1727,9 +1645,6 @@ "You're all caught up": "Þú hefur klárað að lesa allt", "Verification requested": "Beðið um sannvottun", "Review terms and conditions": "Yfirfara skilmála og kvaðir", - "Now, let's help you get started": "Hefjumst handa við að koma þér í gang", - "Welcome %(name)s": "Velkomin/n %(name)s", - "Great, that'll help people know it's you": "Frábært, það mun hjálpa fólki að vita að þetta sért þú", "Sign in with SSO": "Skrá inn með einfaldri innskráningu (SSO)", "Token incorrect": "Rangt teikn", "You are sharing your live location": "Þú ert að deila staðsetninu þinni í rauntíma", @@ -1776,7 +1691,6 @@ "not found locally": "fannst ekki á tækinu", "not found in storage": "fannst ekki í geymslu", "Developer tools": "Forritunartól", - "Next recently visited room or space": "Næsta nýlega heimsótt spjallrás eða svæði", "If disabled, messages from encrypted rooms won't appear in search results.": "Ef þetta er óvirkt, munu skilaboð frá dulrituðum spjallrásum ekki birtast í leitarniðurstöðum.", "New Recovery Method": "Ný endurheimtuaðferð", "I'll verify later": "Ég mun sannreyna síðar", @@ -1871,9 +1785,6 @@ "Failed to update the guest access of this space": "Mistókst að uppfæra gestaaðgang þessa svæðis", "Add some details to help people recognise it.": "Bættu við nánari atriðum svo fólk eigi auðveldara með að þekkja þetta.", "To join a space you'll need an invite.": "Til að ganga til liðs við svæði þarftu boð.", - "Previous recently visited room or space": "Fyrra nýlega heimsótt spjallrás eða svæði", - "Toggle Link": "Víxla tengli af/á", - "Toggle Code Block": "Víxla kóðablokk af/á", "Unable to set up secret storage": "Tókst ekki að setja upp leynigeymslu", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Tryggðu þig gegn því að missa aðgang að dulrituðum skilaboðum og gögnum með því að taka öryggisafrit af dulritunarlyklunum á netþjóninum þinum.", "Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "Notaðu leynilegan frasa eða setningu sem aðeins þú þekkir, og útbúðu öryggislykil fyrir öryggisafrit.", @@ -1886,9 +1797,6 @@ "Verify with Security Key": "Sannreyna með öryggislykli", "Verify with Security Key or Phrase": "Sannreyna með öryggisfrasa", "Proceed with reset": "Halda áfram með endurstillingu", - "Decide where your account is hosted": "Ákveddu hvar aðgangurinn þinn er hýstur", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Nýi aðgangurinn þinn (%(newAccountId)s) er skráður, eð þú ert þegar skráð/ur inn á öðrum notandaaðgangi (%(loggedInUserId)s).", - "Already have an account? Sign in here": "Ert þú með aðgang? Skráðu þig inn hér", "This server does not support authentication with a phone number.": "Þessi netþjónn styður ekki auðkenningu með símanúmeri.", "Registration has been disabled on this homeserver.": "Nýskráning hefur verið gerð óvirk á þessum heimaþjóni.", "There was a problem communicating with the homeserver, please try again later.": "Vandamál kom upp í samskiptunum við heimaþjóninn, reyndu aftur síðar.", @@ -1950,7 +1858,6 @@ "That phone number doesn't look quite right, please check and try again": "Þetta símanúmer lítur ekki rétt út, yfirfarðu það og prófaðu svo aftur", "Adding spaces has moved.": "Aðgerðin til að bæta við svæðum hefur verið flutt.", "You are not allowed to view this server's rooms list": "Þú hefur ekki heimild til að skoða spjallrásalistann á þessum netþjóni", - "Your access token gives full access to your account. Do not share it with anyone.": "Aðgangsteiknið þitt gefur fullan aðgang að notandaaðgangnum þínum. Ekki deila því með neinum.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "Aðgangurinn þinn er með auðkenni kross-undirritunar í leynigeymslu, en þessu er ekki ennþá treyst í þessari setu.", "Safeguard against losing access to encrypted messages & data": "Tryggðu þig gegn því að missa aðgang að dulrituðum skilaboðum og gögnum", "Unable to query secret storage status": "Tókst ekki að finna stöðu á leynigeymslu", @@ -2052,9 +1959,6 @@ "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s hefur ekki heimildir til að ná í staðsetninguna þína. Leyfðu aðgang að staðsetningum í stillingum vafrans þíns.", "They won't be able to access whatever you're not an admin of.": "Viðkomandi munu ekki hafa aðgang að því sem þú ert ekki stjórnandi fyrir.", "They'll still be able to access whatever you're not an admin of.": "Viðkomandi munu eftir sem áður hafa aðgang að hverju því sem þú ert ekki stjórnandi fyrir.", - "No virtual room for this room": "Engin sýndarspjallrás fyrir þessa spjallrás", - "Switches to this room's virtual room, if it has one": "Skiptir yfir í sýndarspjallrás þessarar spjallrásar, ef hún er til staðar", - "Please supply a widget URL or embed code": "Gefðu upp slóð á viðmótshluta eða ívefðu kóða", "Ban them from specific things I'm able to": "Banna viðkomandi frá því að gera tiltekna hluti sem ég get gert", "Unban them from specific things I'm able to": "Afturkalla bann viðkomandi frá því að gera tiltekna hluti sem ég get gert", "Ban them from everything I'm able to": "Banna viðkomandi frá því að gera allt það sem ég get gert", @@ -2678,7 +2582,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[tala]", - "backspace": "Baklykill (backspace)" + "backspace": "Baklykill (backspace)", + "category_calls": "Símtöl", + "category_room_list": "Spjallrásalisti", + "category_navigation": "Flakk", + "category_autocomplete": "Sjálfvirk orðaklárun", + "composer_toggle_bold": "Víxla feitletruðu af/á", + "composer_toggle_italics": "Víxla skáletruðu af/á", + "composer_toggle_quote": "Víxla tilvitnun af/á", + "composer_toggle_code_block": "Víxla kóðablokk af/á", + "composer_toggle_link": "Víxla tengli af/á", + "cancel_reply": "Hætta við að svara skilaboðum", + "navigate_next_message_edit": "Fara í næstu skilaboð sem á að breyta", + "navigate_prev_message_edit": "Fara í fyrri skilaboð sem á að breyta", + "composer_jump_start": "Hoppa á byrjun skrifreits", + "composer_jump_end": "Hoppa á enda skrifreits", + "composer_navigate_next_history": "Fara í næstu skilaboð í ferli skrifreits", + "composer_navigate_prev_history": "Fara í næstu skilaboð í ferli skrifreits", + "send_sticker": "Senda límmerki", + "toggle_microphone_mute": "Víxla þöggun hljóðnema af/á", + "toggle_webcam_mute": "Víxla vefmyndavél af/á", + "dismiss_read_marker_and_jump_bottom": "Hunsa lesmerki og hoppa neðst", + "jump_to_read_marker": "Fara í elstu ólesnu skilaboð", + "upload_file": "Senda inn skrá", + "scroll_up_timeline": "Skruna upp í tímalínu", + "scroll_down_timeline": "Skruna niður í tímalínu", + "jump_room_search": "Hoppa í leit í spjallrásum", + "room_list_select_room": "Veldu spjallrás úr spjallrásalistanum", + "room_list_collapse_section": "Fella saman hluta spjallrásalista", + "room_list_expand_section": "Fletta út hluta spjallrásalista", + "room_list_navigate_down": "Fara niður í spjallrásalista", + "room_list_navigate_up": "Fara upp í spjallrásalista", + "toggle_top_left_menu": "Víxla valmynd efst til vinstri af/á", + "toggle_right_panel": "Víxla hægra hliðarspjaldi af/á", + "keyboard_shortcuts_tab": "Opna þennan stillingaflipa", + "go_home_view": "Fara á forsíðu", + "next_unread_room": "Næsta ólesna spjallrás eða bein skilaboð", + "prev_unread_room": "Fyrri ólesna spjallrás eða bein skilaboð", + "next_room": "Næsta spjallrás eða bein skilaboð", + "prev_room": "Fyrri spjallrás eða bein skilaboð", + "autocomplete_cancel": "Hætta orðaklárun", + "autocomplete_navigate_next": "Næsta tillaga sjálfvirkrar orðaklárunar", + "autocomplete_navigate_prev": "Fyrri tillaga sjálfvirkrar orðaklárunar", + "toggle_space_panel": "Víxla svæðaspjaldi af/á", + "toggle_hidden_events": "Víxla sýnileika falins atburðar", + "jump_first_message": "Fara í fyrstu skilaboðin", + "jump_last_message": "Fara í síðustu skilaboðin", + "composer_undo": "Afturkalla breytingu", + "composer_redo": "Endurtaka breytingu", + "navigate_prev_history": "Fyrra nýlega heimsótt spjallrás eða svæði", + "navigate_next_history": "Næsta nýlega heimsótt spjallrás eða svæði", + "switch_to_space": "Skipta yfir í spjallrás með númeri", + "open_user_settings": "Opna notandastillingar", + "close_dialog_menu": "Loka glugga eða samhengisvalmynd", + "activate_button": "Virkja valinn hnapp", + "composer_new_line": "Ný lína", + "autocomplete_force": "Þvinga klárun", + "search": "Leita (verður að vera virkjað)" }, "composer": { "format_bold": "Feitletrað", @@ -2791,7 +2751,16 @@ "download_google_play": "Ná í á Google Play", "download_f_droid": "Ná í á F-Droid", "apple_trademarks": "App Store® og Apple logo® eru vörumerki í eigu Apple Inc.", - "google_trademarks": "Google Play og Google Play táknmerkið eru vörumerki í eigu Google LLC." + "google_trademarks": "Google Play og Google Play táknmerkið eru vörumerki í eigu Google LLC.", + "has_avatar_label": "Frábært, það mun hjálpa fólki að vita að þetta sért þú", + "no_avatar_label": "Bættu við mynd, svo fólk viti að þetta sért þú.", + "welcome_user": "Velkomin/n %(name)s", + "welcome_detail": "Hefjumst handa við að koma þér í gang", + "intro_welcome": "Velkomin í %(appName)s", + "intro_byline": "Eigðu samtölin þín.", + "send_dm": "Senda bein skilaboð", + "explore_rooms": "Kanna almenningsspjallrásir", + "create_room": "Búa til hópspjall" }, "settings": { "show_breadcrumbs": "Sýna flýtileiðir í nýskoðaðar spjallrásir fyrir ofan listann yfir spjallrásir", @@ -3284,7 +3253,20 @@ "category_admin": "Stjórnandi", "category_advanced": "Nánar", "category_effects": "Brellur", - "category_other": "Annað" + "category_other": "Annað", + "addwidget_missing_url": "Gefðu upp slóð á viðmótshluta eða ívefðu kóða", + "addwidget_invalid_protocol": "Gefðu upp https:// eða http:// slóð á viðmótshluta", + "addwidget_no_permissions": "Þú getur ekki sýslað með viðmótshluta á þessari spjallrás.", + "converttodm": "Umbreytir spjallrás yfir í bein skilaboð", + "converttoroom": "Umbreytir beinum skilaboðum yfir í spjallrás", + "tovirtual": "Skiptir yfir í sýndarspjallrás þessarar spjallrásar, ef hún er til staðar", + "tovirtual_not_found": "Engin sýndarspjallrás fyrir þessa spjallrás", + "query": "Opnar spjall við viðkomandi notanda", + "query_not_found_phone_number": "Gat ekki fundið Matrix-auðkenni fyrir símanúmer", + "holdcall": "Setur símtalið í fyrirliggjandi spjallrás í bið", + "no_active_call": "Ekkert virkt símtal á þessari spjallrás", + "unholdcall": "Tekur símtalið í fyrirliggjandi spjallrás úr bið", + "me": "Birtir aðgerð" }, "presence": { "busy": "Upptekinn", @@ -3460,7 +3442,16 @@ "sign_in_with_sso": "Skrá inn með einfaldri innskráningu (single sign-on)", "sso": "Einföld innskráning (single-sign-on)", "reset_password_action": "Endurstilla lykilorð", - "reset_password_title": "Endurstilltu lykilorðið þitt" + "reset_password_title": "Endurstilltu lykilorðið þitt", + "continue_with_sso": "Halda áfram með %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s eða %(usernamePassword)s", + "sign_in_instead": "Ert þú með aðgang? Skráðu þig inn hér", + "account_clash": "Nýi aðgangurinn þinn (%(newAccountId)s) er skráður, eð þú ert þegar skráð/ur inn á öðrum notandaaðgangi (%(loggedInUserId)s).", + "account_clash_previous_account": "Halda áfram með fyrri aðgangi", + "log_in_new_account": "Skráðu þig inn í nýja notandaaðganginn þinn.", + "registration_successful": "Nýskráning tókst", + "server_picker_title": "Hýsa notandaaðgang á", + "server_picker_dialog_title": "Ákveddu hvar aðgangurinn þinn er hýstur" }, "room_list": { "sort_unread_first": "Birta spjallrásir með ólesnum skilaboðum fyrst", @@ -3492,5 +3483,18 @@ "report_entire_room": "Kæra alla spjallrásina", "report_content_to_homeserver": "Kæra efni til kerfisstjóra heimaþjónsins þíns", "description": "Tilkynning um þessi skilaboð mun senda einstakt 'atviksauðkenni' til stjórnanda heimaþjóns. Ef skilaboð í þessari spjallrás eru dulrituð getur stjórnandi heimaþjóns ekki lesið skilaboðatextann eða skoðað skrár eða myndir." + }, + "setting": { + "help_about": { + "brand_version": "Útgáfa %(brand)s:", + "olm_version": "Útgáfa olm:", + "help_link": "Til að fá aðstoð við að nota %(brand)s, smelltu hér.", + "help_link_chat_bot": "Til að fá aðstoð við að nota %(brand)s, smelltu hér eða byrjaðu að spjalla við vélmennið okkar með hnappnum hér fyrir neðan.", + "chat_bot": "Spjalla við %(brand)s vélmenni", + "title": "Hjálp og um hugbúnaðinn", + "versions": "Útgáfur", + "access_token_detail": "Aðgangsteiknið þitt gefur fullan aðgang að notandaaðgangnum þínum. Ekki deila því með neinum.", + "clear_cache_reload": "Hreinsa skyndiminni og endurhlaða" + } } } diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json index c66c01d7be..de72ea9d3c 100644 --- a/src/i18n/strings/it.json +++ b/src/i18n/strings/it.json @@ -235,7 +235,6 @@ "No media permissions": "Nessuna autorizzazione per i media", "Email": "Email", "Profile": "Profilo", - "%(brand)s version:": "versione %(brand)s:", "The email address linked to your account must be entered.": "Deve essere inserito l'indirizzo email collegato al tuo account.", "A new password must be entered.": "Deve essere inserita una nuova password.", "New passwords must match each other.": "Le nuove password devono coincidere.", @@ -245,7 +244,6 @@ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Impossibile connettersi all'homeserver via HTTP quando c'è un URL HTTPS nella barra del tuo browser. Usa HTTPS o attiva gli script non sicuri.", "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.": "Impossibile connettersi all'homeserver - controlla la tua connessione, assicurati che il certificato SSL dell'homeserver sia fidato e che un'estensione del browser non stia bloccando le richieste.", "This server does not support authentication with a phone number.": "Questo server non supporta l'autenticazione tramite numero di telefono.", - "Displays action": "Mostra l'azione", "Define the power level of a user": "Definisce il livello di poteri di un utente", "Deops user with given id": "Toglie privilegi all'utente per ID", "Commands": "Comandi", @@ -345,7 +343,6 @@ "Your message wasn't sent because this homeserver has exceeded a resource limit. Please contact your service administrator to continue using the service.": "Il tuo messaggio non è stato inviato perché questo homeserver ha oltrepassato un limite di risorse. Contatta l'amministratore del servizio per continuare ad usarlo.", "Please contact your service administrator to continue using this service.": "Contatta l'amministratore del servizio per continuare ad usarlo.", "Please contact your homeserver administrator.": "Contatta l'amministratore del tuo homeserver.", - "Forces the current outbound group session in an encrypted room to be discarded": "Forza l'eliminazione dell'attuale sessione di gruppo in uscita in una stanza criptata", "This room has been replaced and is no longer active.": "Questa stanza è stata sostituita e non è più attiva.", "The conversation continues here.": "La conversazione continua qui.", "This room is a continuation of another conversation.": "Questa stanza è la continuazione di un'altra conversazione.", @@ -508,11 +505,6 @@ "Language and region": "Lingua e regione", "Account management": "Gestione account", "General": "Generale", - "For help with using %(brand)s, click here.": "Per aiuto su come usare %(brand)s, clicca qui.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Per aiuto su come usare %(brand)s, clicca qui o inizia una chat con il nostro bot usando il pulsante sotto.", - "Chat with %(brand)s Bot": "Chatta con %(brand)s Bot", - "Help & About": "Aiuto e informazioni", - "Versions": "Versioni", "Composer": "Compositore", "Room list": "Elenco stanze", "Autocomplete delay (ms)": "Ritardo autocompletamento (ms)", @@ -565,8 +557,6 @@ "Success!": "Completato!", "Recovery Method Removed": "Metodo di ripristino rimosso", "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 non hai rimosso il metodo di ripristino, è possibile che un aggressore stia cercando di accedere al tuo account. Cambia la password del tuo account e imposta immediatamente un nuovo metodo di recupero nelle impostazioni.", - "Please supply a https:// or http:// widget URL": "Fornisci un URL https:// o http:// per il widget", - "You cannot modify widgets in this room.": "Non puoi modificare i widget in questa stanza.", "Upgrade this room to the recommended room version": "Aggiorna questa stanza alla versione consigliata", "This room is running room version , which this homeserver has marked as unstable.": "La versione di questa stanza è , che questo homeserver ha segnalato come non stabile.", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Aggiornare questa stanza spegnerà l'istanza attuale della stanza e ne creerà una aggiornata con lo stesso nome.", @@ -657,10 +647,6 @@ "Unexpected error resolving identity server configuration": "Errore inaspettato risolvendo la configurazione del server identità", "Use lowercase letters, numbers, dashes and underscores only": "Usa solo minuscole, numeri, trattini e trattini bassi", "Upload all": "Invia tutto", - "Log in to your new account.": "Accedi al tuo nuovo account.", - "Registration Successful": "Registrazione riuscita", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Il tuo nuovo account (%(newAccountId)s) è registrato, ma hai già fatto l'accesso in un account diverso (%(loggedInUserId)s).", - "Continue with previous account": "Continua con l'account precedente", "Edited at %(date)s. Click to view edits.": "Modificato alle %(date)s. Clicca per vedere le modifiche.", "Message edits": "Modifiche del messaggio", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Per aggiornare questa stanza devi chiudere l'istanza attuale e creare una nuova stanza al suo posto. Per offrire la migliore esperienza possibile ai membri della stanza:", @@ -756,7 +742,6 @@ "Hide advanced": "Nascondi avanzate", "Show advanced": "Mostra avanzate", "Explore rooms": "Esplora stanze", - "Clear cache and reload": "Svuota la cache e ricarica", "Show image": "Mostra immagine", "To continue you need to accept the terms of this service.": "Per continuare devi accettare le condizioni di servizio.", "Document": "Documento", @@ -1016,27 +1001,9 @@ "Cancelled signature upload": "Invio della firma annullato", "Signature upload success": "Firma inviata correttamente", "Signature upload failed": "Invio della firma fallito", - "Navigation": "Navigazione", - "Calls": "Chiamate", - "Room List": "Elenco stanze", - "Autocomplete": "Autocompletamento", - "Toggle Bold": "Grassetto sì/no", - "Toggle Italics": "Corsivo sì/no", - "Toggle Quote": "Attiva/disattiva citazione", - "New line": "Nuova riga", - "Toggle microphone mute": "Attiva/disattiva microfono", - "Jump to room search": "Salta alla ricerca stanze", - "Select room from the room list": "Seleziona stanza dall'elenco stanze", - "Collapse room list section": "Riduci sezione elenco stanze", - "Expand room list section": "Espandi sezione elenco stanze", - "Toggle the top left menu": "Attiva/disattiva menu in alto a sinistra", - "Close dialog or context menu": "Chiudi finestra o menu contestuale", - "Activate selected button": "Attiva pulsante selezionato", - "Cancel autocomplete": "Annulla autocompletamento", "Confirm by comparing the following with the User Settings in your other session:": "Conferma confrontando il seguente con le impostazioni utente nell'altra sessione:", "Confirm this user's session by comparing the following with their User Settings:": "Conferma questa sessione confrontando il seguente con le sue impostazioni utente:", "If they don't match, the security of your communication may be compromised.": "Se non corrispondono, la sicurezza delle tue comunicazioni potrebbe essere compromessa.", - "Toggle right panel": "Apri/chiudi pannello a destra", "Manually verify all remote sessions": "Verifica manualmente tutte le sessioni remote", "Self signing private key:": "Chiave privata di auto-firma:", "cached locally": "in cache locale", @@ -1045,7 +1012,6 @@ "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Verifica individualmente ogni sessione usata da un utente per segnarla come fidata, senza fidarsi dei dispositivi a firma incrociata.", "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "Nelle stanze cifrate, i tuoi messaggi sono protetti e solo tu ed il destinatario avete le chiavi univoche per sbloccarli.", "Verify all users in a room to ensure it's secure.": "Verifica tutti gli utenti in una stanza per confermare che sia sicura.", - "Cancel replying to a message": "Annulla la risposta a un messaggio", "Sign in with SSO": "Accedi con SSO", "Use Single Sign On to continue": "Usa Single Sign On per continuare", "Confirm adding this email address by using Single Sign On to prove your identity.": "Conferma aggiungendo questa email usando Single Sign On per provare la tua identità.", @@ -1071,13 +1037,8 @@ "Server did not require any authentication": "Il server non ha richiesto alcuna autenticazione", "Server did not return valid authentication information.": "Il server non ha restituito informazioni di autenticazione valide.", "There was a problem communicating with the server. Please try again.": "C'è stato un problema nella comunicazione con il server. Riprova.", - "Welcome to %(appName)s": "Benvenuti su %(appName)s", - "Send a Direct Message": "Invia un messaggio diretto", - "Explore Public Rooms": "Esplora le stanze pubbliche", - "Create a Group Chat": "Crea una chat di gruppo", "Could not find user in room": "Utente non trovato nella stanza", "If you've joined lots of rooms, this might take a while": "Se sei dentro a molte stanze, potrebbe impiegarci un po'", - "Please supply a widget URL or embed code": "Inserisci un URL del widget o un codice di incorporamento", "Can't load this message": "Impossibile caricare questo messaggio", "Submit logs": "Invia registri", "Reminder: Your browser is unsupported, so your experience may be unpredictable.": "Promemoria: il tuo browser non è supportato, perciò la tua esperienza può essere imprevedibile.", @@ -1091,16 +1052,12 @@ "Successfully restored %(sessionCount)s keys": "Ripristinate %(sessionCount)s chiavi correttamente", "You signed in to a new session without verifying it:": "Hai fatto l'accesso ad una nuova sessione senza verificarla:", "Verify your other session using one of the options below.": "Verifica la tua altra sessione usando una delle opzioni sotto.", - "Opens chat with the given user": "Apre una chat con l'utente specificato", "You've successfully verified your device!": "Hai verificato correttamente il tuo dispositivo!", "To continue, use Single Sign On to prove your identity.": "Per continuare, usa Single Sign On per provare la tua identità.", "Confirm to continue": "Conferma per continuare", "Click the button below to confirm your identity.": "Clicca il pulsante sotto per confermare la tua identità.", "Confirm encryption setup": "Conferma impostazione crittografia", "Click the button below to confirm setting up encryption.": "Clicca il pulsante sotto per confermare l'impostazione della crittografia.", - "Dismiss read marker and jump to bottom": "Scarta il segno di lettura e salta alla fine", - "Jump to oldest unread message": "Salta al messaggio non letto più vecchio", - "Upload a file": "Invia un file", "IRC display name width": "Larghezza nome di IRC", "Size must be a number": "La dimensione deve essere un numero", "Custom font size can only be between %(min)s pt and %(max)s pt": "La dimensione del carattere personalizzata può solo essere tra %(min)s pt e %(max)s pt", @@ -1235,10 +1192,6 @@ "Please view existing bugs on Github first. No match? Start a new one.": "Prima controlla gli errori esistenti su Github. Non l'hai trovato? Apri una segnalazione.", "Comment": "Commento", "Feedback sent": "Feedback inviato", - "Now, let's help you get started": "Alcuni consigli per iniziare", - "Welcome %(name)s": "Benvenuto/a %(name)s", - "Add a photo so people know it's you.": "Aggiungi una foto in modo che le persone ti riconoscano.", - "Great, that'll help people know it's you": "Ottimo, ciò aiuterà le persone a capire che sei tu", "Invite someone using their name, email address, username (like ) or share this room.": "Invita qualcuno usando il suo nome, indirizzo email, nome utente (come ) o condividi questa stanza.", "Start a conversation with someone using their name, email address or username (like ).": "Inizia una conversazione con qualcuno usando il suo nome, indirizzo email o nome utente (come ).", "Invite by email": "Invita per email", @@ -1257,8 +1210,6 @@ "Topic: %(topic)s (edit)": "Argomento: %(topic)s (modifica)", "This is the beginning of your direct message history with .": "Questo è l'inizio della tua cronologia di messaggi diretti con .", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "Solo voi due siete in questa conversazione, a meno che uno di voi non inviti qualcuno.", - "Takes the call in the current room off hold": "Riprende la chiamata nella stanza attuale", - "Places the call in the current room on hold": "Mette in pausa la chiamata nella stanza attuale", "Zimbabwe": "Zimbabwe", "Zambia": "Zambia", "Yemen": "Yemen", @@ -1508,7 +1459,6 @@ "Afghanistan": "Afghanistan", "United States": "Stati Uniti", "United Kingdom": "Regno Unito", - "Go to Home View": "Vai alla vista home", "Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": { "one": "Salva in cache i messaggi cifrati localmente in modo che appaiano nei risultati di ricerca, usando %(size)s per salvarli da %(rooms)s stanza.", "other": "Salva in cache i messaggi cifrati localmente in modo che appaiano nei risultati di ricerca, usando %(size)s per salvarli da %(rooms)s stanze." @@ -1549,11 +1499,6 @@ "Send stickers into this room": "Invia adesivi in questa stanza", "Remain on your screen while running": "Resta sul tuo schermo mentre in esecuzione", "Remain on your screen when viewing another room, when running": "Resta sul tuo schermo quando vedi un'altra stanza, quando in esecuzione", - "Decide where your account is hosted": "Decidi dove ospitare il tuo account", - "Host account on": "Ospita account su", - "Already have an account? Sign in here": "Hai già un account? Accedi qui", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s o %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Continua con %(ssoButtons)s", "New? Create account": "Prima volta? Crea un account", "There was a problem communicating with the homeserver, please try again later.": "C'è stato un problema nella comunicazione con l'homeserver, riprova più tardi.", "New here? Create an account": "Prima volta qui? Crea un account", @@ -1634,11 +1579,8 @@ "Channel: ": "Canale: ", "Workspace: ": "Spazio di lavoro: ", "Change which room, message, or user you're viewing": "Cambia quale stanza, messaggio o utente stai vedendo", - "Converts the room to a DM": "Converte la stanza in un MD", - "Converts the DM to a room": "Converte il MD in una stanza", "Use app for a better experience": "Usa l'app per un'esperienza migliore", "Use app": "Usa l'app", - "Search (must be enabled)": "Cerca (deve essere attivato)", "Allow this widget to verify your identity": "Permetti a questo widget di verificare la tua identità", "The widget will verify your user ID, but won't be able to perform actions for you:": "Il widget verificherà il tuo ID utente, ma non sarà un grado di eseguire azioni per te:", "Remember this": "Ricordalo", @@ -1780,7 +1722,6 @@ "No microphone found": "Nessun microfono trovato", "We were unable to access your microphone. Please check your browser settings and try again.": "Non abbiamo potuto accedere al tuo microfono. Controlla le impostazioni del browser e riprova.", "Unable to access your microphone": "Impossibile accedere al microfono", - "Your access token gives full access to your account. Do not share it with anyone.": "Il tuo token di accesso ti dà l'accesso al tuo account. Non condividerlo con nessuno.", "Please enter a name for the space": "Inserisci un nome per lo spazio", "Connecting": "In connessione", "Search names and descriptions": "Cerca nomi e descrizioni", @@ -1940,7 +1881,6 @@ "Call declined": "Chiamata rifiutata", "Stop recording": "Ferma la registrazione", "Send voice message": "Invia messaggio vocale", - "Olm version:": "Versione Olm:", "More": "Altro", "Show sidebar": "Mostra barra laterale", "Hide sidebar": "Nascondi barra laterale", @@ -1961,7 +1901,6 @@ "The above, but in as well": "Quanto sopra, ma anche in ", "Some encryption parameters have been changed.": "Alcuni parametri di crittografia sono stati modificati.", "Role in ": "Ruolo in ", - "Send a sticker": "Invia uno sticker", "Unknown failure": "Errore sconosciuto", "Failed to update the join rules": "Modifica delle regole di accesso fallita", "Anyone in can find and join. You can select other spaces too.": "Chiunque in può trovare ed entrare. Puoi selezionare anche altri spazi.", @@ -2067,7 +2006,6 @@ "You do not have permission to start polls in this room.": "Non hai i permessi per creare sondaggi in questa stanza.", "Copy link to thread": "Copia link nella conversazione", "Thread options": "Opzioni conversazione", - "Own your conversations.": "Prendi il controllo delle tue conversazioni.", "Someone already has that username, please try another.": "Qualcuno ha già quel nome utente, provane un altro.", "Someone already has that username. Try another or if it is you, sign in below.": "Qualcuno ha già quel nome utente. Provane un altro o se sei tu, accedi qui sotto.", "Rooms outside of a space": "Stanze fuori da uno spazio", @@ -2135,7 +2073,6 @@ "That's fine": "Va bene", "You cannot place calls without a connection to the server.": "Non puoi fare chiamate senza una connessione al server.", "Connectivity to the server has been lost": "La connessione al server è stata persa", - "Toggle space panel": "Apri/chiudi pannello spazio", "End Poll": "Termina sondaggio", "Sorry, the poll did not end. Please try again.": "Spiacenti, il sondaggio non è terminato. Riprova.", "Failed to end poll": "Chiusura del sondaggio fallita", @@ -2182,8 +2119,6 @@ "Back to thread": "Torna alla conversazione", "Room members": "Membri stanza", "Back to chat": "Torna alla chat", - "No active call in this room": "Nessuna chiamata attiva in questa stanza", - "Unable to find Matrix ID for phone number": "Impossibile trovare ID Matrix per il numero di telefono", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Coppia (utente, sessione) sconosciuta: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Comando fallito: impossibile trovare la stanza (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Indirizzo stanza non riconosciuto: %(roomAlias)s", @@ -2195,7 +2130,6 @@ "Could not fetch location": "Impossibile rilevare la posizione", "From a thread": "Da una conversazione", "Automatically send debug logs on decryption errors": "Invia automaticamente log di debug per errori di decifrazione", - "Open this settings tab": "Apri questa scheda di impostazioni", "Remove from room": "Rimuovi dalla stanza", "Failed to remove user": "Rimozione utente fallita", "Remove them from specific things I'm able to": "Rimuovilo da cose specifiche dove posso farlo", @@ -2212,35 +2146,12 @@ "Encrypted messages before this point are unavailable.": "I messaggi cifrati prima di questo punto non sono disponibili.", "You don't have permission to view messages from before you joined.": "Non hai l'autorizzazione per vedere i messaggi precedenti alla tua entrata.", "You don't have permission to view messages from before you were invited.": "Non hai l'autorizzazione per vedere i messaggi precedenti al tuo invito.", - "Previous autocomplete suggestion": "Precedente suggerimento di autocompletamento", - "Next autocomplete suggestion": "Prossimo suggerimento di autocompletamento", - "Previous room or DM": "Precedente stanza o msg", - "Next room or DM": "Prossima stanza o msg", - "Previous unread room or DM": "Precedente stanza o msg non letto", - "Next unread room or DM": "Prossima stanza o msg non letto", - "Navigate down in the room list": "Naviga in giù nell'elenco stanze", - "Navigate up in the room list": "Naviga in su nell'elenco stanze", - "Scroll down in the timeline": "Scorri in giù nella linea temporale", - "Scroll up in the timeline": "Scorri in su nella linea temporale", - "Toggle webcam on/off": "Attiva/disattiva webcam", - "Navigate to previous message in composer history": "Vai al precedente messaggio nella cronologia del compositore", - "Navigate to next message in composer history": "Vai al prossimo messaggio nella cronologia del compositore", - "Jump to end of the composer": "Salta alla fine del compositore", - "Jump to start of the composer": "Salta all'inizio del compositore", - "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", "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.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Gli spazi sono modi per raggruppare stanze e persone. Oltre agli spazi in cui sei, puoi usarne anche altri di preimpostati.", "Unable to check if username has been taken. Try again later.": "Impossibile controllare se il nome utente è già in uso. Riprova più tardi.", - "Toggle hidden event visibility": "Cambia visibilità evento nascosto", - "Redo edit": "Ripeti modifica", - "Force complete": "Forza completamento", - "Undo edit": "Annulla modifica", - "Jump to last message": "Salta all'ultimo messaggio", - "Jump to first message": "Salta al primo messaggio", "Pick a date to jump to": "Scegli una data in cui saltare", "Jump to date": "Salta alla data", "The beginning of the room": "L'inizio della stanza", @@ -2267,16 +2178,12 @@ "Poll type": "Tipo sondaggio", "Results will be visible when the poll is ended": "I risultati saranno visibili quando il sondaggio è terminato", "Open thread": "Apri conversazione", - "Open user settings": "Apri impostazioni utente", - "Switch to space by number": "Passa allo spazio per numero", "Search Dialog": "Finestra di ricerca", "What location type do you want to share?": "Che tipo di posizione vuoi condividere?", "Drop a Pin": "Lascia una puntina", "My live location": "La mia posizione in tempo reale", "My current location": "La mia posizione attuale", "Pinned": "Fissato", - "No virtual room for this room": "Nessuna stanza virtuale per questa stanza", - "Switches to this room's virtual room, if it has one": "Passa alla stanza virtuale di questa stanza, se ne ha una", "Match system": "Sistema di corrispondenza", "%(brand)s could not send your location. Please try again later.": "%(brand)s non ha potuto inviare la tua posizione. Riprova più tardi.", "We couldn't send your location": "Non siamo riusciti ad inviare la tua posizione", @@ -2295,8 +2202,6 @@ "Shared their location: ": "Ha condiviso la sua posizione: ", "Unable to load map": "Impossibile caricare la mappa", "Can't create a thread from an event with an existing relation": "Impossibile creare una conversazione da un evento con una relazione esistente", - "Toggle Link": "Attiva/disattiva collegamento", - "Toggle Code Block": "Attiva/disattiva blocco di codice", "You are sharing your live location": "Stai condividendo la tua posizione in tempo reale", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Deseleziona se vuoi rimuovere anche i messaggi di sistema per questo utente (es. cambiamenti di sottoscrizione, modifiche al profilo…)", "Preserve system messages": "Conserva i messaggi di sistema", @@ -2310,8 +2215,6 @@ "one": "Rimozione di messaggi in corso in %(count)s stanza", "other": "Rimozione di messaggi in corso in %(count)s stanze" }, - "Next recently visited room or space": "Successiva stanza o spazio visitati di recente", - "Previous recently visited room or space": "Precedente stanza o spazio visitati di recente", "Unsent": "Non inviato", "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.": "Puoi usare le opzioni server personalizzate per accedere ad altri server Matrix specificando un URL homeserver diverso. Ciò ti permette di usare %(brand)s con un account Matrix esistente su un homeserver differente.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s non ha l'autorizzazione per rilevare la tua posizione. Consenti l'accesso alla posizione nelle impostazioni del browser.", @@ -2475,7 +2378,6 @@ }, "In %(spaceName)s.": "Nello spazio %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "Negli spazi %(space1Name)s e %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Comando sviluppatore: scarta l'attuale sessione di gruppo in uscita e imposta nuove sessioni Olm", "You're in": "Sei dentro", "Online community members": "Membri di comunità online", "Coworkers and teams": "Colleghi e squadre", @@ -2781,8 +2683,6 @@ "Answered elsewhere": "Risposto altrove", "The sender has blocked you from receiving this message": "Il mittente ti ha bloccato dalla ricezione di questo messaggio", "Room directory": "Elenco delle stanze", - "Identity server is %(identityServerUrl)s": "Il server d'identità è %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "L'homeserver è %(homeserverUrl)s", "If you know a room address, try joining through that instead.": "Se conosci un indirizzo della stanza, prova ad entrare tramite quello.", "You attempted to join using a room ID without providing a list of servers to join through. Room IDs are internal identifiers and cannot be used to join a room without additional information.": "Hai provato ad entrare usando un ID stanza senza fornire una lista di server attraverso cui entrare. Gli ID stanza sono identificativi interni e non possono essere usati per entrare in una stanza senza informazioni aggiuntive.", "Yes, it was me": "Sì, ero io", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Ignora (%(counter)s)", "Invites by email can only be sent one at a time": "Gli inviti per email possono essere inviati uno per volta", "Once everyone has joined, you’ll be able to chat": "Una volta che tutti si saranno uniti, potrete scrivervi", - "Could not find room": "Stanza non trovata", - "iframe has no src attribute": "L'iframe non ha l'attributo src", "Desktop app logo": "Logo app desktop", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Si è verificato un errore aggiornando le tue preferenze di notifica. Prova ad attivare/disattivare di nuovo l'opzione.", "Log out and back in to disable": "Disconnettiti e riconnettiti per disattivare", @@ -3200,7 +3098,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[numero]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Chiamate", + "category_room_list": "Elenco stanze", + "category_navigation": "Navigazione", + "category_autocomplete": "Autocompletamento", + "composer_toggle_bold": "Grassetto sì/no", + "composer_toggle_italics": "Corsivo sì/no", + "composer_toggle_quote": "Attiva/disattiva citazione", + "composer_toggle_code_block": "Attiva/disattiva blocco di codice", + "composer_toggle_link": "Attiva/disattiva collegamento", + "cancel_reply": "Annulla la risposta a un messaggio", + "navigate_next_message_edit": "Vai al prossimo messaggio da modificare", + "navigate_prev_message_edit": "Vai al precedente messaggio da modificare", + "composer_jump_start": "Salta all'inizio del compositore", + "composer_jump_end": "Salta alla fine del compositore", + "composer_navigate_next_history": "Vai al prossimo messaggio nella cronologia del compositore", + "composer_navigate_prev_history": "Vai al precedente messaggio nella cronologia del compositore", + "send_sticker": "Invia uno sticker", + "toggle_microphone_mute": "Attiva/disattiva microfono", + "toggle_webcam_mute": "Attiva/disattiva webcam", + "dismiss_read_marker_and_jump_bottom": "Scarta il segno di lettura e salta alla fine", + "jump_to_read_marker": "Salta al messaggio non letto più vecchio", + "upload_file": "Invia un file", + "scroll_up_timeline": "Scorri in su nella linea temporale", + "scroll_down_timeline": "Scorri in giù nella linea temporale", + "jump_room_search": "Salta alla ricerca stanze", + "room_list_select_room": "Seleziona stanza dall'elenco stanze", + "room_list_collapse_section": "Riduci sezione elenco stanze", + "room_list_expand_section": "Espandi sezione elenco stanze", + "room_list_navigate_down": "Naviga in giù nell'elenco stanze", + "room_list_navigate_up": "Naviga in su nell'elenco stanze", + "toggle_top_left_menu": "Attiva/disattiva menu in alto a sinistra", + "toggle_right_panel": "Apri/chiudi pannello a destra", + "keyboard_shortcuts_tab": "Apri questa scheda di impostazioni", + "go_home_view": "Vai alla vista home", + "next_unread_room": "Prossima stanza o msg non letto", + "prev_unread_room": "Precedente stanza o msg non letto", + "next_room": "Prossima stanza o msg", + "prev_room": "Precedente stanza o msg", + "autocomplete_cancel": "Annulla autocompletamento", + "autocomplete_navigate_next": "Prossimo suggerimento di autocompletamento", + "autocomplete_navigate_prev": "Precedente suggerimento di autocompletamento", + "toggle_space_panel": "Apri/chiudi pannello spazio", + "toggle_hidden_events": "Cambia visibilità evento nascosto", + "jump_first_message": "Salta al primo messaggio", + "jump_last_message": "Salta all'ultimo messaggio", + "composer_undo": "Annulla modifica", + "composer_redo": "Ripeti modifica", + "navigate_prev_history": "Precedente stanza o spazio visitati di recente", + "navigate_next_history": "Successiva stanza o spazio visitati di recente", + "switch_to_space": "Passa allo spazio per numero", + "open_user_settings": "Apri impostazioni utente", + "close_dialog_menu": "Chiudi finestra o menu contestuale", + "activate_button": "Attiva pulsante selezionato", + "composer_new_line": "Nuova riga", + "autocomplete_force": "Forza completamento", + "search": "Cerca (deve essere attivato)" }, "credits": { "default_cover_photo": "La foto di copertina predefinita è © Jesús Roncero utilizzata secondo i termini CC-BY-SA 4.0.", @@ -3325,7 +3279,16 @@ "download_google_play": "Ottienilo su Google Play", "download_f_droid": "Ottienilo su F-Droid", "apple_trademarks": "App Store® e il logo Apple® sono marchi registrati di Apple Inc.", - "google_trademarks": "Google Play e il logo Google Play sono marchi registrati di Google LLC." + "google_trademarks": "Google Play e il logo Google Play sono marchi registrati di Google LLC.", + "has_avatar_label": "Ottimo, ciò aiuterà le persone a capire che sei tu", + "no_avatar_label": "Aggiungi una foto in modo che le persone ti riconoscano.", + "welcome_user": "Benvenuto/a %(name)s", + "welcome_detail": "Alcuni consigli per iniziare", + "intro_welcome": "Benvenuti su %(appName)s", + "intro_byline": "Prendi il controllo delle tue conversazioni.", + "send_dm": "Invia un messaggio diretto", + "explore_rooms": "Esplora le stanze pubbliche", + "create_room": "Crea una chat di gruppo" }, "settings": { "show_breadcrumbs": "Mostra scorciatoie per le stanze viste di recente sopra l'elenco stanze", @@ -3893,7 +3856,24 @@ "category_admin": "Amministratore", "category_advanced": "Avanzato", "category_effects": "Effetti", - "category_other": "Altro" + "category_other": "Altro", + "addwidget_missing_url": "Inserisci un URL del widget o un codice di incorporamento", + "addwidget_iframe_missing_src": "L'iframe non ha l'attributo src", + "addwidget_invalid_protocol": "Fornisci un URL https:// o http:// per il widget", + "addwidget_no_permissions": "Non puoi modificare i widget in questa stanza.", + "converttodm": "Converte la stanza in un MD", + "could_not_find_room": "Stanza non trovata", + "converttoroom": "Converte il MD in una stanza", + "discardsession": "Forza l'eliminazione dell'attuale sessione di gruppo in uscita in una stanza criptata", + "remakeolm": "Comando sviluppatore: scarta l'attuale sessione di gruppo in uscita e imposta nuove sessioni Olm", + "tovirtual": "Passa alla stanza virtuale di questa stanza, se ne ha una", + "tovirtual_not_found": "Nessuna stanza virtuale per questa stanza", + "query": "Apre una chat con l'utente specificato", + "query_not_found_phone_number": "Impossibile trovare ID Matrix per il numero di telefono", + "holdcall": "Mette in pausa la chiamata nella stanza attuale", + "no_active_call": "Nessuna chiamata attiva in questa stanza", + "unholdcall": "Riprende la chiamata nella stanza attuale", + "me": "Mostra l'azione" }, "presence": { "busy": "Occupato", @@ -4074,7 +4054,16 @@ "sign_in_with_sso": "Accedi con single sign-on", "sso": "Single Sign On", "reset_password_action": "Reimposta password", - "reset_password_title": "Reimposta la tua password" + "reset_password_title": "Reimposta la tua password", + "continue_with_sso": "Continua con %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s o %(usernamePassword)s", + "sign_in_instead": "Hai già un account? Accedi qui", + "account_clash": "Il tuo nuovo account (%(newAccountId)s) è registrato, ma hai già fatto l'accesso in un account diverso (%(loggedInUserId)s).", + "account_clash_previous_account": "Continua con l'account precedente", + "log_in_new_account": "Accedi al tuo nuovo account.", + "registration_successful": "Registrazione riuscita", + "server_picker_title": "Ospita account su", + "server_picker_dialog_title": "Decidi dove ospitare il tuo account" }, "room_list": { "sort_unread_first": "Mostra prima le stanze con messaggi non letti", @@ -4110,5 +4099,20 @@ "report_entire_room": "Segnala l'intera stanza", "report_content_to_homeserver": "Segnala il contenuto all'amministratore dell'homeserver", "description": "La segnalazione di questo messaggio invierà il suo 'ID evento' univoco all'amministratore del tuo homeserver. Se i messaggi della stanza sono cifrati, l'amministratore non potrà leggere il messaggio o vedere file e immagini." + }, + "setting": { + "help_about": { + "brand_version": "versione %(brand)s:", + "olm_version": "Versione Olm:", + "help_link": "Per aiuto su come usare %(brand)s, clicca qui.", + "help_link_chat_bot": "Per aiuto su come usare %(brand)s, clicca qui o inizia una chat con il nostro bot usando il pulsante sotto.", + "chat_bot": "Chatta con %(brand)s Bot", + "title": "Aiuto e informazioni", + "versions": "Versioni", + "homeserver": "L'homeserver è %(homeserverUrl)s", + "identity_server": "Il server d'identità è %(identityServerUrl)s", + "access_token_detail": "Il tuo token di accesso ti dà l'accesso al tuo account. Non condividerlo con nessuno.", + "clear_cache_reload": "Svuota la cache e ricarica" + } } } diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index bb51b7641e..8b590ad83c 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -111,8 +111,6 @@ "Define the power level of a user": "ユーザーの権限レベルを規定", "Deops user with given id": "指定したIDのユーザーの権限をリセット", "Verified key": "認証済の鍵", - "Displays action": "アクションを表示", - "Forces the current outbound group session in an encrypted room to be discarded": "暗号化されたルーム内の現在のアウトバウンドグループセッションを強制的に破棄", "Reason": "理由", "Failure to create room": "ルームの作成に失敗", "Server may be unavailable, overloaded, or you hit a bug.": "サーバーが使用できないか、オーバーロードしているか、または不具合が発生した可能性があります。", @@ -333,7 +331,6 @@ "Email": "電子メール", "Profile": "プロフィール", "Account": "アカウント", - "%(brand)s version:": "%(brand)sのバージョン:", "The email address linked to your account must be entered.": "あなたのアカウントに登録されたメールアドレスの入力が必要です。", "A new password must be entered.": "新しいパスワードを入力する必要があります。", "New passwords must match each other.": "新しいパスワードは互いに一致する必要があります。", @@ -391,8 +388,6 @@ "The server does not support the room version specified.": "このサーバーは指定されたルームのバージョンをサポートしていません。", "Identity server has no terms of service": "IDサーバーには利用規約がありません", "Use an identity server": "IDサーバーを使用", - "Please supply a https:// or http:// widget URL": "https:// または http:// で始まるウィジェットURLを指定してください", - "You cannot modify widgets in this room.": "このルームのウィジェットを変更できません。", "Only continue if you trust the owner of the server.": "サーバーの所有者を信頼する場合のみ続行してください。", "Use an identity server to invite by email. Manage in Settings.": "IDサーバーを使用し、メールで招待。設定画面で管理。", "Cannot reach homeserver": "ホームサーバーに接続できません", @@ -438,9 +433,6 @@ "Delete Backup": "バックアップを削除", "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "暗号化されたメッセージは、エンドツーエンドの暗号化によって保護されています。これらの暗号化されたメッセージを読むための鍵を持っているのは、あなたと受信者だけです。", "Restore from Backup": "バックアップから復元", - "For help with using %(brand)s, click here.": "%(brand)sの使用方法に関するヘルプはこちらをご覧ください。", - "Help & About": "ヘルプと概要", - "Versions": "バージョン", "Voice & Video": "音声とビデオ", "Remove recent messages": "最近のメッセージを削除", "%(creator)s created and configured the room.": "%(creator)sがルームを作成し設定しました。", @@ -463,7 +455,6 @@ "The encryption used by this room isn't supported.": "このルームで使用されている暗号化はサポートされていません。", "Cross-signing public keys:": "クロス署名の公開鍵:", "Cross-signing private keys:": "クロス署名の秘密鍵:", - "Clear cache and reload": "キャッシュを削除して再読み込み", "Session ID:": "セッションID:", "Session key:": "セッションキー:", "Session name": "セッション名", @@ -488,8 +479,6 @@ "To continue you need to accept the terms of this service.": "続行するには、このサービスの利用規約に同意する必要があります。", "Italics": "斜字体", "Local address": "ローカルアドレス", - "Calls": "通話", - "Toggle microphone mute": "マイクのミュートを切り替える", "Unknown Command": "不明なコマンド", "Unrecognised command: %(commandText)s": "認識されていないコマンド:%(commandText)s", "Send as message": "メッセージとして送信", @@ -512,10 +501,6 @@ "one": "%(count)s個のセッション" }, "Hide sessions": "セッションを隠す", - "Welcome to %(appName)s": "%(appName)sにようこそ", - "Send a Direct Message": "ダイレクトメッセージを送信", - "Explore Public Rooms": "公開ルームを探す", - "Create a Group Chat": "グループチャットを作成", "Messages in this room are end-to-end encrypted.": "このルームのメッセージはエンドツーエンドで暗号化されています。", "Messages in this room are not end-to-end encrypted.": "このルームのメッセージはエンドツーエンドで暗号化されていません。", "You signed in to a new session without verifying it:": "あなたのこのセッションはまだ認証されていません:", @@ -603,7 +588,6 @@ "Your server": "あなたのサーバー", "Add a new server": "新しいサーバーを追加", "Server name": "サーバー名", - "Log in to your new account.": "新しいアカウントにログインしましょう。", "%(name)s (%(userId)s)": "%(name)s(%(userId)s)", "Unknown App": "不明なアプリ", "Room settings": "ルームの設定", @@ -675,7 +659,6 @@ "Secret storage:": "機密ストレージ:", "Master private key:": "マスター秘密鍵:", "Add a photo, so people can easily spot your room.": "写真を追加して、あなたのルームを目立たせましょう。", - "Add a photo so people know it's you.": "写真を追加して、あなただとわかるようにしましょう。", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "あなたか相手が誰かを招待しない限りは、この会話に参加しているのはあなたたちだけです。", "Password is allowed, but unsafe": "パスワードの要件は満たしていますが、安全ではありません", "Nice, strong password!": "素晴らしい、強固なパスワードです!", @@ -777,8 +760,6 @@ "Something went wrong. Please try again or view your console for hints.": "問題が発生しました。もう一度試すか、コンソールで手がかりを確認してください。", "Error adding ignored user/server": "無視したユーザーまたはサーバーを追加する際にエラーが発生しました", "Ignored/Blocked": "無視/ブロック", - "Chat with %(brand)s Bot": "%(brand)sボットとチャット", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "%(brand)sの使用についてサポートが必要な場合は、こちらをクリックするか、下のボタンを使用してボットとチャットを開始してください。", "Discovery": "ディスカバリー(発見)", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "メールアドレスか電話番号でアカウントを検出可能にするには、IDサーバー(%(serverName)s)の利用規約への同意が必要です。", "Use between %(min)s pt and %(max)s pt": "%(min)s~%(max)s(pt)の間の数字を指定", @@ -960,14 +941,8 @@ "Remain on your screen when viewing another room, when running": "他のルームを表示している間も実行中は画面に留まる", "Ask this user to verify their session, or manually verify it below.": "このユーザーにセッションを認証するよう依頼するか、以下から手動で認証してください。", "Verify your other session using one of the options below.": "以下のどれか一つを使って他のセッションを認証します。", - "Converts the DM to a room": "ダイレクトメッセージをルームに変換", - "Converts the room to a DM": "ルームをダイレクトメッセージに変換", - "Takes the call in the current room off hold": "現在のルームの通話を保留から外す", - "Places the call in the current room on hold": "現在のルームの通話を保留", - "Opens chat with the given user": "指定したユーザーとのチャットを開く", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "指定された署名鍵は%(userId)sのセッション %(deviceId)s から受け取った鍵と一致します。セッションは認証済です。", "Verifies a user, session, and pubkey tuple": "ユーザー、セッション、およびpubkeyタプルを認証", - "Please supply a widget URL or embed code": "ウィジェットのURLまたは埋め込みコードを入力してください", "Could not find user in room": "ルームにユーザーが見つかりません", "Joins room with given address": "指定したアドレスのルームに参加", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "メールでの招待にIDサーバーを使用します。デフォルトのIDサーバー(%(defaultIdentityServerName)s)を使用する場合は「続行」をクリックしてください。または設定画面を開いて変更してください。", @@ -1354,7 +1329,6 @@ "This homeserver has been blocked by its administrator.": "このホームサーバーは管理者によりブロックされています。", "Edit devices": "端末を編集", "You have no ignored users.": "無視しているユーザーはいません。", - "Your access token gives full access to your account. Do not share it with anyone.": "アクセストークンを用いると、あなたのアカウントの全ての情報にアクセスできます。外部に公開したり、誰かと共有したりしないでください。", "Save Changes": "変更を保存", "Edit settings relating to your space.": "スペースの設定を変更します。", "Spaces": "スペース", @@ -1373,7 +1347,6 @@ "A private space to organise your rooms": "ルームを整理するための非公開のスペース", "Private space": "非公開スペース", "Leave Space": "スペースから退出", - "Welcome %(name)s": "ようこそ、%(name)s", "Are you sure you want to leave the space '%(spaceName)s'?": "このスペース「%(spaceName)s」から退出してよろしいですか?", "This space is not public. You will not be able to rejoin without an invite.": "このスペースは公開されていません。再度参加するには、招待が必要です。", "You are the only person here. If you leave, no one will be able to join in the future, including you.": "このルームの参加者はあなただけです。退出すると、今後あなたを含めて誰もこのルームに参加できなくなります。", @@ -1456,7 +1429,6 @@ "Reason (optional)": "理由(任意)", "Copy link to thread": "スレッドへのリンクをコピー", "You're all caught up": "未読はありません", - "Unable to find Matrix ID for phone number": "電話番号からMatrix IDを発見できません", "Connecting": "接続しています", "You cannot place calls without a connection to the server.": "サーバーに接続していないため、通話を発信できません。", "Connectivity to the server has been lost": "サーバーとの接続が失われました", @@ -1507,12 +1479,7 @@ "Link to room": "ルームへのリンク", "This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.": "このスペースのメンバーとの会話をまとめます。無効にすると、それらの会話は%(spaceName)sの表示画面に表示されなくなります。", "Space home": "スペースのホーム", - "Go to Home View": "ホームに移動", - "Previous autocomplete suggestion": "前の自動補完の候補", - "Next autocomplete suggestion": "次の自動補完の候補", "Expand map": "地図を開く", - "Expand room list section": "ルーム一覧のセクションを展開", - "Collapse room list section": "ルーム一覧のセクションを折りたたむ", "Automatically send debug logs when key backup is not functioning": "鍵のバックアップが機能していない際に、自動的にデバッグログを送信", "Automatically send debug logs on decryption errors": "復号化エラーが生じた際に、自動的にデバッグログを送信", "Automatically send debug logs on any error": "エラーが生じた際に、自動的にデバッグログを送信", @@ -1525,38 +1492,8 @@ "Downloading": "ダウンロードしています", "An unknown error occurred": "不明なエラーが発生しました", "unknown person": "不明な人間", - "Jump to oldest unread message": "最も古い未読メッセージに移動", "In reply to this message": "このメッセージへの返信", "Edit poll": "アンケートを編集", - "Select room from the room list": "ルーム一覧からルームを選択", - "Jump to room search": "ルームの検索に移動", - "Navigate to previous message in composer history": "入力履歴の前のメッセージに移動", - "Navigate to next message in composer history": "入力履歴の次のメッセージに移動", - "Jump to end of the composer": "入力欄の最後に移動", - "Jump to start of the composer": "入力欄の最初に移動", - "Navigate to previous message to edit": "前のメッセージに移動して編集", - "Navigate to next message to edit": "次のメッセージに移動して編集", - "Toggle Italics": "斜字体を切り替える", - "Toggle Bold": "太字を切り替える", - "Toggle Quote": "引用の表示を切り替える", - "Toggle webcam on/off": "Webカメラのオン/オフを切り替える", - "Toggle right panel": "右のパネルの表示を切り替える", - "Toggle space panel": "スペースのパネルを切り替える", - "Redo edit": "編集をやり直す", - "Undo edit": "編集を元に戻す", - "Jump to last message": "最後のメッセージに移動", - "Jump to first message": "最初のメッセージに移動", - "Cancel autocomplete": "自動補完をキャンセル", - "Previous room or DM": "前のルームまたはダイレクトメッセージに移動", - "Next room or DM": "次のルームまたはダイレクトメッセージに移動", - "Previous unread room or DM": "前の未読のルームあるいはダイレクトメッセージに移動", - "Next unread room or DM": "次の未読のルームあるいはダイレクトメッセージに移動", - "Open this settings tab": "この設定のタブを開く", - "Upload a file": "ファイルをアップロード", - "Cancel replying to a message": "メッセージへの返信をキャンセル", - "Room List": "ルーム一覧", - "Autocomplete": "自動補完", - "Navigation": "ナビゲーション", "Location": "位置情報", "Submit logs": "ログを提出", "Click to view edits": "クリックすると変更履歴を表示", @@ -1597,8 +1534,6 @@ "Add reaction": "リアクションを追加", "Edited at %(date)s": "%(date)sに編集済", "Internal room ID": "内部ルームID:", - "Search (must be enabled)": "検索(有効とされている場合のみ)", - "Toggle hidden event visibility": "非表示のイベントの見え方を切り替える", "Spaces you know that contain this space": "このスペースを含む参加済のスペース", "Spaces you know that contain this room": "このルームを含む参加済のスペース", "%(count)s members": { @@ -1617,13 +1552,6 @@ "Anyone in can find and join. You can select other spaces too.": "の誰でも検索し、参加できます。他のスペースも選択できます。", "Anyone in a space can find and join. Edit which spaces can access here.": "スペースの誰でも検索し、参加できます。ここをクリックすると、どのスペースにアクセスできるかを編集できます。", "Spaces with access": "アクセスできるスペース", - "New line": "新しい行", - "Toggle the top left menu": "左上のメニューを切り替える", - "Navigate down in the room list": "ルーム一覧で下を選択", - "Navigate up in the room list": "ルーム一覧で上を選択", - "Scroll down in the timeline": "タイムラインを下にスクロール", - "Scroll up in the timeline": "タイムラインを上にスクロール", - "Dismiss read marker and jump to bottom": "既読マーカーを外して最下部に移動", "Enter Security Key": "セキュリティーキーを入力", "Warning: you should only set up key backup from a trusted computer.": "警告:信頼済のコンピューターからのみ鍵のバックアップを設定してください。", "Successfully restored %(sessionCount)s keys": "%(sessionCount)s個の鍵が復元されました", @@ -1649,18 +1577,9 @@ "Other homeserver": "他のホームサーバー", "Matrix.org is the biggest public homeserver in the world, so it's a good place for many.": "Matrix.orgは、公開されているホームサーバーで世界最大のものなので、多くの人に適しています。", "We call the places where you can host your account 'homeservers'.": "Matrixでは、あなたが自分のアカウントを管理する場所を「ホームサーバー」と呼んでいます。", - "Decide where your account is hosted": "アカウントを管理する場所を決めましょう", - "Host account on": "アカウントを以下のホームサーバーでホスト", "Join millions for free on the largest public server": "最大の公開サーバーで、数百万人に無料で参加", - "Already have an account? Sign in here": "既にアカウントがありますか?ここからサインインしてください", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "新しいアカウント(%(newAccountId)s)が登録されましたが、あなたは別のアカウント(%(loggedInUserId)s)でログインしています。", - "Continue with previous account": "以前のアカウントで続行", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)sあるいは、以下に入力して登録%(usernamePassword)s", - "Continue with %(ssoButtons)s": "以下のサービスにより続行%(ssoButtons)s", "Someone already has that username, please try another.": "そのユーザー名は既に使用されています。他のユーザー名を試してください。", "Registration has been disabled on this homeserver.": "このサーバーはアカウントの新規登録を受け入れていません。", - "Registration Successful": "登録しました", - "Now, let's help you get started": "何をしたいですか?", "This homeserver would like to make sure you are not a robot.": "このホームサーバーは、あなたがロボットではないことの確認を求めています。", "Doesn't look like a valid email address": "メールアドレスの形式が正しくありません", "Enter email address (required on this homeserver)": "メールアドレスを入力してください(このホームサーバーでは必須)", @@ -1669,7 +1588,6 @@ "Verify with another device": "別の端末で認証", "Forgotten or lost all recovery methods? Reset all": "復元方法を全て失ってしまいましたか?リセットできます", "Review to ensure your account is safe": "アカウントが安全かどうか確認してください", - "Own your conversations.": "自分の会話は、自分のもの。", "Confirm your identity by entering your account password below.": "以下にアカウントのパスワードを入力して本人確認を行ってください。", "Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "セキュリティーキーは、暗号化されたデータを保護するために使用されます。パスワードマネージャーもしくは金庫のような安全な場所で保管してください。", "Use a secret phrase only you know, and optionally save a Security Key to use for backup.": "あなただけが知っている秘密のパスワードを使用してください。また、バックアップ用にセキュリティーキーを保存することができます(任意)。", @@ -1681,9 +1599,6 @@ "Really reset verification keys?": "本当に認証鍵をリセットしますか?", "Start new chat": "チャットを開始", "Invite to space": "スペースに招待", - "Force complete": "強制的に自動補完", - "Activate selected button": "選択したボタンを有効にする", - "Close dialog or context menu": "ダイアログまたはコンテクストメニューを閉じる", "Enter the name of a new server you want to explore.": "探したい新しいサーバーの名前を入力してください。", "Upgrade public room": "公開ルームをアップグレード", "Public room": "公開ルーム", @@ -1734,8 +1649,6 @@ "If disabled, messages from encrypted rooms won't appear in search results.": "無効にすると、暗号化されたルームのメッセージは検索結果に表示されません。", "Not currently indexing messages for any room.": "現在、どのルームのメッセージのインデックスも作成していません。", "Currently indexing: %(currentRoom)s": "現在インデックス中のルーム:%(currentRoom)s", - "Switch to space by number": "スペースを番号で切り替える", - "Open user settings": "ユーザーの設定を開く", "Some invites couldn't be sent": "いくつかの招待を送信できませんでした", "Upload %(count)s other files": { "one": "あと%(count)s個のファイルをアップロード", @@ -1977,8 +1890,6 @@ "Enter your Security Phrase a second time to confirm it.": "確認のため、セキュリティーフレーズを再入力してください。", "Enter a Security Phrase": "セキュリティーフレーズを入力", "Backup could not be decrypted with this Security Phrase: please verify that you entered the correct Security Phrase.": "このセキュリティーフレーズではバックアップを復号化できませんでした。正しいセキュリティーフレーズを入力したことを確認してください。", - "Switches to this room's virtual room, if it has one": "このルームのバーチャルルームに移動(あれば)", - "No virtual room for this room": "このルームのバーチャルルームはありません", "Drop a Pin": "場所を選択", "No votes cast": "投票がありません", "What is your poll question or topic?": "アンケートの質問、あるいはトピックは何でしょうか?", @@ -2058,7 +1969,6 @@ "We were unable to access your microphone. Please check your browser settings and try again.": "マイクにアクセスできませんでした。ブラウザーの設定を確認して、もう一度やり直してください。", "Unable to access your microphone": "マイクを使用できません", "Are you sure you want to add encryption to this public room?": "公開ルームに暗号化を追加してよろしいですか?", - "Olm version:": "Olmのバージョン:", "There was an error loading your notification settings.": "通知設定を読み込む際にエラーが発生しました。", "Message search initialisation failed": "メッセージの検索機能の初期化に失敗しました", "Failed to update the visibility of this space": "このスペースの見え方の更新に失敗しました", @@ -2099,7 +2009,6 @@ "Other searches": "その他の検索", "To search messages, look for this icon at the top of a room ": "メッセージを検索する場合は、ルームの上に表示されるアイコンをクリックしてください。", "See when people join, leave, or are invited to this room": "このルームに参加、退出、招待された日時を表示", - "No active call in this room": "このルームにアクティブな通話はありません", "Regain access to your account and recover encryption keys stored in this session. Without them, you won't be able to read all of your secure messages in any session.": "アカウントにアクセスし、このセッションに保存されている暗号鍵を復元してください。暗号鍵がなければ、どのセッションの暗号化されたメッセージも読めなくなります。", "Enter your password to sign in and regain access to your account.": "アカウントへのアクセスを回復するには、パスワードを入力してサインインしてください。", "Sign in and regain access to your account.": "サインインして、アカウントへのアクセスを回復しましょう。", @@ -2192,7 +2101,6 @@ "%(deviceId)s from %(ip)s": "%(ip)sの%(deviceId)s", "Just a heads up, if you don't add an email and forget your password, you could permanently lose access to your account.": "注意:メールアドレスを追加せずパスワードを忘れた場合、永久にアカウントにアクセスできなくなる可能性があります。", "Some characters not allowed": "使用できない文字が含まれています", - "Send a sticker": "ステッカーを送信", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "スペースは、ルームや連絡先をまとめる新しい方法です。どんなグループを作りますか?これは後から変更できます。", "Collapse quotes": "引用を折りたたむ", "Expand quotes": "引用を展開", @@ -2278,8 +2186,6 @@ "other": "現在%(count)s個のスペースがアクセスできます", "one": "現在1個のスペースがアクセスできます" }, - "Previous recently visited room or space": "以前に訪問したルームあるいはスペース", - "Next recently visited room or space": "以後に訪問したルームあるいはスペース", "%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)sは携帯端末のウェブブラウザーでは実験的です。よりよい使用経験や最新機能を求める場合は、フリーのネイティブアプリをご利用ください。", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)sは位置情報を取得できませんでした。ブラウザーの設定画面から位置情報の取得を許可してください。", "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.": "異なるホームサーバーのURLを設定すると、他のMatrixのサーバーにサインインできます。それにより、異なるホームサーバーにある既存のMatrixのアカウントを%(brand)sで使用できます。", @@ -2327,8 +2233,6 @@ }, "Remember my selection for this widget": "このウィジェットに関する選択を記憶", "Unable to load commit detail: %(msg)s": "コミットの詳細を読み込めません:%(msg)s", - "Toggle Code Block": "コードブロックの表示を切り替える", - "Toggle Link": "リンクを切り替える", "Explore public spaces in the new search dialog": "新しい検索ダイアログで公開スペースを探す", "You were disconnected from the call. (Error: %(message)s)": "通話から切断されました。(エラー:%(message)s)", "Connection lost": "接続が切断されました", @@ -2441,7 +2345,6 @@ "Renaming sessions": "セッション名の変更", "Call type": "通話の種類", "You do not have sufficient permissions to change this.": "この変更に必要な権限がありません。", - "Great, that'll help people know it's you": "すばらしい、他の人があなただと気づく助けになるでしょう", "Reset bearing to north": "北向きにリセット", "Saved Items": "保存済み項目", "Video rooms are a beta feature": "ビデオ通話ルームはベータ版の機能です", @@ -2658,7 +2561,6 @@ "You can't disable this later. The room will be encrypted but the embedded call will not.": "これは後で無効にできません。ルームは暗号化されますが、埋め込まれる通話は暗号化されません。", "Message pending moderation: %(reason)s": "メッセージはモデレートの保留中です:%(reason)s", "An error (%(errcode)s) was returned while trying to validate your invite. You could try to pass this information on to the person who invited you.": "招待の検証を試みる際にエラー(%(errcode)s)が発生しました。あなたを招待した人にこの情報を渡してみてください。", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "管理者コマンド:現在のアウトバウンドグループセッションを破棄して、新しいOlmセッションを設定", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "このユーザーに関するシステムメッセージ(メンバーシップの変更、プロフィールの変更など)も削除したい場合は、チェックを外してください", "You are about to remove %(count)s messages by %(user)s. This will remove them permanently for everyone in the conversation. Do you wish to continue?": { "one": "%(user)sによる%(count)s件のメッセージを削除しようとしています。これは会話に参加している全員からメッセージを永久に削除します。続行してよろしいですか?", @@ -3037,7 +2939,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[番号]", - "backspace": "バックスペース" + "backspace": "バックスペース", + "category_calls": "通話", + "category_room_list": "ルーム一覧", + "category_navigation": "ナビゲーション", + "category_autocomplete": "自動補完", + "composer_toggle_bold": "太字を切り替える", + "composer_toggle_italics": "斜字体を切り替える", + "composer_toggle_quote": "引用の表示を切り替える", + "composer_toggle_code_block": "コードブロックの表示を切り替える", + "composer_toggle_link": "リンクを切り替える", + "cancel_reply": "メッセージへの返信をキャンセル", + "navigate_next_message_edit": "次のメッセージに移動して編集", + "navigate_prev_message_edit": "前のメッセージに移動して編集", + "composer_jump_start": "入力欄の最初に移動", + "composer_jump_end": "入力欄の最後に移動", + "composer_navigate_next_history": "入力履歴の次のメッセージに移動", + "composer_navigate_prev_history": "入力履歴の前のメッセージに移動", + "send_sticker": "ステッカーを送信", + "toggle_microphone_mute": "マイクのミュートを切り替える", + "toggle_webcam_mute": "Webカメラのオン/オフを切り替える", + "dismiss_read_marker_and_jump_bottom": "既読マーカーを外して最下部に移動", + "jump_to_read_marker": "最も古い未読メッセージに移動", + "upload_file": "ファイルをアップロード", + "scroll_up_timeline": "タイムラインを上にスクロール", + "scroll_down_timeline": "タイムラインを下にスクロール", + "jump_room_search": "ルームの検索に移動", + "room_list_select_room": "ルーム一覧からルームを選択", + "room_list_collapse_section": "ルーム一覧のセクションを折りたたむ", + "room_list_expand_section": "ルーム一覧のセクションを展開", + "room_list_navigate_down": "ルーム一覧で下を選択", + "room_list_navigate_up": "ルーム一覧で上を選択", + "toggle_top_left_menu": "左上のメニューを切り替える", + "toggle_right_panel": "右のパネルの表示を切り替える", + "keyboard_shortcuts_tab": "この設定のタブを開く", + "go_home_view": "ホームに移動", + "next_unread_room": "次の未読のルームあるいはダイレクトメッセージに移動", + "prev_unread_room": "前の未読のルームあるいはダイレクトメッセージに移動", + "next_room": "次のルームまたはダイレクトメッセージに移動", + "prev_room": "前のルームまたはダイレクトメッセージに移動", + "autocomplete_cancel": "自動補完をキャンセル", + "autocomplete_navigate_next": "次の自動補完の候補", + "autocomplete_navigate_prev": "前の自動補完の候補", + "toggle_space_panel": "スペースのパネルを切り替える", + "toggle_hidden_events": "非表示のイベントの見え方を切り替える", + "jump_first_message": "最初のメッセージに移動", + "jump_last_message": "最後のメッセージに移動", + "composer_undo": "編集を元に戻す", + "composer_redo": "編集をやり直す", + "navigate_prev_history": "以前に訪問したルームあるいはスペース", + "navigate_next_history": "以後に訪問したルームあるいはスペース", + "switch_to_space": "スペースを番号で切り替える", + "open_user_settings": "ユーザーの設定を開く", + "close_dialog_menu": "ダイアログまたはコンテクストメニューを閉じる", + "activate_button": "選択したボタンを有効にする", + "composer_new_line": "新しい行", + "autocomplete_force": "強制的に自動補完", + "search": "検索(有効とされている場合のみ)" }, "composer": { "format_bold": "太字", @@ -3157,7 +3115,16 @@ "download_google_play": "Google Playで入手", "download_f_droid": "F-Droidで入手", "apple_trademarks": "App Store®とAppleロゴ®はApple Incの商標です。", - "google_trademarks": "Google PlayとGoogle PlayロゴはGoogle LLC.の商標です。" + "google_trademarks": "Google PlayとGoogle PlayロゴはGoogle LLC.の商標です。", + "has_avatar_label": "すばらしい、他の人があなただと気づく助けになるでしょう", + "no_avatar_label": "写真を追加して、あなただとわかるようにしましょう。", + "welcome_user": "ようこそ、%(name)s", + "welcome_detail": "何をしたいですか?", + "intro_welcome": "%(appName)sにようこそ", + "intro_byline": "自分の会話は、自分のもの。", + "send_dm": "ダイレクトメッセージを送信", + "explore_rooms": "公開ルームを探す", + "create_room": "グループチャットを作成" }, "settings": { "show_breadcrumbs": "ルームの一覧の上に、最近表示したルームのショートカットを表示", @@ -3694,7 +3661,22 @@ "category_admin": "管理者", "category_advanced": "詳細", "category_effects": "効果", - "category_other": "その他" + "category_other": "その他", + "addwidget_missing_url": "ウィジェットのURLまたは埋め込みコードを入力してください", + "addwidget_invalid_protocol": "https:// または http:// で始まるウィジェットURLを指定してください", + "addwidget_no_permissions": "このルームのウィジェットを変更できません。", + "converttodm": "ルームをダイレクトメッセージに変換", + "converttoroom": "ダイレクトメッセージをルームに変換", + "discardsession": "暗号化されたルーム内の現在のアウトバウンドグループセッションを強制的に破棄", + "remakeolm": "管理者コマンド:現在のアウトバウンドグループセッションを破棄して、新しいOlmセッションを設定", + "tovirtual": "このルームのバーチャルルームに移動(あれば)", + "tovirtual_not_found": "このルームのバーチャルルームはありません", + "query": "指定したユーザーとのチャットを開く", + "query_not_found_phone_number": "電話番号からMatrix IDを発見できません", + "holdcall": "現在のルームの通話を保留", + "no_active_call": "このルームにアクティブな通話はありません", + "unholdcall": "現在のルームの通話を保留から外す", + "me": "アクションを表示" }, "presence": { "busy": "取り込み中", @@ -3871,7 +3853,16 @@ "sign_in_with_sso": "シングルサインオンを使用してサインイン", "sso": "シングルサインオン", "reset_password_action": "パスワードを再設定", - "reset_password_title": "パスワードを再設定" + "reset_password_title": "パスワードを再設定", + "continue_with_sso": "以下のサービスにより続行%(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)sあるいは、以下に入力して登録%(usernamePassword)s", + "sign_in_instead": "既にアカウントがありますか?ここからサインインしてください", + "account_clash": "新しいアカウント(%(newAccountId)s)が登録されましたが、あなたは別のアカウント(%(loggedInUserId)s)でログインしています。", + "account_clash_previous_account": "以前のアカウントで続行", + "log_in_new_account": "新しいアカウントにログインしましょう。", + "registration_successful": "登録しました", + "server_picker_title": "アカウントを以下のホームサーバーでホスト", + "server_picker_dialog_title": "アカウントを管理する場所を決めましょう" }, "room_list": { "sort_unread_first": "未読メッセージのあるルームを最初に表示", @@ -3903,5 +3894,18 @@ "report_entire_room": "ルーム全体を報告", "report_content_to_homeserver": "あなたのホームサーバーの管理者にコンテンツを報告", "description": "このメッセージを報告すると、このメッセージの一意の「イベントID」があなたのホームサーバーの管理者に送信されます。このルーム内のメッセージが暗号化されている場合、ホームサーバーの管理者はメッセージのテキストを読んだり、ファイルや画像を表示したりすることはできません。" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)sのバージョン:", + "olm_version": "Olmのバージョン:", + "help_link": "%(brand)sの使用方法に関するヘルプはこちらをご覧ください。", + "help_link_chat_bot": "%(brand)sの使用についてサポートが必要な場合は、こちらをクリックするか、下のボタンを使用してボットとチャットを開始してください。", + "chat_bot": "%(brand)sボットとチャット", + "title": "ヘルプと概要", + "versions": "バージョン", + "access_token_detail": "アクセストークンを用いると、あなたのアカウントの全ての情報にアクセスできます。外部に公開したり、誰かと共有したりしないでください。", + "clear_cache_reload": "キャッシュを削除して再読み込み" + } } } diff --git a/src/i18n/strings/jbo.json b/src/i18n/strings/jbo.json index c7fc26a190..7c040f60f4 100644 --- a/src/i18n/strings/jbo.json +++ b/src/i18n/strings/jbo.json @@ -62,8 +62,6 @@ "Define the power level of a user": ".i ninga'igau lo ni lo pilno cu vlipa", "Deops user with given id": ".i xruti lo ni lo pilno poi se judri ti cu vlipa", "Verified key": "ckiku vau je se lacri", - "Displays action": ".i mrilu lo nu do gasnu", - "Forces the current outbound group session in an encrypted room to be discarded": ".i macnu vimcu lo ca barkla termifckiku gunma lo kumfa pe'a poi mifra", "Reason": "krinu", "This homeserver has hit its Monthly Active User limit.": ".i le samtcise'u cu bancu lo masti jimte be ri bei lo ni ca'o pilno", "This homeserver has exceeded one of its resource limits.": ".i le samtcise'u cu bancu pa lo jimte be ri", @@ -171,8 +169,6 @@ "Users": "pilno", "That matches!": ".i du", "Success!": ".i snada", - "Room List": "liste le'i ve zilbe'i", - "Upload a file": "nu kibdu'a pa vreji", "Verify your other session using one of the options below.": ".i ko cuxna da le di'e cei'i le ka tadji lo nu do co'a lacri", "Ask this user to verify their session, or manually verify it below.": ".i ko cpedu le ka co'a lacri le se samtcise'u kei le pilno vau ja pilno le di'e cei'i le ka co'a lacri", "Not Trusted": "na se lacri", @@ -203,7 +199,6 @@ "one": ".i samtcise'u %(count)s da" }, "Hide sessions": "nu ro se samtcise'u cu zilmipri", - "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", "The file '%(fileName)s' failed to upload.": ".i da nabmi fi lo nu kibdu'a la'o zoi. %(fileName)s .zoi", @@ -409,7 +404,9 @@ "category_actions": "ka'e se zukte", "category_admin": "vlipa so'i da", "category_advanced": "macnu", - "category_other": "drata" + "category_other": "drata", + "discardsession": ".i macnu vimcu lo ca barkla termifckiku gunma lo kumfa pe'a poi mifra", + "me": ".i mrilu lo nu do gasnu" }, "event_preview": { "m.call.answer": { @@ -475,5 +472,14 @@ "one": "nu viska %(count)s na du" }, "show_less": "nu viska so'u da" + }, + "keyboard": { + "category_room_list": "liste le'i ve zilbe'i", + "upload_file": "nu kibdu'a pa vreji" + }, + "setting": { + "help_about": { + "help_link_chat_bot": ".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" + } } } diff --git a/src/i18n/strings/ka.json b/src/i18n/strings/ka.json index 9ab94ae381..087b6c91a2 100644 --- a/src/i18n/strings/ka.json +++ b/src/i18n/strings/ka.json @@ -1,5 +1,4 @@ { - "Dismiss read marker and jump to bottom": "გააუქმეთ წაკითხული მარკერი და გადადით ქვემოთ", "Explore rooms": "ოთახების დათავლიერება", "Create Account": "ანგარიშის შექმნა", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "ფაილი '%(fileName)s' აჭარბებს ამ ჰომსერვერის ზომის ლიმიტს ატვირთვისთვის", @@ -62,5 +61,8 @@ }, "auth": { "sso": "ერთჯერადი ავტორიზაცია" + }, + "keyboard": { + "dismiss_read_marker_and_jump_bottom": "გააუქმეთ წაკითხული მარკერი და გადადით ქვემოთ" } } diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index a7308dfad9..b3838980c6 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -61,8 +61,6 @@ "Profile": "Amaɣnu", "Account": "Amiḍan", "General": "Amatu", - "Chat with %(brand)s Bot": "Asqerdec akked %(brand)s Bot", - "Versions": "Ileqman", "None": "Ula yiwen", "Composer": "Imsuddes", "Sounds": "Imesla", @@ -120,10 +118,6 @@ "Commands": "Tiludna", "Users": "Iseqdacen", "Success!": "Tammug akken iwata!", - "Navigation": "Tunigin", - "Calls": "Isawalen", - "New line": "Izirig amaynut", - "Upload a file": "Sali-d afaylu", "This email address is already in use": "Tansa-agi n yimayl tettuseqdac yakan", "This phone number is already in use": "Uṭṭun-agi n tilifun yettuseqddac yakan", "Your %(brand)s is misconfigured": "%(brand)s inek(inem) ur ittusbadu ara", @@ -137,21 +131,6 @@ "Confirm adding phone number": "Sentem timerna n wuṭṭun n tilifun", "Click the button below to confirm adding this phone number.": "Sit ɣef tqeffalt yellan ddaw i usentem n tmerna n wuṭṭun-a n tilifun.", "Add Phone Number": "Rnu uṭṭun n tilifun", - "Jump to oldest unread message": "Uɣal alamma d izen aqdim ur nettwaɣra ara", - "Jump to room search": "Ɛeddi ɣer unadi n texxamt", - "Select room from the room list": "Fren taxxamt seg tebdert n texxamin", - "Collapse room list section": "Fneẓ tigemi n tebdert n texxamin", - "Expand room list section": "Snerni tigezmi n tebdert n texxamin", - "Toggle the top left menu": "Sken/ffer umuɣ aεlayan azelmaḍ", - "Close dialog or context menu": "Mdel umuɣ n udiwenni neɣ n ugbur", - "Activate selected button": "Rmed taqeffalt i d-yettwafernen", - "Toggle right panel": "Sken/ffer agalis ayeffus", - "Cancel autocomplete": "Sefsex tacaṛt tawurmant", - "Toggle Bold": "Err-it d azuran", - "Toggle Italics": "Err-it ɣer uknan", - "Toggle Quote": "Err-it ɣer yizen aneẓli", - "Cancel replying to a message": "Sefsex tiririt ɣef yizen", - "Toggle microphone mute": "Rmed/sens tanusi n usawaḍ", "Updating %(brand)s": "Leqqem %(brand)s", "I don't want my encrypted messages": "Ur bɣiɣ ara izan-inu iwgelhanen", "Manually export keys": "Sifeḍ s ufus tisura", @@ -223,20 +202,14 @@ "Indexed messages:": "Iznan s umatar:", "Indexed rooms:": "Tixxamin s umatar:", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s beṛṛa n %(totalRooms)s", - "Room List": "Tabdert n texxamt", - "Autocomplete": "Asmad awurman", "Operation failed": "Tamhelt ur teddi ara", "Unable to create widget.": "Timerna n uwiǧit ulamek.", "Missing roomId.": "Ixuṣ usulay n texxamt.", "Use an identity server to invite by email. Manage in Settings.": "Seqdec aqeddac n timagit i uncad s yimayl. Asefrek deg yiɣewwaren.", "Define the power level of a user": "Sbadu aswir iǧehden n useqdac", - "Please supply a https:// or http:// widget URL": "Ttxil-k·m mudd URL n uwigit https:// neɣ http://", - "You cannot modify widgets in this room.": "Ur tezmireḍ ara ad tbeddleḍ iwiǧiten n texxamt-a.", "Session already verified!": "Tiɣimit tettwasenqed yakan!", "Verified key": "Tasarut tettwasenqed", "Logs sent": "Iɣmisen ttewaznen", - "Opens chat with the given user": "Yeldi adiwenni d useqdac i d-yettunefken", - "Displays action": "Yeskan tigawt", "Not Trusted": "Ur yettwattkal ara", "%(items)s and %(count)s others": { "other": "%(items)s d %(count)s wiyaḍ", @@ -334,7 +307,6 @@ "Double check that your server supports the room version chosen and try again.": "Senqed akken ilaq ma yella aqeddac-inek·inem issefrak lqem n texxamtyettwafernen syen εreḍ tikkelt-nniḍen.", "Unignored user": "Aseqdac ur yettuzeglen ara", "You are no longer ignoring %(userId)s": "Dayen ur tettazgaleḍ ara akk %(userId)s", - "Please supply a widget URL or embed code": "Ttxil-k·m mudd URL n uwiǧit neɣ tangalt tusliɣt", "Verifies a user, session, and pubkey tuple": "Yessenqad tagrumma-a: aseqdac, tiɣimit d tsarut tazayezt", "Deops user with given id": "Aseqdac Deops s usulay i d-yettunefken", "Cannot reach homeserver": "Anekcum ɣer uqeddac agejdan d awezɣi", @@ -374,8 +346,6 @@ "Account management": "Asefrek n umiḍan", "Deactivate Account": "Sens amiḍan", "Deactivate account": "Sens amiḍan", - "Clear cache and reload": "Sfeḍ takatut tuffirt syen sali-d", - "%(brand)s version:": "Lqem %(brand)s:", "Ignored/Blocked": "Yettunfen/Yettusweḥlen", "Error unsubscribing from list": "Tuccḍa deg usefsex n ujerred seg texxamt", "Server rules": "Ilugan n uqeddac", @@ -544,8 +514,6 @@ "Start authentication": "Bdu alɣu", "Sign in with SSO": "Anekcum s SSO", "Couldn't load page": "Asali n usebter ur yeddi ara", - "Welcome to %(appName)s": "Ansuf ɣer %(appName)s", - "Send a Direct Message": "Azen izen uslig", "Failed to reject invitation": "Tigtin n tinnubga ur yeddi ara", "Signed Out": "Yeffeɣ seg tuqqna", "Failed to reject invite": "Tigtin n tinnubga ur yeddi ara", @@ -556,8 +524,6 @@ "A new password must be entered.": "Awal uffir amaynut ilaq ad yettusekcem.", "General failure": "Tuccḍa tamatut", "This account has been deactivated.": "Amiḍan-a yettuḥbes.", - "Continue with previous account": "Kemmel s umiḍan yezrin", - "Log in to your new account.": "Kcem ɣer umiḍan-ik·im amaynut.", "Incorrect password": "Awal uffir d arameɣtu", "Failed to re-authenticate": "Aɛiwed n usesteb ur yeddi ara", "Command Autocomplete": "Asmad awurman n tiludna", @@ -655,7 +621,6 @@ "If disabled, messages from encrypted rooms won't appear in search results.": "Ma yella tensa, iznan n texxamin tiwgelhanin ur d-ttbanen ara deg yigmaḍ n unadi.", "%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s iteffer iznan iwgelhanen idiganen s wudem aɣelsan i wakken ad d-banen deg yigmaḍ n unadi:", "Message downloading sleep time(ms)": "Akud n usgunfu n usali n yiznan (ms)", - "Dismiss read marker and jump to bottom": "Zgel ticreḍt n tɣuri, tɛeddiḍ d akessar", "This is your list of users/servers you have blocked - don't leave the room!": "Tagi d tabdart-ik·im n yiseqdacen/yiqeddacen i tesweḥleḍ - ur teffeɣ ara seg texxamt!", "in secret storage": "deg uklas uffir", "Master private key:": "Tasarut tusligt tagejdant:", @@ -734,7 +699,6 @@ "Contact your server admin.": "Nermes anedbal-inek·inem n uqeddac.", "Size must be a number": "Teɣzi ilaq ad tili d uṭṭun", "Discovery": "Tagrut", - "Help & About": "Tallalt & Ɣef", "Error adding ignored user/server": "Tuccḍa deg tmerna n useqdac/uqeddac yettwanfen", "Something went wrong. Please try again or view your console for hints.": "Yella wayen ur nteddu ara akken iwata, ma ulac aɣilif ales tikkelt-nniḍen neɣ senqed tadiwent-ik·im i yiwellihen.", "Error subscribing to list": "Tuccḍa deg ujerred ɣef tebdart", @@ -857,8 +821,6 @@ "Find others by phone or email": "Af-d wiyaḍ s tiliɣri neɣ s yimayl", "Be found by phone or email": "Ad d-yettwaf s tiliɣri neɣ s yimayl", "Upload files (%(current)s of %(total)s)": "Sali-d ifuyla (%(current)s ɣef %(total)s)", - "Explore Public Rooms": "Snirem tixxamin tizuyaz", - "Create a Group Chat": "Rnu adiwenni n ugraw", "This room is not public. You will not be able to rejoin without an invite.": "Taxxamt-a mačči d tazayezt. Ur tezmireḍ ara ad ternuḍ ɣer-s war tinubga.", "Are you sure you want to leave the room '%(roomName)s'?": "S tidet tebɣiḍ ad teǧǧeḍ taxxamt '%(roomName)s'?", "For security, this session has been signed out. Please sign in again.": "Ɣef ssebba n tɣellist, taxxamt-a ad temdel. Ttxil-k·m ɛreḍ tikkelt-nniḍen.", @@ -897,7 +859,6 @@ "Verify this user by confirming the following emoji appear on their screen.": "Senqed aseqdac-a s usentem dakken imujiten-a ttbanen-d ɣef ugdil-is.", "Verify this user by confirming the following number appears on their screen.": "Senqed aseqdac-a s usentem dakken amḍan-a ittban-d ɣef ugdil-is.", "Thumbs up": "Adebbuz d asawen", - "Forces the current outbound group session in an encrypted room to be discarded": "Ḥettem tiɣimit n ugraw ara d-yeffɣen akka tura deg texxamt tawgelhant ad tettwakkes", "Unexpected server error trying to leave the room": "Tuccḍa n uqeddac ur nettwaṛǧa ara lawan n tuffɣa seg texxamt", "How fast should messages be downloaded.": "Acḥal i ilaq ad yili urured i wakken ad d-adren yiznan.", "Waiting for %(displayName)s to verify…": "Aṛaǧu n %(displayName)s i usenqed…", @@ -938,7 +899,6 @@ "New passwords must match each other.": "Awalen uffiren imaynuten ilaq ad mṣadan.", "Return to login screen": "Uɣal ɣer ugdil n tuqqna", "Incorrect username and/or password.": "Isem n uqeddac d/neɣ awal uffir d arameɣtu.", - "Registration Successful": "Asekles yemmed akken iwata", "Save your Security Key": "Sekles tasarut-ik·im n tɣellist", "Unable to set up secret storage": "Asbadu n uklas uffir d awezɣi", "Paperclip": "Tamessakt n lkaɣeḍ", @@ -955,8 +915,6 @@ "You are still sharing your personal data on the identity server .": "Mazal-ik·ikem tbeṭṭuḍ isefka-inek·inem udmawanen ɣef uqeddac n timagit .", "Error encountered (%(errorDetail)s).": "Tuccaḍ i d-yettwamuggren (%(errorDetail)s).", "Custom font size can only be between %(min)s pt and %(max)s pt": "Teɣzi n tsefsit tudmawant tezmer kan ad tili gar %(min)s pt d %(max)s pt", - "For help with using %(brand)s, click here.": "I tallalt n useqdec n %(brand)s, sit dagi.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "I tallalt ɣef useqdec n %(brand)s, sit dagi neɣ bdu adiwenni d wabuṭ-nneɣ s useqdec n tqeffalt ddaw.", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "I wakken ad d-tazneḍ ugur n tɣellist i icudden ɣer Matrix, ttxil-k·m ɣer tasertit n ukcaf n tɣellist deg Matrix.org.", "Add users and servers you want to ignore here. Use asterisks to have %(brand)s match any characters. For example, @bot:* would ignore all users that have the name 'bot' on any server.": "Rnu dagi iseqdacen d yiqeddacen i tebɣiḍ ad tzegleḍ. Seqdec izamelen n yitran i wakken %(brand)s ad yemṣada d yal asekkil. D amedya, @bot:* izeggel akk iseqdacen i yesɛan isem \"abuṭ\" ɣef yal aqeddac.", "Subscribing to a ban list will cause you to join it!": "Amulteɣ ɣer tebdart n tegtin ad ak·akem-yawi ad tettekkiḍ deg-s!", @@ -1181,7 +1139,6 @@ "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Tɛerḍeḍ ad d-tsaliḍ tazmilt tufrint deg tesnakudt n teamt, maca ur tesɛiḍ ara tisirag ad d-tsekneḍ izen i d-teɛniḍ.", "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Ur tessawḍeḍ ara ad teqqneḍ ɣer uqeddac agejdan s HTTP mi ara yili URL n HTTPS deg ufeggag n yiminig-ik·im. Seqdec HTTPS neɣ sermed isekripten ariɣelsanen.", "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.": "Yegguma ad yeqqen ɣer uqeddac agejdan - ttxil-k·m senqed tuqqna-inek·inem, tḍemneḍ belli aselken n SSL n uqeddac agejdan yettwattkal, rnu aseɣzan n yiminig-nni ur issewḥal ara isutar.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Amiḍan-ik·im amaynut (%(newAccountId)s) yettwaseklas, maca teqqneḍ yakan ɣer umiḍan wayeḍ (%(loggedInUserId)s).", "Trophy": "Arraz", "Unknown App": "Asnas arussin", "Cross-signing is ready for use.": "Azmul anmidag yewjed i useqdec.", @@ -1462,16 +1419,8 @@ "The call was answered on another device.": "Tiririt ɣef usiwel tella-d ɣef yibenk-nniḍen.", "Answered Elsewhere": "Yerra-d seg wadeg-nniḍen", "The call could not be established": "Asiwel ur yeqεid ara", - "Decide where your account is hosted": "Wali anida ara yezdeɣ umiḍan-ik·im", - "Host account on": "Sezdeɣ amiḍan deg", - "Already have an account? Sign in here": "Tesεiḍ yakan amiḍan? Kcem ɣer da", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s neɣ %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Kemmel s %(ssoButtons)s", - "Go to Home View": "Uɣal ɣer usebter agejdan", "Send videos as you in this room": "Azen tividyutin deg texxamt-a am wakken d kečč", "See images posted to your active room": "Wali tignatin i d-yeffɣen deg texxamt-a iremden", - "Takes the call in the current room off hold": "Uɣal ɣer usiwel ara iteddun deg -texxamt-a", - "Places the call in the current room on hold": "Seḥbes asiwel deg texxamt-a i kra n wakud", "Your %(brand)s doesn't allow you to use an integration manager to do this. Please contact an admin.": "%(brand)s-ik·im ur ak·am yefki ara tisirag i useqdec n umsefrak n umsidef i wakken ad tgeḍ aya. Ttxil-k·m nermes anedbal.", "Using this widget may share data with %(widgetDomain)s & your integration manager.": "Aseqdec n uwiǧit-a yezmer ad yebḍu isefka d %(widgetDomain)s & amsefrak-inek·inem n umsidef.", "Integration managers receive configuration data, and can modify widgets, send room invites, and set power levels on your behalf.": "Imsefrak n yimsidaf remmsen-d isefka n uswel, syen ad uɣalen zemren ad beddlen iwiǧiten, ad aznen tinubgiwin ɣer texxamin, ad yesbadu daɣen tazmert n yiswiren s yiswiren deg ubdil-ik·im.", @@ -1651,7 +1600,30 @@ "end": "Taggara", "alt": "Alt", "control": "Ctrl", - "shift": "Shift" + "shift": "Shift", + "category_calls": "Isawalen", + "category_room_list": "Tabdert n texxamt", + "category_navigation": "Tunigin", + "category_autocomplete": "Asmad awurman", + "composer_toggle_bold": "Err-it d azuran", + "composer_toggle_italics": "Err-it ɣer uknan", + "composer_toggle_quote": "Err-it ɣer yizen aneẓli", + "cancel_reply": "Sefsex tiririt ɣef yizen", + "toggle_microphone_mute": "Rmed/sens tanusi n usawaḍ", + "dismiss_read_marker_and_jump_bottom": "Zgel ticreḍt n tɣuri, tɛeddiḍ d akessar", + "jump_to_read_marker": "Uɣal alamma d izen aqdim ur nettwaɣra ara", + "upload_file": "Sali-d afaylu", + "jump_room_search": "Ɛeddi ɣer unadi n texxamt", + "room_list_select_room": "Fren taxxamt seg tebdert n texxamin", + "room_list_collapse_section": "Fneẓ tigemi n tebdert n texxamin", + "room_list_expand_section": "Snerni tigezmi n tebdert n texxamin", + "toggle_top_left_menu": "Sken/ffer umuɣ aεlayan azelmaḍ", + "toggle_right_panel": "Sken/ffer agalis ayeffus", + "go_home_view": "Uɣal ɣer usebter agejdan", + "autocomplete_cancel": "Sefsex tacaṛt tawurmant", + "close_dialog_menu": "Mdel umuɣ n udiwenni neɣ n ugbur", + "activate_button": "Rmed taqeffalt i d-yettwafernen", + "composer_new_line": "Izirig amaynut" }, "composer": { "format_bold": "Azuran", @@ -1996,7 +1968,15 @@ "category_admin": "Anedbal", "category_advanced": "Talqayt", "category_effects": "Effets", - "category_other": "Nniḍen" + "category_other": "Nniḍen", + "addwidget_missing_url": "Ttxil-k·m mudd URL n uwiǧit neɣ tangalt tusliɣt", + "addwidget_invalid_protocol": "Ttxil-k·m mudd URL n uwigit https:// neɣ http://", + "addwidget_no_permissions": "Ur tezmireḍ ara ad tbeddleḍ iwiǧiten n texxamt-a.", + "discardsession": "Ḥettem tiɣimit n ugraw ara d-yeffɣen akka tura deg texxamt tawgelhant ad tettwakkes", + "query": "Yeldi adiwenni d useqdac i d-yettunefken", + "holdcall": "Seḥbes asiwel deg texxamt-a i kra n wakud", + "unholdcall": "Uɣal ɣer usiwel ara iteddun deg -texxamt-a", + "me": "Yeskan tigawt" }, "presence": { "online_for": "Srid azal n %(duration)s", @@ -2092,7 +2072,16 @@ }, "auth": { "sign_in_with_sso": "Qqen s unekcum asuf", - "sso": "Anekcum asuf" + "sso": "Anekcum asuf", + "continue_with_sso": "Kemmel s %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s neɣ %(usernamePassword)s", + "sign_in_instead": "Tesεiḍ yakan amiḍan? Kcem ɣer da", + "account_clash": "Amiḍan-ik·im amaynut (%(newAccountId)s) yettwaseklas, maca teqqneḍ yakan ɣer umiḍan wayeḍ (%(loggedInUserId)s).", + "account_clash_previous_account": "Kemmel s umiḍan yezrin", + "log_in_new_account": "Kcem ɣer umiḍan-ik·im amaynut.", + "registration_successful": "Asekles yemmed akken iwata", + "server_picker_title": "Sezdeɣ amiḍan deg", + "server_picker_dialog_title": "Wali anida ara yezdeɣ umiḍan-ik·im" }, "export_chat": { "messages": "Iznan" @@ -2115,5 +2104,22 @@ "missing_reason": "Ttxil-k·m ini-aɣ-d ayɣer i d-tettazneḍ alɣu.", "report_content_to_homeserver": "Ttxil-k·m azen aneqqis i unedbal-ik·im n usebter agejdan", "description": "Timenna ɣef yizen-a ad yazen \"asulay n uneḍru\" asuf i unedbal n uqeddac agejdan. Ma yella iznan n texxamt-a ttwawgelhen, anedbal-ik·im n uqeddac agejdan ur yettizmir ara ad d-iɣer aḍris n yizen neɣ senqed ifuyla neɣ tugniwin." + }, + "onboarding": { + "intro_welcome": "Ansuf ɣer %(appName)s", + "send_dm": "Azen izen uslig", + "explore_rooms": "Snirem tixxamin tizuyaz", + "create_room": "Rnu adiwenni n ugraw" + }, + "setting": { + "help_about": { + "brand_version": "Lqem %(brand)s:", + "help_link": "I tallalt n useqdec n %(brand)s, sit dagi.", + "help_link_chat_bot": "I tallalt ɣef useqdec n %(brand)s, sit dagi neɣ bdu adiwenni d wabuṭ-nneɣ s useqdec n tqeffalt ddaw.", + "chat_bot": "Asqerdec akked %(brand)s Bot", + "title": "Tallalt & Ɣef", + "versions": "Ileqman", + "clear_cache_reload": "Sfeḍ takatut tuffirt syen sali-d" + } } } diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index c12af69a5a..85d3dd7800 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -42,7 +42,6 @@ "Deactivate Account": "계정 비활성화", "Decrypt %(text)s": "%(text)s 복호화", "Deops user with given id": "받은 ID로 사용자의 등급을 낮추기", - "Displays action": "활동 표시하기", "Download %(text)s": "%(text)s 다운로드", "Enter passphrase": "암호 입력", "Error decrypting attachment": "첨부 파일 복호화 중 오류", @@ -98,7 +97,6 @@ "Return to login screen": "로그인 화면으로 돌아가기", "%(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이 알림을 보낼 권한을 받지 못했습니다. 다시 해주세요", - "%(brand)s version:": "%(brand)s 웹 버전:", "Room %(roomId)s not visible": "방 %(roomId)s이(가) 보이지 않음", "%(roomName)s does not exist.": "%(roomName)s은 없는 방이에요.", "%(roomName)s is not accessible at this time.": "현재는 %(roomName)s에 들어갈 수 없습니다.", @@ -352,9 +350,6 @@ "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "'%(fileName)s' 파일이 홈서버의 업로드 크기 제한을 초과합니다", "The server does not support the room version specified.": "서버가 지정된 방 버전을 지원하지 않습니다.", "Unable to load! Check your network connectivity and try again.": "불러올 수 없습니다! 네트워크 연결 상태를 확인한 후 다시 시도하세요.", - "Please supply a https:// or http:// widget URL": "https:// 혹은 http:// 위젯 URL을 제공하세요", - "You cannot modify widgets in this room.": "이 방에서 위젯을 수정할 수 없습니다.", - "Forces the current outbound group session in an encrypted room to be discarded": "암호화된 방에서 현재 방 외부의 그룹 세션을 강제로 삭제합니다", "Cannot reach homeserver": "홈서버에 연결할 수 없습니다", "Ensure you have a stable internet connection, or get in touch with the server admin": "인터넷 연결이 안정적인지 확인하세요, 또는 서버 관리자에게 연락하세요", "Your %(brand)s is misconfigured": "%(brand)s이 잘못 설정됨", @@ -500,11 +495,6 @@ "General": "기본", "Discovery": "탐색", "Deactivate account": "계정 비활성화", - "For help with using %(brand)s, click here.": "%(brand)s 사용 중 도움이 필요하다면, 여기를 클릭하세요.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "%(brand)s을 사용하다가 도움이 필요하다면, 여기를 클릭하거나, 아래 버튼을 사용해 우리의 봇과 대화를 시작하세요.", - "Chat with %(brand)s Bot": "%(brand)s 봇과 대화", - "Help & About": "도움 & 정보", - "Versions": "버전", "Always show the window menu bar": "항상 윈도우 메뉴 막대에 보이기", "Composer": "작성기", "Room list": "방 목록", @@ -691,10 +681,6 @@ "Create account": "계정 만들기", "Registration has been disabled on this homeserver.": "이 홈서버는 등록이 비활성화되어 있습니다.", "Unable to query for supported registration methods.": "지원하는 등록 방식을 쿼리할 수 없습니다.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "당신의 새 계정 (%(newAccountId)s)을 등록했습니다, 하지만 다른 계정 (%(loggedInUserId)s)으로 로그인하고 있습니다.", - "Continue with previous account": "이 계정으로 계속", - "Log in to your new account.": "새 계정으로 로그인하기.", - "Registration Successful": "등록 성공", "Failed to re-authenticate due to a homeserver problem": "홈서버 문제로 다시 인증에 실패함", "Failed to re-authenticate": "다시 인증에 실패함", "Enter your password to sign in and regain access to your account.": "로그인하고 계정에 다시 접근하려면 비밀번호를 입력하세요.", @@ -764,7 +750,6 @@ "Room Autocomplete": "방 자동 완성", "User Autocomplete": "사용자 자동 완성", "Show image": "이미지 보이기", - "Clear cache and reload": "캐시 지우기 및 새로고침", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "홈서버 설정에서 캡챠 공개 키가 없습니다. 홈서버 관리자에게 이것을 신고해주세요.", "Your email address hasn't been verified yet": "이메일 주소가 아직 확인되지 않았습니다", "Click the link in the email you received to verify and then click continue again.": "받은 이메일에 있는 링크를 클릭해서 확인한 후에 계속하기를 클릭하세요.", @@ -882,7 +867,6 @@ "Anyone in can find and join. You can select other spaces too.": "에 소속된 누구나 찾고 참여할 수 있습니다. 다른 스페이스도 선택 가능합니다.", "Only invited people can join.": "초대한 경우에만 참여할 수 있습니다.", "Visibility": "가시성", - "Explore Public Rooms": "공개 방 살펴보기", "Manage & explore rooms": "관리 및 방 목록 보기", "Space home": "스페이스 홈", "Search for": "검색 기준", @@ -947,10 +931,6 @@ "Add existing room": "기존 방 목록에서 추가하기", "Invite to this space": "이 스페이스로 초대하기", "Invite to space": "스페이스에 초대하기", - "Create a Group Chat": "그룹 대화 생성하기", - "Send a Direct Message": "다이렉트 메세지 보내기", - "Now, let's help you get started": "지금 시작할 수 있도록 도와드릴께요", - "Welcome %(name)s": "환영합니다 %(name)s님", "Something went wrong.": "무언가가 잘못되었습니다.", "Slovakia": "슬로바키아", "Argentina": "아르헨티나", @@ -959,7 +939,6 @@ "User Busy": "사용자 바쁨", "Ukraine": "우크라이나", "United Kingdom": "영국", - "Converts the DM to a room": "DM을 방으로 변환", "Yemen": "예멘", "Uzbekistan": "우즈베키스탄", "Syria": "시리아", @@ -977,7 +956,6 @@ "United States": "미국", "The call was answered on another device.": "이 전화는 다른 기기에서 응답했습니다.", "Answered Elsewhere": "다른 기기에서 응답함", - "No active call in this room": "이 방에 진행중인 통화 없음", "Your current session is ready for secure messaging.": "현재 세션에서 보안 메세지를 사용할 수 있습니다.", "Last activity": "최근 활동", "Mark all as read": "모두 읽음으로 표시", @@ -1402,7 +1380,13 @@ "category_actions": "활동", "category_admin": "관리자", "category_advanced": "고급", - "category_other": "기타" + "category_other": "기타", + "addwidget_invalid_protocol": "https:// 혹은 http:// 위젯 URL을 제공하세요", + "addwidget_no_permissions": "이 방에서 위젯을 수정할 수 없습니다.", + "converttoroom": "DM을 방으로 변환", + "discardsession": "암호화된 방에서 현재 방 외부의 그룹 세션을 강제로 삭제합니다", + "no_active_call": "이 방에 진행중인 통화 없음", + "me": "활동 표시하기" }, "presence": { "online_for": "%(duration)s 동안 온라인", @@ -1465,7 +1449,11 @@ "quick_reactions": "빠른 리액션" }, "auth": { - "sign_in_with_sso": "통합 인증(SSO)으로 로그인" + "sign_in_with_sso": "통합 인증(SSO)으로 로그인", + "account_clash": "당신의 새 계정 (%(newAccountId)s)을 등록했습니다, 하지만 다른 계정 (%(loggedInUserId)s)으로 로그인하고 있습니다.", + "account_clash_previous_account": "이 계정으로 계속", + "log_in_new_account": "새 계정으로 로그인하기.", + "registration_successful": "등록 성공" }, "export_chat": { "title": "대화 내보내기", @@ -1491,5 +1479,23 @@ "one": "1개의 읽지 않은 메시지." }, "unread_messages": "읽지 않은 메시지." + }, + "onboarding": { + "welcome_user": "환영합니다 %(name)s님", + "welcome_detail": "지금 시작할 수 있도록 도와드릴께요", + "send_dm": "다이렉트 메세지 보내기", + "explore_rooms": "공개 방 살펴보기", + "create_room": "그룹 대화 생성하기" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s 웹 버전:", + "help_link": "%(brand)s 사용 중 도움이 필요하다면, 여기를 클릭하세요.", + "help_link_chat_bot": "%(brand)s을 사용하다가 도움이 필요하다면, 여기를 클릭하거나, 아래 버튼을 사용해 우리의 봇과 대화를 시작하세요.", + "chat_bot": "%(brand)s 봇과 대화", + "title": "도움 & 정보", + "versions": "버전", + "clear_cache_reload": "캐시 지우기 및 새로고침" + } } } diff --git a/src/i18n/strings/lo.json b/src/i18n/strings/lo.json index 711ee7fb54..bb36d5ed57 100644 --- a/src/i18n/strings/lo.json +++ b/src/i18n/strings/lo.json @@ -507,9 +507,6 @@ "Error adding ignored user/server": "ເກີດຄວາມຜິດພາດໃນການເພີ່ມຜູ້ໃຊ້/ເຊີບເວີທີ່ລະເລີຍ", "Ignored/Blocked": "ບໍ່ສົນໃຈ/ຖືກບລັອກ", "Keyboard": "ແປ້ນພິມ", - "Clear cache and reload": "ລຶບ cache ແລະ ໂຫຼດໃຫມ່", - "Your access token gives full access to your account. Do not share it with anyone.": "ການເຂົ້າເຖິງໂທເຄັນຂອງທ່ານເປັນການເຂົ້າເຖິງບັນຊີຂອງທ່ານຢ່າງເຕັມທີ່. ຢ່າແບ່ງປັນໃຫ້ຄົນອຶ່ນ.", - "Versions": "ເວິຊັ້ນ", "Cross-signing public keys:": "ກະແຈສາທາລະນະທີ່ມີ Cross-signing:", "Cross-signing is not set up.": "ບໍ່ໄດ້ຕັ້ງຄ່າ Cross-signing.", "Your account has a cross-signing identity in secret storage, but it is not yet trusted by this session.": "ບັນຊີຂອງທ່ານມີຂໍ້ມູນແບບ cross-signing ໃນການເກັບຮັກສາຄວາມລັບ, ແຕ່ວ່າຍັງບໍ່ມີຄວາມເຊື່ອຖືໃນລະບົບນີ້.", @@ -691,7 +688,6 @@ "Invite anyway and never warn me again": "ເຊີນເລີຍ ແລະ ບໍ່ເຄີຍເຕືອນຂ້ອຍອີກ", "Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?": "ບໍ່ສາມາດຊອກຫາໂປຣໄຟລ໌ສຳລັບ Matrix IDs ທີ່ລະບຸໄວ້ຂ້າງລຸ່ມນີ້ - ທ່ານຕ້ອງການເຊີນເຂົາເຈົ້າບໍ່?", "The following users may not exist": "ຜູ້ໃຊ້ຕໍ່ໄປນີ້ອາດຈະບໍ່ມີຢູ່", - "Search (must be enabled)": "ການຄົ້ນຫາ (ຕ້ອງເປີດໃຊ້ງານ)", "Send Logs": "ສົ່ງບັນທຶກ", "Clear Storage and Sign Out": "ລຶບບ່ອນຈັດເກັບຂໍ້ມູນ ແລະ ອອກຈາກລະບົບ", "Sign out and remove encryption keys?": "ອອກຈາກລະບົບ ແລະ ລຶບລະຫັດການເຂົ້າລະຫັດອອກບໍ?", @@ -739,12 +735,6 @@ "This address is available to use": "ທີ່ຢູ່ນີ້ສາມາດໃຊ້ໄດ້", "This address does not point at this room": "ທີ່ຢູ່ນີ້ບໍ່ໄດ້ຊີ້ໄປທີ່ຫ້ອງນີ້", "Option %(number)s": "ຕົວເລືອກ %(number)s", - "Log in to your new account.": "ເຂົ້າສູ່ລະບົບ ບັນຊີໃໝ່ຂອງທ່ານ.", - "Continue with previous account": "ສືບຕໍ່ກັບບັນຊີທີ່ຜ່ານມາ", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "ບັນຊີໃຫມ່ຂອງທ່ານ (%(newAccountId)s) ໄດ້ລົງທະບຽນ, ແຕ່ວ່າທ່ານໄດ້ເຂົ້າສູ່ລະບົບບັນຊີອື່ນແລ້ວ (%(loggedInUserId)s).", - "Already have an account? Sign in here": "ມີບັນຊີແລ້ວບໍ? ເຂົ້າສູ່ລະບົບທີ່ນີ້", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s ຫຼື %(usernamePassword)s", - "Continue with %(ssoButtons)s": "ສືບຕໍ່ດ້ວຍ %(ssoButtons)s", "Someone already has that username, please try another.": "ບາງຄົນມີຊື່ຜູ້ໃຊ້ນັ້ນແລ້ວ, ກະລຸນາລອງຊຶ່ຜູ້ໃຊ້ອື່ນ.", "This server does not support authentication with a phone number.": "ເຊີບເວີນີ້ບໍ່ຮອງຮັບການພິສູດຢືນຢັນດ້ວຍເບີໂທລະສັບ.", "Unable to query for supported registration methods.": "ບໍ່ສາມາດສອບຖາມວິທີການລົງທະບຽນໄດ້.", @@ -895,13 +885,6 @@ "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "ຖ້າມີຄົນບອກທ່ານໃຫ້ສຳເນົາ/ວາງບາງອັນຢູ່ບ່ອນນີ້, ມີໂອກາດສູງທີ່ທ່ານຈະຖືກຫລອກລວງ!", "Wait!": "ລໍຖ້າ!", "Open dial pad": "ເປີດແຜ່ນປັດ", - "Create a Group Chat": "ສ້າງກຸ່ມສົນທະນາ", - "Explore Public Rooms": "ສຳຫຼວດຫ້ອງສາທາລະນະ", - "Send a Direct Message": "ສົ່ງຂໍ້ຄວາມໂດຍກົງ", - "Own your conversations.": "ເປັນເຈົ້າຂອງການສົນທະນາຂອງທ່ານ.", - "Welcome to %(appName)s": "ຍິນດີຕ້ອນຮັບສູ່ %(appName)s", - "Now, let's help you get started": "ຕອນນີ້, ໄດ້ເລີ່ມຕົ້ນ", - "Welcome %(name)s": "ຍິນດີຕ້ອນຮັບ %(name)s", "Remove from room": "ຍ້າຍອອກຈາກຫ້ອງ", "Disinvite from room": "ຕັດຂາດອອກຈາກຫ້ອງ", "Remove from space": "ລືບອອກຈາກພື້ນທີ່ຈັດເກັບ", @@ -1014,60 +997,6 @@ "Forget Room": "ລືມຫ້ອງ", "%(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.": "%(errcode)s ຖືກສົ່ງຄືນໃນຂະນະທີ່ພະຍາຍາມເຂົ້າເຖິງຫ້ອງ ຫຼື ພື້ນທີ່. ຖ້າຫາກທ່ານຄິດວ່າທ່ານກໍາລັງເຫັນຂໍ້ຄວາມນີ້ຜິດພາດ, ກະລຸນາ ສົ່ງບົດລາຍງານ bug.", "Try again later, or ask a room or space admin to check if you have access.": "ລອງໃໝ່ໃນພາຍຫຼັງ, ຫຼື ຂໍໃຫ້ຜູ້ຄຸ້ມຄອງຫ້ອງ ຫຼື ຜູ້ຄຸ້ມຄອງພື້ນທີ່ກວດເບິ່ງວ່າທ່ານມີການເຂົ້າເຖິງ ຫຼື ບໍ່.", - "Force complete": "ບັງຄັບໃຫ້ສໍາເລັດ", - "New line": "ແຖວໃໝ່", - "Activate selected button": "ເປີດໃຊ້ປຸ່ມທີ່ເລືອກ", - "Close dialog or context menu": "ປິດກ່ອງໂຕ້ຕອບ ຫຼື ຫົວຂໍ້ລາຍການ", - "Open user settings": "ເປີດການຕັ້ງຄ່າຜູ້ໃຊ້", - "Switch to space by number": "ສະຫຼັບໄປໃສ່ພຶ້ນທີ່ຕາມຕົວເລກ", - "Next recently visited room or space": "ຫ້ອງຫຼືພື້ນທີ່ຢ້ຽມຊົມຄັ້ງລ່າສຸດ", - "Previous recently visited room or space": "ຫ້ອງຫຼືພື້ນທີ່ຢ້ຽມຊົມກ່ອນໜ້ານີ້", - "Redo edit": "ແກ້ໄຂຄືນໃໝ່", - "Undo edit": "ຍົກເລີກການແກ້ໄຂ", - "Jump to last message": "ໄປຫາຂໍ້ຄວາມສຸດທ້າຍ", - "Jump to first message": "ໄປຫາຂໍ້ຄວາມທຳອິດ", - "Toggle hidden event visibility": "ສະຫຼັບການເບິ່ງເຫັນທີ່ເຊື່ອງໄວ້", - "Toggle space panel": "ສະຫຼັບແຖບພື້ນທີ່", - "Previous autocomplete suggestion": "ຄຳແນະນຳການຕື່ມຂໍ້ມູນອັດຕະໂນມັດທີ່ຜ່ານມາ", - "Next autocomplete suggestion": "ການແນະນຳການຕື່ມຂໍ້ມູນອັດຕະໂນມັດ ໂຕຕໍ່ໄປ", - "Cancel autocomplete": "ຍົກເລີກການຕື່ມຂໍ້ມູນອັດຕະໂນມັດ", - "Previous room or DM": "ຫ້ອງກ່ອນໜ້າ ຫຼື DM", - "Next room or DM": "ຫ້ອງທັດໄປ ຫຼື DM", - "Previous unread room or DM": "ຫ້ອງສົນທະນາທີ່ຍັງບໍ່ໄດ້ອ່ານກ່ອນໜ້າ ຫຼື DM", - "Next unread room or DM": "ຫ້ອງທັດໄປທີ່ຍັງບໍ່ໄດ້ອ່ານ ຫຼື DM", - "Go to Home View": "ໄປທີ່ທຳອິດ", - "Open this settings tab": "ເປີດແຖບການຕັ້ງຄ່ານີ້", - "Toggle right panel": "ສະຫຼັບແຜງດ້ານຂວາ", - "Toggle the top left menu": "ສະຫຼັບເມນູດ້ານຊ້າຍຂ້າງເທິງ", - "Navigate up in the room list": "ເລື່ອນລາຍຊື່ຫ້ອງຂຶ້ນໄປ", - "Navigate down in the room list": "ເລື່ອນລາຍການຫ້ອງລົງມາ", - "Expand room list section": "ຂະຫຍາຍພາກສ່ວນລາຍຊື່ຫ້ອງ", - "Collapse room list section": "ຫຍໍ້ພາກສ່ວນລາຍຊື່ຫ້ອງ", - "Select room from the room list": "ເລືອກຫ້ອງຕາມລາຍຊື່ຫ້ອງ", - "Jump to room search": "ໄປຫາຫ້ອງທີ່ຄົ້ນຫາ", - "Scroll down in the timeline": "ເລື່ອນທາມລາຍລົງມາ", - "Scroll up in the timeline": "ເລື່ອນຂຶ້ນໃນທາມລາຍ", - "Upload a file": "ອັບໂຫຼດໄຟລ໌", - "Jump to oldest unread message": "ໄປຫາຂໍ້ຄວາມເກົ່າແກ່ທີ່ສຸດທີ່ຍັງບໍ່ໄດ້ອ່ານ", - "Dismiss read marker and jump to bottom": "ປິດເຄື່ອງໝາຍການອ່ານ ແລະ ຂ້າມໄປດ້ານລຸ່ມສຸດ", - "Toggle webcam on/off": "ເປີດ/ປິດ webcam", - "Toggle microphone mute": "ປິດສຽງໄມໂຄຣໂຟນ", - "Send a sticker": "ສົ່ງສະຕິກເກີ", - "Navigate to previous message in composer history": "ໄປທີ່ຂໍ້ຄວາມກ່ອນໜ້ານີ້ໃນປະຫວັດການສ້າງຂໍ້ຄວາມ", - "Jump to end of the composer": "ໄປຫາຈຸດສິ້ນສຸດຂອງການສ້າງຂໍ້ຄວາມ", - "Jump to start of the composer": "ໄປຈຸດເລີ່ມຕົ້ນຂອງການສ້າງຂໍ້ຄວາມ", - "Navigate to previous message to edit": "ໄປທີ່ຂໍ້ຄວາມກ່ອນໜ້າເພື່ອແກ້ໄຂ", - "Navigate to next message to edit": "ໄປທີ່ຂໍ້ຄວາມທັດໄປເພື່ອແກ້ໄຂ", - "Cancel replying to a message": "ຍົກເລີກການຕອບກັບຂໍ້ຄວາມ", - "Toggle Link": "ສະຫຼັບລິ້ງ", - "Toggle Code Block": "ສະຫຼັບລະຫັດບລັອກ", - "Toggle Quote": "ສະຫຼັບວົງຢືມ", - "Toggle Italics": "ສະຫຼັບຕົວອຽງ", - "Toggle Bold": "ສະຫຼັບຕົວໜາ", - "Autocomplete": "ຕື່ມຂໍ້ມູນອັດຕະໂນມັດ", - "Navigation": "ການນໍາທາງ", - "Room List": "ລາຍການຫ້ອງ", - "Calls": "ໂທ", "Failed to add tag %(tagName)s to room": "ເພີ່ມແທັກ %(tagName)s ໃສ່ຫ້ອງບໍ່ສຳເລັດ", "Failed to remove tag %(tagName)s from room": "ລຶບແທັກ %(tagName)s ອອກຈາກຫ້ອງບໍ່ສຳເລັດ", "Message downloading sleep time(ms)": "ຂໍ້ຄວາມດາວໂຫຼດເວລາພັກເຄື່ອງ(ms)", @@ -1160,30 +1089,13 @@ "Verify with Security Key or Phrase": "ຢືນຢັນດ້ວຍກະແຈຄວາມປອດໄພ ຫຼືປະໂຫຍກ", "Proceed with reset": "ດຳເນີນການຕັ້ງຄ່າໃໝ່", "It looks like you don't have a Security Key or any other devices you can verify against. This device will not be able to access old encrypted messages. In order to verify your identity on this device, you'll need to reset your verification keys.": "ເບິ່ງຄືວ່າທ່ານບໍ່ມີກະແຈຄວາມປອດໄພ ຫຼື ອຸປະກອນອື່ນໆທີ່ທ່ານສາມາດຢືນຢັນໄດ້. ອຸປະກອນນີ້ຈະບໍ່ສາມາດເຂົ້າເຖິງຂໍ້ຄວາມທີ່ເຂົ້າລະຫັດເກົ່າໄດ້. ເພື່ອຢືນຢັນຕົວຕົນຂອງທ່ານໃນອຸປະກອນນີ້, ທ່ານຈຳເປັນຕ້ອງຕັ້ງລະຫັດຢືນຢັນຂອງທ່ານ.", - "Decide where your account is hosted": "ຕັດສິນໃຈວ່າບັນຊີຂອງທ່ານໃຊ້ເປັນເຈົ້າພາບຢູ່ໃສ", - "Host account on": "ບັນຊີເຈົ້າພາບເປີດຢູ່", "Create account": "ສ້າງບັນຊີ", - "Registration Successful": "ການລົງທະບຽນສຳເລັດແລ້ວ", - "Displays action": "ສະແດງການດຳເນີນການ", - "Converts the DM to a room": "ປ່ຽນ DM ເປັນຫ້ອງ", - "Converts the room to a DM": "ປ່ຽນຫ້ອງເປັນ DM", - "Takes the call in the current room off hold": "ການຮັບສາຍໃນຫ້ອງປະຈຸບັນຖຶກປິດໄວ້", - "No active call in this room": "ບໍ່ມີການໂທຢູ່ໃນຫ້ອງນີ້", - "Places the call in the current room on hold": "ວາງສາຍໄວ້ຢູ່ໃນຫ້ອງປະຈຸບັນ", - "Unable to find Matrix ID for phone number": "ບໍ່ສາມາດຊອກຫາ Matrix ID ສໍາລັບເບີໂທລະສັບ", - "Opens chat with the given user": "ເປີດການສົນທະນາກັບຜູ້ໃຊ້ທີ່ກຳນົດໄວ້", - "No virtual room for this room": "ບໍ່ມີຫ້ອງສະເໝືອນຈິງສຳລັບຫ້ອງນີ້", - "Switches to this room's virtual room, if it has one": "ສະຫຼັບໄປໃຊ້ຫ້ອງສະເໝືອນຈິງ, ຖ້າມີອີກຫ້ອງໜຶ່ງ", - "Forces the current outbound group session in an encrypted room to be discarded": "ບັງຄັບໃຫ້ປະຖິ້ມລະບົບຂາອອກໃນປະຈຸບັນຢູ່ໃນຫ້ອງທີ່ຖືກເຂົ້າລະຫັດ", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "ກະແຈໄຂລະຫັດທີ່ທ່ານໃຊ້ກົງກັບກະແຈໄຂລະຫັດທີ່ທ່ານໄດ້ຮັບຈາກ %(userId)s ເທິງອຸປະກອນ %(deviceId)s. ລະບົບຢັ້ງຢືນສຳເລັດແລ້ວ.", "Verified key": "ກະແຈທີ່ຢືນຢັນແລ້ວ", "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!": "ຄຳເຕືອນ: ການຢືນຢັນບໍ່ສຳເລັັດ! ປຸ່ມເຊັນຊື່ສຳລັບ %(userId)s ແລະ ລະບົບ %(deviceId)s ແມ່ນ \"%(fprint)s\" ບໍ່ກົງກັບລະຫັດທີ່ລະບຸໄວ້ \"%(fingerprint)s\". ນີ້ອາດຈະຫມາຍຄວາມວ່າການສື່ສານຂອງທ່ານຖືກຂັດຂວາງ!", "Session already verified!": "ການຢັ້ງຢືນລະບົບແລ້ວ!", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "ບໍ່ຮູ້ຈັກ (ຜູ້ໃຊ້, ລະບົບ) ຄູ່: (%(userId)s, %(deviceId)s)", "Verifies a user, session, and pubkey tuple": "ຢືນຢັນຜູ້ໃຊ້, ລະບົບ, ແລະ pubkey tuple", - "You cannot modify widgets in this room.": "ທ່ານບໍ່ສາມາດແກ້ໄຂ widget ໃນຫ້ອງນີ້ໄດ້.", - "Please supply a https:// or http:// widget URL": "ກະລຸນາສະໜອງ https:// ຫຼື http:// widget URL", - "Please supply a widget URL or embed code": "ກະລຸນາສະໜອງ widget URL ຫຼືລະຫັດຝັງ", "Command error: Unable to find rendering type (%(renderingType)s)": "ຄໍາສັ່ງຜິດພາດ: ບໍ່ສາມາດຊອກຫາປະເພດການສະແດງຜົນ (%(renderingType)s)", "Command error: Unable to handle slash command.": "ຄໍາສັ່ງຜິດພາດ: ບໍ່ສາມາດຈັດການກັບຄໍາສັ່ງ slash ໄດ້.", "Setting up keys": "ການຕັ້ງຄ່າກະແຈ", @@ -1303,10 +1215,7 @@ "Use your preferred Matrix homeserver if you have one, or host your own.": "ໃຊ້ Matrix homeserver ທີ່ທ່ານຕ້ອງການ ຖ້າຫາກທ່ານມີ ຫຼື ເປັນເຈົ້າພາບເອງ.", "Other homeserver": "homeserver ອື່ນ", "We call the places where you can host your account 'homeservers'.": "ພວກເຮົາໂທຫາສະຖານที่ບ່ອນທີ່ທ່ານເປັນhostບັນຊີຂອງທ່ານ 'homeservers'.", - "Navigate to next message in composer history": "ໄປທີ່ຂໍ້ຄວາມທັດໄປໃນປະຫວັດຂໍ້ຄວາມ", "For security, this session has been signed out. Please sign in again.": "ເພື່ອຄວາມປອດໄພ, ລະບົບນີ້ໄດ້ຖືກອອກຈາກລະບົບແລ້ວ. ກະລຸນາເຂົ້າສູ່ລະບົບອີກຄັ້ງ.", - "Add a photo so people know it's you.": "ເພີ່ມຮູບເພື່ອໃຫ້ຄົນຮູ້ວ່າແມ່ນທ່ານ.", - "Great, that'll help people know it's you": "ດີຫຼາຍ, ຊຶ່ງຈະຊ່ວຍໃຫ້ຄົນຮູ້ວ່າແມ່ນທ່ານ", "Attach files from chat or just drag and drop them anywhere in a room.": "ແນບໄຟລ໌ຈາກການສົນທະນາ ຫຼື ພຽງແຕ່ລາກແລ້ວວາງມັນໄວ້ບ່ອນໃດກໍໄດ້ໃນຫ້ອງ.", "No files visible in this room": "ບໍ່ມີໄຟລ໌ທີ່ເບິ່ງເຫັນຢູ່ໃນຫ້ອງນີ້", "You must join the room to see its files": "ທ່ານຕ້ອງເຂົ້າຮ່ວມຫ້ອງເພື່ອເບິ່ງໄຟລ໌", @@ -2075,7 +1984,6 @@ "Leave space": "ອອກຈາກພື້ນທີ່", "Leave some rooms": "ອອກຈາກບາງຫ້ອງ", "Leave all rooms": "ອອກຈາກຫ້ອງທັງຫມົດ", - "Olm version:": "ເວີຊັ້ນ Olm:", "On": "ເທິງ", "New keyword": "ຄໍາສໍາຄັນໃຫມ່", "Keyword": "ຄໍາສໍາຄັນ", @@ -2217,7 +2125,6 @@ "Flower": "ດອກໄມ້", "Butterfly": "ແມງກະເບື້ອ", "Octopus": "ປາຫມຶກ", - "%(brand)s version:": "%(brand)sເວີຊັ້ນ:", "Discovery": "ການຄົ້ນພົບ", "Deactivate account": "ປິດການນຳໃຊ້ບັນຊີ", "Deactivate Account": "ປິດການນຳໃຊ້ບັນຊີ", @@ -2259,11 +2166,7 @@ "Upgrade this room to version %(version)s": "ຍົກລະດັບຫ້ອງນີ້ເປັນເວີຊັ່ນ %(version)s", "The room upgrade could not be completed": "ການຍົກລະດັບຫ້ອງບໍ່ສຳເລັດໄດ້", "Failed to upgrade room": "ຍົກລະດັບຫ້ອງບໍ່ສຳເລັດ", - "Help & About": "ຊ່ວຍເຫຼືອ & ກ່ຽວກັບ", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "ເພື່ອລາຍງານບັນຫາຄວາມປອດໄພທີ່ກ່ຽວຂ້ອງກັບ Matrix, ກະລຸນາອ່ານ ນະໂຍບາຍການເປີດເຜີຍຄວາມປອດໄພ Matrix.org.", - "Chat with %(brand)s Bot": "ສົນທະນາກັບ %(brand)s Bot", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ ທີ່ນີ້ ຫຼືເລີ່ມການສົນທະນາກັບ bot ຂອງພວກເຮົາໂດຍໃຊ້ປຸ່ມຂ້າງລຸ່ມນີ້.", - "For help with using %(brand)s, click here.": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ ທີ່ນີ້.", "Clear all data in this session?": "ລຶບລ້າງຂໍ້ມູນທັງໝົດໃນລະບົບນີ້ບໍ?", "Reason (optional)": "ເຫດຜົນ (ທາງເລືອກ)", "Confirm Removal": "ຢືນຢັນການລຶບອອກ", @@ -2651,7 +2554,63 @@ "control": "ປຸ່ມ Ctrl", "shift": "ປຸ່ມShift", "number": "[ຕົວເລກ]", - "backspace": "ປຸ່ມກົດລຶບ" + "backspace": "ປຸ່ມກົດລຶບ", + "category_calls": "ໂທ", + "category_room_list": "ລາຍການຫ້ອງ", + "category_navigation": "ການນໍາທາງ", + "category_autocomplete": "ຕື່ມຂໍ້ມູນອັດຕະໂນມັດ", + "composer_toggle_bold": "ສະຫຼັບຕົວໜາ", + "composer_toggle_italics": "ສະຫຼັບຕົວອຽງ", + "composer_toggle_quote": "ສະຫຼັບວົງຢືມ", + "composer_toggle_code_block": "ສະຫຼັບລະຫັດບລັອກ", + "composer_toggle_link": "ສະຫຼັບລິ້ງ", + "cancel_reply": "ຍົກເລີກການຕອບກັບຂໍ້ຄວາມ", + "navigate_next_message_edit": "ໄປທີ່ຂໍ້ຄວາມທັດໄປເພື່ອແກ້ໄຂ", + "navigate_prev_message_edit": "ໄປທີ່ຂໍ້ຄວາມກ່ອນໜ້າເພື່ອແກ້ໄຂ", + "composer_jump_start": "ໄປຈຸດເລີ່ມຕົ້ນຂອງການສ້າງຂໍ້ຄວາມ", + "composer_jump_end": "ໄປຫາຈຸດສິ້ນສຸດຂອງການສ້າງຂໍ້ຄວາມ", + "composer_navigate_next_history": "ໄປທີ່ຂໍ້ຄວາມທັດໄປໃນປະຫວັດຂໍ້ຄວາມ", + "composer_navigate_prev_history": "ໄປທີ່ຂໍ້ຄວາມກ່ອນໜ້ານີ້ໃນປະຫວັດການສ້າງຂໍ້ຄວາມ", + "send_sticker": "ສົ່ງສະຕິກເກີ", + "toggle_microphone_mute": "ປິດສຽງໄມໂຄຣໂຟນ", + "toggle_webcam_mute": "ເປີດ/ປິດ webcam", + "dismiss_read_marker_and_jump_bottom": "ປິດເຄື່ອງໝາຍການອ່ານ ແລະ ຂ້າມໄປດ້ານລຸ່ມສຸດ", + "jump_to_read_marker": "ໄປຫາຂໍ້ຄວາມເກົ່າແກ່ທີ່ສຸດທີ່ຍັງບໍ່ໄດ້ອ່ານ", + "upload_file": "ອັບໂຫຼດໄຟລ໌", + "scroll_up_timeline": "ເລື່ອນຂຶ້ນໃນທາມລາຍ", + "scroll_down_timeline": "ເລື່ອນທາມລາຍລົງມາ", + "jump_room_search": "ໄປຫາຫ້ອງທີ່ຄົ້ນຫາ", + "room_list_select_room": "ເລືອກຫ້ອງຕາມລາຍຊື່ຫ້ອງ", + "room_list_collapse_section": "ຫຍໍ້ພາກສ່ວນລາຍຊື່ຫ້ອງ", + "room_list_expand_section": "ຂະຫຍາຍພາກສ່ວນລາຍຊື່ຫ້ອງ", + "room_list_navigate_down": "ເລື່ອນລາຍການຫ້ອງລົງມາ", + "room_list_navigate_up": "ເລື່ອນລາຍຊື່ຫ້ອງຂຶ້ນໄປ", + "toggle_top_left_menu": "ສະຫຼັບເມນູດ້ານຊ້າຍຂ້າງເທິງ", + "toggle_right_panel": "ສະຫຼັບແຜງດ້ານຂວາ", + "keyboard_shortcuts_tab": "ເປີດແຖບການຕັ້ງຄ່ານີ້", + "go_home_view": "ໄປທີ່ທຳອິດ", + "next_unread_room": "ຫ້ອງທັດໄປທີ່ຍັງບໍ່ໄດ້ອ່ານ ຫຼື DM", + "prev_unread_room": "ຫ້ອງສົນທະນາທີ່ຍັງບໍ່ໄດ້ອ່ານກ່ອນໜ້າ ຫຼື DM", + "next_room": "ຫ້ອງທັດໄປ ຫຼື DM", + "prev_room": "ຫ້ອງກ່ອນໜ້າ ຫຼື DM", + "autocomplete_cancel": "ຍົກເລີກການຕື່ມຂໍ້ມູນອັດຕະໂນມັດ", + "autocomplete_navigate_next": "ການແນະນຳການຕື່ມຂໍ້ມູນອັດຕະໂນມັດ ໂຕຕໍ່ໄປ", + "autocomplete_navigate_prev": "ຄຳແນະນຳການຕື່ມຂໍ້ມູນອັດຕະໂນມັດທີ່ຜ່ານມາ", + "toggle_space_panel": "ສະຫຼັບແຖບພື້ນທີ່", + "toggle_hidden_events": "ສະຫຼັບການເບິ່ງເຫັນທີ່ເຊື່ອງໄວ້", + "jump_first_message": "ໄປຫາຂໍ້ຄວາມທຳອິດ", + "jump_last_message": "ໄປຫາຂໍ້ຄວາມສຸດທ້າຍ", + "composer_undo": "ຍົກເລີກການແກ້ໄຂ", + "composer_redo": "ແກ້ໄຂຄືນໃໝ່", + "navigate_prev_history": "ຫ້ອງຫຼືພື້ນທີ່ຢ້ຽມຊົມກ່ອນໜ້ານີ້", + "navigate_next_history": "ຫ້ອງຫຼືພື້ນທີ່ຢ້ຽມຊົມຄັ້ງລ່າສຸດ", + "switch_to_space": "ສະຫຼັບໄປໃສ່ພຶ້ນທີ່ຕາມຕົວເລກ", + "open_user_settings": "ເປີດການຕັ້ງຄ່າຜູ້ໃຊ້", + "close_dialog_menu": "ປິດກ່ອງໂຕ້ຕອບ ຫຼື ຫົວຂໍ້ລາຍການ", + "activate_button": "ເປີດໃຊ້ປຸ່ມທີ່ເລືອກ", + "composer_new_line": "ແຖວໃໝ່", + "autocomplete_force": "ບັງຄັບໃຫ້ສໍາເລັດ", + "search": "ການຄົ້ນຫາ (ຕ້ອງເປີດໃຊ້ງານ)" }, "composer": { "format_bold": "ຕົວໜາ", @@ -3226,7 +3185,21 @@ "category_admin": "ບໍລິຫານ", "category_advanced": "ຂັ້ນສູງ", "category_effects": "ຜົນກະທົບ", - "category_other": "ອື່ນໆ" + "category_other": "ອື່ນໆ", + "addwidget_missing_url": "ກະລຸນາສະໜອງ widget URL ຫຼືລະຫັດຝັງ", + "addwidget_invalid_protocol": "ກະລຸນາສະໜອງ https:// ຫຼື http:// widget URL", + "addwidget_no_permissions": "ທ່ານບໍ່ສາມາດແກ້ໄຂ widget ໃນຫ້ອງນີ້ໄດ້.", + "converttodm": "ປ່ຽນຫ້ອງເປັນ DM", + "converttoroom": "ປ່ຽນ DM ເປັນຫ້ອງ", + "discardsession": "ບັງຄັບໃຫ້ປະຖິ້ມລະບົບຂາອອກໃນປະຈຸບັນຢູ່ໃນຫ້ອງທີ່ຖືກເຂົ້າລະຫັດ", + "tovirtual": "ສະຫຼັບໄປໃຊ້ຫ້ອງສະເໝືອນຈິງ, ຖ້າມີອີກຫ້ອງໜຶ່ງ", + "tovirtual_not_found": "ບໍ່ມີຫ້ອງສະເໝືອນຈິງສຳລັບຫ້ອງນີ້", + "query": "ເປີດການສົນທະນາກັບຜູ້ໃຊ້ທີ່ກຳນົດໄວ້", + "query_not_found_phone_number": "ບໍ່ສາມາດຊອກຫາ Matrix ID ສໍາລັບເບີໂທລະສັບ", + "holdcall": "ວາງສາຍໄວ້ຢູ່ໃນຫ້ອງປະຈຸບັນ", + "no_active_call": "ບໍ່ມີການໂທຢູ່ໃນຫ້ອງນີ້", + "unholdcall": "ການຮັບສາຍໃນຫ້ອງປະຈຸບັນຖຶກປິດໄວ້", + "me": "ສະແດງການດຳເນີນການ" }, "presence": { "busy": "ບໍ່ຫວ່າງ", @@ -3394,7 +3367,16 @@ "auth": { "continue_with_idp": "ສືບຕໍ່ກັບ %(provider)s", "sign_in_with_sso": "ເຂົ້າສູ່ລະບົບດ້ວຍການລົງຊື່ເຂົ້າໃຊ້ພຽງຄັ້ງດຽວ", - "sso": "ເຂົ້າລະບົບແບບປະຕູດຽວ (SSO)" + "sso": "ເຂົ້າລະບົບແບບປະຕູດຽວ (SSO)", + "continue_with_sso": "ສືບຕໍ່ດ້ວຍ %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s ຫຼື %(usernamePassword)s", + "sign_in_instead": "ມີບັນຊີແລ້ວບໍ? ເຂົ້າສູ່ລະບົບທີ່ນີ້", + "account_clash": "ບັນຊີໃຫມ່ຂອງທ່ານ (%(newAccountId)s) ໄດ້ລົງທະບຽນ, ແຕ່ວ່າທ່ານໄດ້ເຂົ້າສູ່ລະບົບບັນຊີອື່ນແລ້ວ (%(loggedInUserId)s).", + "account_clash_previous_account": "ສືບຕໍ່ກັບບັນຊີທີ່ຜ່ານມາ", + "log_in_new_account": "ເຂົ້າສູ່ລະບົບ ບັນຊີໃໝ່ຂອງທ່ານ.", + "registration_successful": "ການລົງທະບຽນສຳເລັດແລ້ວ", + "server_picker_title": "ບັນຊີເຈົ້າພາບເປີດຢູ່", + "server_picker_dialog_title": "ຕັດສິນໃຈວ່າບັນຊີຂອງທ່ານໃຊ້ເປັນເຈົ້າພາບຢູ່ໃສ" }, "room_list": { "sort_unread_first": "ສະແດງຫ້ອງຂໍ້ຄວາມທີ່ຍັງບໍ່ທັນໄດ້ອ່ານກ່ອນ", @@ -3427,5 +3409,29 @@ "report_entire_room": "ລາຍງານຫ້ອງທັງໝົດ", "report_content_to_homeserver": "ລາຍງານເນື້ອຫາໃຫ້ຜູ້ຄຸ້ມຄອງລະບົບ Homeserver ຂອງທ່ານ", "description": "ການລາຍງານຂໍ້ຄວາມນີ້ຈະສົ່ງ 'ID ເຫດການ' ທີ່ບໍ່ຊໍ້າກັນໄປຫາຜູ້ຄຸ້ມຄອງລະບົບເຊີບເວີຂອງທ່ານ. ຖ້າຂໍ້ຄວາມຢູ່ໃນຫ້ອງນີ້ຖືກເຂົ້າລະຫັດໄວ້, ຜູ້ຄຸ້ມຄອງລະບົບເຊີບເວີຂອງທ່ານຈະບໍ່ສາມາດອ່ານຂໍ້ຄວາມ ຫຼືເບິ່ງໄຟລ໌ ຫຼືຮູບພາບຕ່າງໆໄດ້." + }, + "onboarding": { + "has_avatar_label": "ດີຫຼາຍ, ຊຶ່ງຈະຊ່ວຍໃຫ້ຄົນຮູ້ວ່າແມ່ນທ່ານ", + "no_avatar_label": "ເພີ່ມຮູບເພື່ອໃຫ້ຄົນຮູ້ວ່າແມ່ນທ່ານ.", + "welcome_user": "ຍິນດີຕ້ອນຮັບ %(name)s", + "welcome_detail": "ຕອນນີ້, ໄດ້ເລີ່ມຕົ້ນ", + "intro_welcome": "ຍິນດີຕ້ອນຮັບສູ່ %(appName)s", + "intro_byline": "ເປັນເຈົ້າຂອງການສົນທະນາຂອງທ່ານ.", + "send_dm": "ສົ່ງຂໍ້ຄວາມໂດຍກົງ", + "explore_rooms": "ສຳຫຼວດຫ້ອງສາທາລະນະ", + "create_room": "ສ້າງກຸ່ມສົນທະນາ" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)sເວີຊັ້ນ:", + "olm_version": "ເວີຊັ້ນ Olm:", + "help_link": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ ທີ່ນີ້.", + "help_link_chat_bot": "ສໍາລັບການຊ່ວຍເຫຼືອໃນການນໍາໃຊ້ %(brand)s, ກົດ ທີ່ນີ້ ຫຼືເລີ່ມການສົນທະນາກັບ bot ຂອງພວກເຮົາໂດຍໃຊ້ປຸ່ມຂ້າງລຸ່ມນີ້.", + "chat_bot": "ສົນທະນາກັບ %(brand)s Bot", + "title": "ຊ່ວຍເຫຼືອ & ກ່ຽວກັບ", + "versions": "ເວິຊັ້ນ", + "access_token_detail": "ການເຂົ້າເຖິງໂທເຄັນຂອງທ່ານເປັນການເຂົ້າເຖິງບັນຊີຂອງທ່ານຢ່າງເຕັມທີ່. ຢ່າແບ່ງປັນໃຫ້ຄົນອຶ່ນ.", + "clear_cache_reload": "ລຶບ cache ແລະ ໂຫຼດໃຫມ່" + } } } diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index 614fc99101..e986ed58ed 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -83,7 +83,6 @@ "Room %(roomId)s not visible": "Kambarys %(roomId)s nematomas", "You are now ignoring %(userId)s": "Dabar ignoruojate %(userId)s", "Verified key": "Patvirtintas raktas", - "Displays action": "Rodo veiksmą", "Reason": "Priežastis", "Incorrect verification code": "Neteisingas patvirtinimo kodas", "Phone": "Telefonas", @@ -152,7 +151,6 @@ "Email": "El. paštas", "Profile": "Profilis", "Account": "Paskyra", - "%(brand)s version:": "%(brand)s versija:", "The email address linked to your account must be entered.": "Privalo būti įvestas su jūsų paskyra susietas el. pašto adresas.", "A new password must be entered.": "Privalo būti įvestas naujas slaptažodis.", "New passwords must match each other.": "Nauji slaptažodžiai privalo sutapti.", @@ -305,7 +303,6 @@ "This server does not support authentication with a phone number.": "Šis serveris nepalaiko tapatybės nustatymo telefono numeriu.", "Add Email Address": "Pridėti El. Pašto Adresą", "Add Phone Number": "Pridėti Telefono Numerį", - "Chat with %(brand)s Bot": "Kalbėtis su %(brand)s Botu", "Explore rooms": "Žvalgyti kambarius", "Your %(brand)s is misconfigured": "Jūsų %(brand)s yra neteisingai sukonfigūruotas", "Call failed due to misconfigured server": "Skambutis nepavyko dėl neteisingai sukonfigūruoto serverio", @@ -326,9 +323,6 @@ "You are no longer ignoring %(userId)s": "Dabar nebeignoruojate %(userId)s", "Define the power level of a user": "Nustatykite vartotojo galios lygį", "Deops user with given id": "Deop'ina vartotoją su nurodytu id", - "Please supply a https:// or http:// widget URL": "Pateikite https:// arba http:// valdiklio URL", - "You cannot modify widgets in this room.": "Jūs negalite modifikuoti valdiklių šiame kambaryje.", - "Forces the current outbound group session in an encrypted room to be discarded": "Priverčia išmesti esamą užsibaigiantį grupės seansą užšifruotame kambaryje", "Cannot reach homeserver": "Serveris nepasiekiamas", "Ensure you have a stable internet connection, or get in touch with the server admin": "Įsitikinkite, kad jūsų interneto ryšys yra stabilus, arba susisiekite su serverio administratoriumi", "Ask your %(brand)s admin to check your config for incorrect or duplicate entries.": "Paprašykite savo %(brand)s administratoriaus patikrinti ar jūsų konfigūracijoje nėra neteisingų arba pasikartojančių įrašų.", @@ -390,7 +384,6 @@ "Email (optional)": "El. paštas (neprivaloma)", "If you didn't set the new recovery method, an attacker may be trying to access your account. Change your account password and set a new recovery method immediately in Settings.": "Jei jūs nenustatėte naujo paskyros atgavimo metodo, gali būti, kad užpuolikas bando patekti į jūsų paskyrą. Nedelsiant nustatymuose pakeiskite savo paskyros slaptažodį ir nustatykite naują atgavimo metodą.", "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.": "Jei jūs nepašalinote paskyros atgavimo metodo, gali būti, kad užpuolikas bando patekti į jūsų paskyrą. Nedelsiant nustatymuose pakeiskite savo paskyros slaptažodį ir nustatykite naują atgavimo metodą.", - "Help & About": "Pagalba ir Apie", "Direct Messages": "Privačios žinutės", "Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Nustatykite adresus šiam kambariui, kad vartotojai galėtų surasti šį kambarį per jūsų serverį (%(localDomain)s)", "Power level": "Galios lygis", @@ -400,10 +393,6 @@ "Command Help": "Komandų pagalba", "Tried to load a specific point in this room's timeline, but was unable to find it.": "Bandyta įkelti konkrečią vietą šio kambario laiko juostoje, bet nepavyko jos rasti.", "This process allows you to export the keys for messages you have received in encrypted rooms to a local file. You will then be able to import the file into another Matrix client in the future, so that client will also be able to decrypt these messages.": "Šis procesas leidžia jums eksportuoti užšifruotuose kambariuose gautų žinučių raktus į lokalų failą. Tada jūs turėsite galimybę ateityje importuoti šį failą į kitą Matrix klientą, kad tas klientas taip pat galėtų iššifruoti tas žinutes.", - "Navigation": "Navigacija", - "Calls": "Skambučiai", - "Room List": "Kambarių Sąrašas", - "Autocomplete": "Autorašymas", "Verify this session": "Patvirtinti šį seansą", "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "Užšifruotos žinutės yra apsaugotos visapusiu šifravimu. Tik jūs ir gavėjas(-ai) turi raktus šioms žinutėms perskaityti.", "Back up your keys before signing out to avoid losing them.": "Prieš atsijungdami sukurkite atsarginę savo raktų kopiją, kad išvengtumėte jų praradimo.", @@ -445,7 +434,6 @@ "Messages in this room are not end-to-end encrypted.": "Žinutės šiame kambaryje nėra visapusiškai užšifruotos.", "Confirm Removal": "Patvirtinkite pašalinimą", "Manually export keys": "Eksportuoti raktus rankiniu būdu", - "Send a Direct Message": "Siųsti tiesioginę žinutę", "Go back to set it again.": "Grįžti atgal, kad nustatyti iš naujo.", "Click the button below to confirm adding this email address.": "Paspauskite mygtuką žemiau, kad patvirtintumėte šio el. pašto pridėjimą.", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Prieš atsijungiant rekomenduojame iš tapatybės serverio pašalinti savo el. pašto adresus ir telefono numerius.", @@ -465,11 +453,6 @@ "That doesn't match.": "Tai nesutampa.", "Your password has been reset.": "Jūsų slaptažodis buvo iš naujo nustatytas.", "Show more": "Rodyti daugiau", - "Log in to your new account.": "Prisijunkite prie naujos paskyros.", - "Registration Successful": "Registracija sėkminga", - "Welcome to %(appName)s": "Sveiki prisijungę į %(appName)s", - "Explore Public Rooms": "Žvalgyti viešus kambarius", - "Create a Group Chat": "Sukurti grupės pokalbį", "New login. Was this you?": "Naujas prisijungimas. Ar tai jūs?", "Verify your other session using one of the options below.": "Patvirtinkite savo kitą seansą naudodami vieną iš žemiau esančių parinkčių.", "Restore from Backup": "Atkurti iš Atsarginės Kopijos", @@ -671,9 +654,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.": "Kambario atnaujinimas yra sudėtingas veiksmas ir paprastai rekomenduojamas, kai kambarys nestabilus dėl klaidų, trūkstamų funkcijų ar saugos spragų.", "To help us prevent this in future, please send us logs.": "Norėdami padėti mums išvengti to ateityje, atsiųskite mums žurnalus.", "Emoji Autocomplete": "Jaustukų automatinis užbaigimas", - "Select room from the room list": "Pasirinkti kambarį iš kambarių sąrašo", - "Collapse room list section": "Sutraukti kambarių sąrašo skyrių", - "Expand room list section": "Išplėsti kambarių sąrašo skyrių", "Failed to reject invitation": "Nepavyko atmesti pakvietimo", "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.", @@ -753,11 +733,7 @@ "Cannot connect to integration manager": "Neįmanoma prisijungti prie integracijų tvarkytuvo", "The integration manager is offline or it cannot reach your homeserver.": "Integracijų tvarkytuvas yra išjungtas arba negali pasiekti jūsų serverio.", "Disconnect anyway": "Vis tiek atsijungti", - "For help with using %(brand)s, click here.": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite čia.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite čia arba pradėkite pokalbį su mūsų botu pasinaudoję žemiau esančiu mygtuku.", - "Clear cache and reload": "Išvalyti podėlį ir perkrauti", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Norėdami pranešti apie su Matrix susijusią saugos problemą, perskaitykite Matrix.org Saugumo Atskleidimo Poliiką.", - "Versions": "Versijos", "Import E2E room keys": "Importuoti E2E (visapusio šifravimo) kambarių raktus", "Session ID:": "Seanso ID:", "Session key:": "Seanso raktas:", @@ -772,21 +748,6 @@ "This session is encrypting history using the new recovery method.": "Šis seansas šifruoja istoriją naudodamas naują atgavimo metodą.", "Recovery Method Removed": "Atgavimo Metodas Pašalintas", "If you did this accidentally, you can setup Secure Messages on this session which will re-encrypt this session's message history with a new recovery method.": "Jei tai padarėte netyčia, šiame seanse galite nustatyti saugias žinutes, kurios pakartotinai užšifruos šio seanso žinučių istoriją nauju atgavimo metodu.", - "Toggle Bold": "Perjungti paryškinimą", - "Toggle Italics": "Perjungti kursyvą", - "Toggle Quote": "Perjungti citatą", - "New line": "Nauja eilutė", - "Cancel replying to a message": "Atšaukti atsakymą į žinutę", - "Toggle microphone mute": "Perjungti mikrofono nutildymą", - "Dismiss read marker and jump to bottom": "Atsisakyti skaitymo žymeklio ir nušokti į apačią", - "Jump to oldest unread message": "Nušokti iki seniausios neperskaitytos žinutės", - "Upload a file": "Įkelti failą", - "Jump to room search": "Nušokti į kambarių paiešką", - "Toggle the top left menu": "Perjungti viršutinį kairės pusės meniu", - "Close dialog or context menu": "Uždaryti dialogą arba kontekstinį meniu", - "Activate selected button": "Aktyvuoti pasirinktą mygtuką", - "Toggle right panel": "Perjungti dešinį skydelį", - "Cancel autocomplete": "Atšaukti automatinį užbaigimą", "Error upgrading room": "Klaida atnaujinant kambarį", "Are you sure you want to cancel entering passphrase?": "Ar tikrai norite atšaukti slaptafrazės įvedimą?", "Feedback": "Atsiliepimai", @@ -862,11 +823,9 @@ "The call was answered on another device.": "Į skambutį buvo atsiliepta kitame įrenginyje.", "Answered Elsewhere": "Atsiliepta Kitur", "The call could not be established": "Nepavyko pradėti skambučio", - "Opens chat with the given user": "Atidaro pokalbį su nurodytu vartotoju", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Jūsų pateiktas pasirašymo raktas sutampa su pasirašymo raktu, gautu iš vartotojo %(userId)s seanso %(deviceId)s. Seansas pažymėtas kaip patikrintas.", "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!": "ĮSPĖJIMAS: RAKTŲ PATIKRINIMAS NEPAVYKO! Pasirašymo raktas vartotojui %(userId)s ir seansui %(deviceId)s yra \"%(fprint)s\", kuris nesutampa su pateiktu raktu \"%(fingerprint)s\". Tai gali reikšti, kad jūsų komunikacijos yra perimamos!", "Verifies a user, session, and pubkey tuple": "Patvirtina vartotojo, seanso ir pubkey daugiadalę duomenų struktūrą", - "Please supply a widget URL or embed code": "Pateikite valdiklio URL arba įterpimo kodą", "Could not find user in room": "Vartotojo rasti kambaryje nepavyko", "You signed in to a new session without verifying it:": "Jūs prisijungėte prie naujo seanso, jo nepatvirtinę:", "You can also set up Secure Backup & manage your keys in Settings.": "Jūs taip pat galite nustatyti Saugią Atsarginę Kopiją ir tvarkyti savo raktus Nustatymuose.", @@ -1026,8 +985,6 @@ "Successfully restored %(sessionCount)s keys": "Sėkmingai atkurti %(sessionCount)s raktai", "Reason (optional)": "Priežastis (nebūtina)", "Reason: %(reason)s": "Priežastis: %(reason)s", - "Already have an account? Sign in here": "Jau turite paskyrą? Prisijunkite čia", - "Host account on": "Kurti paskyrą serveryje", "Forgotten your password?": "Pamiršote savo slaptažodį?", "New? Create account": "Naujas vartotojas? Sukurkite paskyrą", "Preparing to download logs": "Ruošiamasi parsiųsti žurnalus", @@ -1084,7 +1041,6 @@ "Generate a Security Key": "Generuoti Saugumo Raktą", "Save your Security Key": "Išsaugoti savo Saugumo Raktą", "Go to Settings": "Eiti į Nustatymus", - "Search (must be enabled)": "Paieška (turi būti įjungta)", "The user you called is busy.": "Vartotojas kuriam skambinate yra užsiėmęs.", "User Busy": "Vartotojas Užsiėmęs", "Any of the following data may be shared:": "Gali būti dalijamasi bet kuriais toliau nurodytais duomenimis:", @@ -1296,7 +1252,6 @@ "Connectivity to the server has been lost": "Ryšys su serveriu nutrūko", "Unable to share email address": "Nepavyko pasidalinti el. pašto adresu", "Verification code": "Patvirtinimo kodas", - "Olm version:": "Olm versija:", "Mentions & keywords": "Paminėjimai & Raktažodžiai", "New keyword": "Naujas raktažodis", "Keyword": "Raktažodis", @@ -1530,7 +1485,6 @@ "To view all keyboard shortcuts, click here.": "Norint peržiūrėti visus sparčiuosius klavišus, paspauskite čia.", "Keyboard shortcuts": "Spartieji klavišai", "Keyboard": "Klaviatūra", - "Your access token gives full access to your account. Do not share it with anyone.": "Jūsų prieigos žetonas suteikia visišką prieigą prie paskyros. Niekam jo neduokite.", "Deactivating your account is a permanent action — be careful!": "Paskyros deaktyvavimas yra negrįžtamas veiksmas — būkite atsargūs!", "Spell check": "Rašybos tikrinimas", "Your password was successfully changed.": "Jūsų slaptažodis sėkmingai pakeistas.", @@ -1985,7 +1939,30 @@ "alt": "Alt", "control": "Ctrl", "shift": "Shift", - "number": "[skaičius]" + "number": "[skaičius]", + "category_calls": "Skambučiai", + "category_room_list": "Kambarių Sąrašas", + "category_navigation": "Navigacija", + "category_autocomplete": "Autorašymas", + "composer_toggle_bold": "Perjungti paryškinimą", + "composer_toggle_italics": "Perjungti kursyvą", + "composer_toggle_quote": "Perjungti citatą", + "cancel_reply": "Atšaukti atsakymą į žinutę", + "toggle_microphone_mute": "Perjungti mikrofono nutildymą", + "dismiss_read_marker_and_jump_bottom": "Atsisakyti skaitymo žymeklio ir nušokti į apačią", + "jump_to_read_marker": "Nušokti iki seniausios neperskaitytos žinutės", + "upload_file": "Įkelti failą", + "jump_room_search": "Nušokti į kambarių paiešką", + "room_list_select_room": "Pasirinkti kambarį iš kambarių sąrašo", + "room_list_collapse_section": "Sutraukti kambarių sąrašo skyrių", + "room_list_expand_section": "Išplėsti kambarių sąrašo skyrių", + "toggle_top_left_menu": "Perjungti viršutinį kairės pusės meniu", + "toggle_right_panel": "Perjungti dešinį skydelį", + "autocomplete_cancel": "Atšaukti automatinį užbaigimą", + "close_dialog_menu": "Uždaryti dialogą arba kontekstinį meniu", + "activate_button": "Aktyvuoti pasirinktą mygtuką", + "composer_new_line": "Nauja eilutė", + "search": "Paieška (turi būti įjungta)" }, "composer": { "format_bold": "Pusjuodis", @@ -2084,7 +2061,11 @@ "download_app_description": "Nepraleiskite nieko, jei su savimi pasiimsite %(brand)s", "download_app_action": "Atsisiųsti programėles", "download_app": "Atsisiųsti %(brand)s", - "download_brand": "Atsisiųsti %(brand)s" + "download_brand": "Atsisiųsti %(brand)s", + "intro_welcome": "Sveiki prisijungę į %(appName)s", + "send_dm": "Siųsti tiesioginę žinutę", + "explore_rooms": "Žvalgyti viešus kambarius", + "create_room": "Sukurti grupės pokalbį" }, "settings": { "show_breadcrumbs": "Rodyti neseniai peržiūrėtų kambarių nuorodas virš kambarių sąrašo", @@ -2454,7 +2435,13 @@ "category_actions": "Veiksmai", "category_admin": "Administratorius", "category_advanced": "Išplėstiniai", - "category_other": "Kitas" + "category_other": "Kitas", + "addwidget_missing_url": "Pateikite valdiklio URL arba įterpimo kodą", + "addwidget_invalid_protocol": "Pateikite https:// arba http:// valdiklio URL", + "addwidget_no_permissions": "Jūs negalite modifikuoti valdiklių šiame kambaryje.", + "discardsession": "Priverčia išmesti esamą užsibaigiantį grupės seansą užšifruotame kambaryje", + "query": "Atidaro pokalbį su nurodytu vartotoju", + "me": "Rodo veiksmą" }, "presence": { "busy": "Užsiėmęs", @@ -2614,7 +2601,11 @@ "error_no_permission_add_space": "Neturite leidimų į šią erdvę pridėti erdvių" }, "auth": { - "sso": "Vienas Prisijungimas" + "sso": "Vienas Prisijungimas", + "sign_in_instead": "Jau turite paskyrą? Prisijunkite čia", + "log_in_new_account": "Prisijunkite prie naujos paskyros.", + "registration_successful": "Registracija sėkminga", + "server_picker_title": "Kurti paskyrą serveryje" }, "room_list": { "sort_unread_first": "Pirmiausia rodyti kambarius su neperskaitytomis žinutėmis", @@ -2645,5 +2636,18 @@ "other": "%(count)s neperskaitytos žinutės." }, "unread_messages": "Neperskaitytos žinutės." + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s versija:", + "olm_version": "Olm versija:", + "help_link": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite čia.", + "help_link_chat_bot": "Norėdami gauti pagalbos naudojant %(brand)s, paspauskite čia arba pradėkite pokalbį su mūsų botu pasinaudoję žemiau esančiu mygtuku.", + "chat_bot": "Kalbėtis su %(brand)s Botu", + "title": "Pagalba ir Apie", + "versions": "Versijos", + "access_token_detail": "Jūsų prieigos žetonas suteikia visišką prieigą prie paskyros. Niekam jo neduokite.", + "clear_cache_reload": "Išvalyti podėlį ir perkrauti" + } } } diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json index c681aedff6..a794409ff6 100644 --- a/src/i18n/strings/lv.json +++ b/src/i18n/strings/lv.json @@ -28,7 +28,6 @@ "Decrypt %(text)s": "Atšifrēt %(text)s", "Deops user with given id": "Atceļ operatora statusu lietotājam ar norādīto Id", "Default": "Noklusējuma", - "Displays action": "Parāda darbību", "Download %(text)s": "Lejupielādēt: %(text)s", "Email": "Epasts", "Email address": "Epasta adrese", @@ -89,7 +88,6 @@ "Return to login screen": "Atgriezties uz pierakstīšanās lapu", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nav atļauts nosūtīt jums paziņojumus. Lūdzu pārbaudi sava pārlūka iestatījumus", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s nav piešķirta atļauja nosūtīt paziņojumus. Lūdzu mēģini vēlreiz", - "%(brand)s version:": "%(brand)s versija:", "Unable to enable Notifications": "Neizdevās iespējot paziņojumus", "This will allow you to reset your password and receive notifications.": "Tas atļaus Tev atiestatīt paroli un saņemt paziņojumus.", "Room %(roomId)s not visible": "Istaba %(roomId)s nav redzama", @@ -366,7 +364,6 @@ "Lebanon": "Libāna", "Bangladesh": "Bangladeša", "Albania": "Albānija", - "Toggle microphone mute": "Ieslēgt/izslēgt mikrofonu", "Muted Users": "Apklusinātie lietotāji", "Confirm to continue": "Apstipriniet, lai turpinātu", "Confirm account deactivation": "Apstipriniet konta deaktivizēšanu", @@ -381,8 +378,6 @@ "Confirm adding this phone number by using Single Sign On to prove your identity.": "Apstiprināt šī tālruņa numura pievienošanu, izmantojot vienoto pieteikšanos savas identitātes apliecināšanai.", "Click the button below to confirm adding this email address.": "Nospiest zemāk esošo pogu, lai apstiprinātu šīs e-pasta adreses pievienošanu.", "Use Single Sign On to continue": "Izmantot vienoto pieteikšanos, lai turpinātu", - "Welcome %(name)s": "Laipni lūdzam %(name)s", - "Welcome to %(appName)s": "Laipni lūdzam %(appName)s", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s no %(totalRooms)s", "Great! This Security Phrase looks strong enough.": "Lieliski! Šī slepenā frāze šķiet pietiekami sarežgīta.", "Confirm your Security Phrase": "Apstipriniet savu slepeno frāzi", @@ -396,7 +391,6 @@ "Please ask the administrator of your homeserver (%(homeserverDomain)s) to configure a TURN server in order for calls to work reliably.": "Lūdzu, jautājiet sava bāzes servera administratoram (%(homeserverDomain)s) sakonfigurēt TURN serveri, lai zvani strādātu stabili.", "Join millions for free on the largest public server": "Pievienojieties bez maksas miljoniem lietotāju lielākajā publiskajā serverī", "Server Options": "Servera parametri", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s vai %(usernamePassword)s", " invited you": " uzaicināja jūs", " wants to chat": " vēlas sarakstīties", "Add a photo, so people can easily spot your room.": "Pievienojiet foto, lai padarītu istabu vieglāk pamanāmu citiem cilvēkiem.", @@ -496,11 +490,8 @@ "Room Settings - %(roomName)s": "Istabas iestatījumi - %(roomName)s", "Room settings": "Istabas iestatījumi", "Share room": "Dalīties ar istabu", - "Help & About": "Palīdzība un par lietotni", "About homeservers": "Par bāzes serveriem", "Enable message search in encrypted rooms": "Iespējot ziņu meklēšanu šifrētās istabās", - "Search (must be enabled)": "Meklēšana (jābūt iespējotai)", - "Jump to room search": "Pāriet uz istabu meklēšanu", "Message search": "Ziņu meklēšana", "Cancel search": "Atcelt meklējumu", "Flag": "Karogs", @@ -540,12 +531,6 @@ "Failed to re-authenticate": "Neizdevās atkārtoti autentificēties", "Failed to re-authenticate due to a homeserver problem": "Bāzes servera problēmas dēļ atkārtoti autentificēties neizdevās", "Create account": "Izveidot kontu", - "Registration Successful": "Reģistrācija ir veiksmīga", - "Log in to your new account.": "Pierakstīties jaunajā kontā.", - "Continue with previous account": "Turpināt ar iepriekšējo kontu", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Jūsu jaunais konts (%(newAccountId)s) ir reģistrēts, bet jūs jau esat pierakstījies citā kontā (%(loggedInUserId)s).", - "Already have an account? Sign in here": "Jau ir konts? Pierakstieties šeit", - "Continue with %(ssoButtons)s": "Turpināt ar %(ssoButtons)s", "Registration has been disabled on this homeserver.": "Šajā bāzes serverī reģistrācija ir atspējota.", "Unable to query for supported registration methods.": "Neizdevās pieprasīt atbalstītās reģistrācijas metodes.", "New? Create account": "Pirmā reize? Izveidojiet kontu", @@ -558,8 +543,6 @@ "one": "Jums ir %(count)s nelasīts paziņojums iepriekšējā šīs istabas versijā.", "other": "Jums ir %(count)s nelasīti paziņojumi iepriekšējā šīs istabas versijā." }, - "Add a photo so people know it's you.": "Pievienot foto, lai cilvēki zina, ka tas esat jūs.", - "Great, that'll help people know it's you": "Lieliski, tas ļaus cilvēkiem tevi atpazīt", "Couldn't load page": "Neizdevās ielādēt lapu", "Sign in with SSO": "Pierakstieties, izmantojot SSO", "Use email to optionally be discoverable by existing contacts.": "Izmantojiet epasta adresi, lai pēc izvēles jūs varētu atrast esošie kontakti.", @@ -580,9 +563,6 @@ "Session key": "Sesijas atslēga", "Accept all %(invitedRooms)s invites": "Pieņemt visus %(invitedRooms)s uzaicinājumus", "Bulk options": "Lielapjoma opcijas", - "Clear cache and reload": "Notīrīt kešatmiņu un pārlādēt", - "Versions": "Versijas", - "For help with using %(brand)s, click here.": "Palīdzībai %(brand)s izmantošanā, spiediet šeit.", "Account management": "Konta pārvaldība", "New version available. Update now.": "Pieejama jauna versija. Atjaunināt.", "Failed to save your profile": "Neizdevās salabāt jūsu profilu", @@ -630,7 +610,6 @@ "Incoming Verification Request": "Ienākošais veifikācijas pieprasījums", "%(name)s is requesting verification": "%(name)s pieprasa verifikāciju", "Verification Request": "Verifikācijas pieprasījums", - "Activate selected button": "Aktivizēt izvēlēto pogu", "Currently indexing: %(currentRoom)s": "Pašlaik indeksē: %(currentRoom)s", "A private space for you and your teammates": "Privāta vieta jums un jūsu komandas dalībniekiem", "A private space to organise your rooms": "Privāta vieta, kur organizēt jūsu istabas", @@ -640,7 +619,6 @@ "other": "%(count)s istabas" }, "Are you sure you want to leave the space '%(spaceName)s'?": "Vai tiešām vēlaties pamest vietu '%(spaceName)s'?", - "Create a Group Chat": "Izveidot grupas čatu", "Missing session data": "Trūkst sesijas datu", "Create a new room with the same name, description and avatar": "Izveidot istabu ar to pašu nosaukumu, aprakstu un avataru", "Email (optional)": "Epasts (izvēles)", @@ -728,7 +706,6 @@ }, "Save Changes": "Saglabāt izmaiņas", "Welcome to ": "Laipni lūdzam uz ", - "Room List": "Istabu saraksts", "Send as message": "Nosūtīt kā ziņu", "%(brand)s URL": "%(brand)s URL", "Room version": "Istabas versija", @@ -801,18 +778,9 @@ "Send stickers into this room": "Iesūtīt stikerus šajā istabā", "Remain on your screen while running": "Darbības laikā paliek uz ekrāna", "Remain on your screen when viewing another room, when running": "Darbības laikā paliek uz ekrāna, kad tiek skatīta cita istaba", - "Converts the DM to a room": "Pārveido DM par istabu", - "Converts the room to a DM": "Pārveido istabu par DM", - "Places the call in the current room on hold": "Iepauzē sazvanu šajā istabā", - "Takes the call in the current room off hold": "Šajā istabā iepauzētās sazvana atpauzēšana", - "Opens chat with the given user": "Atvērt čatu ar šo lietotāju", - "Forces the current outbound group session in an encrypted room to be discarded": "Piespiedu kārtā pārtrauc pašreizējo izejošo grupas sesiju šifrētajā istabā", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Jūsu iesniegtā parakstīšanas atslēga atbilst parakstīšanas atslēgai, kuru saņēmāt no %(userId)s sesijas %(deviceId)s. Sesija atzīmēta kā verificēta.", "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!": "BRĪDINĀJUMS: ATSLĒGU VERIFIKĀCIJA NEIZDEVĀS! Parakstīšanas atslēga lietotājam %(userId)s un sesijai %(deviceId)s ir \"%(fprint)s\", kura neatbilst norādītajai atslēgai \"%(fingerprint)s\". Tas var nozīmēt, ka jūsu saziņa tiek pārtverta!", "Verifies a user, session, and pubkey tuple": "Verificē lietotāju, sesiju un publiskās atslēgas", - "You cannot modify widgets in this room.": "Jūs nevarat mainīt vidžetus/logrīkus šajā istabā.", - "Please supply a https:// or http:// widget URL": "Lūdzu ievadiet logrīka URL https:// vai http:// formā", - "Please supply a widget URL or embed code": "Ievadiet vidžeta/logrīka URL vai ievietojiet kodu", "Joins room with given address": "Pievienojas istabai ar šādu adresi", "Use an identity server to invite by email. Manage in Settings.": "Izmantojiet identitātes serveri, lai uzaicinātu pa e-pastu. Pārvaldība pieejama Iestatījumos.", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Izmantojiet identitātes serveri, lai uzaicinātu pa e-pastu. Noklikšķiniet uz Turpināt, lai izmantotu noklusējuma identitātes serveri (%(defaultIdentityServerName)s) vai nomainītu to Iestatījumos.", @@ -1082,7 +1050,6 @@ "Address": "Adrese", "Hey you. You're the best!": "Sveiks! Tu esi labākais!", "Share %(name)s": "Dalīties ar %(name)s", - "Explore Public Rooms": "Pārlūkot publiskas istabas", "Show preview": "Rādīt priekšskatījumu", "View source": "Skatīt pirmkodu", "Forgotten or lost all recovery methods? Reset all": "Aizmirsāt vai pazaudējāt visas atkopšanās iespējas? Atiestatiet visu", @@ -1438,7 +1405,12 @@ "group_encryption": "Šifrēšana" }, "keyboard": { - "home": "Mājup" + "home": "Mājup", + "category_room_list": "Istabu saraksts", + "toggle_microphone_mute": "Ieslēgt/izslēgt mikrofonu", + "jump_room_search": "Pāriet uz istabu meklēšanu", + "activate_button": "Aktivizēt izvēlēto pogu", + "search": "Meklēšana (jābūt iespējotai)" }, "composer": { "format_inline_code": "Kods", @@ -1480,7 +1452,13 @@ }, "onboarding": { "personal_messaging_action": "Sāciet savu pirmo čatu", - "set_up_profile_action": "Jūsu profils" + "set_up_profile_action": "Jūsu profils", + "has_avatar_label": "Lieliski, tas ļaus cilvēkiem tevi atpazīt", + "no_avatar_label": "Pievienot foto, lai cilvēki zina, ka tas esat jūs.", + "welcome_user": "Laipni lūdzam %(name)s", + "intro_welcome": "Laipni lūdzam %(appName)s", + "explore_rooms": "Pārlūkot publiskas istabas", + "create_room": "Izveidot grupas čatu" }, "settings": { "show_breadcrumbs": "Rādīt saīsnes uz nesen skatītajām istabām istabu saraksta augšpusē", @@ -1825,7 +1803,17 @@ "category_admin": "Administrators", "category_advanced": "Papildu", "category_effects": "Efekti", - "category_other": "Citi" + "category_other": "Citi", + "addwidget_missing_url": "Ievadiet vidžeta/logrīka URL vai ievietojiet kodu", + "addwidget_invalid_protocol": "Lūdzu ievadiet logrīka URL https:// vai http:// formā", + "addwidget_no_permissions": "Jūs nevarat mainīt vidžetus/logrīkus šajā istabā.", + "converttodm": "Pārveido istabu par DM", + "converttoroom": "Pārveido DM par istabu", + "discardsession": "Piespiedu kārtā pārtrauc pašreizējo izejošo grupas sesiju šifrētajā istabā", + "query": "Atvērt čatu ar šo lietotāju", + "holdcall": "Iepauzē sazvanu šajā istabā", + "unholdcall": "Šajā istabā iepauzētās sazvana atpauzēšana", + "me": "Parāda darbību" }, "presence": { "online_for": "Tiešsaistē %(duration)s", @@ -1920,7 +1908,14 @@ }, "auth": { "continue_with_idp": "Turpināt ar %(provider)s", - "sso": "Vienotā pieteikšanās" + "sso": "Vienotā pieteikšanās", + "continue_with_sso": "Turpināt ar %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s vai %(usernamePassword)s", + "sign_in_instead": "Jau ir konts? Pierakstieties šeit", + "account_clash": "Jūsu jaunais konts (%(newAccountId)s) ir reģistrēts, bet jūs jau esat pierakstījies citā kontā (%(loggedInUserId)s).", + "account_clash_previous_account": "Turpināt ar iepriekšējo kontu", + "log_in_new_account": "Pierakstīties jaunajā kontā.", + "registration_successful": "Reģistrācija ir veiksmīga" }, "room_list": { "sort_unread_first": "Rādīt istabas ar nelasītām ziņām augšpusē", @@ -1940,5 +1935,14 @@ "report_entire_room": "Ziņot par visu istabu", "report_content_to_homeserver": "Ziņojums par saturu bāzes servera administratoram", "description": "Iesniedzot ziņojumu par konkrēto ziņu, tās unikālais notikuma ID tiks nosūtīts jūsu bāzes servera administratoram. Ja ziņas šajā istabā ir šifrētas, jūsu bāzes servera administrators nevarēs lasīt ziņas tekstu vai skatīt failus un attēlus." + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s versija:", + "help_link": "Palīdzībai %(brand)s izmantošanā, spiediet šeit.", + "title": "Palīdzība un par lietotni", + "versions": "Versijas", + "clear_cache_reload": "Notīrīt kešatmiņu un pārlādēt" + } } } diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json index 4243bf385f..16f681d4ee 100644 --- a/src/i18n/strings/nb_NO.json +++ b/src/i18n/strings/nb_NO.json @@ -83,7 +83,6 @@ "Missing room_id in request": "Manglende room_id i forespørselen", "Room %(roomId)s not visible": "Rom %(roomId)s er ikke synlig", "Missing user_id in request": "Manglende user_id i forespørselen", - "Chat with %(brand)s Bot": "Chat med %(brand)s Bot", "Call failed due to misconfigured server": "Oppringingen feilet på grunn av feil-konfigurert tjener", "Please ask the administrator of your homeserver (%(homeserverDomain)s) to configure a TURN server in order for calls to work reliably.": "Vennligst be administratoren av din hjemmetjener (%(homeserverDomain)s) til å konfigurere en TURN tjener slik at samtaler vil fungere best mulig.", "The file '%(fileName)s' failed to upload.": "Filen '%(fileName)s' kunne ikke lastes opp.", @@ -94,11 +93,7 @@ "You are no longer ignoring %(userId)s": "%(userId)s blir ikke lengre ignorert", "Define the power level of a user": "Definer tilgangnivå til en bruker", "Deops user with given id": "Fjerner OP nivå til bruker med gitt ID", - "Please supply a https:// or http:// widget URL": "Oppgi en https: // eller http: // widget-URL", - "You cannot modify widgets in this room.": "Du kan ikke endre widgets i dette rommet.", "Verified key": "Verifisert nøkkel", - "Displays action": "Viser handling", - "Forces the current outbound group session in an encrypted room to be discarded": "Tvinger den gjeldende utgående gruppeøkten i et kryptert rom til å stoppe", "Reason": "Årsak", "Add Email Address": "Legg til E-postadresse", "Add Phone Number": "Legg til telefonnummer", @@ -145,7 +140,6 @@ "Account": "Konto", "Language and region": "Språk og område", "General": "Generelt", - "Versions": "Versjoner", "None": "Ingen", "Composer": "Komposør", "Security & Privacy": "Sikkerhet og personvern", @@ -248,8 +242,6 @@ "Discovery": "Oppdagelse", "Deactivate account": "Deaktiver kontoen", "Check for update": "Let etter oppdateringer", - "Help & About": "Hjelp/Om", - "%(brand)s version:": "'%(brand)s'-versjon:", "Ignored/Blocked": "Ignorert/Blokkert", "Server rules": "Tjenerregler", "User rules": "Brukerregler", @@ -388,8 +380,6 @@ "Start using Key Backup": "Begynn å bruke Nøkkelsikkerhetskopiering", "If you don't want to use to discover and be discoverable by existing contacts you know, enter another identity server below.": "Hvis du ikke ønsker å bruke til å oppdage og bli oppdaget av eksisterende kontakter som du kjenner, skriv inn en annen identitetstjener nedenfor.", "Enter a new identity server": "Skriv inn en ny identitetstjener", - "For help with using %(brand)s, click here.": "For å få hjelp til å bruke %(brand)s, klikk her.", - "Clear cache and reload": "Tøm mellomlageret og last inn siden på nytt", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "For å rapportere inn et Matrix-relatert sikkerhetsproblem, vennligst less Matrix.org sine Retningslinjer for sikkerhetspublisering.", "Import E2E room keys": "Importer E2E-romnøkler", "Privileged Users": "Priviligerte brukere", @@ -449,16 +439,11 @@ "You must join the room to see its files": "Du må bli med i rommet for å se filene dens", "Signed Out": "Avlogget", "%(creator)s created and configured the room.": "%(creator)s opprettet og satte opp rommet.", - "Registration Successful": "Registreringen var vellykket", "Forgotten your password?": "Har du glemt passordet ditt?", "Export room keys": "Eksporter romnøkler", "Import room keys": "Importer romnøkler", "Go to Settings": "Gå til Innstillinger", "Indexed messages:": "Indekserte meldinger:", - "Navigation": "Navigering", - "Autocomplete": "Autofullfør", - "New line": "Ny linje", - "Cancel replying to a message": "Avbryt å svare på en melding", "Enter passphrase": "Skriv inn passordfrase", "Avoid sequences": "Unngå sekvenser", "Avoid recent years": "Unngå nylige år", @@ -495,8 +480,6 @@ "Upload completed": "Opplasting fullført", "Unable to upload": "Mislyktes i å laste opp", "Remove for everyone": "Fjern for alle", - "Calls": "Samtaler", - "Room List": "Romliste", "Never send encrypted messages to unverified sessions from this session": "Aldri send krypterte meldinger til uverifiserte økter fra denne økten", "Cross-signing public keys:": "Offentlige nøkler for kryssignering:", "Cross-signing private keys:": "Private nøkler for kryssignering:", @@ -569,8 +552,6 @@ "a key signature": "en nøkkelsignatur", "Send Logs": "Send loggbøker", "Command Help": "Kommandohjelp", - "Welcome to %(appName)s": "Velkommen til %(appName)s", - "Send a Direct Message": "Send en direktemelding", "Connectivity to the server has been lost.": "Tilkoblingen til tjeneren er nede.", "Uploading %(filename)s": "Laster opp %(filename)s", "Could not load user profile": "Klarte ikke å laste inn brukerprofilen", @@ -578,7 +559,6 @@ "New passwords must match each other.": "De nye passordene må samsvare med hverandre.", "This account has been deactivated.": "Denne kontoen har blitt deaktivert.", "Incorrect username and/or password.": "Feil brukernavn og/eller passord.", - "Continue with previous account": "Fortsett med tidligere konto", "Clear personal data": "Tøm personlige data", "Passphrases must match": "Passfrasene må samsvare", "Passphrase must not be empty": "Passfrasen kan ikke være tom", @@ -593,7 +573,6 @@ "Messages in this room are not end-to-end encrypted.": "Meldinger i dette rommet er ikke start-til-slutt-kryptert.", "Use a different passphrase?": "Vil du bruke en annen passfrase?", "Jump to read receipt": "Hopp til lesekvitteringen", - "Dismiss read marker and jump to bottom": "Avføy lesekvitteringen og hopp ned til bunnen", "Verify your other session using one of the options below.": "Verifiser den andre økten din med en av metodene nedenfor.", "Use a few words, avoid common phrases": "Bruk noen få ord, unngå vanlig fraser", "Ok": "OK", @@ -640,8 +619,6 @@ "Reject invitation": "Avslå invitasjonen", "Start authentication": "Begynn autentisering", "Couldn't load page": "Klarte ikke å laste inn siden", - "Explore Public Rooms": "Utforsk offentlige rom", - "Create a Group Chat": "Opprett en gruppechat", "Review terms and conditions": "Gå gjennom betingelser og vilkår", "Jump to first invite.": "Hopp til den første invitasjonen.", "You seem to be uploading files, are you sure you want to quit?": "Du ser til å laste opp filer, er du sikker på at du vil avslutte?", @@ -654,10 +631,6 @@ "Confirm encryption setup": "Bekreft krypteringsoppsett", "Create key backup": "Opprett nøkkelsikkerhetskopi", "Set up Secure Messages": "Sett opp sikre meldinger", - "Toggle Bold": "Veksle fet", - "Toggle Italics": "Veksle kursiv", - "Toggle Quote": "Veksle siteringsformat", - "Upload a file": "Last opp en fil", "If you've joined lots of rooms, this might take a while": "Hvis du har blitt med i mange rom, kan dette ta en stund", "To help us prevent this in future, please send us logs.": "For å hjelpe oss med å forhindre dette i fremtiden, vennligst send oss loggfiler.", "Lock": "Lås", @@ -693,7 +666,6 @@ "Failed to revoke invite": "Klarte ikke å trekke tilbake invitasjon", "Unable to revoke sharing for phone number": "Klarte ikke trekke tilbake deling for telefonnummer", "Unable to revoke sharing for email address": "Klarte ikke å trekke tilbake deling for denne e-postadressen", - "Great, that'll help people know it's you": "Flott, det vil hjelp folk å ha tillit til at det er deg", "Put a link back to the old room at the start of the new room so people can see old messages": "Legg inn en lenke tilbake til det gamle rommet i starten av det nye rommet slik at folk kan finne eldre meldinger", "Add a photo, so people can easily spot your room.": "Legg til et bilde så folk lettere kan finne rommet ditt.", "Add a topic to help people know what it is about.": "Legg til et tema for hjelpe folk å forstå hva dette handler om.", @@ -757,7 +729,6 @@ "Resume": "Fortsett", "Avatar": "Profilbilde", "Suggested Rooms": "Foreslåtte rom", - "Welcome %(name)s": "Velkommen, %(name)s", "Verification requested": "Verifisering ble forespurt", "%(count)s members": { "one": "%(count)s medlem", @@ -807,10 +778,7 @@ "Security Phrase": "Sikkerhetsfrase", "Open dial pad": "Åpne nummerpanelet", "Message deleted on %(date)s": "Meldingen ble slettet den %(date)s", - "Already have an account? Sign in here": "Har du allerede en konto? Logg på", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s eller %(usernamePassword)s", "New here? Create an account": "Er du ny her? Opprett en konto", - "Now, let's help you get started": "Nå, la oss hjelpe deg med å komme i gang", "Enter email address": "Legg inn e-postadresse", "Enter phone number": "Skriv inn telefonnummer", "Please enter the code it contains:": "Vennligst skriv inn koden den inneholder:", @@ -1091,7 +1059,6 @@ "Add reaction": "Legg til reaksjon", "Downloading": "Laster ned", "Connection failed": "Tilkobling mislyktes", - "Send a sticker": "Send et klistremerke", "Keyboard shortcuts": "Tastatursnarveier", "Global": "Globalt", "Keyword": "Nøkkelord", @@ -1294,7 +1261,19 @@ "end": "Slutt", "alt": "Alt", "control": "Ctrl", - "shift": "Shift" + "shift": "Shift", + "category_calls": "Samtaler", + "category_room_list": "Romliste", + "category_navigation": "Navigering", + "category_autocomplete": "Autofullfør", + "composer_toggle_bold": "Veksle fet", + "composer_toggle_italics": "Veksle kursiv", + "composer_toggle_quote": "Veksle siteringsformat", + "cancel_reply": "Avbryt å svare på en melding", + "send_sticker": "Send et klistremerke", + "dismiss_read_marker_and_jump_bottom": "Avføy lesekvitteringen og hopp ned til bunnen", + "upload_file": "Last opp en fil", + "composer_new_line": "Ny linje" }, "composer": { "format_bold": "Fet", @@ -1583,7 +1562,11 @@ "category_admin": "Admin", "category_advanced": "Avansert", "category_effects": "Effekter", - "category_other": "Andre" + "category_other": "Andre", + "addwidget_invalid_protocol": "Oppgi en https: // eller http: // widget-URL", + "addwidget_no_permissions": "Du kan ikke endre widgets i dette rommet.", + "discardsession": "Tvinger den gjeldende utgående gruppeøkten i et kryptert rom til å stoppe", + "me": "Viser handling" }, "presence": { "online_for": "På nett i %(duration)s", @@ -1673,7 +1656,11 @@ }, "auth": { "continue_with_idp": "Fortsett med %(provider)s", - "sso": "Single Sign On" + "sso": "Single Sign On", + "sso_or_username_password": "%(ssoButtons)s eller %(usernamePassword)s", + "sign_in_instead": "Har du allerede en konto? Logg på", + "account_clash_previous_account": "Fortsett med tidligere konto", + "registration_successful": "Registreringen var vellykket" }, "room_list": { "show_previews": "Vis forhåndsvisninger av meldinger", @@ -1686,5 +1673,24 @@ }, "show_less": "Vis mindre", "notification_options": "Varselsinnstillinger" + }, + "onboarding": { + "has_avatar_label": "Flott, det vil hjelp folk å ha tillit til at det er deg", + "welcome_user": "Velkommen, %(name)s", + "welcome_detail": "Nå, la oss hjelpe deg med å komme i gang", + "intro_welcome": "Velkommen til %(appName)s", + "send_dm": "Send en direktemelding", + "explore_rooms": "Utforsk offentlige rom", + "create_room": "Opprett en gruppechat" + }, + "setting": { + "help_about": { + "brand_version": "'%(brand)s'-versjon:", + "help_link": "For å få hjelp til å bruke %(brand)s, klikk her.", + "chat_bot": "Chat med %(brand)s Bot", + "title": "Hjelp/Om", + "versions": "Versjoner", + "clear_cache_reload": "Tøm mellomlageret og last inn siden på nytt" + } } } diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index 29b173bd8f..aee1178db2 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -79,7 +79,6 @@ "Custom level": "Aangepast niveau", "Deops user with given id": "Ontmachtigt persoon met de gegeven ID", "Default": "Standaard", - "Displays action": "Toont actie", "Enter passphrase": "Wachtwoord invoeren", "Error decrypting attachment": "Fout bij het ontsleutelen van de bijlage", "Export E2E room keys": "E2E-kamersleutels exporteren", @@ -118,7 +117,6 @@ "Return to login screen": "Terug naar het loginscherm", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s heeft geen toestemming jou meldingen te sturen - controleer je browserinstellingen", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s kreeg geen toestemming jou meldingen te sturen - probeer het opnieuw", - "%(brand)s version:": "%(brand)s-versie:", "Room %(roomId)s not visible": "Kamer %(roomId)s is niet zichtbaar", "%(roomName)s does not exist.": "%(roomName)s bestaat niet.", "%(roomName)s is not accessible at this time.": "%(roomName)s is op dit moment niet toegankelijk.", @@ -447,8 +445,6 @@ "Restore from Backup": "Uit back-up herstellen", "Back up your keys before signing out to avoid losing them.": "Maak een back-up van je sleutels voordat je jezelf afmeldt om ze niet te verliezen.", "All keys backed up": "Alle sleutels zijn geback-upt", - "Chat with %(brand)s Bot": "Met %(brand)s-robot chatten", - "Forces the current outbound group session in an encrypted room to be discarded": "Dwingt tot verwerping van de huidige uitwaartse groepssessie in een versleutelde kamer", "Start using Key Backup": "Begin sleutelback-up te gebruiken", "Unable to verify phone number.": "Kan telefoonnummer niet verifiëren.", "Verification code": "Verificatiecode", @@ -460,10 +456,6 @@ "Language and region": "Taal en regio", "Account management": "Accountbeheer", "General": "Algemeen", - "For help with using %(brand)s, click here.": "Klik hier voor hulp bij het gebruiken van %(brand)s.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Klik hier voor hulp bij het gebruiken van %(brand)s of begin een kamer met onze robot met de knop hieronder.", - "Help & About": "Hulp & info", - "Versions": "Versies", "Composer": "Opsteller", "Room list": "Kamerslijst", "Autocomplete delay (ms)": "Vertraging voor autoaanvullen (ms)", @@ -565,8 +557,6 @@ "Set up Secure Messages": "Beveiligde berichten instellen", "Recovery Method Removed": "Herstelmethode verwijderd", "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.": "Als je de herstelmethode niet hebt verwijderd, is het mogelijk dat er een aanvaller toegang tot jouw account probeert te verkrijgen. Wijzig onmiddellijk je wachtwoord en stel bij instellingen een nieuwe herstelmethode in.", - "Please supply a https:// or http:// widget URL": "Voer een https://- of http://-widget-URL in", - "You cannot modify widgets in this room.": "Je kan de widgets in deze kamer niet aanpassen.", "Upgrade this room to the recommended room version": "Upgrade deze kamer naar de aanbevolen kamerversie", "This room is running room version , which this homeserver has marked as unstable.": "Deze kamer draait op kamerversie , die door deze homeserver als onstabiel is gemarkeerd.", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Upgraden zal de huidige versie van deze kamer sluiten, en onder dezelfde naam een geüpgraded versie starten.", @@ -656,11 +646,7 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Je kan jezelf registreren, maar sommige functies zullen pas beschikbaar zijn wanneer de identiteitsserver weer online is. Als je deze waarschuwing blijft zien, controleer dan je configuratie of neem contact op met een serverbeheerder.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Je kan jouw wachtwoord opnieuw instellen, maar sommige functies zullen pas beschikbaar komen wanneer de identiteitsserver weer online is. Als je deze waarschuwing blijft zien, controleer dan je configuratie of neem contact op met een serverbeheerder.", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Je kan inloggen, maar sommige functies zullen pas beschikbaar zijn wanneer de identiteitsserver weer online is. Als je deze waarschuwing blijft zien, controleer dan je configuratie of neem contact op met een systeembeheerder.", - "Log in to your new account.": "Login met je nieuwe account.", - "Registration Successful": "Registratie geslaagd", "Upload all": "Alles versturen", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Jouw nieuwe account (%(newAccountId)s) is geregistreerd, maar je bent al ingelogd met een andere account (%(loggedInUserId)s).", - "Continue with previous account": "Doorgaan met vorige account", "Edited at %(date)s. Click to view edits.": "Bewerkt op %(date)s. Klik om de bewerkingen te bekijken.", "Message edits": "Berichtbewerkingen", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Deze kamer bijwerken vereist dat je de huidige afsluit en in de plaats een nieuwe kamer aanmaakt. Om leden de best mogelijke ervaring te bieden, zullen we:", @@ -752,7 +738,6 @@ "Use an identity server to invite by email. Use the default (%(defaultIdentityServerName)s) or manage in Settings.": "Gebruik een identiteitsserver om uit te nodigen op e-mailadres. Gebruik de standaardserver (%(defaultIdentityServerName)s) of beheer de server in de Instellingen.", "Use an identity server to invite by email. Manage in Settings.": "Gebruik een identiteitsserver om anderen uit te nodigen via e-mail. Beheer de server in de Instellingen.", "Explore rooms": "Kamers ontdekken", - "Clear cache and reload": "Cache wissen en herladen", "Show image": "Afbeelding tonen", "e.g. my-room": "bv. mijn-kamer", "Close dialog": "Dialoog sluiten", @@ -999,10 +984,8 @@ "New login. Was this you?": "Nieuwe login gevonden. Was jij dat?", "%(name)s is requesting verification": "%(name)s verzoekt om verificatie", "Could not find user in room": "Kan die persoon in de kamer niet vinden", - "Please supply a widget URL or embed code": "Gelieve een widgetURL of in te bedden code te geven", "You signed in to a new session without verifying it:": "Je hebt je bij een nog niet geverifieerde sessie aangemeld:", "Verify your other session using one of the options below.": "Verifieer je andere sessie op een van onderstaande wijzen.", - "Opens chat with the given user": "Start een chat met die persoon", "Confirm your account deactivation by using Single Sign On to prove your identity.": "Bevestig de deactivering van je account door gebruik te maken van eenmalige aanmelding om je identiteit te bewijzen.", "Are you sure you want to deactivate your account? This is irreversible.": "Weet je zeker dat je jouw account wil sluiten? Dit is onomkeerbaar.", "Confirm account deactivation": "Bevestig accountsluiting", @@ -1270,13 +1253,11 @@ "Change the topic of this room": "Verander het onderwerp van deze kamer", "Change which room, message, or user you're viewing": "Verander welke kamer, welk bericht of welk persoon je ziet", "Change which room you're viewing": "Verander welke kamer je ziet", - "Places the call in the current room on hold": "De huidige oproep in de wacht zetten", "Are you sure you want to cancel entering passphrase?": "Weet je zeker, dat je het invoeren van je wachtwoord wilt afbreken?", "Vatican City": "Vaticaanstad", "Taiwan": "Taiwan", "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.": "De browser is verzocht de homeserver te onthouden die je gebruikt om in te loggen, maar helaas is de browser deze vergeten. Ga naar de inlog-pagina en probeer het opnieuw.", "We couldn't log you in": "We konden je niet inloggen", - "Explore Public Rooms": "Publieke kamers ontdekken", "This room is public": "Deze kamer is publiek", "Explore public rooms": "Publieke kamers ontdekken", "Room options": "Kameropties", @@ -1442,9 +1423,6 @@ "Send stickers into this room": "Stuur stickers in deze kamer", "Remain on your screen while running": "Blijft op jouw scherm terwijl het beschikbaar is", "Remain on your screen when viewing another room, when running": "Blijft op jouw scherm wanneer je een andere kamer bekijkt, zolang het bezig is", - "Converts the room to a DM": "Verandert deze kamer in een directe chat", - "Converts the DM to a room": "Verandert deze directe chat in een kamer", - "Takes the call in the current room off hold": "De huidige oproep in huidige kamer in de wacht zetten", "São Tomé & Príncipe": "Sao Tomé en Principe", "Swaziland": "Swaziland", "Sudan": "Soedan", @@ -1466,30 +1444,6 @@ "Feedback sent": "Feedback verstuurd", "Workspace: ": "Werkplaats: ", "Your firewall or anti-virus is blocking the request.": "Jouw firewall of antivirussoftware blokkeert de aanvraag.", - "Toggle right panel": "Rechterpaneel in- of uitschakelen", - "Toggle the top left menu": "Het menu linksboven in- of uitschakelen", - "Toggle microphone mute": "Microfoon dempen in- of uitschakelen", - "Toggle Quote": "Quote in- of uitschakelen", - "Toggle Italics": "Cursief in- of uitschakelen", - "Toggle Bold": "Vetgedrukt in- of uitschakelen", - "Go to Home View": "Ga naar Home-scherm", - "Activate selected button": "Geselecteerde knop activeren", - "Close dialog or context menu": "Dialoogvenster of contextmenu sluiten", - "Expand room list section": "Kamerslijst selectie uitvouwen", - "Collapse room list section": "Kamerslijst selectie invouwen", - "Select room from the room list": "Kamer uit de kamerslijst selecteren", - "Jump to room search": "Ga naar kamer zoeken", - "Search (must be enabled)": "Zoeken (moet zijn ingeschakeld)", - "Upload a file": "Bestand uploaden", - "Jump to oldest unread message": "Ga naar het oudste ongelezen bericht", - "Dismiss read marker and jump to bottom": "Verlaat de leesmarkering en spring naar beneden", - "Cancel replying to a message": "Antwoord op bericht annuleren", - "New line": "Nieuwe regel", - "Cancel autocomplete": "Autoaanvullen annuleren", - "Autocomplete": "Autoaanvullen", - "Room List": "Kamerslijst", - "Calls": "Oproepen", - "Navigation": "Navigatie", "Currently indexing: %(currentRoom)s": "Momenteel indexeren: %(currentRoom)s", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Deze sessie heeft ontdekt dat je veiligheidswachtwoord en -sleutel voor versleutelde berichten zijn verwijderd.", "A new Security Phrase and key for Secure Messages have been detected.": "Er is een nieuwe veiligheidswachtwoord en -sleutel voor versleutelde berichten gedetecteerd.", @@ -1507,11 +1461,6 @@ "Confirm your Security Phrase": "Bevestig je veiligheidswachtwoord", "Great! This Security Phrase looks strong enough.": "Geweldig. Dit veiligheidswachtwoord ziet er sterk genoeg uit.", "Enter a Security Phrase": "Veiligheidswachtwoord invoeren", - "Decide where your account is hosted": "Kies waar je account wordt gehost", - "Host account on": "Host je account op", - "Already have an account? Sign in here": "Heb je al een account? Inloggen", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s of %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Ga verder met %(ssoButtons)s", "New? Create account": "Nieuw? Maak een account aan", "If you've joined lots of rooms, this might take a while": "Als je bij veel kamers bent aangesloten kan dit een tijdje duren", "There was a problem communicating with the homeserver, please try again later.": "Er was een communicatieprobleem met de homeserver, probeer het later opnieuw.", @@ -1519,10 +1468,6 @@ "New here? Create an account": "Nieuw hier? Maak een account", "Got an account? Sign in": "Heb je een account? Inloggen", "You have no visible notifications.": "Je hebt geen zichtbare meldingen.", - "Now, let's help you get started": "Laten we je helpen om te beginnen", - "Welcome %(name)s": "Welkom %(name)s", - "Add a photo so people know it's you.": "Voeg een foto toe zodat personen weten dat jij het bent.", - "Great, that'll help people know it's you": "Geweldig, dan zullen personen weten dat jij het bent", "Attach files from chat or just drag and drop them anywhere in a room.": "Voeg bestanden toe of sleep ze in de kamer.", "No files visible in this room": "Geen bestanden zichtbaar in deze kamer", "Sign in with SSO": "Inloggen met SSO", @@ -1641,9 +1586,6 @@ "IRC display name width": "Breedte IRC-weergavenaam", "If you cancel now, you may lose encrypted messages & data if you lose access to your logins.": "Als je nu annuleert, kan je versleutelde berichten en gegevens verliezen als je geen toegang meer hebt tot je login.", "To continue, use Single Sign On to prove your identity.": "Om verder te gaan, gebruik je eenmalige aanmelding om je identiteit te bewijzen.", - "Create a Group Chat": "Maak een groepsgesprek", - "Send a Direct Message": "Start een direct gesprek", - "Welcome to %(appName)s": "Welkom bij %(appName)s", "Add a topic to help people know what it is about.": "Stel een kameronderwerp in zodat de personen weten waar het over gaat.", "Original event source": "Originele gebeurtenisbron", "Decrypted event source": "Ontsleutel de gebeurtenisbron", @@ -1779,7 +1721,6 @@ "No microphone found": "Geen microfoon gevonden", "We were unable to access your microphone. Please check your browser settings and try again.": "We hebben geen toegang tot je microfoon. Controleer je browserinstellingen en probeer het opnieuw.", "Unable to access your microphone": "Geen toegang tot je microfoon", - "Your access token gives full access to your account. Do not share it with anyone.": "Jouw toegangstoken geeft je toegang tot je account. Deel hem niet met anderen.", "Please enter a name for the space": "Vul een naam in voor deze space", "Connecting": "Verbinden", "Message search initialisation failed": "Zoeken in berichten opstarten is mislukt", @@ -1942,7 +1883,6 @@ "Surround selected text when typing special characters": "Geselecteerde tekst omsluiten bij het typen van speciale tekens", "Stop recording": "Opname stoppen", "Send voice message": "Spraakbericht versturen", - "Olm version:": "Olm-versie:", "More": "Meer", "Show sidebar": "Zijbalk weergeven", "Hide sidebar": "Zijbalk verbergen", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "Het bovenstaande, maar in elke kamer waar je aan deelneemt en voor uitgenodigd bent", "Some encryption parameters have been changed.": "Enkele versleutingsparameters zijn gewijzigd.", "Role in ": "Rol in ", - "Send a sticker": "Verstuur een sticker", "Unknown failure": "Onbekende fout", "Failed to update the join rules": "Het updaten van de deelname regels is mislukt", "Select the roles required to change various parts of the space": "Selecteer de rollen die vereist zijn om onderdelen van de space te wijzigen", @@ -2046,7 +1985,6 @@ "Keep discussions organised with threads": "Houd threads georganiseerd", "Shows all threads you've participated in": "Toon alle threads waarin je hebt bijgedragen", "You're all caught up": "Je bent helemaal bij", - "Own your conversations.": "Gesprekken die helemaal van jou zijn.", "Someone already has that username. Try another or if it is you, sign in below.": "Iemand heeft die inlognaam al. Probeer een andere of als je het bent, log dan hieronder in.", "Copy link to thread": "Kopieer link naar draad", "Thread options": "Draad opties", @@ -2135,7 +2073,6 @@ "Share location": "Locatie delen", "You cannot place calls without a connection to the server.": "Je kan geen oproepen plaatsen zonder een verbinding met de server.", "Connectivity to the server has been lost": "De verbinding met de server is verbroken", - "Toggle space panel": "Spacepaneel in- of uitschakelen", "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.": "Weet je zeker dat je de poll wil sluiten? Dit zal zichtbaar zijn in de einduitslag van de poll en personen kunnen dan niet langer stemmen.", "End Poll": "Poll sluiten", "Sorry, the poll did not end. Please try again.": "Helaas, de poll is niet gesloten. Probeer het opnieuw.", @@ -2182,14 +2119,11 @@ "Room members": "Kamerleden", "Back to chat": "Terug naar chat", "Expand map": "Map uitvouwen", - "No active call in this room": "Geen actieve oproep in deze kamer", - "Unable to find Matrix ID for phone number": "Kan Matrix-ID voor telefoonnummer niet vinden", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Onbekend paar (persoon, sessie): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Commando mislukt: Kan kamer niet vinden (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Niet herkend kameradres: %(roomAlias)s", "Command error: Unable to find rendering type (%(renderingType)s)": "Commandofout: Kan rendering type niet vinden (%(renderingType)s)", "Command error: Unable to handle slash command.": "Commandofout: Kan slash commando niet verwerken.", - "Open this settings tab": "Open dit tabblad met instellingen", "Space home": "Space home", "Unknown error fetching location. Please try again later.": "Onbekende fout bij ophalen van locatie. Probeer het later opnieuw.", "Timed out trying to fetch your location. Please try again later.": "Er is een time-out opgetreden bij het ophalen van jouw locatie. Probeer het later opnieuw.", @@ -2212,30 +2146,7 @@ "Automatically send debug logs on decryption errors": "Automatisch foutopsporingslogboeken versturen bij decoderingsfouten", "Remove, ban, or invite people to your active room, and make you leave": "Verwijder, verbied of nodig mensen uit voor je actieve kamer en zorg ervoor dat je weggaat", "Remove, ban, or invite people to this room, and make you leave": "Verwijder, verbied of nodig mensen uit voor deze kamer en zorg ervoor dat je weggaat", - "Previous autocomplete suggestion": "Vorige suggestie voor automatisch aanvullen", - "Next autocomplete suggestion": "Volgende suggestie voor automatisch aanvullen", - "Previous room or DM": "Vorige kamer of DM", - "Next room or DM": "Volgende kamer of DM", - "Previous unread room or DM": "Vorige ongelezen kamer of DM", - "Next unread room or DM": "Volgende ongelezen kamer of DM", - "Navigate down in the room list": "Navigeer omlaag in de kamerlijst", - "Navigate up in the room list": "Navigeer omhoog in de kamerlijst", - "Scroll down in the timeline": "Scroll omlaag in de tijdlijn", - "Scroll up in the timeline": "Scroll omhoog in de tijdlijn", - "Toggle webcam on/off": "Webcam aan/uit zetten", - "Navigate to previous message in composer history": "Navigeer naar het vorige bericht in de geschiedenis van de bewerker", - "Navigate to next message in composer history": "Navigeer naar het volgende bericht in de geschiedenis van de bewerker", - "Jump to end of the composer": "Ga naar het einde van de bewerker", - "Jump to start of the composer": "Ga naar het begin van de bewerker", - "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", - "Redo edit": "Opnieuw bewerken", - "Force complete": "Voltooiing forceren", - "Undo edit": "Bewerken ongedaan maken", - "Jump to last message": "Naar het laatste bericht springen", - "Jump to first message": "Naar eerste bericht springen", - "Toggle hidden event visibility": "Schakel verborgen gebeurteniszichtbaarheid in", "If you know what you're doing, Element is open-source, be sure to check out our GitHub (https://github.com/vector-im/element-web/) and contribute!": "Als je weet wat je doet, Element is open-source, bekijk dan zeker onze GitHub (https://github.com/vector-im/element-web/) en draag bij!", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Als iemand je heeft gezegd iets hier te kopiëren/plakken, is de kans groot dat je wordt opgelicht!", "Wait!": "Wacht!", @@ -2257,8 +2168,6 @@ "Automatically send debug logs when key backup is not functioning": "Automatisch foutopsporingslogboeken versturen wanneer de sleutelback-up niet werkt", "%(space1Name)s and %(space2Name)s": "%(space1Name)s en %(space2Name)s", "You do not have permission to invite people to this space.": "Je bent niet gemachtigd om mensen voor deze space uit te nodigen.", - "No virtual room for this room": "Geen virtuele ruimte voor deze ruimte", - "Switches to this room's virtual room, if it has one": "Schakelt over naar de virtuele kamer van deze kamer, als die er is", "Failed to invite users to %(roomName)s": "Kan personen niet uitnodigen voor %(roomName)s", "Unsent": "niet verstuurd", "Search Dialog": "Dialoogvenster Zoeken", @@ -2346,17 +2255,11 @@ "User is already in the room": "Persoon is al in de kamer", "User is already in the space": "Persoon is al in de space", "User is already invited to the space": "Persoon is al uitgenodigd voor de space", - "Toggle Code Block": "Codeblok wisselen", - "Toggle Link": "Koppeling wisselen", "Threads help keep your conversations on-topic and easy to track.": "Threads helpen jou gesprekken on-topic te houden en gemakkelijk bij te houden.", "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Reageer op een lopende thread of gebruik \"%(replyInThread)s\" wanneer je de muisaanwijzer op een bericht plaatst om een nieuwe te starten.", "We'll create rooms for each of them.": "We zullen kamers voor elk van hen maken.", "An error occurred while stopping your live location, please try again": "Er is een fout opgetreden bij het stoppen van je live locatie, probeer het opnieuw", "You are sharing your live location": "Je deelt je live locatie", - "Open user settings": "Open persooninstellingen", - "Switch to space by number": "Overschakelen naar space op nummer", - "Next recently visited room or space": "Volgende recent bezochte kamer of space", - "Previous recently visited room or space": "Vorige recent bezochte kamer of ruimte", "Live location enabled": "Live locatie ingeschakeld", "Live location error": "Live locatie error", "Live location ended": "Live locatie beëindigd", @@ -2483,7 +2386,6 @@ }, "In %(spaceName)s.": "In space %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "In spaces %(space1Name)s en %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Opdracht voor ontwikkelaars: verwijdert de huidige uitgaande groepssessie en stelt nieuwe Olm-sessies in", "Messages in this chat will be end-to-end encrypted.": "Berichten in deze chat worden eind-tot-eind versleuteld.", "Saved Items": "Opgeslagen items", "Send your first message to invite to chat": "Stuur je eerste bericht om uit te nodigen om te chatten", @@ -2873,7 +2775,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[number]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Oproepen", + "category_room_list": "Kamerslijst", + "category_navigation": "Navigatie", + "category_autocomplete": "Autoaanvullen", + "composer_toggle_bold": "Vetgedrukt in- of uitschakelen", + "composer_toggle_italics": "Cursief in- of uitschakelen", + "composer_toggle_quote": "Quote in- of uitschakelen", + "composer_toggle_code_block": "Codeblok wisselen", + "composer_toggle_link": "Koppeling wisselen", + "cancel_reply": "Antwoord op bericht annuleren", + "navigate_next_message_edit": "Navigeer naar het volgende bericht om te bewerken", + "navigate_prev_message_edit": "Navigeer naar het vorige bericht om te bewerken", + "composer_jump_start": "Ga naar het begin van de bewerker", + "composer_jump_end": "Ga naar het einde van de bewerker", + "composer_navigate_next_history": "Navigeer naar het volgende bericht in de geschiedenis van de bewerker", + "composer_navigate_prev_history": "Navigeer naar het vorige bericht in de geschiedenis van de bewerker", + "send_sticker": "Verstuur een sticker", + "toggle_microphone_mute": "Microfoon dempen in- of uitschakelen", + "toggle_webcam_mute": "Webcam aan/uit zetten", + "dismiss_read_marker_and_jump_bottom": "Verlaat de leesmarkering en spring naar beneden", + "jump_to_read_marker": "Ga naar het oudste ongelezen bericht", + "upload_file": "Bestand uploaden", + "scroll_up_timeline": "Scroll omhoog in de tijdlijn", + "scroll_down_timeline": "Scroll omlaag in de tijdlijn", + "jump_room_search": "Ga naar kamer zoeken", + "room_list_select_room": "Kamer uit de kamerslijst selecteren", + "room_list_collapse_section": "Kamerslijst selectie invouwen", + "room_list_expand_section": "Kamerslijst selectie uitvouwen", + "room_list_navigate_down": "Navigeer omlaag in de kamerlijst", + "room_list_navigate_up": "Navigeer omhoog in de kamerlijst", + "toggle_top_left_menu": "Het menu linksboven in- of uitschakelen", + "toggle_right_panel": "Rechterpaneel in- of uitschakelen", + "keyboard_shortcuts_tab": "Open dit tabblad met instellingen", + "go_home_view": "Ga naar Home-scherm", + "next_unread_room": "Volgende ongelezen kamer of DM", + "prev_unread_room": "Vorige ongelezen kamer of DM", + "next_room": "Volgende kamer of DM", + "prev_room": "Vorige kamer of DM", + "autocomplete_cancel": "Autoaanvullen annuleren", + "autocomplete_navigate_next": "Volgende suggestie voor automatisch aanvullen", + "autocomplete_navigate_prev": "Vorige suggestie voor automatisch aanvullen", + "toggle_space_panel": "Spacepaneel in- of uitschakelen", + "toggle_hidden_events": "Schakel verborgen gebeurteniszichtbaarheid in", + "jump_first_message": "Naar eerste bericht springen", + "jump_last_message": "Naar het laatste bericht springen", + "composer_undo": "Bewerken ongedaan maken", + "composer_redo": "Opnieuw bewerken", + "navigate_prev_history": "Vorige recent bezochte kamer of ruimte", + "navigate_next_history": "Volgende recent bezochte kamer of space", + "switch_to_space": "Overschakelen naar space op nummer", + "open_user_settings": "Open persooninstellingen", + "close_dialog_menu": "Dialoogvenster of contextmenu sluiten", + "activate_button": "Geselecteerde knop activeren", + "composer_new_line": "Nieuwe regel", + "autocomplete_force": "Voltooiing forceren", + "search": "Zoeken (moet zijn ingeschakeld)" }, "composer": { "format_bold": "Vet", @@ -2982,7 +2940,16 @@ "download_google_play": "Verkrijg het via Google Play", "download_f_droid": "Download het op F-Droid", "apple_trademarks": "App Store® en het Apple logo® zijn handelsmerken van Apple Inc.", - "google_trademarks": "Google Play en het Google Play-logo zijn handelsmerken van Google LLC." + "google_trademarks": "Google Play en het Google Play-logo zijn handelsmerken van Google LLC.", + "has_avatar_label": "Geweldig, dan zullen personen weten dat jij het bent", + "no_avatar_label": "Voeg een foto toe zodat personen weten dat jij het bent.", + "welcome_user": "Welkom %(name)s", + "welcome_detail": "Laten we je helpen om te beginnen", + "intro_welcome": "Welkom bij %(appName)s", + "intro_byline": "Gesprekken die helemaal van jou zijn.", + "send_dm": "Start een direct gesprek", + "explore_rooms": "Publieke kamers ontdekken", + "create_room": "Maak een groepsgesprek" }, "settings": { "show_breadcrumbs": "Snelkoppelingen naar de kamers die je recent hebt bekeken bovenaan de kamerlijst weergeven", @@ -3500,7 +3467,22 @@ "category_admin": "Beheerder", "category_advanced": "Geavanceerd", "category_effects": "Effecten", - "category_other": "Overige" + "category_other": "Overige", + "addwidget_missing_url": "Gelieve een widgetURL of in te bedden code te geven", + "addwidget_invalid_protocol": "Voer een https://- of http://-widget-URL in", + "addwidget_no_permissions": "Je kan de widgets in deze kamer niet aanpassen.", + "converttodm": "Verandert deze kamer in een directe chat", + "converttoroom": "Verandert deze directe chat in een kamer", + "discardsession": "Dwingt tot verwerping van de huidige uitwaartse groepssessie in een versleutelde kamer", + "remakeolm": "Opdracht voor ontwikkelaars: verwijdert de huidige uitgaande groepssessie en stelt nieuwe Olm-sessies in", + "tovirtual": "Schakelt over naar de virtuele kamer van deze kamer, als die er is", + "tovirtual_not_found": "Geen virtuele ruimte voor deze ruimte", + "query": "Start een chat met die persoon", + "query_not_found_phone_number": "Kan Matrix-ID voor telefoonnummer niet vinden", + "holdcall": "De huidige oproep in de wacht zetten", + "no_active_call": "Geen actieve oproep in deze kamer", + "unholdcall": "De huidige oproep in huidige kamer in de wacht zetten", + "me": "Toont actie" }, "presence": { "busy": "Bezet", @@ -3675,7 +3657,16 @@ "auth": { "continue_with_idp": "Doorgaan met %(provider)s", "sign_in_with_sso": "Inloggen met eenmalig inloggen", - "sso": "Eenmalige aanmelding" + "sso": "Eenmalige aanmelding", + "continue_with_sso": "Ga verder met %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s of %(usernamePassword)s", + "sign_in_instead": "Heb je al een account? Inloggen", + "account_clash": "Jouw nieuwe account (%(newAccountId)s) is geregistreerd, maar je bent al ingelogd met een andere account (%(loggedInUserId)s).", + "account_clash_previous_account": "Doorgaan met vorige account", + "log_in_new_account": "Login met je nieuwe account.", + "registration_successful": "Registratie geslaagd", + "server_picker_title": "Host je account op", + "server_picker_dialog_title": "Kies waar je account wordt gehost" }, "room_list": { "sort_unread_first": "Kamers met ongelezen berichten als eerste tonen", @@ -3708,5 +3699,18 @@ "report_entire_room": "Rapporteer het hele kamer", "report_content_to_homeserver": "Inhoud melden aan de beheerder van jouw homeserver", "description": "Dit bericht melden zal zijn unieke ‘gebeurtenis-ID’ versturen naar de beheerder van jouw homeserver. Als de berichten in deze kamer versleuteld zijn, zal de beheerder van jouw homeserver het bericht niet kunnen lezen, noch enige bestanden of afbeeldingen zien." + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s-versie:", + "olm_version": "Olm-versie:", + "help_link": "Klik hier voor hulp bij het gebruiken van %(brand)s.", + "help_link_chat_bot": "Klik hier voor hulp bij het gebruiken van %(brand)s of begin een kamer met onze robot met de knop hieronder.", + "chat_bot": "Met %(brand)s-robot chatten", + "title": "Hulp & info", + "versions": "Versies", + "access_token_detail": "Jouw toegangstoken geeft je toegang tot je account. Deel hem niet met anderen.", + "clear_cache_reload": "Cache wissen en herladen" + } } } diff --git a/src/i18n/strings/nn.json b/src/i18n/strings/nn.json index ce557b0a4b..556573ce66 100644 --- a/src/i18n/strings/nn.json +++ b/src/i18n/strings/nn.json @@ -59,7 +59,6 @@ "Failed to verify email address: make sure you clicked the link in the email": "Fekk ikkje til å stadfesta e-postadressa: sjå til at du klikka på den rette lenkja i e-posten", "Deops user with given id": "AvOPar brukarar med den gjevne IDen", "Verified key": "Godkjend nøkkel", - "Displays action": "Visar handlingar", "Reason": "Grunnlag", "Failure to create room": "Klarte ikkje å laga rommet", "Server may be unavailable, overloaded, or you hit a bug.": "Tenaren er kanskje utilgjengeleg, overlasta elles så traff du ein bug.", @@ -292,7 +291,6 @@ "Audio Output": "Ljodavspeling", "Email": "Epost", "Account": "Brukar", - "%(brand)s version:": "%(brand)s versjon:", "The email address linked to your account must be entered.": "Du må skriva epostadressa som er tilknytta brukaren din inn.", "A new password must be entered.": "Du må skriva eit nytt passord inn.", "New passwords must match each other.": "Dei nye passorda må vera like.", @@ -364,10 +362,6 @@ "Create account": "Lag konto", "Registration has been disabled on this homeserver.": "Registrering er skrudd av for denne heimetenaren.", "Unable to query for supported registration methods.": "Klarte ikkje å spørre etter støtta registreringsmetodar.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Kontoen din %(newAccountId)s er no registrert, men du er frå tidligare logga på med ein annan konto (%(loggedInUserId)s).", - "Continue with previous account": "Fortsett med tidligare konto", - "Log in to your new account.": "Logg på den nye kontoen din.", - "Registration Successful": "Registrering fullført", "Failed to re-authenticate due to a homeserver problem": "Fekk ikkje til å re-authentisere grunna ein feil på heimetenaren", "Failed to re-authenticate": "Fekk ikkje til å re-autentisere", "Enter your password to sign in and regain access to your account.": "Skriv inn ditt passord for å logge på og ta tilbake tilgang til kontoen din.", @@ -398,9 +392,6 @@ "Use an identity server": "Bruk ein identitetstenar", "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Bruk ein identitetstenar for å invitera via e-post. Klikk for å fortsetja å bruka standard identitetstenar (%(defaultIdentityServerName)s) eller styre dette i innstillingane.", "Use an identity server to invite by email. Manage in Settings.": "Bruk ein identitetstenar for å invitera via e-post. Styr dette i Innstillingane.", - "Please supply a https:// or http:// widget URL": "Skriv inn https:// eller http:// URL-en for miniprogrammet", - "You cannot modify widgets in this room.": "Du kan ikkje endra miniprogram i dette rommet.", - "Forces the current outbound group session in an encrypted room to be discarded": "Tvingar i eit kryptert rom kassering av gjeldande utgåande gruppe-økt", "Cancel entering passphrase?": "Avbryte inntasting av passfrase ?", "Setting up keys": "Setter opp nøklar", "Verify this session": "Stadfest denne økta", @@ -422,7 +413,6 @@ "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Å bruka ein identitetstenar er frivillig. Om du vel å ikkje bruka dette, vil ikkje brukaren din bli oppdaga av andre brukarar, og du kan ikkje invitera andre med e-post eller telefonnummer.", "Email addresses": "E-postadresser", "Phone numbers": "Telefonnummer", - "Help & About": "Hjelp og om", "Accept all %(invitedRooms)s invites": "Aksepter alle invitasjonar frå %(invitedRooms)s", "Security & Privacy": "Tryggleik og personvern", "Error changing power level requirement": "Feil under endring av krav for tilgangsnivå", @@ -517,15 +507,8 @@ "Upload completed": "Opplasting fullført", "Cancelled signature upload": "Kansellerte opplasting av signatur", "Room Settings - %(roomName)s": "Rominnstillingar - %(roomName)s", - "Room List": "Romkatalog", - "Select room from the room list": "Vel rom frå romkatalogen", - "Collapse room list section": "Minimer romkatalog-seksjonen", - "Expand room list section": "Utvid romkatalog-seksjonen", "Manually verify all remote sessions": "Manuelt verifiser alle eksterne økter", "My Ban List": "Mi blokkeringsliste", - "For help with using %(brand)s, click here.": "For hjelp med å bruka %(brand)s, klikk her.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "For hjelp med å bruka %(brand)s, klikk her, eller start ein samtale med vår bot ved å bruke knappen under.", - "Clear cache and reload": "Tøm buffer og last inn på nytt", "Composer": "Teksteditor", "Upgrade this room to the recommended room version": "Oppgrader dette rommet til anbefalt romversjon", "Your theme": "Ditt tema", @@ -548,7 +531,6 @@ "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 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.", @@ -558,8 +540,6 @@ "Use your account or create a new one to continue.": "Bruk kontoen din eller opprett ein ny for å halda fram.", "Joins room with given address": "Legg saman rom med spesifisert adresse", "Could not find user in room": "Klarde ikkje å finna brukaren i rommet", - "Please supply a widget URL or embed code": "Oppgje ein widget-URL eller innebygd kode", - "Opens chat with the given user": "Opna ein samtale med den spesifiserte brukaren", "Later": "Seinare", "Never send encrypted messages to unverified sessions from this session": "Aldri send krypterte meldingar til ikkje-verifiserte sesjonar frå denne sesjonen", "Never send encrypted messages to unverified sessions in this room from this session": "Aldri send krypterte meldingar i dette rommet til ikkje-verifiserte sesjonar frå denne sesjonen", @@ -599,12 +579,10 @@ "Video conference started by %(senderName)s": "Videokonferanse starta av %(senderName)s", "Video conference updated by %(senderName)s": "Videokonferanse oppdatert av %(senderName)s", "Video conference ended by %(senderName)s": "Videokonferanse avslutta av %(senderName)s", - "Explore Public Rooms": "Utforsk offentlege rom", "Explore public rooms": "Utforsk offentlege rom", "Email Address": "E-postadresse", "You should remove your personal data from identity server before disconnecting. Unfortunately, identity server is currently offline or cannot be reached.": "Du bør fjerne dine personlege data frå identitetstenaren før du koplar frå. Dessverre er identitetstenaren utilgjengeleg og kan ikkje nåast akkurat no.", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Vi tilrår at du slettar personleg informasjon, som e-postadresser og telefonnummer frå identitetstenaren før du koplar frå.", - "Versions": "Versjonar", "The call was answered on another device.": "Samtalen vart svart på på ei anna eining.", "Norway": "Noreg", "Bahamas": "Bahamas", @@ -807,7 +785,12 @@ "group_encryption": "Kryptografi" }, "keyboard": { - "home": "Heim" + "home": "Heim", + "category_room_list": "Romkatalog", + "toggle_microphone_mute": "Slå av/på demping av mikrofon", + "room_list_select_room": "Vel rom frå romkatalogen", + "room_list_collapse_section": "Minimer romkatalog-seksjonen", + "room_list_expand_section": "Utvid romkatalog-seksjonen" }, "composer": { "format_bold": "Feit", @@ -1111,7 +1094,13 @@ "category_actions": "Handlingar", "category_admin": "Administrator", "category_advanced": "Avansert", - "category_other": "Anna" + "category_other": "Anna", + "addwidget_missing_url": "Oppgje ein widget-URL eller innebygd kode", + "addwidget_invalid_protocol": "Skriv inn https:// eller http:// URL-en for miniprogrammet", + "addwidget_no_permissions": "Du kan ikkje endra miniprogram i dette rommet.", + "discardsession": "Tvingar i eit kryptert rom kassering av gjeldande utgåande gruppe-økt", + "query": "Opna ein samtale med den spesifiserte brukaren", + "me": "Visar handlingar" }, "presence": { "online_for": "tilkopla i %(duration)s", @@ -1164,7 +1153,11 @@ }, "auth": { "sign_in_with_sso": "Logg på med Single-Sign-On", - "sso": "Single-sign-on" + "sso": "Single-sign-on", + "account_clash": "Kontoen din %(newAccountId)s er no registrert, men du er frå tidligare logga på med ein annan konto (%(loggedInUserId)s).", + "account_clash_previous_account": "Fortsett med tidligare konto", + "log_in_new_account": "Logg på den nye kontoen din.", + "registration_successful": "Registrering fullført" }, "export_chat": { "messages": "Meldingar" @@ -1183,5 +1176,18 @@ "one": "1 ulesen melding." }, "unread_messages": "Uleste meldingar." + }, + "onboarding": { + "explore_rooms": "Utforsk offentlege rom" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s versjon:", + "help_link": "For hjelp med å bruka %(brand)s, klikk her.", + "help_link_chat_bot": "For hjelp med å bruka %(brand)s, klikk her, eller start ein samtale med vår bot ved å bruke knappen under.", + "title": "Hjelp og om", + "versions": "Versjonar", + "clear_cache_reload": "Tøm buffer og last inn på nytt" + } } } diff --git a/src/i18n/strings/oc.json b/src/i18n/strings/oc.json index 9aa379f9ff..0816f09661 100644 --- a/src/i18n/strings/oc.json +++ b/src/i18n/strings/oc.json @@ -82,7 +82,6 @@ "Profile": "Perfil", "Account": "Compte", "General": "General", - "Versions": "Versions", "Composer": "Compositor", "Unignore": "Ignorar pas", "Security & Privacy": "Seguretat e vida privada", @@ -144,8 +143,6 @@ "Commands": "Comandas", "Users": "Utilizaires", "Success!": "Capitada !", - "Navigation": "Navigacion", - "Upload a file": "Actualizar un fichièr", "Explore rooms": "Percórrer las salas", "Create Account": "Crear un compte", "Click the button below to confirm adding this email address.": "Clicatz sus lo boton aicí dejós per confirmar l'adicion de l'adreça e-mail.", @@ -265,7 +262,9 @@ "end": "Fin", "alt": "Alt", "control": "Ctrl", - "shift": "Descalatge" + "shift": "Descalatge", + "category_navigation": "Navigacion", + "upload_file": "Actualizar un fichièr" }, "composer": { "format_bold": "Gras", @@ -349,5 +348,10 @@ "sort_by_alphabet": "A-Z", "sublist_options": "Opcions de lista", "show_less": "Ne veire mens" + }, + "setting": { + "help_about": { + "versions": "Versions" + } } } diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json index 2ea88ed119..236455af73 100644 --- a/src/i18n/strings/pl.json +++ b/src/i18n/strings/pl.json @@ -70,7 +70,6 @@ "Delete widget": "Usuń widżet", "Default": "Zwykły", "Define the power level of a user": "Określ poziom uprawnień użytkownika", - "Displays action": "Wyświetla akcję", "Download %(text)s": "Pobierz %(text)s", "Email": "E-mail", "Email address": "Adres e-mail", @@ -129,7 +128,6 @@ "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s nie ma uprawnień, by wysyłać Ci powiadomienia - sprawdź ustawienia swojej przeglądarki", "Historical": "Historyczne", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s nie otrzymał uprawnień do wysyłania powiadomień - spróbuj ponownie", - "%(brand)s version:": "Wersja %(brand)s:", "Room %(roomId)s not visible": "Pokój %(roomId)s nie jest widoczny", "%(roomName)s does not exist.": "%(roomName)s nie istnieje.", "%(roomName)s is not accessible at this time.": "%(roomName)s nie jest dostępny w tym momencie.", @@ -318,7 +316,6 @@ "Permission Required": "Wymagane Uprawnienia", "You do not have permission to start a conference call in this room": "Nie posiadasz uprawnień do rozpoczęcia rozmowy grupowej w tym pokoju", "Unignored user": "Nieignorowany użytkownik", - "Forces the current outbound group session in an encrypted room to be discarded": "Wymusza odrzucenie bieżącej sesji grupowej wychodzącej z zaszyfrowanego pokoju", "This homeserver has hit its Monthly Active User limit.": "Ten serwer osiągnął miesięczny limit aktywnego użytkownika.", "This homeserver has exceeded one of its resource limits.": "Ten serwer przekroczył jeden z limitów.", "Please contact your homeserver administrator.": "Proszę o kontakt z administratorem serwera.", @@ -443,7 +440,6 @@ "Phone numbers": "Numery telefonów", "Language and region": "Język i region", "Account management": "Zarządzanie kontem", - "Versions": "Wersje", "Room list": "Lista pokojów", "Security & Privacy": "Bezpieczeństwo i prywatność", "Room Addresses": "Adresy pokoju", @@ -472,7 +468,6 @@ "Room version:": "Wersja pokoju:", "edited": "edytowane", "Edit message": "Edytuj wiadomość", - "Help & About": "Pomoc i o aplikacji", "General": "Ogólne", "Sounds": "Dźwięki", "Notification sound": "Dźwięk powiadomień", @@ -489,8 +484,6 @@ "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Możesz się zalogować, lecz niektóre funkcje nie będą dostępne dopóki Serwer Tożsamości nie będzie znów online. Jeśli ciągle widzisz to ostrzeżenie, sprawdź swoją konfigurację lub skontaktuj się z administratorem serwera.", "No homeserver URL provided": "Nie podano URL serwera głównego", "The server does not support the room version specified.": "Serwer nie wspiera tej wersji pokoju.", - "Please supply a https:// or http:// widget URL": "Podaj adres URL widżeta, zaczynający się od http:// lub https://", - "You cannot modify widgets in this room.": "Nie możesz modyfikować widżetów w tym pokoju.", "Please ask the administrator of your homeserver (%(homeserverDomain)s) to configure a TURN server in order for calls to work reliably.": "Poproś administratora swojego serwera głównego (%(homeserverDomain)s) by skonfigurował serwer TURN aby rozmowy działały bardziej niezawodnie.", "Cannot reach homeserver": "Błąd połączenia z serwerem domowym", "Ensure you have a stable internet connection, or get in touch with the server admin": "Upewnij się, że posiadasz stabilne połączenie internetowe lub skontaktuj się z administratorem serwera", @@ -531,9 +524,6 @@ "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Wyrażasz zgodę na warunki użytkowania serwera%(serverName)s aby pozwolić na odkrywanie Ciebie za pomocą adresu e-mail oraz numeru telefonu.", "Discovery": "Odkrywanie", "Deactivate account": "Dezaktywuj konto", - "For help with using %(brand)s, click here.": "Aby uzyskać pomoc w używaniu %(brand)s, naciśnij tutaj.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Aby uzyskać pomoc w korzystaniu z %(brand)s, kliknij tutaj lub rozpocznij czat z botem za pomocą przycisku poniżej.", - "Chat with %(brand)s Bot": "Rozmowa z Botem %(brand)s", "Always show the window menu bar": "Zawsze pokazuj pasek menu okna", "Add Email Address": "Dodaj adres e-mail", "Add Phone Number": "Dodaj numer telefonu", @@ -557,7 +547,6 @@ "If you don't want to use to discover and be discoverable by existing contacts you know, enter another identity server below.": "Jeżeli nie chcesz używać do odnajdywania i bycia odnajdywanym przez osoby, które znasz, wpisz inny serwer tożsamości poniżej.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Używanie serwera tożsamości jest opcjonalne. Jeżeli postanowisz nie używać serwera tożsamości, pozostali użytkownicy nie będą w stanie Cię odnaleźć ani nie będziesz mógł zaprosić innych po adresie e-mail czy numerze telefonu.", "Do not use an identity server": "Nie używaj serwera tożsamości", - "Clear cache and reload": "Wyczyść pamięć podręczną i przeładuj", "Something went wrong. Please try again or view your console for hints.": "Coś poszło nie tak. Spróbuj ponownie lub sprawdź konsolę przeglądarki dla wskazówek.", "Please try again or view your console for hints.": "Spróbuj ponownie lub sprawdź konsolę przeglądarki dla wskazówek.", "Personal ban list": "Osobista lista zablokowanych", @@ -608,10 +597,6 @@ "Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Ustaw adresy tego pokoju, aby użytkownicy mogli go znaleźć za pośrednictwem Twojego serwera domowego (%(localDomain)s)", "Couldn't load page": "Nie można załadować strony", "Create account": "Utwórz konto", - "Navigation": "Nawigacja", - "Calls": "Połączenia", - "Room List": "Lista pokojów", - "New line": "Nowa linia", "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.", @@ -680,17 +665,7 @@ "other": "Prześlij %(count)s innych plików", "one": "Prześlij %(count)s inny plik" }, - "Send a Direct Message": "Wyślij wiadomość prywatną", - "Explore Public Rooms": "Przeglądaj pokoje publiczne", - "Create a Group Chat": "Utwórz czat grupowy", - "Log in to your new account.": "Zaloguj się do nowego konta.", - "Registration Successful": "Pomyślnie zarejestrowano", "Enter your account password to confirm the upgrade:": "Wprowadź hasło do konta, aby potwierdzić aktualizację:", - "Autocomplete": "Autouzupełnienie", - "Toggle Bold": "Przełącz pogrubienie", - "Toggle Italics": "Przełącz kursywę", - "Toggle Quote": "Przełącz cytowanie", - "Cancel autocomplete": "Anuluj autouzupełnienie", "Confirm adding email": "Potwierdź dodanie e-maila", "Click the button below to confirm adding this email address.": "Naciśnij przycisk poniżej aby zatwierdzić dodawanie adresu e-mail.", "Confirm adding phone number": "Potwierdź dodanie numeru telefonu", @@ -723,8 +698,6 @@ "New Recovery Method": "Nowy sposób odzyskiwania", "If disabled, messages from encrypted rooms won't appear in search results.": "Jeśli wyłączone, wiadomości z szyfrowanych pokojów nie pojawią się w wynikach wyszukiwania.", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s z %(totalRooms)s", - "Jump to room search": "Przejdź do szukania pokoju", - "Upload a file": "Wyślij plik", "Verifies a user, session, and pubkey tuple": "Weryfikuje użytkownika, sesję oraz klucz publiczny", "Join millions for free on the largest public server": "Dołącz do milionów za darmo na największym publicznym serwerze", "Enter your password to sign in and regain access to your account.": "Podaj hasło, aby zalogować się i odzyskać dostęp do swojego konta.", @@ -743,8 +716,6 @@ "The call was answered on another device.": "Połączenie zostało odebrane na innym urządzeniu.", "Messages in this room are end-to-end encrypted.": "Wiadomości w tym pokoju są szyfrowane end-to-end.", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Klucz podpisujący, który podano jest taki sam jak klucz podpisujący otrzymany od %(userId)s oraz sesji %(deviceId)s. Sesja została oznaczona jako zweryfikowana.", - "Opens chat with the given user": "Otwiera czat z wybranym użytkownikiem", - "Please supply a widget URL or embed code": "Proszę podać adres URL widżetu lub embed code", "Joins room with given address": "Dołącz do pokoju o wybranym adresie", "Are you sure you want to cancel entering passphrase?": "Czy na pewno chcesz anulować wpisywanie hasła?", "Cancel entering passphrase?": "Anulować wpisywanie hasła?", @@ -786,9 +757,6 @@ "Send feedback": "Wyślij opinię użytkownika", "Feedback": "Opinia użytkownika", "%(creator)s created this DM.": "%(creator)s utworzył tę wiadomość prywatną.", - "Welcome to %(appName)s": "Witamy w %(appName)s", - "Now, let's help you get started": "Teraz pomożemy Ci zacząć", - "Welcome %(name)s": "Witaj, %(name)s", "Israel": "Izrael", "Isle of Man": "Man", "Ireland": "Irlandia", @@ -1125,7 +1093,6 @@ "Please enter verification code sent via text.": "Wprowadź kod weryfikacyjny wysłany wiadomością tekstową.", "Unable to share phone number": "Nie udało się udostępnić numeru telefonu", "Unable to share email address": "Nie udało się udostępnić adresu e-mail", - "Continue with previous account": "Kontynuuj, używając poprzedniego konta", "Use an email address to recover your account": "Użyj adresu e-mail, aby odzyskać swoje konto", "Doesn't look like a valid email address": "To nie wygląda na prawidłowy adres e-mail", "Incompatible local cache": "Niekompatybilna lokalna pamięć podręczna", @@ -1201,8 +1168,6 @@ "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Aby zgłosić błąd związany z bezpieczeństwem Matriksa, przeczytaj Politykę odpowiedzialnego ujawniania informacji Matrix.org.", "Use email or phone to optionally be discoverable by existing contacts.": "Użyj adresu e-mail lub numeru telefonu, aby móc być odkrywanym przez istniejące kontakty.", "Add an email to be able to reset your password.": "Dodaj adres e-mail, aby zresetować swoje hasło.", - "Host account on": "Przechowuj konto na", - "Already have an account? Sign in here": "Masz już konto? Zaloguj się tutaj", "New? Create account": "Nowy? Utwórz konto", "New here? Create an account": "Nowy? Utwórz konto", "Server Options": "Opcje serwera", @@ -1235,7 +1200,6 @@ "Generate a Security Key": "Wygeneruj klucz bezpieczeństwa", "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server.": "Zabezpiecz się przed utratą dostępu do szyfrowanych wiadomości i danych, tworząc kopię zapasową kluczy szyfrowania na naszym serwerze.", "Safeguard against losing access to encrypted messages & data": "Zabezpiecz się przed utratą dostępu do szyfrowanych wiadomości i danych", - "Your access token gives full access to your account. Do not share it with anyone.": "Twój token dostępu daje pełen dostęp do Twojego konta. Nie dziel się nim z nikim.", "Avatar": "Awatar", "Move right": "Przenieś w prawo", "Move left": "Przenieś w lewo", @@ -1260,8 +1224,6 @@ "Failed to remove some rooms. Try again later": "Nie udało się usunąć niektórych pokojów. Spróbuj ponownie później", "Select a room below first": "Najpierw wybierz poniższy pokój", "Spaces": "Przestrzenie", - "Converts the DM to a room": "Zmienia wiadomości prywatne w pokój", - "Converts the room to a DM": "Zamienia pokój w wiadomość prywatną", "User Busy": "Użytkownik zajęty", "The user you called is busy.": "Użytkownik, do którego zadzwoniłeś jest zajęty.", "End-to-end encryption isn't enabled": "Szyfrowanie end-to-end nie jest włączone", @@ -1290,10 +1252,6 @@ "There was an error looking up the phone number": "Podczas wyszukiwania numeru telefonu wystąpił błąd", "Unable to look up phone number": "Nie można wyszukać numeru telefonu", "We sent the others, but the below people couldn't be invited to ": "Wysłaliśmy pozostałym, ale osoby poniżej nie mogły zostać zaproszone do ", - "Takes the call in the current room off hold": "Odwiesza połączenie w obecnym pokoju", - "No active call in this room": "Brak aktywnych połączeń w tym pokoju", - "Places the call in the current room on hold": "Zawiesza połączenie w obecnym pokoju", - "Unable to find Matrix ID for phone number": "Nie można znaleźć ID Matrix dla numeru telefonu", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Nieznana para (użytkownik, sesja): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Błąd polecenia: Nie można znaleźć pokoju (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Nieznany adres pokoju: %(roomAlias)s", @@ -1374,8 +1332,6 @@ "other": "Dodawanie pokojów... (%(progress)s z %(count)s)", "one": "Dodawanie pokoju..." }, - "No virtual room for this room": "Brak wirtualnego pokoju dla tego pokoju", - "Switches to this room's virtual room, if it has one": "Przełącza do wirtualnego pokoju tego pokoju, jeśli taki istnieje", "%(space1Name)s and %(space2Name)s": "%(space1Name)s i %(space2Name)s", "There was a problem communicating with the homeserver, please try again later.": "Wystąpił problem podczas łączenia się z serwerem domowym, spróbuj ponownie później.", "Stop recording": "Skończ nagrywanie", @@ -1425,7 +1381,6 @@ "Message search initialisation failed": "Inicjalizacja wyszukiwania wiadomości nie powiodła się", "Select all": "Zaznacz wszystkie", "Deselect all": "Odznacz wszystkie", - "Close dialog or context menu": "Zamknij dialog lub menu kontekstowe", "You were disconnected from the call. (Error: %(message)s)": "Zostałeś rozłączony z rozmowy. (Błąd: %(message)s)", "Connection lost": "Utracono połączenie", "Failed to join": "Nie udało się dołączyć", @@ -1562,8 +1517,6 @@ "Show polls button": "Pokaż przycisk ankiet", "Reply in thread": "Odpowiedz w wątku", "Explore public spaces in the new search dialog": "Odkrywaj publiczne przestrzenie w nowym oknie wyszukiwania", - "Send a sticker": "Wyślij naklejkę", - "Undo edit": "Cofnij edycję", "Start new chat": "Nowy czat", "If you can't find the room you're looking for, ask for an invite or create a new room.": "Jeśli nie możesz znaleźć pokoju, którego szukasz, poproś o zaproszenie lub utwórz nowy pokój.", "Invite to %(roomName)s": "Zaproś do %(roomName)s", @@ -1571,26 +1524,6 @@ "Deactivating your account is a permanent action — be careful!": "Dezaktywacja konta jest akcją trwałą — bądź ostrożny!", "Send voice message": "Wyślij wiadomość głosową", "Keyboard": "Skróty klawiszowe", - "Jump to first message": "Przeskocz do pierwszej wiadomości", - "Scroll down in the timeline": "Przewiń w dół na osi czasu", - "Scroll up in the timeline": "Przewiń w górę na osi czasu", - "Jump to oldest unread message": "Przejdź do najstarszej nieprzeczytanej wiadomości", - "Toggle webcam on/off": "Włącz lub wyłącz kamerę", - "Toggle microphone mute": "Wycisz mikrofon", - "Cancel replying to a message": "Anuluj odpowiadanie na wiadomość", - "Jump to start of the composer": "Przejdź do początku okna edycji", - "Redo edit": "Ponów edycję", - "Jump to last message": "Przejdź do ostatniej wiadomości", - "Previous room or DM": "Poprzedni pokój lub wiadomość prywatna", - "Previous unread room or DM": "Poprzedni nieodczytany pokój lub wiadomość prywatna", - "Next unread room or DM": "Następny nieodczytany pokój lub wiadomość prywatna", - "Open this settings tab": "Otwórz zakładkę ustawień", - "Toggle right panel": "Przełącz prawy panel", - "Toggle the top left menu": "Przełącz lewe górne menu", - "Navigate up in the room list": "Przejdź w górę listy pokoi", - "Navigate down in the room list": "Przejdź w dół listy pokoi", - "Toggle space panel": "Przełącz panel przestrzeni", - "Search (must be enabled)": "Wyszukiwanie (musi być włączone)", "Unpin this widget to view it in this panel": "Odepnij widżet, aby wyświetlić go w tym panelu", "Location": "Lokalizacja", "Poll": "Ankieta", @@ -1603,18 +1536,9 @@ "New room": "Nowy pokój", "Group all your rooms that aren't part of a space in one place.": "Pogrupuj wszystkie pokoje, które nie są częścią przestrzeni, w jednym miejscu.", "Show all your rooms in Home, even if they're in a space.": "Pokaż wszystkie swoje pokoje na głównej, nawet jeśli znajdują się w przestrzeni.", - "Activate selected button": "Aktywuj wybrany przycisk", "Copy room link": "Kopiuj link do pokoju", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Przestrzenie to sposób grupowania pokoi i osób. Oprócz przestrzeni, w których się znajdujesz, możesz też skorzystać z gotowych grupowań.", "Spaces to show": "Wyświetlanie przestrzeni", - "Previous autocomplete suggestion": "Poprzednia sugestia autouzupełniania", - "Next autocomplete suggestion": "Następna sugestia autouzupełniania", - "Next room or DM": "Następny pokój lub wiadomość prywatna", - "Dismiss read marker and jump to bottom": "Zignoruj znacznik odczytu i przejdź na dół", - "Navigate to previous message in composer history": "Przejdź do poprzedniej wiadomości w historii kompozytora", - "Navigate to next message in composer history": "Przejdź do następnej wiadomości w historii kompozytora", - "Navigate to previous message to edit": "Przejdź do poprzedniej wiadomości, aby ją edytować", - "Navigate to next message to edit": "Przejdź do następnej wiadomości do edycji", "Group all your favourite rooms and people in one place.": "Pogrupuj wszystkie swoje ulubione pokoje i osoby w jednym miejscu.", "Sidebar": "Pasek boczny", "Export chat": "Eksportuj czat", @@ -1666,10 +1590,8 @@ "Some session data, including encrypted message keys, is missing. Sign out and sign in to fix this, restoring keys from backup.": "Brakuje niektórych danych sesji, w tym zaszyfrowanych kluczy wiadomości. Wyloguj się i zaloguj, aby to naprawić, przywracając klucze z kopii zapasowej.", "Backup key stored:": "Klucz zapasowy zapisany:", "Backup key cached:": "Klucz zapasowy zapisany w pamięci podręcznej:", - "Could not find room": "Nie udało się znaleźć pokoju", "You need to be able to kick users to do that.": "Aby to zrobić, musisz móc wyrzucać użytkowników.", "WARNING: session already verified, but keys do NOT MATCH!": "OSTRZEŻENIE: sesja została już zweryfikowana, ale klucze NIE PASUJĄ!", - "iframe has no src attribute": "iframe nie posiada atrybutu src", "Failed to read events": "Nie udało się odczytać wydarzeń", "Failed to send event": "Nie udało się wysłać wydarzenia", "Use your account to continue.": "Użyj swojego konta, aby kontynuować.", @@ -1715,10 +1637,8 @@ "Yes, stop broadcast": "Tak, zakończ transmisję", "Are you sure you want to stop your live broadcast? This will end the broadcast and the full recording will be available in the room.": "Czy na pewno chcesz zakończyć transmisję na żywo? Transmisja zostanie zakończona, a całe nagranie będzie dostępne w pokoju.", "Stop live broadcasting?": "Zakończyć transmisję na żywo?", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Komenda programisty: Odrzuca bieżącą sesję grupową i tworzy nowe sesje Olm", "User (%(user)s) did not end up as invited to %(roomId)s but no error was given from the inviter utility": "Użytkownik (%(user)s) nie został zaproszony do %(roomId)s, lecz nie wystąpił błąd od narzędzia zapraszającego", "This may be caused by having the app open in multiple tabs or due to clearing browser data.": "Może być to spowodowane przez aplikacje otwartą w wielu kartach lub po wyczyszczeniu danych przeglądarki.", - "Force complete": "Wymuś zakończenie", "You ended a voice broadcast": "Zakończyłeś transmisje na żywo", "Unable to play this voice broadcast": "Nie można odtworzyć tej transmisji głosowej", "Unable to decrypt voice broadcast": "Nie można rozszyfrować transmisji głosowej", @@ -1750,7 +1670,6 @@ "Error adding ignored user/server": "Wystąpił błąd podczas ignorowania użytkownika/serwera", "Ignored/Blocked": "Ignorowani/Zablokowani", "Upcoming features": "Nadchodzące zmiany", - "Olm version:": "Wersja Olm:", "Manage account": "Zarządzaj kontem", "Set a new account password…": "Ustaw nowe hasło użytkownika…", "Error changing password": "Wystąpił błąd podczas zmiany hasła", @@ -1773,8 +1692,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.": "Chcesz poeksperymentować? Wypróbuj nasze najnowsze pomysły w trakcie rozwoju. Przedstawione funkcje nie zostały w pełni ukończone; mogą być niestabilne; mogą się zmienić lub zostać kompletnie porzucone. Dowiedz się więcej.", "Early previews": "Wczesny podgląd", "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.": "Co następne dla %(brand)s? Laboratoria to najlepsze miejsce do przetestowania nowych funkcji i możliwość pomocy w testowaniu zanim dotrą one do szerszego grona użytkowników.", - "Identity server is %(identityServerUrl)s": "Serwer tożsamości to %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Serwer domowy to %(homeserverUrl)s", "Your account details are managed separately at %(hostname)s.": "Twoje dane konta są zarządzane oddzielnie na %(hostname)s.", "Your password was successfully changed.": "Twoje hasło zostało pomyślnie zmienione.", "%(errorMessage)s (HTTP status %(httpStatus)s)": "%(errorMessage)s (Status HTTP %(httpStatus)s)", @@ -1814,7 +1731,6 @@ "Give one or multiple users in this room more privileges": "Dodaj jednemu lub więcej użytkownikom więcej uprawnień", "Add privileged users": "Dodaj użytkowników uprzywilejowanych", "Ignore (%(counter)s)": "Ignoruj (%(counter)s)", - "Go to Home View": "Przejdź do widoku Strony głównej", "Space home": "Przestrzeń główna", "About homeservers": "O serwerach domowych", "Other homeserver": "Inne serwery domowe", @@ -2237,7 +2153,6 @@ "Disinvite from space": "Cofnij zaproszenie do przestrzeni", "Remove from space": "Usuń z przestrzeni", "You will not be able to undo this change as you are demoting yourself, if you are the last privileged user in the space it will be impossible to regain privileges.": "Nie będziesz mógł cofnąć tej zmiany, ponieważ degradujesz swoje uprawnienia. Jeśli jesteś ostatnim użytkownikiem uprzywilejowanym w tej przestrzeni, nie będziesz mógł ich odzyskać.", - "Open user settings": "Otwórz ustawienia użytkownika", "All messages and invites from this user will be hidden. Are you sure you want to ignore them?": "Wszystkie wiadomości i zaproszenia od tego użytkownika zostaną ukryte. Czy na pewno chcesz zignorować?", "Ignore %(user)s": "Ignoruj %(user)s", "Pinned": "Przypięte", @@ -2686,16 +2601,6 @@ "Sliding Sync configuration": "Konfiguracja synchronizacji przesuwanej", "Spotlight": "Centrum uwagi", "Reset bearing to north": "Resetuj kierunek na północ", - "Switch to space by number": "Przełącz przestrzeń za pomocą liczby", - "Previous recently visited room or space": "Poprzedni ostatnio odwiedzony pokój lub przestrzeń", - "Next recently visited room or space": "Następny ostatnio odwiedzony pokój lub przestrzeń", - "Toggle hidden event visibility": "Przełącz widoczność ukrytego wydarzenia", - "Expand room list section": "Rozwiń sekcję listy pokojów", - "Collapse room list section": "Zwiń sekcję listy pokojów", - "Select room from the room list": "Wybierz pokój z listy pokojów", - "Jump to end of the composer": "Przejdź do końca okna edycji", - "Toggle Link": "Przełącz link", - "Toggle Code Block": "Przełącz blok kodu", "Failed to set direct message tag": "Nie udało się ustawić tagu wiadomości prywatnych", "Message downloading sleep time(ms)": "Opóźnienie pobierania wiadomości(ms)", "Indexed rooms:": "Pokoje indeksowane:", @@ -2750,10 +2655,6 @@ "Verify your identity to access encrypted messages and prove your identity to others.": "Zweryfikuj swoją tożsamość, aby uzyskać dostęp do wiadomości szyfrowanych i potwierdzić swoją tożsamość innym.", "Verify with another device": "Weryfikuj innym urządzeniem", "Proceed with reset": "Zresetuj", - "Decide where your account is hosted": "Decyduj, gdzie Twoje konto jest hostowane", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Twoje nowe konto (%(newAccountId)s) zostało zarejestrowane, lecz jesteś już zalogowany na innym koncie (%(loggedInUserId)s).", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s lub %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Kontynuuj z %(ssoButtons)s", "That e-mail address or phone number is already in use.": "Ten adres e-mail lub numer telefonu jest już w użyciu.", "Someone already has that username, please try another.": "Ktoś już ma tę nazwę użytkownika, użyj innej.", "Unable to query for supported registration methods.": "Nie można uzyskać wspieranych metod rejestracji.", @@ -2845,9 +2746,6 @@ "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Jeśli ktoś Ci powiedział, żeby coś stąd skopiować/wkleić, istnieje wysokie prawdopodobieństwo, że jesteś oszukiwany!", "Wait!": "Czekaj!", "Open dial pad": "Otwórz klawiaturę numeryczną", - "Own your conversations.": "Bądź właścicielem swoich konwersacji.", - "Add a photo so people know it's you.": "Dodaj zdjęcie, aby inni mogli Cię rozpoznać.", - "Great, that'll help people know it's you": "Świetnie, pomoże to innym Cię rozpoznać", "Error downloading audio": "Wystąpił błąd w trakcie pobierania audio", "Unnamed audio": "Audio bez nazwy", "Use email to optionally be discoverable by existing contacts.": "Użyj adresu e-mail, aby opcjonalnie móc być odkrywanym przez istniejące kontakty.", @@ -3179,7 +3077,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[liczba]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Połączenia", + "category_room_list": "Lista pokojów", + "category_navigation": "Nawigacja", + "category_autocomplete": "Autouzupełnienie", + "composer_toggle_bold": "Przełącz pogrubienie", + "composer_toggle_italics": "Przełącz kursywę", + "composer_toggle_quote": "Przełącz cytowanie", + "composer_toggle_code_block": "Przełącz blok kodu", + "composer_toggle_link": "Przełącz link", + "cancel_reply": "Anuluj odpowiadanie na wiadomość", + "navigate_next_message_edit": "Przejdź do następnej wiadomości do edycji", + "navigate_prev_message_edit": "Przejdź do poprzedniej wiadomości, aby ją edytować", + "composer_jump_start": "Przejdź do początku okna edycji", + "composer_jump_end": "Przejdź do końca okna edycji", + "composer_navigate_next_history": "Przejdź do następnej wiadomości w historii kompozytora", + "composer_navigate_prev_history": "Przejdź do poprzedniej wiadomości w historii kompozytora", + "send_sticker": "Wyślij naklejkę", + "toggle_microphone_mute": "Wycisz mikrofon", + "toggle_webcam_mute": "Włącz lub wyłącz kamerę", + "dismiss_read_marker_and_jump_bottom": "Zignoruj znacznik odczytu i przejdź na dół", + "jump_to_read_marker": "Przejdź do najstarszej nieprzeczytanej wiadomości", + "upload_file": "Wyślij plik", + "scroll_up_timeline": "Przewiń w górę na osi czasu", + "scroll_down_timeline": "Przewiń w dół na osi czasu", + "jump_room_search": "Przejdź do szukania pokoju", + "room_list_select_room": "Wybierz pokój z listy pokojów", + "room_list_collapse_section": "Zwiń sekcję listy pokojów", + "room_list_expand_section": "Rozwiń sekcję listy pokojów", + "room_list_navigate_down": "Przejdź w dół listy pokoi", + "room_list_navigate_up": "Przejdź w górę listy pokoi", + "toggle_top_left_menu": "Przełącz lewe górne menu", + "toggle_right_panel": "Przełącz prawy panel", + "keyboard_shortcuts_tab": "Otwórz zakładkę ustawień", + "go_home_view": "Przejdź do widoku Strony głównej", + "next_unread_room": "Następny nieodczytany pokój lub wiadomość prywatna", + "prev_unread_room": "Poprzedni nieodczytany pokój lub wiadomość prywatna", + "next_room": "Następny pokój lub wiadomość prywatna", + "prev_room": "Poprzedni pokój lub wiadomość prywatna", + "autocomplete_cancel": "Anuluj autouzupełnienie", + "autocomplete_navigate_next": "Następna sugestia autouzupełniania", + "autocomplete_navigate_prev": "Poprzednia sugestia autouzupełniania", + "toggle_space_panel": "Przełącz panel przestrzeni", + "toggle_hidden_events": "Przełącz widoczność ukrytego wydarzenia", + "jump_first_message": "Przeskocz do pierwszej wiadomości", + "jump_last_message": "Przejdź do ostatniej wiadomości", + "composer_undo": "Cofnij edycję", + "composer_redo": "Ponów edycję", + "navigate_prev_history": "Poprzedni ostatnio odwiedzony pokój lub przestrzeń", + "navigate_next_history": "Następny ostatnio odwiedzony pokój lub przestrzeń", + "switch_to_space": "Przełącz przestrzeń za pomocą liczby", + "open_user_settings": "Otwórz ustawienia użytkownika", + "close_dialog_menu": "Zamknij dialog lub menu kontekstowe", + "activate_button": "Aktywuj wybrany przycisk", + "composer_new_line": "Nowa linia", + "autocomplete_force": "Wymuś zakończenie", + "search": "Wyszukiwanie (musi być włączone)" }, "credits": { "default_cover_photo": "Autorem domyślnego zdjęcia okładkowego jest Jesús Roncero na licencji CC-BY-SA 4.0.", @@ -3304,7 +3258,16 @@ "download_google_play": "Pobierz w Google Play", "download_f_droid": "Pobierz w F-Droid", "apple_trademarks": "App Store® i logo Apple® są znakami towarowymi Apple Inc.", - "google_trademarks": "Google Play i logo Google Play są znakami towarowymi Google LLC." + "google_trademarks": "Google Play i logo Google Play są znakami towarowymi Google LLC.", + "has_avatar_label": "Świetnie, pomoże to innym Cię rozpoznać", + "no_avatar_label": "Dodaj zdjęcie, aby inni mogli Cię rozpoznać.", + "welcome_user": "Witaj, %(name)s", + "welcome_detail": "Teraz pomożemy Ci zacząć", + "intro_welcome": "Witamy w %(appName)s", + "intro_byline": "Bądź właścicielem swoich konwersacji.", + "send_dm": "Wyślij wiadomość prywatną", + "explore_rooms": "Przeglądaj pokoje publiczne", + "create_room": "Utwórz czat grupowy" }, "settings": { "show_breadcrumbs": "Pokazuj skróty do ostatnio wyświetlonych pokojów nad listą pokojów", @@ -3870,7 +3833,24 @@ "category_admin": "Administrator", "category_advanced": "Zaawansowane", "category_effects": "Efekty", - "category_other": "Inne" + "category_other": "Inne", + "addwidget_missing_url": "Proszę podać adres URL widżetu lub embed code", + "addwidget_iframe_missing_src": "iframe nie posiada atrybutu src", + "addwidget_invalid_protocol": "Podaj adres URL widżeta, zaczynający się od http:// lub https://", + "addwidget_no_permissions": "Nie możesz modyfikować widżetów w tym pokoju.", + "converttodm": "Zamienia pokój w wiadomość prywatną", + "could_not_find_room": "Nie udało się znaleźć pokoju", + "converttoroom": "Zmienia wiadomości prywatne w pokój", + "discardsession": "Wymusza odrzucenie bieżącej sesji grupowej wychodzącej z zaszyfrowanego pokoju", + "remakeolm": "Komenda programisty: Odrzuca bieżącą sesję grupową i tworzy nowe sesje Olm", + "tovirtual": "Przełącza do wirtualnego pokoju tego pokoju, jeśli taki istnieje", + "tovirtual_not_found": "Brak wirtualnego pokoju dla tego pokoju", + "query": "Otwiera czat z wybranym użytkownikiem", + "query_not_found_phone_number": "Nie można znaleźć ID Matrix dla numeru telefonu", + "holdcall": "Zawiesza połączenie w obecnym pokoju", + "no_active_call": "Brak aktywnych połączeń w tym pokoju", + "unholdcall": "Odwiesza połączenie w obecnym pokoju", + "me": "Wyświetla akcję" }, "presence": { "busy": "Zajęty", @@ -4051,7 +4031,16 @@ "sign_in_with_sso": "Zaloguj się za pomocą pojedynczego logowania", "sso": "Pojedyncze logowanie", "reset_password_action": "Resetuj hasło", - "reset_password_title": "Resetuj swoje hasło" + "reset_password_title": "Resetuj swoje hasło", + "continue_with_sso": "Kontynuuj z %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s lub %(usernamePassword)s", + "sign_in_instead": "Masz już konto? Zaloguj się tutaj", + "account_clash": "Twoje nowe konto (%(newAccountId)s) zostało zarejestrowane, lecz jesteś już zalogowany na innym koncie (%(loggedInUserId)s).", + "account_clash_previous_account": "Kontynuuj, używając poprzedniego konta", + "log_in_new_account": "Zaloguj się do nowego konta.", + "registration_successful": "Pomyślnie zarejestrowano", + "server_picker_title": "Przechowuj konto na", + "server_picker_dialog_title": "Decyduj, gdzie Twoje konto jest hostowane" }, "room_list": { "sort_unread_first": "Pokazuj najpierw pokoje z nieprzeczytanymi wiadomościami", @@ -4087,5 +4076,20 @@ "report_entire_room": "Zgłoś cały pokój", "report_content_to_homeserver": "Zgłoś zawartość do administratora swojego serwera", "description": "Zgłoszenie tej wiadomości wyśle administratorowi serwera unikatowe „ID wydarzenia”. Jeżeli wiadomości w tym pokoju są szyfrowane, administrator serwera może nie być w stanie przeczytać treści wiadomości, lub zobaczyć plików bądź zdjęć." + }, + "setting": { + "help_about": { + "brand_version": "Wersja %(brand)s:", + "olm_version": "Wersja Olm:", + "help_link": "Aby uzyskać pomoc w używaniu %(brand)s, naciśnij tutaj.", + "help_link_chat_bot": "Aby uzyskać pomoc w korzystaniu z %(brand)s, kliknij tutaj lub rozpocznij czat z botem za pomocą przycisku poniżej.", + "chat_bot": "Rozmowa z Botem %(brand)s", + "title": "Pomoc i o aplikacji", + "versions": "Wersje", + "homeserver": "Serwer domowy to %(homeserverUrl)s", + "identity_server": "Serwer tożsamości to %(identityServerUrl)s", + "access_token_detail": "Twój token dostępu daje pełen dostęp do Twojego konta. Nie dziel się nim z nikim.", + "clear_cache_reload": "Wyczyść pamięć podręczną i przeładuj" + } } } diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index fd92a33152..846cee7edb 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -11,7 +11,6 @@ "Deactivate Account": "Desativar conta", "Default": "Padrão", "Deops user with given id": "Retirar função de moderador do usuário com o identificador informado", - "Displays action": "Visualizar atividades", "Export E2E room keys": "Exportar chaves ponta-a-ponta da sala", "Failed to change password. Is your password correct?": "Falha ao alterar a palavra-passe. A sua palavra-passe está correta?", "Failed to reject invitation": "Falha ao tentar rejeitar convite", @@ -139,7 +138,6 @@ "Error decrypting attachment": "Erro ao descriptografar o anexo", "Invalid file%(extra)s": "Arquivo inválido %(extra)s", "Operation failed": "A operação falhou", - "%(brand)s version:": "versão do %(brand)s:", "Warning!": "Atenção!", "Passphrases must match": "As frases-passe devem coincidir", "Passphrase must not be empty": "A frase-passe não pode estar vazia", @@ -423,11 +421,9 @@ "Gambia": "Gâmbia", "Georgia": "Geórgia", "Mayotte": "Mayotte", - "Host account on": "Hospedar conta em", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Recomendamos que remova seus endereços de email e números de telefone do servidor de identidade antes de se desconectar.", "Failed to invite users to %(roomName)s": "Falha ao convidar utilizadores para %(roomName)s", "Command error: Unable to find rendering type (%(renderingType)s)": "Erro de comando: Não foi possível encontrar o tipo de renderização(%(renderingType)s)", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Ou %(usernamePassword)s", "Macau": "Macau", "Malaysia": "Malásia", "Some invites couldn't be sent": "Alguns convites não puderam ser enviados", @@ -438,7 +434,6 @@ "Start a conversation with someone using their name or username (like ).": "Comece uma conversa com alguém a partir do nome ou nome de utilizador (por exemplo: ).", "Use email or phone to optionally be discoverable by existing contacts.": "Use email ou telefone para, opcionalmente, ser detectável por contactos existentes.", "Invite by username": "Convidar por nome de utilizador", - "Already have an account? Sign in here": "Já tem uma conta? Entre aqui", "Use an email address to recover your account": "Usar um endereço de email para recuperar a sua conta", "Malta": "Malta", "Lebanon": "Líbano", @@ -786,7 +781,8 @@ "category_admin": "Administrador", "category_advanced": "Avançado", "category_effects": "Ações", - "category_other": "Outros" + "category_other": "Outros", + "me": "Visualizar atividades" }, "presence": { "online": "Online", @@ -819,9 +815,17 @@ "group_rooms": "Salas" }, "auth": { - "sso": "Single Sign On" + "sso": "Single Sign On", + "sso_or_username_password": "%(ssoButtons)s Ou %(usernamePassword)s", + "sign_in_instead": "Já tem uma conta? Entre aqui", + "server_picker_title": "Hospedar conta em" }, "export_chat": { "messages": "Mensagens" + }, + "setting": { + "help_about": { + "brand_version": "versão do %(brand)s:" + } } } diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index 101de31f09..936ff381ce 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -11,7 +11,6 @@ "Deactivate Account": "Desativar minha conta", "Default": "Padrão", "Deops user with given id": "Retira o nível de moderador do usuário com o ID informado", - "Displays action": "Visualizar atividades", "Export E2E room keys": "Exportar chaves ponta-a-ponta da sala", "Failed to change password. Is your password correct?": "Não foi possível alterar a senha. A sua senha está correta?", "Failed to reject invitation": "Falha ao tentar recusar o convite", @@ -139,7 +138,6 @@ "Error decrypting attachment": "Erro ao descriptografar o anexo", "Invalid file%(extra)s": "Arquivo inválido %(extra)s", "Operation failed": "A operação falhou", - "%(brand)s version:": "versão do %(brand)s:", "Warning!": "Atenção!", "Passphrases must match": "As senhas têm que ser iguais", "Passphrase must not be empty": "A frase não pode estar em branco", @@ -300,7 +298,6 @@ "You do not have permission to start a conference call in this room": "Você não tem permissão para iniciar uma chamada em grupo nesta sala", "Unable to load! Check your network connectivity and try again.": "Não foi possível carregar! Verifique sua conexão de rede e tente novamente.", "Missing roomId.": "RoomId ausente.", - "Forces the current outbound group session in an encrypted room to be discarded": "Força a atual sessão da comunidade em uma sala criptografada a ser descartada", "This homeserver has hit its Monthly Active User limit.": "Este homeserver atingiu seu limite de usuário ativo mensal.", "This homeserver has exceeded one of its resource limits.": "Este servidor local ultrapassou um dos seus limites de recursos.", "You do not have permission to invite people to this room.": "Você não tem permissão para convidar pessoas para esta sala.", @@ -506,11 +503,6 @@ "Language and region": "Idioma e região", "Account management": "Gerenciamento da Conta", "General": "Geral", - "For help with using %(brand)s, click here.": "Para obter ajuda com o uso do %(brand)s, clique aqui.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Para obter ajuda com o uso do %(brand)s, clique aqui ou inicie um bate-papo com nosso bot usando o botão abaixo.", - "Chat with %(brand)s Bot": "Converse com o bot do %(brand)s", - "Help & About": "Ajuda e sobre", - "Versions": "Versões", "Composer": "Campo de texto", "Room list": "Lista de salas", "Autocomplete delay (ms)": "Atraso no preenchimento automático (ms)", @@ -552,14 +544,10 @@ "Use an identity server to invite by email. Manage in Settings.": "Use um servidor de identidade para convidar pessoas por e-mail. Gerencie nas Configurações.", "Joins room with given address": "Entra em uma sala com o endereço fornecido", "Could not find user in room": "Não encontrei este(a) usuário(a) na sala", - "Please supply a widget URL or embed code": "Forneça o link de um widget ou de um código de incorporação", - "Please supply a https:// or http:// widget URL": "Forneça o link de um widget com https:// ou http://", - "You cannot modify widgets in this room.": "Você não pode modificar widgets nesta sala.", "Verifies a user, session, and pubkey tuple": "Confirma um usuário, sessão, e chave criptografada pública", "Session already verified!": "Sessão já confirmada!", "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!": "ATENÇÃO: A CONFIRMAÇÃO DA CHAVE FALHOU! A chave de assinatura para %(userId)s e sessão %(deviceId)s é \"%(fprint)s\", o que não corresponde à chave fornecida \"%(fingerprint)s\". Isso pode significar que suas comunicações estejam sendo interceptadas por terceiros!", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "A chave de assinatura que você forneceu corresponde à chave de assinatura que você recebeu da sessão %(deviceId)s do usuário %(userId)s. Esta sessão foi marcada como confirmada.", - "Opens chat with the given user": "Abre um chat com determinada pessoa", "You signed in to a new session without verifying it:": "Você entrou em uma nova sessão sem confirmá-la:", "Verify your other session using one of the options below.": "Confirme suas outras sessões usando uma das opções abaixo.", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) entrou em uma nova sessão sem confirmá-la:", @@ -690,10 +678,6 @@ "Use your Security Key to continue.": "Use sua Chave de Segurança para continuar.", "Warning: you should only set up key backup from a trusted computer.": "Atenção: você só deve configurar o backup de chave em um computador de sua confiança.", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "Está faltando a chave pública do captcha no Servidor (homeserver). Por favor, reporte isso aos(às) administradores(as) do servidor.", - "Welcome to %(appName)s": "Boas-vindas ao %(appName)s", - "Send a Direct Message": "Enviar uma mensagem", - "Explore Public Rooms": "Explorar salas públicas", - "Create a Group Chat": "Criar um chat de grupo", "Explore rooms": "Explorar salas", "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.": "Detectamos uma versão mais antiga do %(brand)s. Isso fará com que a criptografia de ponta a ponta não funcione corretamente. As mensagens criptografadas de ponta a ponta trocadas recentemente, enquanto você usava a versão mais antiga, talvez não sejam descriptografáveis na nova versão. Isso também poderá fazer com que as mensagens trocadas nesta sessão falhem na mais atual. Se você tiver problemas, desconecte-se e entre novamente. Para manter o histórico de mensagens, exporte e reimporte suas chaves.", "%(creator)s created and configured the room.": "%(creator)s criou e configurou esta sala.", @@ -837,7 +821,6 @@ "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Concorde com os Termos de Serviço do servidor de identidade (%(serverName)s), para que você possa ser descoberto por endereço de e-mail ou por número de celular.", "Discovery": "Contatos", "Deactivate account": "Desativar minha conta", - "Clear cache and reload": "Limpar cache e recarregar", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Para relatar um problema de segurança relacionado à tecnologia Matrix, leia a Política de Divulgação de Segurança da Matrix.org.", "Always show the window menu bar": "Mostrar a barra de menu na janela", "Read Marker lifetime (ms)": "Duração do marcador de leitura (ms)", @@ -882,21 +865,6 @@ "Clear personal data": "Limpar dados pessoais", "Command Autocomplete": "Preenchimento automático do comando", "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 você não excluiu a opção de recuperação, um invasor pode estar tentando acessar sua conta. Altere a senha da sua conta e defina imediatamente uma nova opção de recuperação nas Configurações.", - "Room List": "Lista de salas", - "Autocomplete": "Preencher automaticamente", - "Toggle Bold": "Negrito", - "Toggle Italics": "Itálico", - "Toggle Quote": "Citar", - "New line": "Nova linha", - "Cancel replying to a message": "Cancelar resposta à mensagem", - "Toggle microphone mute": "Ativar/desativar som do microfone", - "Dismiss read marker and jump to bottom": "Ignorar o marcador de leitura e ir para o final", - "Jump to oldest unread message": "Ir para a mensagem não lida mais antiga", - "Upload a file": "Enviar um arquivo", - "Jump to room search": "Ir para a pesquisa de salas", - "Select room from the room list": "Selecionar sala da lista de salas", - "Collapse room list section": "Esconder seção da lista de salas", - "Expand room list section": "Mostrar seção da lista de salas", "Ignored/Blocked": "Bloqueado", "Error adding ignored user/server": "Erro ao adicionar usuário/servidor bloqueado", "Something went wrong. Please try again or view your console for hints.": "Não foi possível carregar. Por favor, tente novamente ou veja seu console para obter dicas.", @@ -1046,8 +1014,6 @@ "Forgotten your password?": "Esqueceu sua senha?", "Success!": "Pronto!", "Space used:": "Espaço usado:", - "Navigation": "Navegação", - "Calls": "Chamadas", "Change notification settings": "Alterar configuração de notificações", "Your server isn't responding to some requests.": "Seu servidor não está respondendo a algumas solicitações.", "Ban list rules - %(roomName)s": "Regras da lista de banidos - %(roomName)s", @@ -1081,8 +1047,6 @@ "Country Dropdown": "Selecione o país", "Join millions for free on the largest public server": "Junte-se a milhões de pessoas gratuitamente no maior servidor público", "Switch theme": "Escolha um tema", - "Log in to your new account.": "Entrar em sua nova conta.", - "Registration Successful": "Registro bem-sucedido", "Notification Autocomplete": "Notificação do preenchimento automático", "Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.": "Alterações em quem pode ler o histórico de conversas aplica-se apenas para mensagens futuras nesta sala. A visibilidade do histórico existente não será alterada.", "Ask %(displayName)s to scan your code:": "Peça para %(displayName)s escanear o seu código:", @@ -1121,7 +1085,6 @@ "The server has denied your request.": "O servidor recusou a sua solicitação.", "No files visible in this room": "Nenhum arquivo nesta sala", "Attach files from chat or just drag and drop them anywhere in a room.": "Anexe arquivos na conversa, ou simplesmente arraste e solte arquivos em qualquer lugar na sala.", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Sua nova conta (%(newAccountId)s) foi registrada, mas você já está conectado a uma conta diferente (%(loggedInUserId)s).", "Failed to re-authenticate due to a homeserver problem": "Falha em autenticar novamente devido à um problema no servidor local", "Failed to re-authenticate": "Falha em autenticar novamente", "Enter your password to sign in and regain access to your account.": "Digite sua senha para entrar e recuperar o acesso à sua conta.", @@ -1131,7 +1094,6 @@ "You'll need to authenticate with the server to confirm the upgrade.": "Você precisará se autenticar no servidor para confirmar a atualização.", "Use a different passphrase?": "Usar uma frase secreta diferente?", "You've successfully verified %(deviceName)s (%(deviceId)s)!": "Você confirmou %(deviceName)s (%(deviceId)s) com êxito!", - "Close dialog or context menu": "Fechar caixa de diálogo ou menu", "Try scrolling up in the timeline to see if there are any earlier ones.": "Tente rolar para cima na conversa para ver se há mensagens anteriores.", "Unexpected server error trying to leave the room": "Erro inesperado no servidor, ao tentar sair da sala", "Error leaving room": "Erro ao sair da sala", @@ -1199,7 +1161,6 @@ "If you've joined lots of rooms, this might take a while": "Se você participa em muitas salas, isso pode demorar um pouco", "Unable to query for supported registration methods.": "Não foi possível consultar as opções de registro suportadas.", "Registration has been disabled on this homeserver.": "O registro de contas foi desativado neste servidor local.", - "Continue with previous account": "Continuar com a conta anterior", "Emoji Autocomplete": "Preenchimento automático de emoji", "Room Autocomplete": "Preenchimento automático de sala", "User Autocomplete": "Preenchimento automático de usuário", @@ -1213,10 +1174,6 @@ "Indexed messages:": "Mensagens armazenadas:", "Indexed rooms:": "Salas armazenadas:", "Message downloading sleep time(ms)": "Tempo de espera entre o download de mensagens (ms)", - "Toggle the top left menu": "Alternar o menu superior esquerdo", - "Activate selected button": "Apertar no botão selecionado", - "Toggle right panel": "Alternar o painel na direita", - "Cancel autocomplete": "Cancelar o preenchimento automático", "The call could not be established": "Não foi possível iniciar a chamada", "You can only pin up to %(count)s widgets": { "other": "Você pode fixar até %(count)s widgets" @@ -1235,12 +1192,8 @@ "Please view existing bugs on Github first. No match? Start a new one.": "Por favor, consulte os erros conhecidos no Github antes de enviar o seu. Se ninguém tiver mencionado o seu erro, informe-nos sobre um erro novo .", "Feedback sent": "Comentário enviado", "Comment": "Comentário", - "Now, let's help you get started": "Agora, vamos começar", "Don't miss a reply": "Não perca uma resposta", "Enable desktop notifications": "Ativar notificações na área de trabalho", - "Welcome %(name)s": "Boas-vindas, %(name)s", - "Add a photo so people know it's you.": "Adicione uma foto para as pessoas identificarem você.", - "Great, that'll help people know it's you": "Ótimo, agora as pessoas identificarão você", "Invite someone using their name, email address, username (like ) or share this room.": "Convide alguém a partir do nome, e-mail ou nome de usuário (por exemplo: ) ou compartilhe esta sala.", "Start a conversation with someone using their name, email address or username (like ).": "Comece uma conversa, a partir do nome, e-mail ou nome de usuário de alguém (por exemplo: ).", "Invite by email": "Convidar por e-mail", @@ -1499,8 +1452,6 @@ "Topic: %(topic)s (edit)": "Descrição: %(topic)s (editar)", "This is the beginning of your direct message history with .": "Este é o início do seu histórico da conversa com .", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "Apenas vocês dois estão nesta conversa, a menos que algum de vocês convide mais alguém.", - "Takes the call in the current room off hold": "Retoma a chamada na sala atual", - "Places the call in the current room on hold": "Pausa a chamada na sala atual", "Yemen": "Iêmen", "Western Sahara": "Saara Ocidental", "Wallis & Futuna": "Wallis e Futuna", @@ -1511,7 +1462,6 @@ "one": "Armazene mensagens criptografadas de forma segura localmente para que apareçam nos resultados das buscas. %(size)s é necessário para armazenar mensagens de %(rooms)s sala.", "other": "Armazene mensagens criptografadas de forma segura localmente para que apareçam nos resultados das buscas. %(size)s é necessário para armazenar mensagens de %(rooms)s salas." }, - "Go to Home View": "Ir para a tela inicial", "Remain on your screen while running": "Permaneça na tela, quando executar", "Remain on your screen when viewing another room, when running": "Permaneça na tela ao visualizar outra sala, quando executar", "New here? Create an account": "Novo por aqui? Crie uma conta", @@ -1576,11 +1526,6 @@ "Send stickers into your active room": "Enviar figurinhas nesta sala ativa", "Send stickers into this room": "Enviar figurinhas nesta sala", "New? Create account": "Quer se registrar? Crie uma conta", - "Decide where your account is hosted": "Decida onde a sua conta será hospedada", - "Host account on": "Hospedar conta em", - "Already have an account? Sign in here": "Já tem uma conta? Entre aqui", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s ou %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Continuar com %(ssoButtons)s", "There was a problem communicating with the homeserver, please try again later.": "Ocorreu um problema de comunicação com o servidor local. Tente novamente mais tarde.", "Use email to optionally be discoverable by existing contacts.": "Seja encontrado por seus contatos a partir de um e-mail.", "Use email or phone to optionally be discoverable by existing contacts.": "Seja encontrado por seus contatos a partir de um e-mail ou número de telefone.", @@ -1633,7 +1578,6 @@ "There was an error looking up the phone number": "Ocorreu um erro ao procurar o número de telefone", "Unable to look up phone number": "Não foi possível procurar o número de telefone", "Change which room, message, or user you're viewing": "Alterar a sala, mensagem ou usuário que você está visualizando", - "Search (must be enabled)": "Pesquisar (deve estar ativado)", "Something went wrong in confirming your identity. Cancel and try again.": "Algo deu errado ao confirmar a sua identidade. Cancele e tente novamente.", "Remember this": "Lembre-se disso", "The widget will verify your user ID, but won't be able to perform actions for you:": "O widget verificará o seu ID de usuário, mas não poderá realizar ações para você:", @@ -1641,8 +1585,6 @@ "Recently visited rooms": "Salas visitadas recentemente", "Use app": "Usar o aplicativo", "Use app for a better experience": "Use o aplicativo para ter uma experiência melhor", - "Converts the DM to a room": "Converte a conversa para uma sala", - "Converts the room to a DM": "Converte a sala para uma conversa", "We couldn't log you in": "Não foi possível fazer login", "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.": "Anteriormente, pedimos ao seu navegador para lembrar qual servidor local você usa para fazer login, mas infelizmente o navegador se esqueceu disso. Vá para a página de login e tente novamente.", "Empty room": "Sala vazia", @@ -1742,8 +1684,6 @@ "Review to ensure your account is safe": "Revise para assegurar que sua conta está segura", "See when people join, leave, or are invited to your active room": "Ver quando as pessoas entram, saem, ou são convidadas para sua sala ativa", "See when people join, leave, or are invited to this room": "Ver quando as pessoas entrarem, sairem ou são convidadas para esta sala", - "Your access token gives full access to your account. Do not share it with anyone.": "Seu token de acesso dá acesso total à sua conta. Não o compartilhe com ninguém.", - "Olm version:": "Versão do Olm:", "There was an error loading your notification settings.": "Um erro ocorreu ao carregar suas configurações de notificação.", "Anyone in a space can find and join. You can select multiple spaces.": "Qualquer um em um espaço pode encontrar e se juntar. Você pode selecionar múltiplos espaços.", "Message search initialisation failed": "Falha na inicialização da pesquisa de mensagens", @@ -1837,7 +1777,6 @@ "Message didn't send. Click for info.": "A mensagem não foi enviada. Clique para mais informações.", "Your private messages are normally encrypted, but this room isn't. Usually this is due to an unsupported device or method being used, like email invites.": "Suas mensagens privadas normalmente são criptografadas, mas esta sala não é. Isto acontece normalmente por conta de um dispositivo ou método usado sem suporte, como convites via email, por exemplo.", "Send voice message": "Enviar uma mensagem de voz", - "Send a sticker": "Enviar uma figurinha", "To avoid these issues, create a new public room for the conversation you plan to have.": "Para evitar esses problemas, crie uma nova sala pública para a conversa que você planeja ter.", "Are you sure you want to make this encrypted room public?": "Tem certeza que fazer com que esta sala criptografada seja pública?", "Unknown failure": "Falha desconhecida", @@ -1990,14 +1929,6 @@ }, "Command error: Unable to handle slash command.": "Erro de comando: Não é possível manipular o comando de barra.", "%(space1Name)s and %(space2Name)s": "%(space1Name)s e %(space2Name)s", - "Open user settings": "Abrir as configurações do usuário", - "Switch to space by number": "Mudar para o espaço por número", - "Next recently visited room or space": "Próxima sala ou espaço visitado recentemente", - "Previous recently visited room or space": "Sala ou espaço visitado recentemente", - "Redo edit": "Refazer edição", - "Undo edit": "Desfazer edição", - "Jump to last message": "Ir para a última mensagem", - "Jump to first message": "Ir para primeira mensagem", "Show:": "Exibir:", "You can't see earlier messages": "Você não pode ver as mensagens anteriores", "Encrypted messages before this point are unavailable.": "As mensagens criptografadas antes deste ponto não estão disponíveis.", @@ -2046,8 +1977,6 @@ "Inviting %(user1)s and %(user2)s": "Convidando %(user1)s e %(user2)s", "%(user1)s and %(user2)s": "%(user1)s e %(user2)s", "Live": "Ao vivo", - "No active call in this room": "Nenhuma chamada ativa nesta sala", - "Unable to find Matrix ID for phone number": "Não foi possível encontrar o ID Matrix pelo número de telefone", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Par desconhecido (usuário, sessão): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Falha no comando: Não foi possível encontrar sala %(roomId)s", "Unrecognised room address: %(roomAlias)s": "Endereço da sala não reconhecido: %(roomAlias)s", @@ -2112,9 +2041,6 @@ "Can't start a new voice broadcast": "Não é possível iniciar uma nova transmissão de voz", "Remove, ban, or invite people to your active room, and make you leave": "Remover, banir ou convidar pessoas para sua sala ativa e fazer você sair", "Remove, ban, or invite people to this room, and make you leave": "Remover, banir ou convidar pessoas para esta sala e fazer você sair", - "No virtual room for this room": "Nenhuma sala virtual para esta sala", - "Switches to this room's virtual room, if it has one": "Muda para a sala virtual desta sala, se houver uma", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Comando do desenvolvedor: descarta a sessão de grupo de saída atual e configura novas sessões do Olm", "%(senderName)s ended a voice broadcast": "%(senderName)s encerrou uma transmissão de voz", "You ended a voice broadcast": "Você encerrou uma transmissão de voz", "%(senderName)s ended a voice broadcast": "%(senderName)s encerrou uma transmissão de voz", @@ -2345,7 +2271,40 @@ "alt": "Alt", "control": "Ctrl", "shift": "Shift", - "number": "[número]" + "number": "[número]", + "category_calls": "Chamadas", + "category_room_list": "Lista de salas", + "category_navigation": "Navegação", + "category_autocomplete": "Preencher automaticamente", + "composer_toggle_bold": "Negrito", + "composer_toggle_italics": "Itálico", + "composer_toggle_quote": "Citar", + "cancel_reply": "Cancelar resposta à mensagem", + "send_sticker": "Enviar uma figurinha", + "toggle_microphone_mute": "Ativar/desativar som do microfone", + "dismiss_read_marker_and_jump_bottom": "Ignorar o marcador de leitura e ir para o final", + "jump_to_read_marker": "Ir para a mensagem não lida mais antiga", + "upload_file": "Enviar um arquivo", + "jump_room_search": "Ir para a pesquisa de salas", + "room_list_select_room": "Selecionar sala da lista de salas", + "room_list_collapse_section": "Esconder seção da lista de salas", + "room_list_expand_section": "Mostrar seção da lista de salas", + "toggle_top_left_menu": "Alternar o menu superior esquerdo", + "toggle_right_panel": "Alternar o painel na direita", + "go_home_view": "Ir para a tela inicial", + "autocomplete_cancel": "Cancelar o preenchimento automático", + "jump_first_message": "Ir para primeira mensagem", + "jump_last_message": "Ir para a última mensagem", + "composer_undo": "Desfazer edição", + "composer_redo": "Refazer edição", + "navigate_prev_history": "Sala ou espaço visitado recentemente", + "navigate_next_history": "Próxima sala ou espaço visitado recentemente", + "switch_to_space": "Mudar para o espaço por número", + "open_user_settings": "Abrir as configurações do usuário", + "close_dialog_menu": "Fechar caixa de diálogo ou menu", + "activate_button": "Apertar no botão selecionado", + "composer_new_line": "Nova linha", + "search": "Pesquisar (deve estar ativado)" }, "composer": { "format_bold": "Negrito", @@ -2425,7 +2384,15 @@ "set_up_profile_action": "Seu perfil", "set_up_profile": "Configure seu perfil", "find_people": "Encontrar pessoas", - "qr_or_app_links": "%(qrCode)s ou %(appLinks)s" + "qr_or_app_links": "%(qrCode)s ou %(appLinks)s", + "has_avatar_label": "Ótimo, agora as pessoas identificarão você", + "no_avatar_label": "Adicione uma foto para as pessoas identificarem você.", + "welcome_user": "Boas-vindas, %(name)s", + "welcome_detail": "Agora, vamos começar", + "intro_welcome": "Boas-vindas ao %(appName)s", + "send_dm": "Enviar uma mensagem", + "explore_rooms": "Explorar salas públicas", + "create_room": "Criar um chat de grupo" }, "settings": { "show_breadcrumbs": "Mostrar atalhos para salas recentemente visualizadas acima da lista de salas", @@ -2846,7 +2813,22 @@ "category_admin": "Administrador/a", "category_advanced": "Avançado", "category_effects": "Efeitos", - "category_other": "Outros" + "category_other": "Outros", + "addwidget_missing_url": "Forneça o link de um widget ou de um código de incorporação", + "addwidget_invalid_protocol": "Forneça o link de um widget com https:// ou http://", + "addwidget_no_permissions": "Você não pode modificar widgets nesta sala.", + "converttodm": "Converte a sala para uma conversa", + "converttoroom": "Converte a conversa para uma sala", + "discardsession": "Força a atual sessão da comunidade em uma sala criptografada a ser descartada", + "remakeolm": "Comando do desenvolvedor: descarta a sessão de grupo de saída atual e configura novas sessões do Olm", + "tovirtual": "Muda para a sala virtual desta sala, se houver uma", + "tovirtual_not_found": "Nenhuma sala virtual para esta sala", + "query": "Abre um chat com determinada pessoa", + "query_not_found_phone_number": "Não foi possível encontrar o ID Matrix pelo número de telefone", + "holdcall": "Pausa a chamada na sala atual", + "no_active_call": "Nenhuma chamada ativa nesta sala", + "unholdcall": "Retoma a chamada na sala atual", + "me": "Visualizar atividades" }, "presence": { "online_for": "Online há %(duration)s", @@ -3002,7 +2984,16 @@ "auth": { "continue_with_idp": "Continuar com %(provider)s", "sign_in_with_sso": "Entre com o logon único", - "sso": "Autenticação Única" + "sso": "Autenticação Única", + "continue_with_sso": "Continuar com %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s ou %(usernamePassword)s", + "sign_in_instead": "Já tem uma conta? Entre aqui", + "account_clash": "Sua nova conta (%(newAccountId)s) foi registrada, mas você já está conectado a uma conta diferente (%(loggedInUserId)s).", + "account_clash_previous_account": "Continuar com a conta anterior", + "log_in_new_account": "Entrar em sua nova conta.", + "registration_successful": "Registro bem-sucedido", + "server_picker_title": "Hospedar conta em", + "server_picker_dialog_title": "Decida onde a sua conta será hospedada" }, "room_list": { "sort_unread_first": "Mostrar salas não lidas em primeiro", @@ -3022,5 +3013,18 @@ "missing_reason": "Por favor, descreva porque você está reportando.", "report_content_to_homeserver": "Denunciar conteúdo ao administrador do seu servidor principal", "description": "Reportar esta mensagem enviará o seu 'event ID' único para o/a administrador/a do seu Homeserver. Se as mensagens nesta sala são criptografadas, o/a administrador/a não conseguirá ler o texto da mensagem nem ver nenhuma imagem ou arquivo." + }, + "setting": { + "help_about": { + "brand_version": "versão do %(brand)s:", + "olm_version": "Versão do Olm:", + "help_link": "Para obter ajuda com o uso do %(brand)s, clique aqui.", + "help_link_chat_bot": "Para obter ajuda com o uso do %(brand)s, clique aqui ou inicie um bate-papo com nosso bot usando o botão abaixo.", + "chat_bot": "Converse com o bot do %(brand)s", + "title": "Ajuda e sobre", + "versions": "Versões", + "access_token_detail": "Seu token de acesso dá acesso total à sua conta. Não o compartilhe com ninguém.", + "clear_cache_reload": "Limpar cache e recarregar" + } } } diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index d289c3d7c9..18602034e4 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -8,7 +8,6 @@ "Deactivate Account": "Деактивировать учётную запись", "Default": "По умолчанию", "Deops user with given id": "Снимает полномочия оператора с пользователя с заданным ID", - "Displays action": "Отображение действий", "Export E2E room keys": "Экспорт ключей шифрования", "Failed to change password. Is your password correct?": "Не удалось сменить пароль. Вы правильно ввели текущий пароль?", "Failed to reject invitation": "Не удалось отклонить приглашение", @@ -110,7 +109,6 @@ "Reject invitation": "Отклонить приглашение", "%(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 не получил разрешение на отправку уведомлений: пожалуйста, попробуйте снова", - "%(brand)s version:": "Версия %(brand)s:", "Room %(roomId)s not visible": "Комната %(roomId)s невидима", "Rooms": "Комнаты", "Search failed": "Поиск не удался", @@ -341,7 +339,6 @@ "Put a link back to the old room at the start of the new room so people can see old messages": "Разместим ссылку на старую комнату, чтобы люди могли видеть старые сообщения", "Please contact your service administrator to continue using this service.": "Пожалуйста, обратитесь к вашему администратору, чтобы продолжить использовать этот сервис.", "Unable to load! Check your network connectivity and try again.": "Не удалось загрузить! Проверьте подключение к сети и попробуйте снова.", - "Forces the current outbound group session in an encrypted room to be discarded": "Принудительно отбрасывает текущий групповой сеанс для отправки сообщений в зашифрованную комнату", "This homeserver has hit its Monthly Active User limit.": "Сервер достиг ежемесячного ограничения активных пользователей.", "This homeserver has exceeded one of its resource limits.": "Превышен один из лимитов на ресурсы сервера.", "Unrecognised address": "Нераспознанный адрес", @@ -391,9 +388,6 @@ "Phone numbers": "Телефонные номера", "Language and region": "Язык и регион", "Account management": "Управление учётной записью", - "Chat with %(brand)s Bot": "Чат с ботом %(brand)s", - "Help & About": "Помощь и о программе", - "Versions": "Версии", "Room list": "Список комнат", "Autocomplete delay (ms)": "Задержка автодополнения (мс)", "Roles & Permissions": "Роли и права", @@ -512,8 +506,6 @@ "Accept all %(invitedRooms)s invites": "Принять все приглашения (%(invitedRooms)s)", "Missing media permissions, click the button below to request.": "Отсутствуют разрешения для доступа к камере/микрофону. Нажмите кнопку ниже, чтобы запросить их.", "Request media permissions": "Запросить доступ к медиа устройству", - "For help with using %(brand)s, click here.": "Для получения помощи по использованию %(brand)s, нажмите здесь.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Для получения помощи по использованию %(brand)s, нажмите здесь или начните чат с нашим ботом с помощью кнопки ниже.", "Enable encryption?": "Разрешить шифрование?", "Error updating main address": "Ошибка обновления основного адреса", "Incompatible local cache": "Несовместимый локальный кэш", @@ -523,8 +515,6 @@ "Composer": "Редактор", "The file '%(fileName)s' failed to upload.": "Файл '%(fileName)s' не был загружен.", "The server does not support the room version specified.": "Сервер не поддерживает указанную версию комнаты.", - "Please supply a https:// or http:// widget URL": "Пожалуйста, укажите https:// или http:// адрес URL виджета", - "You cannot modify widgets in this room.": "Вы не можете изменять виджеты в этой комнате.", "No homeserver URL provided": "URL-адрес домашнего сервера не указан", "Unexpected error resolving homeserver configuration": "Неожиданная ошибка в настройках домашнего сервера", "The user's homeserver does not support the version of the room.": "Домашний сервер пользователя не поддерживает версию комнаты.", @@ -656,8 +646,6 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Вы можете зарегистрироваться, но некоторые возможности не будет доступны, пока сервер идентификации не станет доступным. Если вы продолжаете видеть это предупреждение, проверьте вашу конфигурацию или свяжитесь с администратором сервера.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Вы можете сбросить пароль, но некоторые возможности не будет доступны, пока сервер идентификации не станет доступным. Если вы продолжаете видеть это предупреждение, проверьте вашу конфигурацию или свяжитесь с администратором сервера.", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Вы можете войти в систему, но некоторые возможности не будет доступны, пока сервер идентификации не станет доступным. Если вы продолжаете видеть это предупреждение, проверьте вашу конфигурацию или свяжитесь с администратором сервера.", - "Log in to your new account.": "Войти в новую учётную запись.", - "Registration Successful": "Регистрация успешно завершена", "Edited at %(date)s. Click to view edits.": "Изменено %(date)s. Нажмите для посмотра истории изменений.", "Please tell us what went wrong or, better, create a GitHub issue that describes the problem.": "Пожалуйста, расскажите нам что пошло не так, либо, ещё лучше, создайте отчёт в GitHub с описанием проблемы.", "Removing…": "Удаление…", @@ -673,8 +661,6 @@ "Summary": "Сводка", "Upload all": "Загрузить всё", "Resend %(unsentCount)s reaction(s)": "Отправить повторно %(unsentCount)s реакций", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Учётная запись (%(newAccountId)s) зарегистрирована, но вы уже вошли в другую учётную запись (%(loggedInUserId)s).", - "Continue with previous account": "Продолжить с предыдущей учётной записью", "Failed to re-authenticate due to a homeserver problem": "Ошибка повторной аутентификации из-за проблем на сервере", "Failed to re-authenticate": "Ошибка повторной аутентификации", "Enter your password to sign in and regain access to your account.": "Введите пароль для входа и восстановите доступ к учётной записи.", @@ -715,7 +701,6 @@ "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Подтвердите условия предоставления услуг сервера идентификации (%(serverName)s), чтобы вас можно было обнаружить по адресу электронной почты или номеру телефона.", "Discovery": "Обнаружение", "Deactivate account": "Деактивировать учётную запись", - "Clear cache and reload": "Очистить кэш и перезагрузить", "Always show the window menu bar": "Всегда показывать строку меню", "Read Marker lifetime (ms)": "Задержка прочтения сообщения (мс)", "Read Marker off-screen lifetime (ms)": "Задержка прочтения сообщения при отсутствии активности (мс)", @@ -868,9 +853,6 @@ "Verify by comparing unique emoji.": "Подтверждение сравнением уникальных смайлов.", "Verify all users in a room to ensure it's secure.": "Подтвердите всех пользователей в комнате, чтобы обеспечить безопасность.", "You've successfully verified %(displayName)s!": "Вы успешно подтвердили %(displayName)s!", - "Activate selected button": "Нажать выбранную кнопку", - "Toggle right panel": "Показать/скрыть правую панель", - "Cancel autocomplete": "Отменить автозаполнение", "Use Single Sign On to continue": "Воспользуйтесь единой точкой входа для продолжения", "Confirm adding this email address by using Single Sign On to prove your identity.": "Подтвердите добавление этого почтового адреса с помощью единой точки входа.", "Confirm adding email": "Подтвердите добавление почтового адреса", @@ -983,7 +965,6 @@ "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Чтобы сообщить о проблеме безопасности Matrix, пожалуйста, прочитайте Политику раскрытия информации Matrix.org.", "Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)": "Установить адрес этой комнаты, чтобы пользователи могли найти ее на вашем сервере (%(localDomain)s)", "Could not find user in room": "Не удалось найти пользователя в комнате", - "Please supply a widget URL or embed code": "Укажите URL или код вставки виджета", "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "Отдельно подтверждать каждый сеанс пользователя как доверенный, не доверяя кросс-подписанным устройствам.", "Securely cache encrypted messages locally for them to appear in search results.": "Безопасно кэшировать шифрованные сообщения локально, чтобы они появлялись в результатах поиска.", "%(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, чтобы безопасно кэшировать шифрованные сообщения локально. Если вы хотите попробовать эту возможность, соберите самостоятельно %(brand)s Desktop с добавлением поисковых компонентов.", @@ -991,7 +972,6 @@ "This room is bridging messages to the following platforms. Learn more.": "Эта комната пересылает сообщения с помощью моста на следующие платформы. Подробнее", "For extra security, verify this user by checking a one-time code on both of your devices.": "Для дополнительной безопасности подтвердите этого пользователя, сравнив одноразовый код на ваших устройствах.", "Start verification again from their profile.": "Начните подтверждение заново в профиле пользователя.", - "Send a Direct Message": "Отправить личное сообщение", "Recent Conversations": "Недавние Диалоги", "a key signature": "отпечаток ключа", "Upload completed": "Отправка успешно завершена", @@ -1000,7 +980,6 @@ "Signature upload success": "Отпечаток успешно отправлен", "Signature upload failed": "Сбой отправки отпечатка", "Joins room with given address": "Присоединиться к комнате с указанным адресом", - "Opens chat with the given user": "Открыть чат с данным пользователем", "You signed in to a new session without verifying it:": "Вы вошли в новый сеанс, не подтвердив его:", "Verify your other session using one of the options below.": "Подтвердите ваш другой сеанс, используя один из вариантов ниже.", "Your homeserver has exceeded its user limit.": "Ваш домашний сервер превысил свой лимит пользователей.", @@ -1020,11 +999,8 @@ "Use custom size": "Использовать другой размер", "Please verify the room ID or address and try again.": "Проверьте ID комнаты или адрес и попробуйте снова.", "Your server admin has disabled end-to-end encryption by default in private rooms & Direct Messages.": "Администратор вашего сервера отключил сквозное шифрование по умолчанию в приватных комнатах и диалогах.", - "Explore Public Rooms": "Просмотреть публичные комнаты", "Favourited": "В избранном", "Room options": "Настройки комнаты", - "Welcome to %(appName)s": "Добро пожаловать в %(appName)s", - "Create a Group Chat": "Создать комнату", "All settings": "Все настройки", "Feedback": "Отзыв", "Forget Room": "Забыть комнату", @@ -1152,25 +1128,6 @@ "Indexed rooms:": "Индексированные комнаты:", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s из %(totalRooms)s", "Message downloading sleep time(ms)": "Пауза между загрузками сообщений (в мс)", - "Navigation": "Навигация", - "Calls": "Звонки", - "Room List": "Список комнат", - "Autocomplete": "Автодополнение", - "Toggle Bold": "Жирный шрифт", - "Toggle Italics": "Курсивный шрифт", - "Toggle Quote": "Цитата", - "New line": "Новая строка", - "Cancel replying to a message": "Отмена ответа на сообщение", - "Toggle microphone mute": "Включить/выключить микрофон", - "Dismiss read marker and jump to bottom": "Убрать маркер прочтения и перейти в конец", - "Jump to oldest unread message": "Перейти к самому старому непрочитанному сообщению", - "Upload a file": "Загрузить файл", - "Jump to room search": "Перейти к поиску комнат", - "Select room from the room list": "Выбрать комнату из списка комнат", - "Collapse room list section": "Свернуть секцию списка комнат", - "Expand room list section": "Раскрыть секцию списка комнат", - "Toggle the top left menu": "Переключение верхнего левого меню", - "Close dialog or context menu": "Закрыть диалоговое окно или контекстное меню", "No files visible in this room": "Нет видимых файлов в этой комнате", "Attach files from chat or just drag and drop them anywhere in a room.": "Прикрепите файлы из чата или просто перетащите их в комнату.", "Master private key:": "Приватный мастер-ключ:", @@ -1236,7 +1193,6 @@ "Comment": "Комментарий", "Feedback sent": "Отзыв отправлен", "Send stickers into this room": "Отправить стикеры в эту комнату", - "Go to Home View": "Перейти на Главную", "This is the start of .": "Это начало .", "Add a photo, so people can easily spot your room.": "Добавьте фото, чтобы люди могли легко заметить вашу комнату.", "%(displayName)s created this room.": "%(displayName)s создал(а) эту комнату.", @@ -1246,15 +1202,9 @@ "Topic: %(topic)s (edit)": "Тема: %(topic)s (изменить)", "This is the beginning of your direct message history with .": "Это начало вашей беседы с .", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "В этом разговоре только вы двое, если только кто-нибудь из вас не пригласит кого-нибудь присоединиться.", - "Takes the call in the current room off hold": "Прекратить удержание вызова в текущей комнате", - "Places the call in the current room on hold": "Перевести вызов в текущей комнате на удержание", - "Now, let's help you get started": "Теперь давайте поможем вам начать", "Invite someone using their name, email address, username (like ) or share this room.": "Пригласите кого-нибудь, используя его имя, адрес электронной почты, имя пользователя (например, ) или поделитесь этой комнатой.", "Start a conversation with someone using their name, email address or username (like ).": "Начните разговор с кем-нибудь, используя его имя, адрес электронной почты или имя пользователя (например, ).", "Invite by email": "Пригласить по электронной почте", - "Welcome %(name)s": "Добро пожаловать, %(name)s", - "Add a photo so people know it's you.": "Добавьте фото, чтобы люди знали, что это вы.", - "Great, that'll help people know it's you": "Отлично, это поможет людям узнать, что это ты", "New version of %(brand)s is available": "Доступна новая версия %(brand)s!", "Update %(brand)s": "Обновление %(brand)s", "Enable desktop notifications": "Включить уведомления на рабочем столе", @@ -1269,10 +1219,7 @@ "Sign into your homeserver": "Войдите на свой домашний сервер", "with state key %(stateKey)s": "с ключом состояния %(stateKey)s", "%(creator)s created this DM.": "%(creator)s начал(а) этот чат.", - "Host account on": "Ваша учётная запись обслуживается", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s или %(usernamePassword)s", "Continuing without email": "Продолжить без электронной почты", - "Continue with %(ssoButtons)s": "Продолжить с %(ssoButtons)s", "New? Create account": "Впервые тут? Создать учётную запись", "Specify a homeserver": "Укажите домашний сервер", "Enter phone number": "Введите номер телефона", @@ -1595,8 +1542,6 @@ "Use email or phone to optionally be discoverable by existing contacts.": "Если вы хотите, чтобы другие пользователи могли вас найти, укажите свой адрес электронной почты или номер телефона.", "Use email to optionally be discoverable by existing contacts.": "Если вы хотите, чтобы другие пользователи могли вас найти, укажите свой адрес электронной почты.", "There was a problem communicating with the homeserver, please try again later.": "Возникла проблема при обмене данными с домашним сервером. Повторите попытку позже.", - "Already have an account? Sign in here": "Уже есть учётная запись? Войдите здесь", - "Decide where your account is hosted": "Выберите, кто обслуживает вашу учётную запись", "Hold": "Удерживать", "Resume": "Возобновить", "You've reached the maximum number of simultaneous calls.": "Вы достигли максимального количества одновременных звонков.", @@ -1612,7 +1557,6 @@ "Change which room, message, or user you're viewing": "Измените комнату, сообщение или пользователя, которого вы просматриваете", "Channel: ": "Канал: ", "Workspace: ": "Рабочая область: ", - "Search (must be enabled)": "Поиск (должен быть включен)", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Этот сеанс обнаружил, что ваши секретная фраза и ключ безопасности для защищенных сообщений были удалены.", "A new Security Phrase and key for Secure Messages have been detected.": "Обнаружены новая секретная фраза и ключ безопасности для защищенных сообщений.", "Confirm your Security Phrase": "Подтвердите секретную фразу", @@ -1641,8 +1585,6 @@ "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Security Key.": "Сделайте резервную копию ключей шифрования с данными вашей учетной записи на случай, если вы потеряете доступ к своим сеансам. Ваши ключи будут защищены уникальным ключом безопасности.", "Use app": "Использовать приложение", "Use app for a better experience": "Используйте приложение для лучшего опыта", - "Converts the DM to a room": "Преобразовать ЛС в комнату", - "Converts the room to a DM": "Преобразовывает комнату в ЛС", "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": "Нам не удалось войти в систему", "Suggested": "Рекомендуется", @@ -1910,7 +1852,6 @@ "Code blocks": "Блоки кода", "Displaying time": "Отображение времени", "Keyboard shortcuts": "Горячие клавиши", - "Your access token gives full access to your account. Do not share it with anyone.": "Ваш токен доступа даёт полный доступ к вашей учётной записи. Не передавайте его никому.", "There was an error loading your notification settings.": "Произошла ошибка при загрузке настроек уведомлений.", "Mentions & keywords": "Упоминания и ключевые слова", "Global": "Глобально", @@ -1944,7 +1885,6 @@ "We sent the others, but the below people couldn't be invited to ": "Мы отправили остальных, но нижеперечисленные люди не могут быть приглашены в ", "Transfer Failed": "Перевод не удался", "Unable to transfer call": "Не удалось перевести звонок", - "Olm version:": "Версия Olm:", "Delete avatar": "Удалить аватар", "Rooms and spaces": "Комнаты и пространства", "Results": "Результаты", @@ -1954,7 +1894,6 @@ "Role in ": "Роль в ", "Enable encryption in settings.": "Включите шифрование в настройках.", "Your private messages are normally encrypted, but this room isn't. Usually this is due to an unsupported device or method being used, like email invites.": "Ваши личные сообщения обычно шифруются, но эта комната не шифруется. Обычно это связано с использованием неподдерживаемого устройства или метода, например, приглашения по электронной почте.", - "Send a sticker": "Отправить наклейку", "To avoid these issues, create a new public room for the conversation you plan to have.": "Чтобы избежать этих проблем, создайте новую публичную комнату для разговора, который вы планируете провести.", "It's not recommended to make encrypted rooms public. It will mean anyone can find and join the room, so anyone can read messages. You'll get none of the benefits of encryption. Encrypting messages in a public room will make receiving and sending messages slower.": "Не рекомендуется делать зашифрованные комнаты публичными. Это означает, что любой может найти и присоединиться к комнате, а значит, любой может читать сообщения. Вы не получите ни одного из преимуществ шифрования. Шифрование сообщений в публичной комнате сделает получение и отправку сообщений более медленной.", "Are you sure you want to make this encrypted room public?": "Вы уверены, что хотите сделать эту зашифрованную комнату публичной?", @@ -2023,31 +1962,6 @@ "Insert link": "Вставить ссылку", "Developer mode": "Режим разработчика", "Back to thread": "Вернуться к обсуждению", - "Redo edit": "Повторить изменения", - "Force complete": "Принудительно завершить", - "Undo edit": "Отменить изменения", - "Jump to last message": "Перейти к последнему сообщению", - "Jump to first message": "Перейти к первому сообщению", - "Toggle hidden event visibility": "Переключить видимость скрытых событий", - "Toggle space panel": "Переключить панель пространств", - "Previous autocomplete suggestion": "Предыдущее предложение автозаполнения", - "Next autocomplete suggestion": "Следующее предложение автозаполнения", - "Previous room or DM": "Предыдущая комната или ЛС", - "Next room or DM": "Следующая команата или ЛС", - "Previous unread room or DM": "Предыдущая непрочитанная комната или ЛС", - "Next unread room or DM": "Следующая непрочитанная комната или ЛС", - "Open this settings tab": "Откройте эту вкладку настроек", - "Navigate down in the room list": "Перейти вниз в списке комнат", - "Navigate up in the room list": "Перейти вверх в списке комнат", - "Scroll down in the timeline": "Листать ленту сообщений вниз", - "Scroll up in the timeline": "Листать временную шкалу вверх", - "Toggle webcam on/off": "Включить/выключить веб-камеру", - "Navigate to previous message in composer history": "Перейти к предыдущему сообщению в истории редактора", - "Jump to end of the composer": "Переход к концу редактора", - "Jump to start of the composer": "Переход к началу редактора", - "Navigate to next message in composer history": "Переход к следующему сообщению в истории редактора", - "Navigate to previous message to edit": "Перейдите к предыдущему сообщению для редактирования", - "Navigate to next message to edit": "Перейдите к следующему сообщению для редактирования", "Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "Храните ключ безопасности в надежном месте, например в менеджере паролей или сейфе, так как он используется для защиты ваших зашифрованных данных.", "We'll generate a Security Key for you to store somewhere safe, like a password manager or a safe.": "Мы создадим ключ безопасности для вас, чтобы вы могли хранить его в надежном месте, например, в менеджере паролей или сейфе.", "Regain access to your account and recover encryption keys stored in this session. Without them, you won't be able to read all of your secure messages in any session.": "Восстановите доступ к своей учетной записи и восстановите ключи шифрования, сохранённые в этом сеансе. Без них в любом сеансе вы не сможете прочитать все свои защищённые сообщения.", @@ -2068,7 +1982,6 @@ "If you know what you're doing, Element is open-source, be sure to check out our GitHub (https://github.com/vector-im/element-web/) and contribute!": "Если вы знаете, что делаете, Element с открытым исходным кодом, обязательно зайдите на наш GitHub (https://github.com/vector-im/element-web/) и внесите свой вклад!", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Если кто-то сказал вам скопировать/вставить что-то здесь, велика вероятность, что вас пытаются обмануть!", "Wait!": "Подождите!", - "Own your conversations.": "Владейте своими разговорами.", "Someone already has that username. Try another or if it is you, sign in below.": "У кого-то уже есть такое имя пользователя. Попробуйте другое или, если это вы, войдите ниже.", "Unable to check if username has been taken. Try again later.": "Не удалось проверить, занято ли имя пользователя. Повторите попытку позже.", "Thread options": "Параметры обсуждения", @@ -2239,8 +2152,6 @@ "Remove, ban, or invite people to your active room, and make you leave": "Удалять, блокировать или приглашать людей в вашей активной комнате, в частности, вас", "Remove, ban, or invite people to this room, and make you leave": "Удалять, блокировать или приглашать людей в этой комнате, в частности, вас", "Light high contrast": "Контрастная светлая", - "No active call in this room": "Нет активного вызова в этой комнате", - "Unable to find Matrix ID for phone number": "Не удалось найти Matrix ID для номера телефона", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Неизвестная пара (пользователь, сеанс): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Ошибка команды: не удалось найти комнату (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Нераспознанный адрес комнаты: %(roomAlias)s", @@ -2252,8 +2163,6 @@ }, "You cannot place calls without a connection to the server.": "Вы не можете совершать вызовы без подключения к серверу.", "Connectivity to the server has been lost": "Соединение с сервером потеряно", - "Open user settings": "Открыть пользовательские настройки", - "Switch to space by number": "Перейти к пространству по номеру", "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Ответьте в текущее обсуждение или создайте новое, наведя курсор на сообщение и нажав «%(replyInThread)s».", "We'll create rooms for each of them.": "Мы создадим комнаты для каждого из них.", "Search Dialog": "Окно поиска", @@ -2292,8 +2201,6 @@ "Match system": "Как в системе", "Automatically send debug logs when key backup is not functioning": "Автоматически отправлять журналы отладки, когда резервное копирование ключей не работает", "Show polls button": "Показывать кнопку опроса", - "No virtual room for this room": "Эта комната не имеет виртуальной комнаты", - "Switches to this room's virtual room, if it has one": "Переключается на виртуальную комнату, если ваша комната её имеет", "%(space1Name)s and %(space2Name)s": "%(space1Name)s и %(space2Name)s", "Failed to join": "Не удалось войти", "Sorry, your homeserver is too old to participate here.": "К сожалению, ваш домашний сервер слишком старый для участия.", @@ -2324,7 +2231,6 @@ "other": "Удаляются сообщения в %(count)s комнатах" }, "You were disconnected from the call. (Error: %(message)s)": "Вас отключили от звонка. (Ошибка: %(message)s)", - "Next recently visited room or space": "Следующая недавно посещённая комната или пространство", "New video room": "Новая видеокомната", "New room": "Новая комната", "Private room": "Приватная комната", @@ -2348,9 +2254,6 @@ "Remove from space": "Исключить из пространства", "This room or space is not accessible at this time.": "Эта комната или пространство в данный момент недоступны.", "This room or space does not exist.": "Такой комнаты или пространства не существует.", - "Previous recently visited room or space": "Предыдущая недавно посещенная комната или пространство", - "Toggle Link": "Переключить ссылку", - "Toggle Code Block": "Переключить блок кода", "Failed to set direct message tag": "Не удалось установить метку личного сообщения", "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device.": "Вы вышли из всех устройств и больше не будете получать push-уведомления. Для повторного включения уведомлений снова войдите на каждом устройстве.", "If you want to retain access to your chat history in encrypted rooms, set up Key Backup or export your message keys from one of your other devices before proceeding.": "Если вы хотите сохранить доступ к истории общения в зашифрованных комнатах, настройте резервное копирование ключей или экспортируйте ключи сообщений с одного из других ваших устройств, прежде чем продолжить.", @@ -2504,7 +2407,6 @@ "Show shortcut to welcome checklist above the room list": "Показывать ярлык приветственного проверенного списка над списком комнат", "Reset bearing to north": "Сбросить пеленг на север", "Toggle attribution": "Переключить атрибуцию", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Команда разработчика: Отменить текущий сеанс исходящей группы и настроить новые сеансы Olm", "Security recommendations": "Рекомендации по безопасности", "Inactive sessions": "Неактивные сеансы", "Unverified sessions": "Незаверенные сеансы", @@ -2942,7 +2844,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[количество]", - "backspace": "Очистить" + "backspace": "Очистить", + "category_calls": "Звонки", + "category_room_list": "Список комнат", + "category_navigation": "Навигация", + "category_autocomplete": "Автодополнение", + "composer_toggle_bold": "Жирный шрифт", + "composer_toggle_italics": "Курсивный шрифт", + "composer_toggle_quote": "Цитата", + "composer_toggle_code_block": "Переключить блок кода", + "composer_toggle_link": "Переключить ссылку", + "cancel_reply": "Отмена ответа на сообщение", + "navigate_next_message_edit": "Перейдите к следующему сообщению для редактирования", + "navigate_prev_message_edit": "Перейдите к предыдущему сообщению для редактирования", + "composer_jump_start": "Переход к началу редактора", + "composer_jump_end": "Переход к концу редактора", + "composer_navigate_next_history": "Переход к следующему сообщению в истории редактора", + "composer_navigate_prev_history": "Перейти к предыдущему сообщению в истории редактора", + "send_sticker": "Отправить наклейку", + "toggle_microphone_mute": "Включить/выключить микрофон", + "toggle_webcam_mute": "Включить/выключить веб-камеру", + "dismiss_read_marker_and_jump_bottom": "Убрать маркер прочтения и перейти в конец", + "jump_to_read_marker": "Перейти к самому старому непрочитанному сообщению", + "upload_file": "Загрузить файл", + "scroll_up_timeline": "Листать временную шкалу вверх", + "scroll_down_timeline": "Листать ленту сообщений вниз", + "jump_room_search": "Перейти к поиску комнат", + "room_list_select_room": "Выбрать комнату из списка комнат", + "room_list_collapse_section": "Свернуть секцию списка комнат", + "room_list_expand_section": "Раскрыть секцию списка комнат", + "room_list_navigate_down": "Перейти вниз в списке комнат", + "room_list_navigate_up": "Перейти вверх в списке комнат", + "toggle_top_left_menu": "Переключение верхнего левого меню", + "toggle_right_panel": "Показать/скрыть правую панель", + "keyboard_shortcuts_tab": "Откройте эту вкладку настроек", + "go_home_view": "Перейти на Главную", + "next_unread_room": "Следующая непрочитанная комната или ЛС", + "prev_unread_room": "Предыдущая непрочитанная комната или ЛС", + "next_room": "Следующая команата или ЛС", + "prev_room": "Предыдущая комната или ЛС", + "autocomplete_cancel": "Отменить автозаполнение", + "autocomplete_navigate_next": "Следующее предложение автозаполнения", + "autocomplete_navigate_prev": "Предыдущее предложение автозаполнения", + "toggle_space_panel": "Переключить панель пространств", + "toggle_hidden_events": "Переключить видимость скрытых событий", + "jump_first_message": "Перейти к первому сообщению", + "jump_last_message": "Перейти к последнему сообщению", + "composer_undo": "Отменить изменения", + "composer_redo": "Повторить изменения", + "navigate_prev_history": "Предыдущая недавно посещенная комната или пространство", + "navigate_next_history": "Следующая недавно посещённая комната или пространство", + "switch_to_space": "Перейти к пространству по номеру", + "open_user_settings": "Открыть пользовательские настройки", + "close_dialog_menu": "Закрыть диалоговое окно или контекстное меню", + "activate_button": "Нажать выбранную кнопку", + "composer_new_line": "Новая строка", + "autocomplete_force": "Принудительно завершить", + "search": "Поиск (должен быть включен)" }, "composer": { "format_bold": "Жирный", @@ -3061,7 +3019,16 @@ "download_google_play": "Скачать в Google Play", "download_f_droid": "Скачать на F-Droid", "apple_trademarks": "App Store® и Логотип Apple® являются товарными знаками Apple Inc.", - "google_trademarks": "Google Play и Логотип Google Play являются торговыми знаками Google LLC." + "google_trademarks": "Google Play и Логотип Google Play являются торговыми знаками Google LLC.", + "has_avatar_label": "Отлично, это поможет людям узнать, что это ты", + "no_avatar_label": "Добавьте фото, чтобы люди знали, что это вы.", + "welcome_user": "Добро пожаловать, %(name)s", + "welcome_detail": "Теперь давайте поможем вам начать", + "intro_welcome": "Добро пожаловать в %(appName)s", + "intro_byline": "Владейте своими разговорами.", + "send_dm": "Отправить личное сообщение", + "explore_rooms": "Просмотреть публичные комнаты", + "create_room": "Создать комнату" }, "settings": { "show_breadcrumbs": "Показывать ссылки на недавние комнаты над списком комнат", @@ -3583,7 +3550,22 @@ "category_admin": "Администратор", "category_advanced": "Подробности", "category_effects": "Эффекты", - "category_other": "Другие" + "category_other": "Другие", + "addwidget_missing_url": "Укажите URL или код вставки виджета", + "addwidget_invalid_protocol": "Пожалуйста, укажите https:// или http:// адрес URL виджета", + "addwidget_no_permissions": "Вы не можете изменять виджеты в этой комнате.", + "converttodm": "Преобразовывает комнату в ЛС", + "converttoroom": "Преобразовать ЛС в комнату", + "discardsession": "Принудительно отбрасывает текущий групповой сеанс для отправки сообщений в зашифрованную комнату", + "remakeolm": "Команда разработчика: Отменить текущий сеанс исходящей группы и настроить новые сеансы Olm", + "tovirtual": "Переключается на виртуальную комнату, если ваша комната её имеет", + "tovirtual_not_found": "Эта комната не имеет виртуальной комнаты", + "query": "Открыть чат с данным пользователем", + "query_not_found_phone_number": "Не удалось найти Matrix ID для номера телефона", + "holdcall": "Перевести вызов в текущей комнате на удержание", + "no_active_call": "Нет активного вызова в этой комнате", + "unholdcall": "Прекратить удержание вызова в текущей комнате", + "me": "Отображение действий" }, "presence": { "busy": "Занят(а)", @@ -3759,7 +3741,16 @@ "auth": { "continue_with_idp": "Продолжить с %(provider)s", "sign_in_with_sso": "Войти в систему с помощью единой точки входа", - "sso": "Единая точка входа" + "sso": "Единая точка входа", + "continue_with_sso": "Продолжить с %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s или %(usernamePassword)s", + "sign_in_instead": "Уже есть учётная запись? Войдите здесь", + "account_clash": "Учётная запись (%(newAccountId)s) зарегистрирована, но вы уже вошли в другую учётную запись (%(loggedInUserId)s).", + "account_clash_previous_account": "Продолжить с предыдущей учётной записью", + "log_in_new_account": "Войти в новую учётную запись.", + "registration_successful": "Регистрация успешно завершена", + "server_picker_title": "Ваша учётная запись обслуживается", + "server_picker_dialog_title": "Выберите, кто обслуживает вашу учётную запись" }, "room_list": { "sort_unread_first": "Комнаты с непрочитанными сообщениями в начале", @@ -3792,5 +3783,18 @@ "report_entire_room": "Сообщить обо всей комнате", "report_content_to_homeserver": "Сообщите о содержании своему администратору домашнего сервера", "description": "Отчет о данном сообщении отправит свой уникальный 'event ID' администратору вашего домашнего сервера. Если сообщения в этой комнате зашифрованы, администратор вашего домашнего сервера не сможет прочитать текст сообщения или просмотреть какие-либо файлы или изображения." + }, + "setting": { + "help_about": { + "brand_version": "Версия %(brand)s:", + "olm_version": "Версия Olm:", + "help_link": "Для получения помощи по использованию %(brand)s, нажмите здесь.", + "help_link_chat_bot": "Для получения помощи по использованию %(brand)s, нажмите здесь или начните чат с нашим ботом с помощью кнопки ниже.", + "chat_bot": "Чат с ботом %(brand)s", + "title": "Помощь и о программе", + "versions": "Версии", + "access_token_detail": "Ваш токен доступа даёт полный доступ к вашей учётной записи. Не передавайте его никому.", + "clear_cache_reload": "Очистить кэш и перезагрузить" + } } } diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json index 0a5bee042c..09a2a2aca9 100644 --- a/src/i18n/strings/sk.json +++ b/src/i18n/strings/sk.json @@ -217,7 +217,6 @@ "Notifications": "Oznámenia", "Profile": "Profil", "Account": "Účet", - "%(brand)s version:": "Verzia %(brand)s:", "The email address linked to your account must be entered.": "Musíte zadať emailovú adresu prepojenú s vašim účtom.", "A new password must be entered.": "Musíte zadať nové heslo.", "New passwords must match each other.": "Obe nové heslá musia byť zhodné.", @@ -226,7 +225,6 @@ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "K domovskému serveru nie je možné pripojiť sa použitím protokolu HTTP keďže v adresnom riadku prehliadača máte HTTPS adresu. Použite protokol HTTPS alebo povolte nezabezpečené skripty.", "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.": "Nie je možné pripojiť sa k domovskému serveru - skontrolujte prosím funkčnosť vášho pripojenia na internet. Uistite sa že certifikát domovského servera je dôveryhodný a že žiaden doplnok nainštalovaný v prehliadači nemôže blokovať požiadavky.", "This server does not support authentication with a phone number.": "Tento server nepodporuje overenie telefónnym číslom.", - "Displays action": "Zobrazí akciu", "Define the power level of a user": "Definovať úrovne oprávnenia používateľa", "Deops user with given id": "Zruší stav moderátor používateľovi so zadaným ID", "Commands": "Príkazy", @@ -350,7 +348,6 @@ "Update any local room aliases to point to the new room": "Všetky lokálne aliasy pôvodnej miestnosti sa aktualizujú tak, aby ukazovali na novú miestnosť", "Stop users from speaking in the old version of the room, and post a message advising users to move to the new room": "V pôvodnej miestnosti bude zverejnené odporúčanie prejsť do novej miestnosti a posielanie do pôvodnej miestnosti bude zakázané pre všetkých používateľov", "Put a link back to the old room at the start of the new room so people can see old messages": "História novej miestnosti sa začne odkazom do pôvodnej miestnosti, aby si členovia vedeli zobraziť staršie správy", - "Forces the current outbound group session in an encrypted room to be discarded": "Vynúti zrušenie aktuálnej relácie odchádzajúcej skupiny v zašifrovanej miestnosti", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Pred tým, než odošlete záznamy, musíte nahlásiť váš problém na GitHub. Uvedte prosím podrobný popis.", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s teraz vyžaduje 3-5× menej pamäte, pretože informácie o ostatných používateľoch načítava len podľa potreby. Prosím počkajte na dokončenie synchronizácie so serverom!", "Updating %(brand)s": "Prebieha aktualizácia %(brand)s", @@ -506,11 +503,6 @@ "Language and region": "Jazyk a región", "Account management": "Správa účtu", "General": "Všeobecné", - "For help with using %(brand)s, click here.": "Pomoc pri používaní %(brand)s môžete získať kliknutím sem.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Pomoc pri používaní aplikácie %(brand)s môžete získať kliknutím sem, alebo začnite konverzáciu s našim robotom pomocou tlačidla dole.", - "Chat with %(brand)s Bot": "Konverzácia s %(brand)s Bot", - "Help & About": "Pomocník a o programe", - "Versions": "Verzie", "Composer": "Písanie správ", "Room list": "Zoznam miestností", "Autocomplete delay (ms)": "Oneskorenie automatického dokončovania (ms)", @@ -567,8 +559,6 @@ "Please ask the administrator of your homeserver (%(homeserverDomain)s) to configure a TURN server in order for calls to work reliably.": "Prosím, požiadajte správcu vášho domovského servera (%(homeserverDomain)s) aby nakonfiguroval Turn server, čo zlepší spoľahlivosť audio / video hovorov.", "The file '%(fileName)s' failed to upload.": "Nepodarilo sa nahrať súbor „%(fileName)s“.", "The server does not support the room version specified.": "Server nepodporuje zadanú verziu miestnosti.", - "Please supply a https:// or http:// widget URL": "Zadajte https:// alebo http:// URL adresu widgetu", - "You cannot modify widgets in this room.": "Nemôžete meniť widgety v tejto miestnosti.", "Cannot reach homeserver": "Nie je možné pripojiť sa k domovskému serveru", "Ensure you have a stable internet connection, or get in touch with the server admin": "Uistite sa, že máte stabilné pripojenie na internet, alebo kontaktujte správcu servera", "Your %(brand)s is misconfigured": "Váš %(brand)s nie je nastavený správne", @@ -630,7 +620,6 @@ "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Súhlaste s podmienkami používania servera totožností (%(serverName)s), aby ste mohli byť nájdení zadaním emailovej adresy alebo telefónneho čísla.", "Discovery": "Objavovanie", "Deactivate account": "Deaktivovať účet", - "Clear cache and reload": "Vymazať vyrovnávaciu pamäť a načítať znovu", "Ignored/Blocked": "Ignorovaní / Blokovaní", "Error adding ignored user/server": "Chyba pri pridávaní ignorovaného používateľa / servera", "Something went wrong. Please try again or view your console for hints.": "Niečo sa nepodarilo. Prosím, skúste znovu neskôr alebo si prečítajte ďalšie usmernenia zobrazením konzoly.", @@ -653,12 +642,10 @@ "Use your account or create a new one to continue.": "Použite váš existujúci účet alebo si vytvorte nový, aby ste mohli pokračovať.", "Create Account": "Vytvoriť účet", "Could not find user in room": "Nepodarilo sa nájsť používateľa v miestnosti", - "Please supply a widget URL or embed code": "Prosím, zadajte URL widgetu alebo vložte kód", "Verifies a user, session, and pubkey tuple": "Overí používateľa, reláciu a verejné kľúče", "Session already verified!": "Relácia je už overená!", "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!": "VAROVANIE: OVERENIE KĽÚČOV ZLYHALO! Podpisový kľúč používateľa %(userId)s a relácia %(deviceId)s je \"%(fprint)s\" čo nezodpovedá zadanému kľúču \"%(fingerprint)s\". Môže to znamenať, že vaša komunikácia je odpočúvaná!", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Zadaný podpisový kľúč sa zhoduje s podpisovým kľúčom, ktorý ste dostali z relácie používateľa %(userId)s %(deviceId)s. Relácia označená ako overená.", - "Opens chat with the given user": "Otvorí konverzáciu s daným používateľom", "You signed in to a new session without verifying it:": "Prihlásili ste sa do novej relácie bez jej overenia:", "Verify your other session using one of the options below.": "Overte svoje ostatné relácie pomocou jednej z nižšie uvedených možností.", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) sa prihlásil do novej relácie bez jej overenia:", @@ -673,10 +660,6 @@ "a new cross-signing key signature": "nový podpis kľúča pre krížové podpisovanie", "a device cross-signing signature": "krížový podpis zariadenia", "Removing…": "Odstraňovanie…", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Váš nový účet (%(newAccountId)s) je registrovaný, ale už ste prihlásený pod iným účtom (%(loggedInUserId)s).", - "Continue with previous account": "Pokračovať s predošlým účtom", - "Log in to your new account.": "Prihláste sa do vášho nového účtu.", - "Registration Successful": "Úspešná registrácia", "Failed to re-authenticate due to a homeserver problem": "Opätovná autentifikácia zlyhala kvôli problému domovského servera", "Failed to re-authenticate": "Nepodarilo sa opätovne overiť", "Never send encrypted messages to unverified sessions from this session": "Nikdy neposielať šifrované správy neovereným reláciám z tejto relácie", @@ -812,8 +795,6 @@ "Indexed rooms:": "Indexované miestnosti:", "Unexpected server error trying to leave the room": "Neočakávaná chyba servera pri pokuse opustiť miestnosť", "Italics": "Kurzíva", - "Send a Direct Message": "Poslať priamu správu", - "Toggle Italics": "Prepnúť kurzíva", "Zimbabwe": "Zimbabwe", "Zambia": "Zambia", "Yemen": "Jemen", @@ -1137,7 +1118,6 @@ "Unable to copy room link": "Nie je možné skopírovať odkaz na miestnosť", "Remove recent messages": "Odstrániť posledné správy", "Remove recent messages by %(user)s": "Odstrániť posledné správy používateľa %(user)s", - "Go to Home View": "Prejsť do časti Domov", "Got an account? Sign in": "Máte účet? Prihláste sa", "Go to my space": "Prejsť do môjho priestoru", "Go to my first room": "Prejsť do mojej prvej miestnosti", @@ -1162,7 +1142,6 @@ "Your public space": "Váš verejný priestor", "Share your public space": "Zdieľajte svoj verejný priestor", "Rooms and spaces": "Miestnosti a priestory", - "Your access token gives full access to your account. Do not share it with anyone.": "Váš prístupový token poskytuje úplný prístup k vášmu účtu. S nikým ho nezdieľajte.", "You have no ignored users.": "Nemáte žiadnych ignorovaných používateľov.", "Some suggestions may be hidden for privacy.": "Niektoré návrhy môžu byť skryté kvôli ochrane súkromia.", "Cross-signing is ready for use.": "Krížové podpisovanie je pripravené na použitie.", @@ -1193,7 +1172,6 @@ "%(displayName)s cancelled verification.": "%(displayName)s zrušil/a overenie.", "Verification timed out.": "Čas overovania vypršal.", "Verification requested": "Vyžiadané overenie", - "Room List": "Zoznam miestností", "Server name": "Názov servera", "Your server": "Váš server", "%(name)s declined": "%(name)s odmietol/a", @@ -1241,8 +1219,6 @@ "Avatar": "Obrázok", "Suggested": "Navrhované", "Comment": "Komentár", - "Calls": "Hovory", - "Navigation": "Navigácia", "Accepting…": "Akceptovanie…", "Document": "Dokument", "Summary": "Zhrnutie", @@ -1270,7 +1246,6 @@ "This version of %(brand)s does not support searching encrypted messages": "Táto verzia aplikácie %(brand)s nepodporuje vyhľadávanie zašifrovaných správ", "This version of %(brand)s does not support viewing some encrypted files": "Táto verzia aplikácie %(brand)s nepodporuje zobrazovanie niektorých zašifrovaných súborov", "This room is running room version , which this homeserver has marked as unstable.": "Táto miestnosť používa verziu miestnosti , ktorú tento domovský server označil ako nestabilnú.", - "Olm version:": "Olm verzia:", "Backup version:": "Verzia zálohy:", "New version of %(brand)s is available": "K dispozícii je nová verzia %(brand)s", "Role in ": "Rola v ", @@ -1282,7 +1257,6 @@ "Master private key:": "Hlavný súkromný kľúč:", "Your private space": "Váš súkromný priestor", "This space is not public. You will not be able to rejoin without an invite.": "Tento priestor nie je verejný. Bez pozvánky sa doň nebudete môcť opätovne pripojiť.", - "Explore Public Rooms": "Preskúmať verejné miestnosti", "This room is public": "Táto miestnosť je verejná", "Public rooms": "Verejné miestnosti", "Upgrade public room": "Aktualizovať verejnú miestnosť", @@ -1310,7 +1284,6 @@ "Invite to %(spaceName)s": "Pozvať do priestoru %(spaceName)s", "Invite to this space": "Pozvať do tohto priestoru", "To join a space you'll need an invite.": "Ak sa chcete pripojiť k priestoru, budete potrebovať pozvánku.", - "Great, that'll help people know it's you": "Skvelé, to pomôže ľuďom zistiť, že ste to vy", "This is the start of .": "Toto je začiatok miestnosti .", "You created this room.": "Túto miestnosť ste vytvorili vy.", "Hide sessions": "Skryť relácie", @@ -1373,11 +1346,6 @@ "not ready": "nie je pripravené", "ready": "pripravené", "Invite to %(roomName)s": "Pozvať do miestnosti %(roomName)s", - "Toggle the top left menu": "Prepnutie ľavého horného menu", - "Toggle microphone mute": "Prepínanie stlmenia mikrofónu", - "Toggle Quote": "Prepínanie citácie", - "Toggle Bold": "Prepínanie tučného písma", - "Toggle right panel": "Prepnutie pravého panela", "If disabled, messages from encrypted rooms won't appear in search results.": "Ak nie je povolené, správy zo zašifrovaných miestností sa nezobrazia vo výsledkoch vyhľadávania.", "%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s bezpečne ukladá zašifrované správy do lokálnej vyrovnávacej pamäte, aby sa mohli zobrazovať vo výsledkoch vyhľadávania:", "Indexed messages:": "Indexované správy:", @@ -1406,15 +1374,12 @@ "Upgrade your encryption": "Aktualizujte svoje šifrovanie", "Error removing address": "Chyba pri odstraňovaní adresy", "Error creating address": "Chyba pri vytváraní adresy", - "Upload a file": "Nahrať súbor", "Confirm to continue": "Potvrďte, ak chcete pokračovať", "Enable end-to-end encryption": "Zapnúť end-to-end šifrovanie", "Confirm account deactivation": "Potvrdiť deaktiváciu účtu", - "Welcome to %(appName)s": "Vitajte v %(appName)s", "Signature upload failed": "Nahrávanie podpisu zlyhalo", "Signature upload success": "Úspešné nahratie podpisu", "Cancelled signature upload": "Zrušené nahrávanie podpisu", - "Activate selected button": "Aktivovať vybrané tlačidlo", "Create key backup": "Vytvoriť zálohu kľúča", "Send as message": "Odoslať ako správu", "Unrecognised command: %(commandText)s": "Nerozpoznaný príkaz: %(commandText)s", @@ -1445,7 +1410,6 @@ "Send feedback": "Odoslať spätnú väzbu", "You may contact me if you have any follow up questions": "V prípade ďalších otázok ma môžete kontaktovať", "Your platform and username will be noted to help us use your feedback as much as we can.": "Vaša platforma a používateľské meno budú zaznamenané, aby sme mohli čo najlepšie využiť vašu spätnú väzbu.", - "Jump to room search": "Prejsť na vyhľadávanie miestnosti", "Search names and descriptions": "Vyhľadávanie názvov a popisov", "You may want to try a different search or check for typos.": "Možno by ste mali vyskúšať iné vyhľadávanie alebo skontrolovať preklepy.", "Recent searches": "Nedávne vyhľadávania", @@ -1470,18 +1434,11 @@ "Message downloading sleep time(ms)": "Čas spánku pri sťahovaní správy (ms)", "Currently indexing: %(currentRoom)s": "Aktuálne sa indexuje: %(currentRoom)s", "Not currently indexing messages for any room.": "V súčasnosti sa neindexujú správy pre žiadnu miestnosť.", - "Expand room list section": "Rozšíriť sekciu zoznamu miestností", - "Select room from the room list": "Vybrať miestnosť zo zoznamu miestností", - "Search (must be enabled)": "Vyhľadávanie (musí byť povolené)", - "Jump to oldest unread message": "Prejsť na najstaršiu neprečítanú správu", - "Close dialog or context menu": "Zavrieť dialógové okno alebo kontextovú ponuku", "Close dialog": "Zavrieť dialógové okno", "Close this widget to view it in this panel": "Zatvorte tento widget a zobrazíte ho na tomto paneli", "If you have permissions, open the menu on any message and select Pin to stick them here.": "Ak máte oprávnenia, otvorte ponuku pri ľubovoľnej správe a výberom položky Pripnúť ich sem prilepíte.", "%(spaceName)s menu": "%(spaceName)s ponuka", "Close preview": "Zatvoriť náhľad", - "Cancel autocomplete": "Zrušiť automatické dokončenie", - "New line": "Nový riadok", "You're removing all spaces. Access will default to invite only": "Odstraňujete všetky priestory. Prístup bude predvolený len pre pozvaných", "Decide which spaces can access this room. If a space is selected, its members can find and join .": "Určite, ktoré priestory budú mať prístup do tejto miestnosti. Ak je vybraný priestor, jeho členovia môžu nájsť a pripojiť sa k .", "Select spaces": "Vybrať priestory", @@ -1489,7 +1446,6 @@ "Could not revoke the invite. The server may be experiencing a temporary problem or you do not have sufficient permissions to revoke the invite.": "Pozvánku nebolo možné odvolať. Na serveri môže byť dočasný problém alebo nemáte dostatočné oprávnenia na odvolanie pozvánky.", "Failed to revoke invite": "Nepodarilo sa odvolať pozvánku", "Set my room layout for everyone": "Nastavenie rozmiestnenie v mojej miestnosti pre všetkých", - "Add a photo so people know it's you.": "Pridajte fotografiu, aby ľudia vedeli, že ste to vy.", "Add a photo, so people can easily spot your room.": "Pridajte fotografiu, aby si ľudia mohli ľahko všimnúť vašu miestnosť.", "Enable encryption in settings.": "Zapnúť šifrovanie v nastaveniach.", "Your private messages are normally encrypted, but this room isn't. Usually this is due to an unsupported device or method being used, like email invites.": "Vaše súkromné správy sú bežne šifrované, ale táto miestnosť nie je. Zvyčajne je to spôsobené nepodporovaným zariadením alebo použitou metódou, ako napríklad e-mailové pozvánky.", @@ -1556,7 +1512,6 @@ "Any of the following data may be shared:": "Zdieľané môžu byť niektoré z nasledujúcich údajov:", "An unknown error occurred": "Vyskytla sa neznáma chyba", "A new Security Phrase and key for Secure Messages have been detected.": "Bola zistená nová bezpečnostná fráza a kľúč pre zabezpečené správy.", - "Already have an account? Sign in here": "Už máte účet? Prihláste sa tu", "Almost there! Is %(displayName)s showing the same shield?": "Už je to takmer hotové! Zobrazuje sa %(displayName)s rovnaký štít?", "All threads": "Všetky vlákna", "Add space": "Pridať priestor", @@ -1617,22 +1572,15 @@ "Anyone will be able to find and join this room, not just members of .": "Ktokoľvek bude môcť nájsť túto miestnosť a pripojiť sa k nej, nielen členovia .", "Everyone in will be able to find and join this room.": "Každý v bude môcť nájsť túto miestnosť a pripojiť sa k nej.", "Start new chat": "Spustiť novú konverzáciu", - "Create a Group Chat": "Vytvoriť skupinovú konverzáciu", - "Own your conversations.": "Vlastnite svoje konverzácie.", "Welcome to ": "Vitajte v ", "Pick rooms or conversations to add. This is just a space for you, no one will be informed. You can add more later.": "Vyberte miestnosti alebo konverzácie, ktoré chcete pridať. Toto je len priestor pre vás, nikto nebude informovaný. Neskôr môžete pridať ďalšie.", - "Cancel replying to a message": "Zrušiť odpovedanie na správu", "Space Autocomplete": "Automatické dopĺňanie priestoru", - "Autocomplete": "Automatické dokončovanie", - "Collapse room list section": "Zbaliť sekciu zoznamu miestností", - "Dismiss read marker and jump to bottom": "Zrušiť značku čítania a prejsť na spodok", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Táto relácia zistila, že vaša bezpečnostná fráza a kľúč pre zabezpečené správy boli odstránené.", "Original event source": "Pôvodný zdroj udalosti", "Decrypted event source": "Zdroj dešifrovanej udalosti", "Question or topic": "Otázka alebo téma", "View in room": "Zobraziť v miestnosti", "Loading new room": "Načítanie novej miestnosti", - "Send a sticker": "Odoslať nálepku", "& %(count)s more": { "one": "a %(count)s viac", "other": "& %(count)s viac" @@ -1650,13 +1598,11 @@ "Invalid Security Key": "Neplatný bezpečnostný kľúč", "Wrong Security Key": "Nesprávny bezpečnostný kľúč", "Open dial pad": "Otvoriť číselník", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s alebo %(usernamePassword)s", "Continuing without email": "Pokračovanie bez e-mailu", "Enter phone number": "Zadajte telefónne číslo", "Take a picture": "Urobiť fotografiu", "Error leaving room": "Chyba pri odchode z miestnosti", "Wrong file type": "Nesprávny typ súboru", - "Welcome %(name)s": "Vitajte %(name)s", "Device verified": "Zariadenie overené", "Room members": "Členovia miestnosti", "End Poll": "Ukončiť anketu", @@ -1835,20 +1781,16 @@ "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…": "Čaká sa na overenie na vašom druhom zariadení, %(deviceName)s (%(deviceId)s)…", "Waiting for you to verify on your other device…": "Čaká sa na overenie na vašom druhom zariadení…", "Forgotten or lost all recovery methods? Reset all": "Zabudli ste alebo ste stratili všetky metódy obnovy? Resetovať všetko", - "Continue with %(ssoButtons)s": "Pokračovať s %(ssoButtons)s", "New? Create account": "Ste tu nový? Vytvorte si účet", "Sign into your homeserver": "Prihláste sa do svojho domovského servera", "Use your preferred Matrix homeserver if you have one, or host your own.": "Použite preferovaný domovský server Matrixu, ak ho máte, alebo si vytvorte vlastný.", "Other homeserver": "Iný domovský server", "Matrix.org is the biggest public homeserver in the world, so it's a good place for many.": "Matrix.org je najväčší verejný domovský server na svete, takže je vhodným miestom pre mnohých.", - "Converts the DM to a room": "Premení priamu správu na miestnosť", - "Converts the room to a DM": "Premení miestnosť na priamu správu", "%(spaceName)s and %(count)s others": { "one": "%(spaceName)s a %(count)s ďalší", "other": "%(spaceName)s a %(count)s ďalší" }, "Some invites couldn't be sent": "Niektoré pozvánky nebolo možné odoslať", - "Toggle space panel": "Prepnúť panel priestoru", "Enter your Security Phrase a second time to confirm it.": "Zadajte svoju bezpečnostnú frázu znova, aby ste ju potvrdili.", "Enter a Security Phrase": "Zadajte bezpečnostnú frázu", "Enter your Security Phrase or to continue.": "Zadajte svoju bezpečnostnú frázu alebo pre pokračovanie.", @@ -1861,7 +1803,6 @@ "Failed to remove user": "Nepodarilo sa odstrániť používateľa", "Remove from room": "Odstrániť z miestnosti", "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.": "Ste si istí, že chcete ukončiť túto anketu? Zobrazia sa konečné výsledky ankety a ľudia nebudú môcť už hlasovať.", - "Open this settings tab": "Otvoriť túto kartu nastavení", "Keyboard": "Klávesnica", "Can't find this server or its room list": "Nemôžeme nájsť tento server alebo jeho zoznam miestností", "Verifying this device will mark it as trusted, and users who have verified with you will trust this device.": "Overením tohto zariadenia ho označíte ako dôveryhodné a používatelia, ktorí vás overili, budú tomuto zariadeniu dôverovať.", @@ -1900,7 +1841,6 @@ "Join the conversation with an account": "Pripojte sa ku konverzácii pomocou účtu", "User Busy": "Používateľ je obsadený", "The operation could not be completed": "Operáciu nebolo možné dokončiť", - "Force complete": "Nútené dokončenie", "You might disable this if the room will be used for collaborating with external teams who have their own homeserver. This cannot be changed later.": "Túto funkciu môžete vypnúť, ak sa miestnosť bude používať na spoluprácu s externými tímami, ktoré majú vlastný domovský server. Neskôr sa to nedá zmeniť.", "Show all threads": "Zobraziť všetky vlákna", "Recently viewed": "Nedávno zobrazené", @@ -1924,7 +1864,6 @@ "Expand map": "Zväčšiť mapu", "Unrecognised room address: %(roomAlias)s": "Nerozpoznaná adresa miestnosti: %(roomAlias)s", "Command failed: Unable to find room (%(roomId)s": "Príkaz zlyhal: Nepodarilo sa nájsť miestnosť (%(roomId)s", - "Unable to find Matrix ID for phone number": "Nemožnosť nájsť Matrix ID pre telefónne číslo", "Could not fetch location": "Nepodarilo sa načítať polohu", "Unknown error fetching location. Please try again later.": "Neznáma chyba pri načítavaní polohy. Skúste to prosím neskôr.", "Failed to fetch your location. Please try again later.": "Nepodarilo sa načítať vašu polohu. Skúste to prosím neskôr.", @@ -1934,36 +1873,17 @@ "You don't have permission to view messages from before you joined.": "Nemáte oprávnenie na zobrazenie správ z obdobia pred vaším vstupom.", "Encrypted messages before this point are unavailable.": "Šifrované správy pred týmto bodom nie sú k dispozícii.", "You can't see earlier messages": "Nemôžete vidieť predchádzajúce správy", - "Jump to start of the composer": "Prejsť na začiatok editora správ", - "Jump to end of the composer": "Prejsť na koniec editora správ", - "Toggle webcam on/off": "Zapnutie/vypnutie webovej kamery", - "Scroll up in the timeline": "Posun hore na časovej osi", - "Scroll down in the timeline": "Posun dole na časovej osi", - "Navigate up in the room list": "Prejsť v zozname miestností smerom hore", - "Navigate down in the room list": "Prejsť v zozname miestností smerom nadol", - "Next unread room or DM": "Ďalšia neprečítaná miestnosť alebo správa", - "Previous unread room or DM": "Predchádzajúca neprečítaná miestnosť alebo správa", - "Next room or DM": "Ďalšia miestnosť alebo správa", - "Previous room or DM": "Predchádzajúca miestnosť alebo správa", - "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", "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.", "Group all your rooms that aren't part of a space in one place.": "Zoskupte všetky miestnosti, ktoré nie sú súčasťou priestoru, na jednom mieste.", "Unable to check if username has been taken. Try again later.": "Nie je možné skontrolovať, či je používateľské meno obsadené. Skúste to neskôr.", - "Jump to first message": "Prejsť na prvú správu", - "Jump to last message": "Prejsť na poslednú správu", - "Undo edit": "Zrušiť úpravu", - "Redo edit": "Znovu upraviť", "The beginning of the room": "Začiatok miestnosti", "Jump to date": "Prejsť na dátum", "Pick a date to jump to": "Vyberte dátum, na ktorý chcete prejsť", "Message pending moderation: %(reason)s": "Správa čaká na moderáciu: %(reason)s", "Space home": "Domov priestoru", - "Navigate to next message in composer history": "Prejsť na ďalšiu správu v histórii editora", - "Navigate to previous message in composer history": "Prejsť na predchádzajúcu správu v histórii editora", "Missing session data": "Chýbajú údaje relácie", "Make sure the right people have access. You can invite more later.": "Uistite sa, že majú prístup správni ľudia. Neskôr môžete pozvať ďalších.", "Make sure the right people have access to %(name)s": "Uistite sa, že k %(name)s majú prístup správni ľudia", @@ -2076,7 +1996,6 @@ "Send stickers into this room": "Poslať nálepky do tejto miestnosti", "Remain on your screen while running": "Zostať na vašej obrazovke počas spustenia", "Remain on your screen when viewing another room, when running": "Zostať na obrazovke pri sledovaní inej miestnosti, počas spustenia", - "Places the call in the current room on hold": "Podrží hovor v aktuálnej miestnosti", "Cross-signing is not set up.": "Krížové podpisovanie nie je nastavené.", "Join the conference from the room information card on the right": "Pripojte sa ku konferencii z informačnej karty miestnosti vpravo", "Join the conference at the top of this room": "Pripojte sa ku konferencii v hornej časti tejto miestnosti", @@ -2089,7 +2008,6 @@ }, "No answer": "Žiadna odpoveď", "Cross-signing is ready but keys are not backed up.": "Krížové podpisovanie je pripravené, ale kľúče nie sú zálohované.", - "No active call in this room": "V tejto miestnosti nie je aktívny žiadny hovor", "Remove, ban, or invite people to your active room, and make you leave": "Odstráňte, zakážte alebo pozvite ľudí do svojej aktívnej miestnosti and make you leave", "If you cancel now, you may lose encrypted messages & data if you lose access to your logins.": "Ak to teraz zrušíte, môžete prísť o zašifrované správy a údaje, ak stratíte prístup k svojim prihlasovacím údajom.", "Just a heads up, if you don't add an email and forget your password, you could permanently lose access to your account.": "Len upozorňujeme, že ak si nepridáte e-mail a zabudnete heslo, môžete navždy stratiť prístup k svojmu účtu.", @@ -2113,10 +2031,6 @@ "Failed to get autodiscovery configuration from server": "Nepodarilo sa získať nastavenie automatického zisťovania zo servera", "Sections to show": "Sekcie na zobrazenie", "Failed to load list of rooms.": "Nepodarilo sa načítať zoznam miestností.", - "Now, let's help you get started": "Teraz vám pomôžeme začať", - "Navigate to next message to edit": "Prejsť na ďalšiu správu na úpravu", - "Navigate to previous message to edit": "Prejsť na predchádzajúcu správu na úpravu", - "Toggle hidden event visibility": "Prepínanie viditeľnosti skrytej udalosti", "This address does not point at this room": "Táto adresa nesmeruje do tejto miestnosti", "Wait!": "Počkajte!", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Ak vám niekto povedal, aby ste sem niečo skopírovali/vložili, je veľká pravdepodobnosť, že vás niekto snaží podviesť!", @@ -2172,10 +2086,7 @@ "Move left": "Presun doľava", "Unban from %(roomName)s": "Zrušiť zákaz vstup do %(roomName)s", "Ban from %(roomName)s": "Zakázať vstup do %(roomName)s", - "Decide where your account is hosted": "Rozhodnite sa, kde bude váš účet hostovaný", "Select a room below first": "Najskôr vyberte miestnosť nižšie", - "Open user settings": "Otvoriť používateľské nastavenia", - "Switch to space by number": "Prepnúť do priestoru podľa čísla", "Proceed with reset": "Pokračovať v obnovení", "Failed to create initial space rooms": "Nepodarilo sa vytvoriť počiatočné miestnosti v priestore", "Joining": "Pripájanie sa", @@ -2247,8 +2158,6 @@ "See when the topic changes in your active room": "Zobraziť, keď sa zmení téma vo vašej aktívnej miestnosti", "Change which room you're viewing": "Zmeniť zobrazovanú miestnosť", "Light high contrast": "Ľahký vysoký kontrast", - "No virtual room for this room": "Žiadna virtuálna miestnosť pre túto miestnosť", - "Switches to this room's virtual room, if it has one": "Prepne do virtuálnej miestnosti tejto miestnosti, ak ju má", "Command error: Unable to find rendering type (%(renderingType)s)": "Chyba príkazu: Nie je možné nájsť typ vykresľovania (%(renderingType)s)", "Command error: Unable to handle slash command.": "Chyba príkazu: Nie je možné spracovať lomkový príkaz.", "Command Help": "Pomocník príkazov", @@ -2262,7 +2171,6 @@ "Show polls button": "Zobraziť tlačidlo ankiet", "We sent the others, but the below people couldn't be invited to ": "Ostatným sme pozvánky poslali, ale nižšie uvedené osoby nemohli byť pozvané do ", "Answered Elsewhere": "Hovor prijatý inde", - "Takes the call in the current room off hold": "Zruší podržanie hovoru v aktuálnej miestnosti", "Remove them from everything I'm able to": "Odstrániť ich zo všetkého, na čo mám oprávnenie", "Remove them from specific things I'm able to": "Odstrániť ich z konkrétnych vecí, na ktoré mám oprávnenie", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Priestory sú novým spôsobom zoskupovania miestností a ľudí. Aký druh priestoru chcete vytvoriť? Neskôr to môžete zmeniť.", @@ -2285,7 +2193,6 @@ "Can't create a thread from an event with an existing relation": "Nie je možné vytvoriť vlákno z udalosti s existujúcim vzťahom", "Match system": "Zhoda so systémom", "The %(capability)s capability": "Schopnosť %(capability)s", - "Host account on": "Hostiteľský účet na", "Joined": "Ste pripojený", "Resend %(unsentCount)s reaction(s)": "Opätovné odoslanie %(unsentCount)s reakcií", "Consult first": "Najprv konzultovať", @@ -2295,8 +2202,6 @@ "The above, but in any room you are joined or invited to as well": "Vyššie uvedené, ale tiež v akejkoľvek miestnosti do ktorej ste sa pripojili alebo do ktorej ste boli prizvaný", "with state key %(stateKey)s": "so stavovým kľúčom %(stateKey)s", "with an empty state key": "s prázdnym stavovým kľúčom", - "Toggle Link": "Prepnúť odkaz", - "Toggle Code Block": "Prepnutie bloku kódu", "You are sharing your live location": "Zdieľate svoju polohu v reálnom čase", "%(displayName)s's live location": "Poloha používateľa %(displayName)s v reálnom čase", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Zrušte označenie, ak chcete odstrániť aj systémové správy o tomto používateľovi (napr. zmena členstva, zmena profilu...)", @@ -2310,8 +2215,6 @@ "other": "V súčasnosti sa odstraňujú správy v %(count)s miestnostiach" }, "Share for %(duration)s": "Zdieľať na %(duration)s", - "Next recently visited room or space": "Ďalšia nedávno navštívená miestnosť alebo priestor", - "Previous recently visited room or space": "Predchádzajúca nedávno navštívená miestnosť alebo priestor", "Unsent": "Neodoslané", "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.": "Môžete použiť nastavenia vlastného servera na prihlásenie sa na iné servery Matrix-u zadaním inej adresy URL domovského servera. To vám umožní používať %(brand)s s existujúcim účtom Matrix na inom domovskom serveri.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "Aplikácii %(brand)s bolo zamietnuté povolenie na načítanie vašej polohy. Povoľte prístup k polohe v nastaveniach prehliadača.", @@ -2474,7 +2377,6 @@ }, "In %(spaceName)s.": "V priestore %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "V priestoroch %(space1Name)s a %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Príkaz pre vývojárov: Zruší aktuálnu reláciu odchádzajúcej skupiny a vytvorí nové relácie Olm", "Stop and close": "Zastaviť a zavrieť", "Online community members": "Členovia online komunity", "Coworkers and teams": "Spolupracovníci a tímy", @@ -2780,8 +2682,6 @@ "Due to decryption errors, some votes may not be counted": "Z dôvodu chýb v dešifrovaní sa niektoré hlasy nemusia započítať", "The sender has blocked you from receiving this message": "Odosielateľ vám zablokoval príjem tejto správy", "Room directory": "Adresár miestností", - "Identity server is %(identityServerUrl)s": "Server identity je %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Domovský server je %(homeserverUrl)s", "Yes, it was me": "Áno, bol som to ja", "Answered elsewhere": "Hovor prijatý inde", "If you know a room address, try joining through that instead.": "Ak poznáte adresu miestnosti, skúste sa pripojiť prostredníctvom nej.", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Ignorovať (%(counter)s)", "Invites by email can only be sent one at a time": "Pozvánky e-mailom sa môžu posielať len po jednej", "Once everyone has joined, you’ll be able to chat": "Keď sa všetci pridajú, budete môcť konverzovať", - "Could not find room": "Nepodarilo sa nájsť miestnosť", - "iframe has no src attribute": "iframe neobsahuje src atribút", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Pri aktualizácii vašich predvolieb oznámení došlo k chybe. Skúste prosím prepnúť možnosť znova.", "Desktop app logo": "Logo aplikácie pre stolové počítače", "Use your account to continue.": "Ak chcete pokračovať, použite svoje konto.", @@ -3195,7 +3093,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[číslo]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Hovory", + "category_room_list": "Zoznam miestností", + "category_navigation": "Navigácia", + "category_autocomplete": "Automatické dokončovanie", + "composer_toggle_bold": "Prepínanie tučného písma", + "composer_toggle_italics": "Prepnúť kurzíva", + "composer_toggle_quote": "Prepínanie citácie", + "composer_toggle_code_block": "Prepnutie bloku kódu", + "composer_toggle_link": "Prepnúť odkaz", + "cancel_reply": "Zrušiť odpovedanie na správu", + "navigate_next_message_edit": "Prejsť na ďalšiu správu na úpravu", + "navigate_prev_message_edit": "Prejsť na predchádzajúcu správu na úpravu", + "composer_jump_start": "Prejsť na začiatok editora správ", + "composer_jump_end": "Prejsť na koniec editora správ", + "composer_navigate_next_history": "Prejsť na ďalšiu správu v histórii editora", + "composer_navigate_prev_history": "Prejsť na predchádzajúcu správu v histórii editora", + "send_sticker": "Odoslať nálepku", + "toggle_microphone_mute": "Prepínanie stlmenia mikrofónu", + "toggle_webcam_mute": "Zapnutie/vypnutie webovej kamery", + "dismiss_read_marker_and_jump_bottom": "Zrušiť značku čítania a prejsť na spodok", + "jump_to_read_marker": "Prejsť na najstaršiu neprečítanú správu", + "upload_file": "Nahrať súbor", + "scroll_up_timeline": "Posun hore na časovej osi", + "scroll_down_timeline": "Posun dole na časovej osi", + "jump_room_search": "Prejsť na vyhľadávanie miestnosti", + "room_list_select_room": "Vybrať miestnosť zo zoznamu miestností", + "room_list_collapse_section": "Zbaliť sekciu zoznamu miestností", + "room_list_expand_section": "Rozšíriť sekciu zoznamu miestností", + "room_list_navigate_down": "Prejsť v zozname miestností smerom nadol", + "room_list_navigate_up": "Prejsť v zozname miestností smerom hore", + "toggle_top_left_menu": "Prepnutie ľavého horného menu", + "toggle_right_panel": "Prepnutie pravého panela", + "keyboard_shortcuts_tab": "Otvoriť túto kartu nastavení", + "go_home_view": "Prejsť do časti Domov", + "next_unread_room": "Ďalšia neprečítaná miestnosť alebo správa", + "prev_unread_room": "Predchádzajúca neprečítaná miestnosť alebo správa", + "next_room": "Ďalšia miestnosť alebo správa", + "prev_room": "Predchádzajúca miestnosť alebo správa", + "autocomplete_cancel": "Zrušiť automatické dokončenie", + "autocomplete_navigate_next": "Ďalší návrh automatického dokončovania", + "autocomplete_navigate_prev": "Predchádzajúci návrh automatického dokončovania", + "toggle_space_panel": "Prepnúť panel priestoru", + "toggle_hidden_events": "Prepínanie viditeľnosti skrytej udalosti", + "jump_first_message": "Prejsť na prvú správu", + "jump_last_message": "Prejsť na poslednú správu", + "composer_undo": "Zrušiť úpravu", + "composer_redo": "Znovu upraviť", + "navigate_prev_history": "Predchádzajúca nedávno navštívená miestnosť alebo priestor", + "navigate_next_history": "Ďalšia nedávno navštívená miestnosť alebo priestor", + "switch_to_space": "Prepnúť do priestoru podľa čísla", + "open_user_settings": "Otvoriť používateľské nastavenia", + "close_dialog_menu": "Zavrieť dialógové okno alebo kontextovú ponuku", + "activate_button": "Aktivovať vybrané tlačidlo", + "composer_new_line": "Nový riadok", + "autocomplete_force": "Nútené dokončenie", + "search": "Vyhľadávanie (musí byť povolené)" }, "credits": { "default_cover_photo": "Predvolená titulná fotografia je © Jesús Roncero používaná podľa podmienok CC-BY-SA 4.0.", @@ -3320,7 +3274,16 @@ "download_google_play": "Získajte ho v službe Google Play", "download_f_droid": "Získajte ho v službe F-Droid", "apple_trademarks": "App Store® a logo Apple® sú ochranné známky spoločnosti Apple Inc.", - "google_trademarks": "Google Play a logo Google Play sú ochranné známky spoločnosti Google LLC." + "google_trademarks": "Google Play a logo Google Play sú ochranné známky spoločnosti Google LLC.", + "has_avatar_label": "Skvelé, to pomôže ľuďom zistiť, že ste to vy", + "no_avatar_label": "Pridajte fotografiu, aby ľudia vedeli, že ste to vy.", + "welcome_user": "Vitajte %(name)s", + "welcome_detail": "Teraz vám pomôžeme začať", + "intro_welcome": "Vitajte v %(appName)s", + "intro_byline": "Vlastnite svoje konverzácie.", + "send_dm": "Poslať priamu správu", + "explore_rooms": "Preskúmať verejné miestnosti", + "create_room": "Vytvoriť skupinovú konverzáciu" }, "settings": { "show_breadcrumbs": "Zobraziť skratky nedávno zobrazených miestnosti nad zoznamom miestností", @@ -3888,7 +3851,24 @@ "category_admin": "Správca", "category_advanced": "Pokročilé", "category_effects": "Efekty", - "category_other": "Ďalšie" + "category_other": "Ďalšie", + "addwidget_missing_url": "Prosím, zadajte URL widgetu alebo vložte kód", + "addwidget_iframe_missing_src": "iframe neobsahuje src atribút", + "addwidget_invalid_protocol": "Zadajte https:// alebo http:// URL adresu widgetu", + "addwidget_no_permissions": "Nemôžete meniť widgety v tejto miestnosti.", + "converttodm": "Premení miestnosť na priamu správu", + "could_not_find_room": "Nepodarilo sa nájsť miestnosť", + "converttoroom": "Premení priamu správu na miestnosť", + "discardsession": "Vynúti zrušenie aktuálnej relácie odchádzajúcej skupiny v zašifrovanej miestnosti", + "remakeolm": "Príkaz pre vývojárov: Zruší aktuálnu reláciu odchádzajúcej skupiny a vytvorí nové relácie Olm", + "tovirtual": "Prepne do virtuálnej miestnosti tejto miestnosti, ak ju má", + "tovirtual_not_found": "Žiadna virtuálna miestnosť pre túto miestnosť", + "query": "Otvorí konverzáciu s daným používateľom", + "query_not_found_phone_number": "Nemožnosť nájsť Matrix ID pre telefónne číslo", + "holdcall": "Podrží hovor v aktuálnej miestnosti", + "no_active_call": "V tejto miestnosti nie je aktívny žiadny hovor", + "unholdcall": "Zruší podržanie hovoru v aktuálnej miestnosti", + "me": "Zobrazí akciu" }, "presence": { "busy": "Obsadený/zaneprázdnený", @@ -4069,7 +4049,16 @@ "sign_in_with_sso": "Prihlásiť sa pomocou jediného prihlasovania", "sso": "Single Sign On", "reset_password_action": "Znovu nastaviť heslo", - "reset_password_title": "Obnovte svoje heslo" + "reset_password_title": "Obnovte svoje heslo", + "continue_with_sso": "Pokračovať s %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s alebo %(usernamePassword)s", + "sign_in_instead": "Už máte účet? Prihláste sa tu", + "account_clash": "Váš nový účet (%(newAccountId)s) je registrovaný, ale už ste prihlásený pod iným účtom (%(loggedInUserId)s).", + "account_clash_previous_account": "Pokračovať s predošlým účtom", + "log_in_new_account": "Prihláste sa do vášho nového účtu.", + "registration_successful": "Úspešná registrácia", + "server_picker_title": "Hostiteľský účet na", + "server_picker_dialog_title": "Rozhodnite sa, kde bude váš účet hostovaný" }, "room_list": { "sort_unread_first": "Najprv ukázať miestnosti s neprečítanými správami", @@ -4105,5 +4094,20 @@ "report_entire_room": "Nahlásiť celú miestnosť", "report_content_to_homeserver": "Nahlásenie obsahu správcovi domovského serveru", "description": "Nahlásenie tejto správy odošle jej jedinečné \"ID udalosti\" správcovi vášho domovského servera. Ak sú správy v tejto miestnosti zašifrované, správca domovského servera nebude môcť prečítať text správy ani zobraziť žiadne súbory alebo obrázky." + }, + "setting": { + "help_about": { + "brand_version": "Verzia %(brand)s:", + "olm_version": "Olm verzia:", + "help_link": "Pomoc pri používaní %(brand)s môžete získať kliknutím sem.", + "help_link_chat_bot": "Pomoc pri používaní aplikácie %(brand)s môžete získať kliknutím sem, alebo začnite konverzáciu s našim robotom pomocou tlačidla dole.", + "chat_bot": "Konverzácia s %(brand)s Bot", + "title": "Pomocník a o programe", + "versions": "Verzie", + "homeserver": "Domovský server je %(homeserverUrl)s", + "identity_server": "Server identity je %(identityServerUrl)s", + "access_token_detail": "Váš prístupový token poskytuje úplný prístup k vášmu účtu. S nikým ho nezdieľajte.", + "clear_cache_reload": "Vymazať vyrovnávaciu pamäť a načítať znovu" + } } } diff --git a/src/i18n/strings/sl.json b/src/i18n/strings/sl.json index 0fd37d3517..b7122e08fd 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", - "Chat with %(brand)s Bot": "Klepetajte z %(brand)s Botom", "powered by Matrix": "poganja Matrix", "Use Single Sign On to continue": "Uporabi Single Sign On za prijavo", "Confirm adding this email address by using Single Sign On to prove your identity.": "Potrdite dodajanje tega e-poštnega naslova z enkratno prijavo, da dokažete svojo identiteto.", @@ -73,5 +72,10 @@ }, "auth": { "sso": "Enkratna prijava" + }, + "setting": { + "help_about": { + "chat_bot": "Klepetajte z %(brand)s Botom" + } } } diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json index f274a5510e..a35e274a5e 100644 --- a/src/i18n/strings/sq.json +++ b/src/i18n/strings/sq.json @@ -191,7 +191,6 @@ "Email": "Email", "Profile": "Profil", "Account": "Llogari", - "%(brand)s version:": "Version %(brand)s:", "The email address linked to your account must be entered.": "Duhet dhënë adresa email e lidhur me llogarinë tuaj.", "Return to login screen": "Kthehuni te skena e hyrjeve", "Incorrect username and/or password.": "Emër përdoruesi dhe/ose fjalëkalim i pasaktë.", @@ -252,7 +251,6 @@ "Connectivity to the server has been lost.": "Humbi lidhja me shërbyesin.", "": "", "A new password must be entered.": "Duhet dhënë një fjalëkalim i ri.", - "Displays action": "Shfaq veprimin", "Define the power level of a user": "Përcaktoni shkallë pushteti të një përdoruesi", "Deops user with given id": "I heq cilësinë e operatorit përdoruesit me ID-në e dhënë", "You are no longer ignoring %(userId)s": "Nuk e shpërfillni më %(userId)s", @@ -364,7 +362,6 @@ "Incompatible Database": "Bazë të dhënash e Papërputhshme", "Continue With Encryption Disabled": "Vazhdo Me Fshehtëzimin të Çaktivizuar", "Unable to load! Check your network connectivity and try again.": "S’arrihet të ngarkohet! Kontrolloni lidhjen tuaj në rrjet dhe riprovoni.", - "Forces the current outbound group session in an encrypted room to be discarded": "E detyron të hidhet tej sesionin e tanishëm outbound grupi në një dhomë të fshehtëzuar", "Delete Backup": "Fshije Kopjeruajtjen", "Unable to load key backup status": "S’arrihet të ngarkohet gjendje kopjeruajtjeje kyçesh", "That matches!": "U përputhën!", @@ -438,10 +435,6 @@ "Phone numbers": "Numra telefonash", "Language and region": "Gjuhë dhe rajon", "Account management": "Administrim llogarish", - "For help with using %(brand)s, click here.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni këtu.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni këtu, ose nisni një fjalosje me robotin tonë duke përdorur butonin më poshtë.", - "Help & About": "Ndihmë & Rreth", - "Versions": "Versione", "Composer": "Hartues", "Room list": "Listë dhomash", "Autocomplete delay (ms)": "Vonesë Vetëplotësimi (ms)", @@ -527,7 +520,6 @@ "Anchor": "Spirancë", "Headphones": "Kufje", "Folder": "Dosje", - "Chat with %(brand)s Bot": "Fjalosuni me Robotin %(brand)s", "This homeserver would like to make sure you are not a robot.": "Ky Shërbyes Home do të donte të sigurohej se s’jeni robot.", "Couldn't load page": "S’u ngarkua dot faqja", "Your password has been reset.": "Fjalëkalimi juaj u ricaktua.", @@ -563,7 +555,6 @@ "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.": "Pasi të aktivizohet, fshehtëzimi për një dhomë nuk mund të çaktivizohet. Mesazhet e dërguar në një dhomë të fshehtëzuar s’mund të shihen nga shërbyesi, vetëm nga pjesëmarrësit në dhomë. Aktivizimi i fshehtëzimit mund të pengojë funksionimin si duhet të mjaft robotëve dhe urave. Mësoni më tepër rreth fshehtëzimit.", "Power level": "Shkallë pushteti", "The file '%(fileName)s' failed to upload.": "Dështoi ngarkimi i kartelës '%(fileName)s'.", - "You cannot modify widgets in this room.": "S’mund të ndryshoni widget-e në këtë dhomë.", "No homeserver URL provided": "S’u dha URL shërbyesi Home", "Upgrade this room to the recommended room version": "Përmirësojeni këtë dhomë me versionin e rekomanduar të dhomës", "View older messages in %(roomName)s.": "Shihni mesazhe më të vjetër në %(roomName)s.", @@ -613,7 +604,6 @@ "Invalid base_url for m.homeserver": "Parametër base_url i pavlefshëm për m.homeserver", "Homeserver URL does not appear to be a valid Matrix homeserver": "URL-ja e shërbyesit Home s’duket të jetë një shërbyes Home i vlefshëm", "The server does not support the room version specified.": "Shërbyesi nuk e mbulon versionin e specifikuar të dhomës.", - "Please supply a https:// or http:// widget URL": "Ju lutemi, furnizoni një URL https:// ose http:// widget-i", "Unexpected error resolving homeserver configuration": "Gabim i papritur gjatë ftillimit të formësimit të shërbyesit Home", "The user's homeserver does not support the version of the room.": "Shërbyesi Home i përdoruesit s’e mbulon versionin e dhomës.", "Show hidden events in timeline": "Shfaq te rrjedha kohore veprimtari të fshehura", @@ -653,11 +643,7 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Mund të regjistroheni, por disa veçori do të jenë të papërdorshme, derisa shërbyesi i identiteteve të jetë sërish në linjë. Nëse vazhdoni ta shihni këtë sinjalizim, kontrolloni formësimin tuaj ose lidhuni me një përgjegjës të shërbyesit.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Mund të ricaktoni fjalëkalimin, por disa veçori do të jenë të papërdorshme, derisa shërbyesi i identiteteve të jetë sërish në linjë. Nëse vazhdoni ta shihni këtë sinjalizim, kontrolloni formësimin tuaj ose lidhuni me një përgjegjës të shërbyesit.", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Mund të bëni hyrjen, por disa veçori do të jenë të papërdorshme, derisa shërbyesi i identiteteve të jetë sërish në linjë. Nëse vazhdoni ta shihni këtë sinjalizim, kontrolloni formësimin tuaj ose lidhuni me një përgjegjës të shërbyesit.", - "Log in to your new account.": "Bëni hyrjen te llogaria juaj e re.", - "Registration Successful": "Regjistrim i Suksesshëm", "Upload all": "Ngarkoji krejt", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Llogaria juaj e re (%(newAccountId)s) është e regjistruar, por jeni i futur në një tjetër llogari (%(loggedInUserId)s).", - "Continue with previous account": "Vazhdoni me llogarinë e mëparshme", "Edited at %(date)s. Click to view edits.": "Përpunuar më %(date)s. Klikoni që të shihni përpunimet.", "Message edits": "Përpunime mesazhi", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "Përmirësimi i kësaj dhome lyp mbylljen e instancës së tanishme të dhomës dhe krijimin e një dhome të re në vend të saj. Për t’u dhënë anëtarëve të dhomës më të mirën, do të:", @@ -766,7 +752,6 @@ "check your browser plugins for anything that might block the identity server (such as Privacy Badger)": "të kontrolloni shtojcat e shfletuesit tuaj për çfarëdo që mund të bllokojë shërbyesin e identiteteve (bie fjala, Privacy Badger)", "contact the administrators of identity server ": "të lidheni me përgjegjësit e shërbyesit të identiteteve ", "wait and try again later": "të prisni dhe të riprovoni më vonë", - "Clear cache and reload": "Spastro fshehtinën dhe ringarko", "Your email address hasn't been verified yet": "Adresa juaj email s’është verifikuar ende", "Click the link in the email you received to verify and then click continue again.": "Për verifkim, klikoni lidhjen te email që morët dhe mandej vazhdoni sërish.", "Show image": "Shfaq figurë", @@ -1013,27 +998,9 @@ "Cancelled signature upload": "Ngarkim i anuluar nënshkrimi", "Signature upload success": "Sukses ngarkimi nënshkrimi", "Signature upload failed": "Ngarkimi i nënshkrimit dështoi", - "Navigation": "Lëvizje", - "Calls": "Thirrje", - "Room List": "Listë Dhomash", - "Autocomplete": "Vetëplotëso", - "Toggle Bold": "Aktivizo/çaktivizo Të trasha", - "Toggle Italics": "Aktivizo/çaktivizo Të pjerrëta", - "Toggle Quote": "Aktivizo/çaktivizo Thonjëza", - "New line": "Rresht i ri", - "Toggle microphone mute": "Aktivizo/çaktivizon heshtje mikrofoni", - "Jump to room search": "Hidhu te kërkim në dhomë", - "Select room from the room list": "Përzgjidhni dhomë prej listës së dhomave", - "Collapse room list section": "Tkurre pjesën e listës së dhomave", - "Expand room list section": "Zgjeroje pjesën e listës së dhomave", - "Toggle the top left menu": "Shfaq/fshih menunë e epërme majtas", - "Close dialog or context menu": "Mbyllni dialog ose menu konteksti", - "Activate selected button": "Aktivizo buton të përzgjedhur", - "Cancel autocomplete": "Anulo vetëplotësim", "Confirm by comparing the following with the User Settings in your other session:": "Ripohojeni duke krahasuar sa vijon me Rregullimet e Përdoruesit te sesioni juaj tjetër:", "Confirm this user's session by comparing the following with their User Settings:": "Ripohojeni këtë sesion përdoruesi duke krahasuar sa vijon me Rregullimet e tij të Përdoruesit:", "If they don't match, the security of your communication may be compromised.": "Nëse s’përputhen, siguria e komunikimeve tuaja mund të jetë komprometuar.", - "Toggle right panel": "Hap/mbyll panelin djathtas", "Manually verify all remote sessions": "Verifikoni dorazi krejt sesionet e largët", "Self signing private key:": "Kyç privat vetënënshkrimi:", "cached locally": "ruajtur në fshehtinë lokalisht", @@ -1057,13 +1024,8 @@ "%(displayName)s cancelled verification.": "%(displayName)s anuloi verifikimin.", "You cancelled verification.": "Anuluat verifikimin.", "Sign in with SSO": "Hyni me HNj", - "Cancel replying to a message": "Anulo përgjigjen te një mesazh", "%(name)s is requesting verification": "%(name)s po kërkon verifikim", "unexpected type": "lloj i papritur", - "Welcome to %(appName)s": "Mirë se vini te %(appName)s", - "Send a Direct Message": "Dërgoni Mesazh të Drejtpërdrejtë", - "Explore Public Rooms": "Eksploroni Dhoma Publike", - "Create a Group Chat": "Krijoni një Fjalosje Grupi", "Could not find user in room": "S’u gjet përdorues në dhomë", "well formed": "e mirëformuar", "Enable end-to-end encryption": "Aktivizo fshehtëzim skaj-më-skaj", @@ -1075,7 +1037,6 @@ "There was a problem communicating with the server. Please try again.": "Pati një problem në komunikimin me shërbyesin. Ju lutemi, riprovoni.", "If you've joined lots of rooms, this might take a while": "Nëse jeni pjesë e shumë dhomave, kjo mund të zgjasë ca", "New login. Was this you?": "Hyrje e re. Ju qetë?", - "Please supply a widget URL or embed code": "Ju lutemi, furnizoni një URL widget-i ose kod trupëzimi", "You signed in to a new session without verifying it:": "Bëtë hyrjen në një sesion të ri pa e verifikuar:", "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", @@ -1089,16 +1050,12 @@ "Successfully restored %(sessionCount)s keys": "U rikthyen me sukses %(sessionCount)s kyçe", "Unable to query secret storage status": "S’u arrit të merret gjendje depozite të fshehtë", "Currently indexing: %(currentRoom)s": "Indeksim aktual: %(currentRoom)s", - "Opens chat with the given user": "Hap fjalosje me përdoruesin e dhënë", "You've successfully verified your device!": "E verifikuat me sukses pajisjen tuaj!", "To continue, use Single Sign On to prove your identity.": "Që të vazhdohet, përdorni Hyrje Njëshe, që të provoni identitetin tuaj.", "Confirm to continue": "Ripohojeni që të vazhdohet", "Click the button below to confirm your identity.": "Klikoni mbi butonin më poshtë që të ripohoni identitetin tuaj.", "Confirm encryption setup": "Ripohoni ujdisje fshehtëzimi", "Click the button below to confirm setting up encryption.": "Klikoni mbi butonin më poshtë që të ripohoni ujdisjen e fshehtëzimit.", - "Dismiss read marker and jump to bottom": "Mos merr parasysh piketë leximi dhe hidhu te fundi", - "Jump to oldest unread message": "Hidhu te mesazhi më i vjetër i palexuar", - "Upload a file": "Ngarkoni një kartelë", "IRC display name width": "Gjerësi shfaqjeje emrash IRC", "Size must be a number": "Madhësia duhet të jetë një numër", "Custom font size can only be between %(min)s pt and %(max)s pt": "Madhësia vetjake për shkronjat mund të jetë vetëm mes vlerave %(min)s pt dhe %(max)s pt", @@ -1233,10 +1190,6 @@ "Please view existing bugs on Github first. No match? Start a new one.": "Ju lutemi, shihni të meta ekzistuese në Github së pari. S’ka përputhje? Nisni një të re.", "Comment": "Koment", "Feedback sent": "Përshtypjet u dërguan", - "Now, let's help you get started": "Tani, le t’ju ndihmojmë për t’ia filluar", - "Welcome %(name)s": "Mirë se vini %(name)s", - "Add a photo so people know it's you.": "Shtoni një foto, që njerëzit ta dinë se jeni ju.", - "Great, that'll help people know it's you": "Bukur, kjo do t’i ndihmojë njerëzit ta dinë se jeni ju", "Invite someone using their name, email address, username (like ) or share this room.": "Ftoni dikë duke përdorur emrin e tij, adresën email, emrin e përdoruesit (bie fjala, ) ose ndani me të këtë dhomë.", "Start a conversation with someone using their name, email address or username (like ).": "Nisni një bisedë me dikë duke përdorur emrin e tij, adresën email ose emrin e përdoruesit (bie fjala, ).", "Invite by email": "Ftojeni me email", @@ -1327,7 +1280,6 @@ "Martinique": "Martinikë", "Denmark": "Danimarkë", "Bahrain": "Bahrein", - "Places the call in the current room on hold": "E kalon në pritje thirrjen në dhomën aktuale", "Finland": "Finlandë", "Papua New Guinea": "Papua Guinea e Re", "Botswana": "Botsvanë", @@ -1419,7 +1371,6 @@ "Niue": "Niue", "Iraq": "Irak", "Bermuda": "Bermuda", - "Takes the call in the current room off hold": "E heq nga pritja thirrjen në dhomën aktuale", "French Polynesia": "Polinezia Frënge", "Mauritius": "Mauricius", "Grenada": "Grenadë", @@ -1547,7 +1498,6 @@ "Change which room you're viewing": "Ndryshoni cilën dhomë shihni", "Send stickers into your active room": "Dërgoni ngjitës në dhomën tuaj aktive", "Send stickers into this room": "Dërgoni ngjitës në këtë dhomë", - "Go to Home View": "Kaloni te Pamja Kreu", "Enter phone number": "Jepni numër telefoni", "Enter email address": "Jepni adresë email-i", "Decline All": "Hidhi Krejt Poshtë", @@ -1571,11 +1521,6 @@ "New here? Create an account": "I sapoardhur? Krijoni një llogari", "Got an account? Sign in": "Keni një llogari? Hyni", "Send images as you in this room": "Dërgoni figura si ju, në këtë dhomë", - "Decide where your account is hosted": "Vendosni se ku të ruhet llogaria juaj", - "Host account on": "Strehoni llogari në", - "Already have an account? Sign in here": "Keni tashmë një llogari? Bëni hyrjen këtu", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Ose %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Vazhdo me %(ssoButtons)s", "New? Create account": "I ri? Krijoni llogari", "There was a problem communicating with the homeserver, please try again later.": "Pati një problem në komunikimin me shërbyesin Home, ju lutemi, riprovoni më vonë.", "Use email to optionally be discoverable by existing contacts.": "Përdorni email që, nëse doni, të mund t’ju gjejnë kontaktet ekzistues.", @@ -1628,7 +1573,6 @@ "Channel: ": "Kanal: ", "Workspace: ": "Hapësirë pune: ", "Change which room, message, or user you're viewing": "Ndryshoni cilën dhomë, mesazh ose përdorues po shihni", - "Search (must be enabled)": "Kërkim (duhet të jetë i aktivizuar)", "Something went wrong in confirming your identity. Cancel and try again.": "Diç shkoi ters me ripohimin e identitetit tuaj. Anulojeni dhe riprovoni.", "Remember this": "Mbaje mend këtë", "The widget will verify your user ID, but won't be able to perform actions for you:": "Ky widget do të verifikojë ID-në tuaj të përdoruesit, por s’do të jetë në gjendje të kryejë veprime për ju:", @@ -1636,8 +1580,6 @@ "Set my room layout for everyone": "Ujdise skemën e dhomës time për këdo", "Use app": "Përdorni aplikacionin", "Use app for a better experience": "Për një punim më të mirë, përdorni aplikacionin", - "Converts the DM to a room": "E shndërron DM-në në një dhomë", - "Converts the room to a DM": "E shndërron dhomën në një DM", "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.": "I kërkuam shfletuesit të mbajë mend cilin shërbyes Home përdorni, për t’ju lënë të bëni hyrje, por për fat të keq, shfletuesi juaj e ka harruar këtë. Kaloni te faqja e hyrjeve dhe riprovoni.", "We couldn't log you in": "S’ju nxorëm dot nga llogaria juaj", "Recently visited rooms": "Dhoma të vizituara së fundi", @@ -1778,7 +1720,6 @@ "No microphone found": "S’u gjet mikrofon", "We were unable to access your microphone. Please check your browser settings and try again.": "S’qemë në gjendje të përdorim mikrofonin tuaj. Ju lutemi, kontrolloni rregullimet e shfletuesit tuaj dhe riprovoni.", "Unable to access your microphone": "S’arrihet të përdoret mikrofoni juaj", - "Your access token gives full access to your account. Do not share it with anyone.": "Tokeni-i juaj i hyrjeve jep hyrje të plotë në llogarinë tuaj. Mos ia jepni kujt.", "Please enter a name for the space": "Ju lutemi, jepni një emër për hapësirën", "Connecting": "Po lidhet", "Message search initialisation failed": "Dështoi gatitje kërkimi mesazhesh", @@ -1934,7 +1875,6 @@ "Call declined": "Thirrja u hodh poshtë", "Stop recording": "Ndale regjistrimin", "Send voice message": "Dërgoni mesazh zanor", - "Olm version:": "Version Olm:", "More": "Më tepër", "Show sidebar": "Shfaqe anështyllën", "Hide sidebar": "Fshihe anështyllën", @@ -1958,7 +1898,6 @@ "The above, but in any room you are joined or invited to as well": "Atë më sipër, por edhe në çfarëdo dhome ku keni hyrë ose jeni ftuar", "Some encryption parameters have been changed.": "Janë ndryshuar disa parametra fshehtëzimi.", "Role in ": "Rol në ", - "Send a sticker": "Dërgoni një ngjitës", "Unknown failure": "Dështim i panjohur", "Failed to update the join rules": "S’u arrit të përditësohen rregulla hyrjeje", "Anyone in can find and join. You can select other spaces too.": "Cilido te mund ta gjejë dhe hyjë në të. Mund të përzgjidhni gjithashtu hapësira të tjera.", @@ -2065,7 +2004,6 @@ "Thread options": "Mundësi rrjedhe", "Someone already has that username, please try another.": "Dikush e ka atë emër përdoruesi, ju lutemi, provoni tjetër.", "Someone already has that username. Try another or if it is you, sign in below.": "Dikush e ka tashmë këtë emër përdoruesi. Provoni një tjetër, ose nëse jeni ju, bëni hyrjen më poshtë.", - "Own your conversations.": "Jini zot i bisedave tuaja.", "Show tray icon and minimise window to it on close": "Shfaq ikonë paneli dhe minimizo dritaren në të, kur bëhet mbyllje", "Show all threads": "Shfaqi krejt rrjedhat", "Keep discussions organised with threads": "Mbajini diskutimet të sistemuara në rrjedha", @@ -2124,7 +2062,6 @@ "Pin to sidebar": "Fiksoje në anështyllë", "Quick settings": "Rregullime të shpejta", "Recently viewed": "Parë së fundi", - "Toggle space panel": "Shfaq/Fshih panel hapësire", "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.": "Jeni i sigurt se doni të përfundohet ky pyetësor? Kjo do të shfaqë rezultatet përfundimtare të pyetësorit dhe do të ndalë votimin nga njerëzit.", "End Poll": "Përfundoje Pyetësorin", "Sorry, the poll did not end. Please try again.": "Na ndjeni, pyetësori nuk u përfundua. Ju lutemi, riprovoni.", @@ -2181,8 +2118,6 @@ "Verify this device by confirming the following number appears on its screen.": "Verifikoni këtë pajisje duke ripohuar se numri vijues shfaqet në ekranin e saj.", "Confirm the emoji below are displayed on both devices, in the same order:": "Ripohoni se emoji-t më poshtë shfaqen në të dyja pajisjet, sipas të njëjtës radhë:", "Expand map": "Zgjeroje hartën", - "No active call in this room": "S’ka thirrje aktive në këtë dhomë", - "Unable to find Matrix ID for phone number": "S’arrihet të gjendet ID Matrix ID për numrin e telefonit", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Çift (përdorues, sesion) i pavlefshëm: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Urdhri dështoi: S’arrihet të gjendet dhoma (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Adresë e panjohur dhome: %(roomAlias)s", @@ -2201,7 +2136,6 @@ "You were removed from %(roomName)s by %(memberName)s": "U hoqët %(roomName)s nga %(memberName)s", "Remove, ban, or invite people to your active room, and make you leave": "Hiqni, dëboni, ose ftoni persona te dhoma juaj aktive dhe bëni largimin tuaj", "Remove, ban, or invite people to this room, and make you leave": "Hiqni, dëboni, ose ftoni persona në këtë dhomë dhe bëni largimin tuaj", - "Open this settings tab": "Hap këtë skedë rregullimesh", "Message pending moderation": "Mesazh në pritje të moderimit", "Message pending moderation: %(reason)s": "Mesazh në pritje të moderimit: %(reason)s", "Keyboard": "Tastierë", @@ -2210,38 +2144,15 @@ "You don't have permission to view messages from before you were invited.": "S’keni leje të shihni mesazhe nga koha para se t’ju ftonin.", "Internal room ID": "ID e brendshme dhome", "Encrypted messages before this point are unavailable.": "S’mund të kihen më mesazhe të fshehtëzuar para kësaj pike.", - "Previous autocomplete suggestion": "Sugjerimi i mëparshëm për vetëplotësim", - "Next autocomplete suggestion": "Sugjerimi pasues për vetëplotësim", - "Previous room or DM": "Dhomë ose MD i mëparshëm", - "Next room or DM": "Dhomë ose MD pasues", - "Previous unread room or DM": "Dhomë ose MD i palexuar i mëparshëm", - "Next unread room or DM": "Dhomë ose MD i palexuar pasues", - "Navigate down in the room list": "Lëvizni poshtë në listën dhomave", - "Navigate up in the room list": "Lëvizni sipër në listën dhomave", - "Scroll down in the timeline": "Rrëshqitni poshtë nëpër rrjedhën kohore", - "Scroll up in the timeline": "Rrëshqitni sipër nëpër rrjedhën kohore", - "Toggle webcam on/off": "Hapni/mbyllni kamerën", - "Navigate to previous message in composer history": "Kaloni te mesazhi i mëparshëm te historiku i hartuesit", - "Navigate to next message in composer history": "Kaloni te mesazhi pasues te historiku i hartuesit", - "Jump to end of the composer": "Hidhu te fundi i hartuesit", - "Jump to start of the composer": "Hidhu te fillimi i hartuesit", - "Navigate to previous message to edit": "Kaloni te mesazhi i mëparshëm për ta përpunuar", - "Navigate to next message to edit": "Kaloni te mesazhi pasues për ta përpunuar", "You can't see earlier messages": "S’mund të shihni mesazhe më të hershëm", "Group all your rooms that aren't part of a space in one place.": "Gruponi në një vend krejt dhomat tuaja që s’janë pjesë e një hapësire.", "Group all your people in one place.": "Gruponi krejt personat tuaj në një vend.", "Group all your favourite rooms and people in one place.": "Gruponi në një vend krejt dhomat tuaja të parapëlqyera dhe personat e parapëlqyer.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Hapësirat janë mënyra për të grupuar dhoma dhe njerëz. Tok me hapësirat ku gjendeni, mundeni të përdorni edhe disa të krijuara paraprakisht.", "Unable to check if username has been taken. Try again later.": "S’arrihet të kontrollohet nëse emri i përdoruesit është zënë. Riprovoni më vonë.", - "Toggle hidden event visibility": "Ndryshoni dukshmëri akti të fshehur", - "Redo edit": "Ribëje përpunimin", - "Undo edit": "Zhbëje përpunimin", - "Jump to last message": "Kalo te mesazhi i fundit", - "Jump to first message": "Kalo te mesazhi i parë", "Pick a date to jump to": "Zgjidhni një datë ku të kalohet", "Jump to date": "Kalo te datë", "The beginning of the room": "Fillimi i dhomës", - "Force complete": "Detyro plotësimin", "This address does not point at this room": "Kjo adresë nuk shpie te kjo dhomë", "If you know what you're doing, Element is open-source, be sure to check out our GitHub (https://github.com/vector-im/element-web/) and contribute!": "Nëse e dini se ç’bëni, Element-i është me burim të hapët, mos harroni ta merrni që nga depoja jonë GitHub (https://github.com/vector-im/element-web/) dhe jepni ndihmesë!", "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "Nëse dikush ju ka thënë të kopjoni/hidhni diçka këtu, ka gjasa se po ju mashtrojnë!", @@ -2264,13 +2175,9 @@ "Open poll": "Pyetësor i hapur", "Poll type": "Lloj pyetësori", "Results will be visible when the poll is ended": "Përfundimet do të jenë të dukshme pasi të ketë përfunduar pyetësori", - "Open user settings": "Hap rregullime përdoruesi", - "Switch to space by number": "Kalo te hapësirë përmes numri", "Search Dialog": "Dialog Kërkimi", "Pinned": "I fiksuar", "Open thread": "Hape rrjedhën", - "No virtual room for this room": "S’ka dhomë virtuale për këtë dhomë", - "Switches to this room's virtual room, if it has one": "Kalohet te dhoma virtuale e kësaj dhome, në pastë", "What location type do you want to share?": "Ç’lloj vendndodhjeje doni të jepet?", "My current location": "Vendndodhja ime e tanishme", "%(brand)s could not send your location. Please try again later.": "%(brand)s s’dërgoi dot vendndodhjen tuaj. Ju lutemi, riprovoni.", @@ -2291,7 +2198,6 @@ "Unable to load map": "S’arrihet të ngarkohet hartë", "Click": "Klikim", "Can't create a thread from an event with an existing relation": "S’mund të krijohet një rrjedhë prej një akti me një marrëdhënie ekzistuese", - "Toggle Code Block": "Shfaq/Fshih Bllok Kodi", "You are sharing your live location": "Po jepni vendndodhjen tuaj aty për aty", "%(displayName)s's live location": "Vendndodhje aty për aty e %(displayName)s", "Preserve system messages": "Ruaji mesazhet e sistemit", @@ -2308,8 +2214,6 @@ "Shared a location: ": "Dha një vendndodhje: ", "Shared their location: ": "Dha vendndodhjen e vet: ", "Command error: Unable to handle slash command.": "Gabim urdhri: S’arrihet të trajtohet urdhër i dhënë me / .", - "Next recently visited room or space": "Dhoma ose hapësira pasuese vizituar së fundi", - "Previous recently visited room or space": "Dhoma ose hapësira e mëparshme vizituar së fundi", "Unsent": "Të padërguar", "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.": "Që të bëni hyrjen te shërbyes të tjerë Matrix, duke specifikuar një URL të një shërbyesi Home tjetër, mund të përdorni mundësitë vetjake për shërbyesin. Kjo ju lejon të përdorni %(brand)s në një tjetër shërbyes Home me një llogari Matrix ekzistuese.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s iu mohua leja për të sjellë vendndodhjen tuaj. Ju lutemi, lejoni përdorim vendndodhjeje, te rregullimet e shfletuesit tuaj.", @@ -2596,7 +2500,6 @@ "View list": "Shihni listën", "Hide formatting": "Fshihe formatimin", "Unverified sessions are sessions that have logged in with your credentials but have not been cross-verified.": "Sesionet e paverifikuara janë sesione ku është hyrë me kredencialet tuaja, por që nuk janë verifikuar ndërsjelltas.", - "Toggle Link": "Shfaqe/Fshihe Lidhjen", "%(downloadButton)s or %(copyButton)s": "%(downloadButton)s ose %(copyButton)s", "We're creating a room with %(names)s": "Po krijojmë një dhomë me %(names)s", "By approving access for this device, it will have full access to your account.": "Duke miratuar hyrje për këtë pajisje, ajo do të ketë hyrje të plotë në llogarinë tuaj.", @@ -2652,7 +2555,6 @@ "Allow Peer-to-Peer for 1:1 calls": "Lejo Peer-to-Peer për thirrje tek për tek", "30s forward": "30s përpara", "30s backward": "30s mbrapsht", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Urdhër zhvilluesish: Hedh tej sesionin e tanishëm të grupit me dikë dhe ujdis sesione të rinj Olm", "We were unable to start a chat with the other user.": "S’qemë në gjendje të nisim një bisedë me përdoruesin tjetër.", "Error starting verification": "Gabim në nisje verifikimi", "Change input device": "Ndryshoni pajisje dhëniesh", @@ -2775,8 +2677,6 @@ "Answered elsewhere": "Përgjigjur gjetkë", "The sender has blocked you from receiving this message": "Dërguesi ka bllokuar marrjen e këtij mesazhi nga ju", "Room directory": "Drejtori dhomash", - "Identity server is %(identityServerUrl)s": "Shërbyes identiteti është %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Shërbyes Home është %(homeserverUrl)s", "If you know a room address, try joining through that instead.": "Nëse e dini një adresë dhome, provoni të hyni përmes saj, më miër.", "You attempted to join using a room ID without providing a list of servers to join through. Room IDs are internal identifiers and cannot be used to join a room without additional information.": "U rrekët të hyni duke përdorur një ID dhome pa dhënë një listë shërbyesish përmes të cilëve të hyhet. ID-të e dhomave janë identifikues të brendshëm dhe s’mund të përdoren për të hyrë në një dhomë pa hollësi shtesë.", "Yes, it was me": "Po, unë qeshë", @@ -2799,8 +2699,6 @@ "Ignore (%(counter)s)": "Shpërfill (%(counter)s)", "Once everyone has joined, you’ll be able to chat": "Pasi të ketë ardhur gjithkush, do të jeni në gjendje të fjaloseni", "Invites by email can only be sent one at a time": "Ftesat me email mund të dërgohen vetëm një në herë", - "Could not find room": "S’u gjet dot dhomë", - "iframe has no src attribute": "iframe s’ka atribut src", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Ndodhi një gabim teksa përditësoheshin parapëlqimet tuaja për njoftime. Ju lutemi, provoni ta riaktivizoni mundësinë tuaj.", "Desktop app logo": "Stemë aplikacioni Desktop", "Use your account to continue.": "Që të vazhdohet, përdorni llogarinë tuaj.", @@ -3113,7 +3011,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[numër]", - "backspace": "Tasti Backspace" + "backspace": "Tasti Backspace", + "category_calls": "Thirrje", + "category_room_list": "Listë Dhomash", + "category_navigation": "Lëvizje", + "category_autocomplete": "Vetëplotëso", + "composer_toggle_bold": "Aktivizo/çaktivizo Të trasha", + "composer_toggle_italics": "Aktivizo/çaktivizo Të pjerrëta", + "composer_toggle_quote": "Aktivizo/çaktivizo Thonjëza", + "composer_toggle_code_block": "Shfaq/Fshih Bllok Kodi", + "composer_toggle_link": "Shfaqe/Fshihe Lidhjen", + "cancel_reply": "Anulo përgjigjen te një mesazh", + "navigate_next_message_edit": "Kaloni te mesazhi pasues për ta përpunuar", + "navigate_prev_message_edit": "Kaloni te mesazhi i mëparshëm për ta përpunuar", + "composer_jump_start": "Hidhu te fillimi i hartuesit", + "composer_jump_end": "Hidhu te fundi i hartuesit", + "composer_navigate_next_history": "Kaloni te mesazhi pasues te historiku i hartuesit", + "composer_navigate_prev_history": "Kaloni te mesazhi i mëparshëm te historiku i hartuesit", + "send_sticker": "Dërgoni një ngjitës", + "toggle_microphone_mute": "Aktivizo/çaktivizon heshtje mikrofoni", + "toggle_webcam_mute": "Hapni/mbyllni kamerën", + "dismiss_read_marker_and_jump_bottom": "Mos merr parasysh piketë leximi dhe hidhu te fundi", + "jump_to_read_marker": "Hidhu te mesazhi më i vjetër i palexuar", + "upload_file": "Ngarkoni një kartelë", + "scroll_up_timeline": "Rrëshqitni sipër nëpër rrjedhën kohore", + "scroll_down_timeline": "Rrëshqitni poshtë nëpër rrjedhën kohore", + "jump_room_search": "Hidhu te kërkim në dhomë", + "room_list_select_room": "Përzgjidhni dhomë prej listës së dhomave", + "room_list_collapse_section": "Tkurre pjesën e listës së dhomave", + "room_list_expand_section": "Zgjeroje pjesën e listës së dhomave", + "room_list_navigate_down": "Lëvizni poshtë në listën dhomave", + "room_list_navigate_up": "Lëvizni sipër në listën dhomave", + "toggle_top_left_menu": "Shfaq/fshih menunë e epërme majtas", + "toggle_right_panel": "Hap/mbyll panelin djathtas", + "keyboard_shortcuts_tab": "Hap këtë skedë rregullimesh", + "go_home_view": "Kaloni te Pamja Kreu", + "next_unread_room": "Dhomë ose MD i palexuar pasues", + "prev_unread_room": "Dhomë ose MD i palexuar i mëparshëm", + "next_room": "Dhomë ose MD pasues", + "prev_room": "Dhomë ose MD i mëparshëm", + "autocomplete_cancel": "Anulo vetëplotësim", + "autocomplete_navigate_next": "Sugjerimi pasues për vetëplotësim", + "autocomplete_navigate_prev": "Sugjerimi i mëparshëm për vetëplotësim", + "toggle_space_panel": "Shfaq/Fshih panel hapësire", + "toggle_hidden_events": "Ndryshoni dukshmëri akti të fshehur", + "jump_first_message": "Kalo te mesazhi i parë", + "jump_last_message": "Kalo te mesazhi i fundit", + "composer_undo": "Zhbëje përpunimin", + "composer_redo": "Ribëje përpunimin", + "navigate_prev_history": "Dhoma ose hapësira e mëparshme vizituar së fundi", + "navigate_next_history": "Dhoma ose hapësira pasuese vizituar së fundi", + "switch_to_space": "Kalo te hapësirë përmes numri", + "open_user_settings": "Hap rregullime përdoruesi", + "close_dialog_menu": "Mbyllni dialog ose menu konteksti", + "activate_button": "Aktivizo buton të përzgjedhur", + "composer_new_line": "Rresht i ri", + "autocomplete_force": "Detyro plotësimin", + "search": "Kërkim (duhet të jetë i aktivizuar)" }, "credits": { "default_cover_photo": "Fotoja kopertinë parazgjedhje © Jesús Roncero përdoret sipas kushteve të CC-BY-SA 4.0.", @@ -3238,7 +3192,16 @@ "download_google_play": "Merreni nga Google Play", "download_f_droid": "Merreni në F-Droid", "apple_trademarks": "App Store® dhee Apple logo® janë shenja tregtare të Apple Inc.", - "google_trademarks": "Google Play dhe stema Google Play janë shenja tregtare të Google LLC." + "google_trademarks": "Google Play dhe stema Google Play janë shenja tregtare të Google LLC.", + "has_avatar_label": "Bukur, kjo do t’i ndihmojë njerëzit ta dinë se jeni ju", + "no_avatar_label": "Shtoni një foto, që njerëzit ta dinë se jeni ju.", + "welcome_user": "Mirë se vini %(name)s", + "welcome_detail": "Tani, le t’ju ndihmojmë për t’ia filluar", + "intro_welcome": "Mirë se vini te %(appName)s", + "intro_byline": "Jini zot i bisedave tuaja.", + "send_dm": "Dërgoni Mesazh të Drejtpërdrejtë", + "explore_rooms": "Eksploroni Dhoma Publike", + "create_room": "Krijoni një Fjalosje Grupi" }, "settings": { "show_breadcrumbs": "Shfaq te lista e dhomave shkurtore për te dhoma të para së fundi", @@ -3782,7 +3745,24 @@ "category_admin": "Përgjegjës", "category_advanced": "Të mëtejshme", "category_effects": "Efekte", - "category_other": "Tjetër" + "category_other": "Tjetër", + "addwidget_missing_url": "Ju lutemi, furnizoni një URL widget-i ose kod trupëzimi", + "addwidget_iframe_missing_src": "iframe s’ka atribut src", + "addwidget_invalid_protocol": "Ju lutemi, furnizoni një URL https:// ose http:// widget-i", + "addwidget_no_permissions": "S’mund të ndryshoni widget-e në këtë dhomë.", + "converttodm": "E shndërron dhomën në një DM", + "could_not_find_room": "S’u gjet dot dhomë", + "converttoroom": "E shndërron DM-në në një dhomë", + "discardsession": "E detyron të hidhet tej sesionin e tanishëm outbound grupi në një dhomë të fshehtëzuar", + "remakeolm": "Urdhër zhvilluesish: Hedh tej sesionin e tanishëm të grupit me dikë dhe ujdis sesione të rinj Olm", + "tovirtual": "Kalohet te dhoma virtuale e kësaj dhome, në pastë", + "tovirtual_not_found": "S’ka dhomë virtuale për këtë dhomë", + "query": "Hap fjalosje me përdoruesin e dhënë", + "query_not_found_phone_number": "S’arrihet të gjendet ID Matrix ID për numrin e telefonit", + "holdcall": "E kalon në pritje thirrjen në dhomën aktuale", + "no_active_call": "S’ka thirrje aktive në këtë dhomë", + "unholdcall": "E heq nga pritja thirrjen në dhomën aktuale", + "me": "Shfaq veprimin" }, "presence": { "busy": "I zënë", @@ -3962,7 +3942,16 @@ "sign_in_with_sso": "Bëni hyrjen me hyrje njëshe", "sso": "Hyrje Njëshe", "reset_password_action": "Ricaktoni fjalëkalimin", - "reset_password_title": "Ricaktoni fjalëkalimin tuaj" + "reset_password_title": "Ricaktoni fjalëkalimin tuaj", + "continue_with_sso": "Vazhdo me %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Ose %(usernamePassword)s", + "sign_in_instead": "Keni tashmë një llogari? Bëni hyrjen këtu", + "account_clash": "Llogaria juaj e re (%(newAccountId)s) është e regjistruar, por jeni i futur në një tjetër llogari (%(loggedInUserId)s).", + "account_clash_previous_account": "Vazhdoni me llogarinë e mëparshme", + "log_in_new_account": "Bëni hyrjen te llogaria juaj e re.", + "registration_successful": "Regjistrim i Suksesshëm", + "server_picker_title": "Strehoni llogari në", + "server_picker_dialog_title": "Vendosni se ku të ruhet llogaria juaj" }, "room_list": { "sort_unread_first": "Së pari shfaq dhoma me mesazhe të palexuar", @@ -3998,5 +3987,20 @@ "report_entire_room": "Raporto krejt dhomën", "report_content_to_homeserver": "Raportoni Lëndë te Përgjegjësi i Shërbyesit Tuaj Home", "description": "Raportimi i këtij mesazhi do të shkaktojë dërgimin e 'ID-së së aktit' unike te përgjegjësi i shërbyesit tuaj Home. Nëse mesazhet në këtë dhomë fshehtëzohen, përgjegjësi i shërbyesit tuaj Home s’do të jetë në gjendje të lexojë tekstin e mesazhit apo të shohë çfarëdo kartelë apo figurë." + }, + "setting": { + "help_about": { + "brand_version": "Version %(brand)s:", + "olm_version": "Version Olm:", + "help_link": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni këtu.", + "help_link_chat_bot": "Për ndihmë rreth përdorimit të %(brand)s-it, klikoni këtu, ose nisni një fjalosje me robotin tonë duke përdorur butonin më poshtë.", + "chat_bot": "Fjalosuni me Robotin %(brand)s", + "title": "Ndihmë & Rreth", + "versions": "Versione", + "homeserver": "Shërbyes Home është %(homeserverUrl)s", + "identity_server": "Shërbyes identiteti është %(identityServerUrl)s", + "access_token_detail": "Tokeni-i juaj i hyrjeve jep hyrje të plotë në llogarinë tuaj. Mos ia jepni kujt.", + "clear_cache_reload": "Spastro fshehtinën dhe ringarko" + } } } diff --git a/src/i18n/strings/sr.json b/src/i18n/strings/sr.json index 80b45f7890..c52d52ded4 100644 --- a/src/i18n/strings/sr.json +++ b/src/i18n/strings/sr.json @@ -239,7 +239,6 @@ "Notifications": "Обавештења", "Profile": "Профил", "Account": "Налог", - "%(brand)s version:": "%(brand)s издање:", "The email address linked to your account must be entered.": "Морате унети мејл адресу која је везана за ваш налог.", "A new password must be entered.": "Морате унети нову лозинку.", "New passwords must match each other.": "Нове лозинке се морају подударати.", @@ -249,7 +248,6 @@ "Can't connect to homeserver via HTTP when an HTTPS URL is in your browser bar. Either use HTTPS or enable unsafe scripts.": "Не могу да се повежем на сервер преко ХТТП када је ХТТПС УРЛ у траци вашег прегледача. Или користите HTTPS или омогућите небезбедне скрипте.", "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.": "Не могу да се повежем на домаћи сервер. Проверите вашу интернет везу, постарајте се да је ССЛ сертификат сервера од поверења и да проширење прегледача не блокира захтеве.", "This server does not support authentication with a phone number.": "Овај сервер не подржава идентификацију преко броја мобилног.", - "Displays action": "Приказује радњу", "Define the power level of a user": "Дефинише снагу корисника", "Deops user with given id": "Укида админа за корисника са датим ИД", "Commands": "Наредбе", @@ -332,7 +330,6 @@ "Demote": "Рашчини", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Фајл „%(fileName)s“ премашује ограничење величине отпремања на овом серверу", "Unable to load! Check your network connectivity and try again.": "Не могу да учитам! Проверите повезаност и пробајте поново.", - "Forces the current outbound group session in an encrypted room to be discarded": "Присиљава одбацивање тренутне одлазне сесије групе у шифрованој соби", "Join millions for free on the largest public server": "Придружите се милионима других бесплатно на највећем јавном серверу", "Create account": "Направи налог", "Email (optional)": "Мејл (изборно)", @@ -406,7 +403,6 @@ "Light bulb": "сијалица", "Hey you. You're the best!": "Хеј! Само напред!", "Custom font size can only be between %(min)s pt and %(max)s pt": "Прилагођена величина фонта може бити између %(min)s и %(max)s тачака", - "Help & About": "Помоћ и подаци о програму", "Voice & Video": "Глас и видео", "Unable to revoke sharing for email address": "Не могу да опозовем дељење ове мејл адресе", "Unable to revoke sharing for phone number": "Не могу да опозовем дељење броја телефона", @@ -420,7 +416,6 @@ "Recent Conversations": "Недавни разговори", "Recently Direct Messaged": "Недавне директне поруке", "Looks good!": "Изгледа добро!", - "Send a Direct Message": "Пошаљи директну поруку", "Switch theme": "Промени тему", "Error upgrading room": "Грешка при надоградњи собе", "Setting up keys": "Постављам кључеве", @@ -700,13 +695,7 @@ "Unexpected error resolving homeserver configuration": "Неочекивана грешка при откривању подешавања сервера", "No homeserver URL provided": "Није наведен УРЛ сервера", "Cannot reach homeserver": "Сервер недоступан", - "Takes the call in the current room off hold": "Узима позив са чекања у тренутној соби", - "Places the call in the current room on hold": "Ставља позив на чекање у тренутној соби", - "Opens chat with the given user": "Отвара ћаскање са наведеним корисником", "Session already verified!": "Сесија је већ верификована!", - "You cannot modify widgets in this room.": "Не можете мењати виџете у овој соби.", - "Please supply a https:// or http:// widget URL": "Наведите https:// или http:// УРЛ виџета", - "Please supply a widget URL or embed code": "Наведите УРЛ виџета или убаците код", "Could not find user in room": "Не налазим корисника у соби", "Joins room with given address": "Придружује се соби са датом адресом", "Use an identity server to invite by email. Manage in Settings.": "Користите сервер идентитета за позивнице е-поштом. Управљајте у поставкама.", @@ -718,7 +707,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.": "Ако нисте ви уклонили начин опоравка, нападач можда покушава да приступи вашем налогу. Промените своју лозинку и поставите нови начин опоравка у поставкама, одмах.", "If you did this accidentally, you can setup Secure Messages on this session which will re-encrypt this session's message history with a new recovery method.": "Ако сте то случајно учинили, безбедне поруке можете подесити у овој сесији, која ће поново шифровати историју порука сесије помоћу новог начина опоравка.", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Сесија је открила да су ваша безбедносна фраза и кључ за безбедне поруке уклоњени.", - "Cancel autocomplete": "Откажи само-довршавање", "Hide sessions": "Сакриј сесије", "Room settings": "Поставке собе", "Not encrypted": "Није шифровано", @@ -730,8 +718,6 @@ "Error changing power level": "Грешка при промени нивоа снаге", "Power level": "Ниво снаге", "Explore rooms": "Истражи собе", - "Converts the room to a DM": "Претвара собу у директно дописивање", - "Converts the DM to a room": "Претвара директно дописивање у собу", "We couldn't log you in": "Не могу да вас пријавим", "Double check that your server supports the room version chosen and try again.": "Добро проверите да ли сервер подржава изабрану верзију собе и пробајте поново.", "Folder": "фасцикла", @@ -917,7 +903,6 @@ "Confirm your identity by entering your account password below.": "Потврдите свој идентитет уносом лозинке за налог испод.", "Country Dropdown": "Падајући списак земаља", "This homeserver would like to make sure you are not a robot.": "Овај кућни сервер жели да се увери да нисте робот.", - "Go to Home View": "Идите на почетни приказ", "End": "", "Deactivate account": "Деактивирај налог", "Account management": "Управљање профилом", @@ -927,10 +912,8 @@ "Your server": "Ваш сервер", "All rooms": "Све собе", "Who are you working with?": "Са ким радите?", - "Autocomplete": "Аутоматско довршавање", "This room is public": "Ова соба је јавна", "Browse": "Прегледајте", - "Versions": "Верзије", "User rules": "Корисничка правила", "Use the Desktop app to see all encrypted files": "Користи десктоп апликација да видиш све шифроване датотеке", "This widget may use cookies.": "Овај виџет може користити колачиће.", @@ -942,13 +925,6 @@ "Your user ID": "Ваша корисничка ИД", "Your display name": "Ваше име за приказ", "exists": "постоји", - "Collapse room list section": "Скупи одељак листе соба", - "Select room from the room list": "Изаберите собу са листе соба", - "Jump to room search": "Пређите на претрагу собе", - "Search (must be enabled)": "Претрага (мора бити омогућена)", - "Upload a file": "Отпремите датотеку", - "Jump to oldest unread message": "Скочите на најстарију непрочитану поруку", - "Dismiss read marker and jump to bottom": "Одбаците ознаку за читање и скочите до дна", "Not Trusted": "Није поуздано", "Ask this user to verify their session, or manually verify it below.": "Питајте овог корисника да потврди његову сесију или ручно да потврди у наставку.", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) се улоговао у нову сесију без потврђивања:", @@ -1076,7 +1052,17 @@ }, "keyboard": { "home": "Почетна", - "alt": "Алт" + "alt": "Алт", + "category_autocomplete": "Аутоматско довршавање", + "dismiss_read_marker_and_jump_bottom": "Одбаците ознаку за читање и скочите до дна", + "jump_to_read_marker": "Скочите на најстарију непрочитану поруку", + "upload_file": "Отпремите датотеку", + "jump_room_search": "Пређите на претрагу собе", + "room_list_select_room": "Изаберите собу са листе соба", + "room_list_collapse_section": "Скупи одељак листе соба", + "go_home_view": "Идите на почетни приказ", + "autocomplete_cancel": "Откажи само-довршавање", + "search": "Претрага (мора бити омогућена)" }, "composer": { "format_inline_code": "Код", @@ -1365,7 +1351,17 @@ "category_admin": "Админ", "category_advanced": "Напредно", "category_effects": "Ефекти", - "category_other": "Остало" + "category_other": "Остало", + "addwidget_missing_url": "Наведите УРЛ виџета или убаците код", + "addwidget_invalid_protocol": "Наведите https:// или http:// УРЛ виџета", + "addwidget_no_permissions": "Не можете мењати виџете у овој соби.", + "converttodm": "Претвара собу у директно дописивање", + "converttoroom": "Претвара директно дописивање у собу", + "discardsession": "Присиљава одбацивање тренутне одлазне сесије групе у шифрованој соби", + "query": "Отвара ћаскање са наведеним корисником", + "holdcall": "Ставља позив на чекање у тренутној соби", + "unholdcall": "Узима позив са чекања у тренутној соби", + "me": "Приказује радњу" }, "presence": { "online_for": "На мрежи %(duration)s", @@ -1433,5 +1429,15 @@ }, "report_content": { "report_content_to_homeserver": "Пријави садржај администратору вашег домаћег сервера" + }, + "onboarding": { + "send_dm": "Пошаљи директну поруку" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s издање:", + "title": "Помоћ и подаци о програму", + "versions": "Верзије" + } } } diff --git a/src/i18n/strings/sr_Latn.json b/src/i18n/strings/sr_Latn.json index 76d208c8e8..90ff4bad1d 100644 --- a/src/i18n/strings/sr_Latn.json +++ b/src/i18n/strings/sr_Latn.json @@ -5,7 +5,6 @@ "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", "Your %(brand)s is misconfigured": "Vaš %(brand)s nije dobro podešen", - "Chat with %(brand)s Bot": "Ćaskajte sa %(brand)s botom", "powered by Matrix": "pokreće Matriks", "Explore rooms": "Istražite sobe", "Send": "Pošalji", @@ -76,7 +75,6 @@ "This homeserver does not support login using email address.": "Ovaj server ne podržava prijavu korištenjem e-mail adrese.", "Incorrect username and/or password.": "Neispravno korisničko ime i/ili lozinka.", "This account has been deactivated.": "Ovaj nalog je dekativiran.", - "Open this settings tab": "Otvori podešavanja", "Start a group chat": "Pokreni grupni razgovor", "User is already in the room": "Korisnik je već u sobi", "common": { @@ -117,5 +115,13 @@ }, "auth": { "sso": "Jedinstvena prijava (SSO)" + }, + "keyboard": { + "keyboard_shortcuts_tab": "Otvori podešavanja" + }, + "setting": { + "help_about": { + "chat_bot": "Ćaskajte sa %(brand)s botom" + } } } diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index 7d8950418d..ce0b1303d4 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -30,7 +30,6 @@ "Decrypt %(text)s": "Avkryptera %(text)s", "Deops user with given id": "Degraderar användaren med givet ID", "Default": "Standard", - "Displays action": "Visar åtgärd", "Download %(text)s": "Ladda ner %(text)s", "Email": "E-post", "Email address": "E-postadress", @@ -92,7 +91,6 @@ "Return to login screen": "Tillbaka till inloggningsskärmen", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s har inte tillstånd att skicka aviseringar - kontrollera webbläsarens inställningar", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s fick inte tillstånd att skicka aviseringar - försök igen", - "%(brand)s version:": "%(brand)s-version:", "Room %(roomId)s not visible": "Rummet %(roomId)s är inte synligt", "%(roomName)s does not exist.": "%(roomName)s finns inte.", "%(roomName)s is not accessible at this time.": "%(roomName)s är inte tillgängligt för tillfället.", @@ -352,7 +350,6 @@ "Update any local room aliases to point to the new room": "Uppdatera lokala rumsalias att peka på det nya rummet", "Stop users from speaking in the old version of the room, and post a message advising users to move to the new room": "Hindra användare från att prata i den gamla rumsversionen och posta ett meddelande som rekommenderar användare att flytta till det nya rummet", "Put a link back to the old room at the start of the new room so people can see old messages": "Sätta en länk tillbaka till det gamla rummet i början av det nya rummet så att folk kan se gamla meddelanden", - "Forces the current outbound group session in an encrypted room to be discarded": "Tvingar den aktuella externa gruppsessionen i ett krypterat rum att överges", "Add some now": "Lägg till några nu", "Please review and accept the policies of this homeserver:": "Granska och acceptera policyn för denna hemserver:", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Innan du skickar in loggar måste du skapa ett GitHub-ärende för att beskriva problemet.", @@ -463,11 +460,6 @@ "Language and region": "Språk och region", "Account management": "Kontohantering", "General": "Allmänt", - "For help with using %(brand)s, click here.": "För hjälp med att använda %(brand)s, klicka här.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "För hjälp med att använda %(brand)s, klicka här eller starta en chatt med vår bott med knappen nedan.", - "Chat with %(brand)s Bot": "Chatta med %(brand)s-bott", - "Help & About": "Hjälp & om", - "Versions": "Versioner", "Room list": "Rumslista", "Autocomplete delay (ms)": "Autokompletteringsfördröjning (ms)", "Voice & Video": "Röst & video", @@ -501,8 +493,6 @@ "The following users may not exist": "Följande användare kanske inte existerar", "Invite anyway and never warn me again": "Bjud in ändå och varna mig aldrig igen", "Invite anyway": "Bjud in ändå", - "Please supply a https:// or http:// widget URL": "Ange en widget-URL med https:// eller http://", - "You cannot modify widgets in this room.": "Du kan inte ändra widgets i detta rum.", "Secure messages with this user are end-to-end encrypted and not able to be read by third parties.": "Säkra meddelanden med den här användaren är totalsträckskrypterade och kan inte läsas av tredje part.", "Got It": "Uppfattat", "Verify this user by confirming the following emoji appear on their screen.": "Verifiera den här användaren genom att bekräfta att följande emojier visas på deras skärm.", @@ -735,15 +725,6 @@ "Indexed messages:": "Indexerade meddelanden:", "Indexed rooms:": "Indexerade rum:", "%(doneRooms)s out of %(totalRooms)s": "%(doneRooms)s av %(totalRooms)s", - "Navigation": "Navigering", - "Calls": "Samtal", - "Room List": "Rumslista", - "Autocomplete": "Autokomplettera", - "Toggle Bold": "Växla fet stil", - "Toggle Italics": "Växla kursiv", - "Toggle Quote": "Växla citat", - "New line": "Ny rad", - "Jump to room search": "Hoppa till rumssökning", "Use Single Sign On to continue": "Använd samlad inloggning (single sign on) för att fortsätta", "Confirm adding this email address by using Single Sign On to prove your identity.": "Bekräfta tilläggning av e-postadressen genom att använda samlad inloggning för att bevisa din identitet.", "Confirm adding email": "Bekräfta tilläggning av e-postadressen", @@ -755,10 +736,8 @@ "%(name)s is requesting verification": "%(name)s begär verifiering", "Joins room with given address": "Går med i rummet med den givna adressen", "Could not find user in room": "Kunde inte hitta användaren i rummet", - "Please supply a widget URL or embed code": "Ange en widget-URL eller inbäddningskod", "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!": "VARNING: NYCKELVERIFIERING MISSLYCKADES! Den signerade nyckeln för %(userId)s och sessionen %(deviceId)s är \"%(fprint)s\" vilket inte matchar den givna nyckeln \"%(fingerprint)s\". Detta kan betyda att kommunikationen är övervakad!", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Signeringsnyckeln du gav matchar signeringsnyckeln du fick av %(userId)ss session %(deviceId)s. Sessionen markerades som verifierad.", - "Opens chat with the given user": "Öppnar en chatt med den valda användaren", "Use bots, bridges, widgets and sticker packs": "Använd bottar, bryggor, widgets och dekalpaket", "You signed in to a new session without verifying it:": "Du loggade in i en ny session utan att verifiera den:", "Verify your other session using one of the options below.": "Verifiera din andra session med ett av alternativen nedan.", @@ -833,7 +812,6 @@ "Custom font size can only be between %(min)s pt and %(max)s pt": "Anpassad teckenstorlek kan bara vara mellan %(min)s pt och %(max)s pt", "Use between %(min)s pt and %(max)s pt": "Använd mellan %(min)s pt och %(max)s pt", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Samtyck till identitetsserverns (%(serverName)s) användarvillkor för att låta dig själv vara upptäckbar med e-postadress eller telefonnummer.", - "Clear cache and reload": "Rensa cache och ladda om", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "För att rapportera ett Matrix-relaterat säkerhetsproblem, vänligen läs Matrix.orgs riktlinjer för säkerhetspublicering.", "Ignored/Blocked": "Ignorerade/blockerade", "Error adding ignored user/server": "Fel vid tilläggning av användare/server", @@ -1088,10 +1066,6 @@ "Sign in with SSO": "Logga in med SSO", "No files visible in this room": "Inga filer synliga i det här rummet", "Attach files from chat or just drag and drop them anywhere in a room.": "Bifoga filer från chatten eller dra och släpp dem vart som helst i rummet.", - "Welcome to %(appName)s": "Välkommen till %(appName)s", - "Send a Direct Message": "Skicka ett direktmeddelande", - "Explore Public Rooms": "Utforska offentliga rum", - "Create a Group Chat": "Skapa en gruppchatt", "Explore rooms": "Utforska rum", "%(creator)s created and configured the room.": "%(creator)s skapade och konfigurerade rummet.", "You have %(count)s unread notifications in a prior version of this room.": { @@ -1113,10 +1087,6 @@ "This account has been deactivated.": "Det här kontot har avaktiverats.", "Failed to perform homeserver discovery": "Misslyckades att genomföra hemserverupptäckt", "If you've joined lots of rooms, this might take a while": "Om du har gått med i många rum kan det här ta ett tag", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Ditt nya konto (%(newAccountId)s) är registrerat, men du är redan inloggad på ett annat konto (%(loggedInUserId)s).", - "Continue with previous account": "Fortsätt med de tidigare kontot", - "Log in to your new account.": "Logga in i ditt nya konto.", - "Registration Successful": "Registrering lyckades", "Failed to re-authenticate due to a homeserver problem": "Misslyckades att återautentisera p.g.a. ett hemserverproblem", "Failed to re-authenticate": "Misslyckades att återautentisera", "Enter your password to sign in and regain access to your account.": "Ange ditt lösenord för att logga in och återfå tillgång till ditt konto.", @@ -1170,19 +1140,6 @@ "Currently indexing: %(currentRoom)s": "Indexerar för närvarande: %(currentRoom)s", "%(brand)s is securely caching encrypted messages locally for them to appear in search results:": "%(brand)s cachar säkert krypterade meddelanden lokalt för att de ska visas i sökresultat:", "Message downloading sleep time(ms)": "Vilotid för meddelandenedladdning (ms)", - "Cancel replying to a message": "Avbryt svar på ett meddelande", - "Toggle microphone mute": "Växla mikrofontystning", - "Dismiss read marker and jump to bottom": "Avfärda läsmarkering och hoppa till botten", - "Jump to oldest unread message": "Hoppa till äldsta olästa meddelandet", - "Upload a file": "Ladda upp en fil", - "Select room from the room list": "Välj rum från rumslistan", - "Collapse room list section": "Kollapsa rumslistsektionen", - "Expand room list section": "Expandera rumslistsektionen", - "Toggle the top left menu": "Växla menyn högst upp till vänster", - "Close dialog or context menu": "Stäng dialogrutan eller snabbmenyn", - "Activate selected button": "Aktivera den valda knappen", - "Toggle right panel": "Växla högerpanelen", - "Cancel autocomplete": "Stäng autokomplettering", "Unknown App": "Okänd app", "Not encrypted": "Inte krypterad", "Room settings": "Rumsinställningar", @@ -1278,10 +1235,6 @@ "Afghanistan": "Afghanistan", "United States": "USA", "%(creator)s created this DM.": "%(creator)s skapade den här DM:en.", - "Now, let's help you get started": "Låt oss hjälpa dig komma igång", - "Welcome %(name)s": "Välkommen %(name)s", - "Add a photo so people know it's you.": "Lägg till en bild för att folk ska veta att det är du.", - "Great, that'll help people know it's you": "Fantastiskt, det kommer att hjälpa folk att veta att det är du", "Invite someone using their name, email address, username (like ) or share this room.": "Bjud in någon med deras namn, e-postadress eller användarnamn (som ) eller dela det här rummet.", "Start a conversation with someone using their name, email address or username (like ).": "Starta en konversation med någon med deras namn, e-postadress eller användarnamn (som ).", "Invite by email": "Bjud in via e-post", @@ -1298,8 +1251,6 @@ "Update %(brand)s": "Uppdatera %(brand)s", "Enable desktop notifications": "Aktivera skrivbordsaviseringar", "Don't miss a reply": "Missa inte ett svar", - "Takes the call in the current room off hold": "Avslutar parkering av samtalet i det nuvarande samtalet", - "Places the call in the current room on hold": "Parkerar samtalet i det aktuella rummet", "Zimbabwe": "Zimbabwe", "Zambia": "Zambia", "Yemen": "Jemen", @@ -1571,12 +1522,6 @@ "Send emotes as you in this room": "Skicka emotes som dig i det här rummet", "Just a heads up, if you don't add an email and forget your password, you could permanently lose access to your account.": "En förvarning, om du inte lägger till en e-postadress och glömmer ditt lösenord, så kan du permanent förlora åtkomst till ditt konto.", "Continuing without email": "Fortsätter utan e-post", - "Go to Home View": "Gå till hemvyn", - "Decide where your account is hosted": "Bestäm var ditt konto finns", - "Host account on": "Skapa kontot på", - "Already have an account? Sign in here": "Har du redan ett konto? Logga in här", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Eller %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Fortsätt med %(ssoButtons)s", "New? Create account": "Ny? Skapa konto", "There was a problem communicating with the homeserver, please try again later.": "Ett problem inträffade vi kommunikation med hemservern, vänligen försök igen senare.", "New here? Create an account": "Ny här? Skapa ett konto", @@ -1619,15 +1564,12 @@ "Channel: ": "Kanal: ", "Workspace: ": "Arbetsyta: ", "Change which room, message, or user you're viewing": "Ändra vilket rum, vilket meddelande eller vilken användare du ser", - "Converts the DM to a room": "Konverterar DMet till ett rum", - "Converts the room to a DM": "Konverterar rummet till ett DM", "Use app for a better experience": "Använd appen för en bättre upplevelse", "Use app": "Använd app", "Great! This Security Phrase looks strong enough.": "Fantastiskt! Den här säkerhetsfrasen ser tillräckligt stark ut.", "Confirm your Security Phrase": "Bekräfta din säkerhetsfras", "A new Security Phrase and key for Secure Messages have been detected.": "En ny säkerhetsfras och -nyckel för säkra meddelanden har detekterats.", "This session has detected that your Security Phrase and key for Secure Messages have been removed.": "Den här sessionen har detekterat att din säkerhetsfras och -nyckel för säkra meddelanden har tagits bort.", - "Search (must be enabled)": "Sök (måste vara aktiverat)", "Unable to access secret storage. Please verify that you entered the correct Security Phrase.": "Kan inte komma åt hemlig lagring. Vänligen verifiera att du angav rätt säkerhetsfras.", "Security Key mismatch": "Säkerhetsnyckeln matchade inte", "Backup could not be decrypted with this Security Key: please verify that you entered the correct Security Key.": "Säkerhetskopian kunde inte avkrypteras med den här säkerhetsnyckeln: vänligen verifiera att du har angett rätt säkerhetsnyckel.", @@ -1785,7 +1727,6 @@ "No microphone found": "Ingen mikrofon hittad", "We were unable to access your microphone. Please check your browser settings and try again.": "Vi kunde inte komma åt din mikrofon. Vänligen kolla dina webbläsarinställningar och försök igen.", "Unable to access your microphone": "Kan inte komma åt din mikrofon", - "Your access token gives full access to your account. Do not share it with anyone.": "Din åtkomsttoken ger full åtkomst till ditt konto. Dela den inte med någon.", "Please enter a name for the space": "Vänligen ange ett namn för utrymmet", "Connecting": "Ansluter", "Space Autocomplete": "Utrymmesautokomplettering", @@ -1840,7 +1781,6 @@ "Code blocks": "Kodblock", "Displaying time": "Tidvisning", "Keyboard shortcuts": "Tangentbordsgenvägar", - "Olm version:": "Olm-version:", "There was an error loading your notification settings.": "Ett fel inträffade när dina aviseringsinställningar laddades.", "Mentions & keywords": "Omnämnanden & nyckelord", "Global": "Globalt", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "Det ovanstående, men i vilket som helst rum du är med i eller inbjuden till också", "Some encryption parameters have been changed.": "Vissa krypteringsparametrar har ändrats.", "Role in ": "Roll i ", - "Send a sticker": "Skicka en dekal", "Unknown failure": "Okänt fel", "Failed to update the join rules": "Misslyckades att uppdatera regler för att gå med", "Select the roles required to change various parts of the space": "Välj de roller som krävs för att ändra olika delar av utrymmet", @@ -2069,7 +2008,6 @@ }, "Someone already has that username, please try another.": "Någon annan har redan det användarnamnet, vänligen pröva ett annat.", "Someone already has that username. Try another or if it is you, sign in below.": "Någon annan har redan det användarnamnet. Pröva ett annat, eller om det är ditt, logga in nedan.", - "Own your conversations.": "Äg dina konversationer.", "%(spaceName)s and %(count)s others": { "one": "%(spaceName)s och %(count)s till", "other": "%(spaceName)s och %(count)s till" @@ -2091,8 +2029,6 @@ "To view all keyboard shortcuts, click here.": "För att se alla tangentbordsgenvägar, klicka här.", "Show tray icon and minimise window to it on close": "Visa ikon i systembrickan och minimera programmet till den när fönstret stängs", "Large": "Stor", - "No active call in this room": "Inget aktivt samtal i det här rummet", - "Unable to find Matrix ID for phone number": "Kunde inte hitta Matrix-ID för telefonnumret", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Okänt (användare, session)-par: (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Kommandot misslyckades: Kunde inte hitta rummet (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Okänd rumsadress: %(roomAlias)s", @@ -2202,31 +2138,6 @@ "This address does not point at this room": "Den här adressen pekar inte på någon rum", "Missing room name or separator e.g. (my-room:domain.org)": "Rumsnamn eller -separator saknades, t.ex. (mitt-rum:domän.org)", "Missing domain separator e.g. (:domain.org)": "Domänseparator saknades, t.ex. (:domän.org)", - "Redo edit": "Gör om redigering", - "Force complete": "Tvinga komplettering", - "Undo edit": "Ångra redigering", - "Jump to last message": "Hoppa till sista meddelandet", - "Jump to first message": "Hoppa till första meddelandet", - "Toggle hidden event visibility": "Växla synlighet för dolda händelser", - "Toggle space panel": "Växla utrymmespanel", - "Previous autocomplete suggestion": "Förra autokompletteringsförslaget", - "Next autocomplete suggestion": "Nästa autokompletteringsförslag", - "Previous room or DM": "Förra rummet eller DM:en", - "Next room or DM": "Nästa rum eller DM", - "Previous unread room or DM": "Förra olästa rummet eller DM:en", - "Next unread room or DM": "Nästa olästa rum eller DM", - "Open this settings tab": "Öppna den här inställningsfliken", - "Navigate down in the room list": "Navigera ner i rumslistan", - "Navigate up in the room list": "Navigera upp i rumslistan", - "Scroll down in the timeline": "Skrolla ner i tidslinjen", - "Scroll up in the timeline": "Skrolla upp i tidslinjen", - "Toggle webcam on/off": "Växla webbkamera på/av", - "Navigate to previous message in composer history": "Navigera till förra meddelandet i redigerarhistoriken", - "Navigate to next message in composer history": "Navigera till nästa meddelande i redigerarhistoriken", - "Jump to end of the composer": "Hoppa slutet av meddelanderedigeraren", - "Jump to start of the composer": "Hoppa till början av meddelanderedigeraren", - "Navigate to previous message to edit": "Navigera till förra meddelandet att redigera", - "Navigate to next message to edit": "Navigera till nästa meddelande att redigera", "Your new device is now verified. Other users will see it as trusted.": "Din nya enhet är nu verifierad. Andra användare kommer att se den som betrodd.", "Your new device is now verified. It has access to your encrypted messages, and other users will see it as trusted.": "Din nya enhet är nu verifierad. Den har åtkomst till dina krypterad meddelanden, och andra användare kommer att se den som betrodd.", "Verify with another device": "Verifiera med annan enhet", @@ -2267,12 +2178,8 @@ "Open poll": "Öppen omröstning", "Poll type": "Omröstningstyp", "Results will be visible when the poll is ended": "Resultat kommer att visas när omröstningen avslutas", - "Open user settings": "Öppna användarinställningar", - "Switch to space by number": "Byt till utrymme med nummer", "Pinned": "Fäst", "Open thread": "Öppna tråd", - "No virtual room for this room": "Inget virtuellt rum för det här rummet", - "Switches to this room's virtual room, if it has one": "Byter till det här rummets virtuella rum, om det har ett", "Match system": "Matcha systemet", "Developer tools": "Utvecklarverktyg", "Show polls button": "Visa omröstningsknapp", @@ -2339,10 +2246,6 @@ "Disinvite from room": "Ta bort från rum", "Remove from space": "Ta bort från utrymme", "Disinvite from space": "Ta bort inbjudan från utrymme", - "Next recently visited room or space": "Nästa nyligen besökta rum eller utrymme", - "Previous recently visited room or space": "Föregående nyligen besökta rum eller utrymme", - "Toggle Link": "Växla länk av/på", - "Toggle Code Block": "Växla kodblock av/på", "Tip: Use “%(replyInThread)s” when hovering over a message.": "Tips: Välj \"%(replyInThread)s\" när du håller över ett meddelande.", "Threads help keep your conversations on-topic and easy to track.": "Trådar underlättar för att hålla konversationer till ämnet och gör dem lättare att följa.", "Reply to an ongoing thread or use “%(replyInThread)s” when hovering over a message to start a new one.": "Svara i en pågående tråd eller använd \"%(replyInThread)s\" när du håller över ett meddelande för att starta en ny tråd.", @@ -2464,7 +2367,6 @@ }, "In %(spaceName)s.": "I utrymmet %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "I utrymmena %(space1Name)s och %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Utvecklarkommando: Slänger den nuvarande utgående gruppsessionen och sätter upp nya Olm-sessioner", "Stop and close": "Sluta och stäng", "You can't disable this later. The room will be encrypted but the embedded call will not.": "Du kan inte inaktivera detta senare. Rummet kommer att vara krypterat men det inbäddade samtalet kommer inte det.", "Online community members": "Online-gemenskapsmedlemmar", @@ -2780,16 +2682,12 @@ "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", - "Could not find room": "Kunde inte hitta rummet", - "iframe has no src attribute": "iframe:en har ingen src-attribut", "Can currently only be enabled via config.json": "Kan för närvarande endast aktiveras via config.json", "Show avatars in user, room and event mentions": "Visa avatarer i användar-, rums- och händelseomnämnanden", "Requires your server to support the stable version of MSC3827": "Kräver att din server stöder den stabila versionen av MSC3827", "If you know a room address, try joining through that instead.": "Om du känner till en rumsadress, försök gå med via den istället.", "You attempted to join using a room ID without providing a list of servers to join through. Room IDs are internal identifiers and cannot be used to join a room without additional information.": "Du försökte gå med med ett rums-ID utan att tillhandahålla en lista över servrar att gå med via. Rums-ID:n är interna identifierare och kan inte användas för att gå med i ett rum utan ytterligare information.", "Room directory": "Rumskatalog", - "Identity server is %(identityServerUrl)s": "Identitetsservern är %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Hemservern är %(homeserverUrl)s", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Ett fel uppstod när du uppdaterade dina aviseringsinställningar. Pröva att växla alternativet igen.", "Verify Session": "Verifiera session", "Ignore (%(counter)s)": "Ignorera (%(counter)s)", @@ -3149,7 +3047,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[nummer]", - "backspace": "Backsteg" + "backspace": "Backsteg", + "category_calls": "Samtal", + "category_room_list": "Rumslista", + "category_navigation": "Navigering", + "category_autocomplete": "Autokomplettera", + "composer_toggle_bold": "Växla fet stil", + "composer_toggle_italics": "Växla kursiv", + "composer_toggle_quote": "Växla citat", + "composer_toggle_code_block": "Växla kodblock av/på", + "composer_toggle_link": "Växla länk av/på", + "cancel_reply": "Avbryt svar på ett meddelande", + "navigate_next_message_edit": "Navigera till nästa meddelande att redigera", + "navigate_prev_message_edit": "Navigera till förra meddelandet att redigera", + "composer_jump_start": "Hoppa till början av meddelanderedigeraren", + "composer_jump_end": "Hoppa slutet av meddelanderedigeraren", + "composer_navigate_next_history": "Navigera till nästa meddelande i redigerarhistoriken", + "composer_navigate_prev_history": "Navigera till förra meddelandet i redigerarhistoriken", + "send_sticker": "Skicka en dekal", + "toggle_microphone_mute": "Växla mikrofontystning", + "toggle_webcam_mute": "Växla webbkamera på/av", + "dismiss_read_marker_and_jump_bottom": "Avfärda läsmarkering och hoppa till botten", + "jump_to_read_marker": "Hoppa till äldsta olästa meddelandet", + "upload_file": "Ladda upp en fil", + "scroll_up_timeline": "Skrolla upp i tidslinjen", + "scroll_down_timeline": "Skrolla ner i tidslinjen", + "jump_room_search": "Hoppa till rumssökning", + "room_list_select_room": "Välj rum från rumslistan", + "room_list_collapse_section": "Kollapsa rumslistsektionen", + "room_list_expand_section": "Expandera rumslistsektionen", + "room_list_navigate_down": "Navigera ner i rumslistan", + "room_list_navigate_up": "Navigera upp i rumslistan", + "toggle_top_left_menu": "Växla menyn högst upp till vänster", + "toggle_right_panel": "Växla högerpanelen", + "keyboard_shortcuts_tab": "Öppna den här inställningsfliken", + "go_home_view": "Gå till hemvyn", + "next_unread_room": "Nästa olästa rum eller DM", + "prev_unread_room": "Förra olästa rummet eller DM:en", + "next_room": "Nästa rum eller DM", + "prev_room": "Förra rummet eller DM:en", + "autocomplete_cancel": "Stäng autokomplettering", + "autocomplete_navigate_next": "Nästa autokompletteringsförslag", + "autocomplete_navigate_prev": "Förra autokompletteringsförslaget", + "toggle_space_panel": "Växla utrymmespanel", + "toggle_hidden_events": "Växla synlighet för dolda händelser", + "jump_first_message": "Hoppa till första meddelandet", + "jump_last_message": "Hoppa till sista meddelandet", + "composer_undo": "Ångra redigering", + "composer_redo": "Gör om redigering", + "navigate_prev_history": "Föregående nyligen besökta rum eller utrymme", + "navigate_next_history": "Nästa nyligen besökta rum eller utrymme", + "switch_to_space": "Byt till utrymme med nummer", + "open_user_settings": "Öppna användarinställningar", + "close_dialog_menu": "Stäng dialogrutan eller snabbmenyn", + "activate_button": "Aktivera den valda knappen", + "composer_new_line": "Ny rad", + "autocomplete_force": "Tvinga komplettering", + "search": "Sök (måste vara aktiverat)" }, "credits": { "default_cover_photo": "Det förvalda omslagsfotot är © Jesús Roncero och används under villkoren i CC-BY-SA 4.0.", @@ -3274,7 +3228,16 @@ "download_google_play": "Hämta den på Google Play", "download_f_droid": "Hämta den på F-Droid", "apple_trademarks": "App Store® och Apple-loggan® är varumärken som tillhör Apple Inc.", - "google_trademarks": "Google Play och Google Play-loggan är varumärken som tillhör Google LLC." + "google_trademarks": "Google Play och Google Play-loggan är varumärken som tillhör Google LLC.", + "has_avatar_label": "Fantastiskt, det kommer att hjälpa folk att veta att det är du", + "no_avatar_label": "Lägg till en bild för att folk ska veta att det är du.", + "welcome_user": "Välkommen %(name)s", + "welcome_detail": "Låt oss hjälpa dig komma igång", + "intro_welcome": "Välkommen till %(appName)s", + "intro_byline": "Äg dina konversationer.", + "send_dm": "Skicka ett direktmeddelande", + "explore_rooms": "Utforska offentliga rum", + "create_room": "Skapa en gruppchatt" }, "settings": { "show_breadcrumbs": "Visa genvägar till nyligen visade rum över rumslistan", @@ -3828,7 +3791,24 @@ "category_admin": "Administratör", "category_advanced": "Avancerat", "category_effects": "Effekter", - "category_other": "Annat" + "category_other": "Annat", + "addwidget_missing_url": "Ange en widget-URL eller inbäddningskod", + "addwidget_iframe_missing_src": "iframe:en har ingen src-attribut", + "addwidget_invalid_protocol": "Ange en widget-URL med https:// eller http://", + "addwidget_no_permissions": "Du kan inte ändra widgets i detta rum.", + "converttodm": "Konverterar rummet till ett DM", + "could_not_find_room": "Kunde inte hitta rummet", + "converttoroom": "Konverterar DMet till ett rum", + "discardsession": "Tvingar den aktuella externa gruppsessionen i ett krypterat rum att överges", + "remakeolm": "Utvecklarkommando: Slänger den nuvarande utgående gruppsessionen och sätter upp nya Olm-sessioner", + "tovirtual": "Byter till det här rummets virtuella rum, om det har ett", + "tovirtual_not_found": "Inget virtuellt rum för det här rummet", + "query": "Öppnar en chatt med den valda användaren", + "query_not_found_phone_number": "Kunde inte hitta Matrix-ID för telefonnumret", + "holdcall": "Parkerar samtalet i det aktuella rummet", + "no_active_call": "Inget aktivt samtal i det här rummet", + "unholdcall": "Avslutar parkering av samtalet i det nuvarande samtalet", + "me": "Visar åtgärd" }, "presence": { "busy": "Upptagen", @@ -4009,7 +3989,16 @@ "sign_in_with_sso": "Logga in med samlad inloggning", "sso": "Samlad inloggning", "reset_password_action": "Återställ lösenord", - "reset_password_title": "Återställ ditt lösenord" + "reset_password_title": "Återställ ditt lösenord", + "continue_with_sso": "Fortsätt med %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Eller %(usernamePassword)s", + "sign_in_instead": "Har du redan ett konto? Logga in här", + "account_clash": "Ditt nya konto (%(newAccountId)s) är registrerat, men du är redan inloggad på ett annat konto (%(loggedInUserId)s).", + "account_clash_previous_account": "Fortsätt med de tidigare kontot", + "log_in_new_account": "Logga in i ditt nya konto.", + "registration_successful": "Registrering lyckades", + "server_picker_title": "Skapa kontot på", + "server_picker_dialog_title": "Bestäm var ditt konto finns" }, "room_list": { "sort_unread_first": "Visa rum med olästa meddelanden först", @@ -4045,5 +4034,20 @@ "report_entire_room": "Rapportera hela rummet", "report_content_to_homeserver": "Rapportera innehåll till din hemserveradministratör", "description": "Att rapportera det här meddelandet kommer att skicka dess unika 'händelse-ID' till administratören för din hemserver. Om meddelanden i det här rummet är krypterade kommer din hemserveradministratör inte att kunna läsa meddelandetexten eller se några filer eller bilder." + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s-version:", + "olm_version": "Olm-version:", + "help_link": "För hjälp med att använda %(brand)s, klicka här.", + "help_link_chat_bot": "För hjälp med att använda %(brand)s, klicka här eller starta en chatt med vår bott med knappen nedan.", + "chat_bot": "Chatta med %(brand)s-bott", + "title": "Hjälp & om", + "versions": "Versioner", + "homeserver": "Hemservern är %(homeserverUrl)s", + "identity_server": "Identitetsservern är %(identityServerUrl)s", + "access_token_detail": "Din åtkomsttoken ger full åtkomst till ditt konto. Dela den inte med någon.", + "clear_cache_reload": "Rensa cache och ladda om" + } } } diff --git a/src/i18n/strings/th.json b/src/i18n/strings/th.json index d13d5a98c0..354156f4ef 100644 --- a/src/i18n/strings/th.json +++ b/src/i18n/strings/th.json @@ -9,7 +9,6 @@ "Low priority": "ความสำคัญต่ำ", "Profile": "โปรไฟล์", "Reason": "เหตุผล", - "%(brand)s version:": "เวอร์ชัน %(brand)s:", "Notifications": "การแจ้งเตือน", "Operation failed": "การดำเนินการล้มเหลว", "powered by Matrix": "ใช้เทคโนโลยี Matrix", @@ -529,5 +528,10 @@ }, "auth": { "sso": "ลงชื่อเข้าใช้เพียงครั้งเดียว" + }, + "setting": { + "help_about": { + "brand_version": "เวอร์ชัน %(brand)s:" + } } } diff --git a/src/i18n/strings/tr.json b/src/i18n/strings/tr.json index b756d1bcc8..b12e68304c 100644 --- a/src/i18n/strings/tr.json +++ b/src/i18n/strings/tr.json @@ -32,7 +32,6 @@ "Decrypt %(text)s": "%(text)s metninin şifresini çöz", "Deops user with given id": "ID'leriyle birlikte , düşürülmüş kullanıcılar", "Default": "Varsayılan", - "Displays action": "Eylemi görüntüler", "Download %(text)s": "%(text)s metnini indir", "Email": "E-posta", "Email address": "E-posta Adresi", @@ -92,7 +91,6 @@ "Return to login screen": "Giriş ekranına dön", "%(brand)s does not have permission to send you notifications - please check your browser settings": "%(brand)s size bildirim gönderme iznine sahip değil - lütfen tarayıcı ayarlarınızı kontrol edin", "%(brand)s was not given permission to send notifications - please try again": "%(brand)s'a bildirim gönderme izni verilmedi - lütfen tekrar deneyin", - "%(brand)s version:": "%(brand)s versiyon:", "Room %(roomId)s not visible": "%(roomId)s odası görünür değil", "%(roomName)s does not exist.": "%(roomName)s mevcut değil.", "%(roomName)s is not accessible at this time.": "%(roomName)s şu anda erişilebilir değil.", @@ -353,9 +351,6 @@ "This account has been deactivated.": "Hesap devre dışı bırakıldı.", "Create account": "Yeni hesap", "Unable to query for supported registration methods.": "Desteklenen kayıt yöntemleri için sorgulama yapılamıyor.", - "Continue with previous account": "Önceki hesapla devam et", - "Log in to your new account.": "Yeni hesabınızla Oturum açın.", - "Registration Successful": "Kayıt Başarılı", "Forgotten your password?": "Parolanızı mı unuttunuz?", "Sign in and regain access to your account.": "Oturum açın ve yeniden hesabınıza ulaşın.", "You do not have permission to start a conference call in this room": "Bu odada bir konferans başlatmak için izniniz yok", @@ -363,7 +358,6 @@ "The server does not support the room version specified.": "Belirtilen oda sürümünü sunucu desteklemiyor.", "Unable to create widget.": "Görsel bileşen oluşturulamıyor.", "Use an identity server to invite by email. Manage in Settings.": "E-posta ile davet etmek için bir kimlik sunucusu kullan. Ayarlardan Yönet.", - "You cannot modify widgets in this room.": "Bu odadaki görsel bileşenleri değiştiremezsiniz.", "This homeserver has exceeded one of its resource limits.": "Bu anasunucu kaynak limitlerinden birini aştı.", "%(items)s and %(count)s others": { "other": "%(items)s ve diğer %(count)s", @@ -473,8 +467,6 @@ "General": "Genel", "Discovery": "Keşfet", "Check for update": "Güncelleme kontrolü", - "Help & About": "Yardım & Hakkında", - "Versions": "Sürümler", "Server rules": "Sunucu kuralları", "User rules": "Kullanıcı kuralları", "View rules": "Kuralları görüntüle", @@ -582,8 +574,6 @@ "You are still sharing your personal data on the identity server .": "Kimlik sunucusu üzerinde hala kişisel veri paylaşımı yapıyorsunuz .", "We recommend that you remove your email addresses and phone numbers from the identity server before disconnecting.": "Kimlik sunucusundan bağlantıyı kesmeden önce telefon numaranızı ve e-posta adreslerinizi silmenizi tavsiye ederiz.", "Deactivate account": "Hesabı pasifleştir", - "For help with using %(brand)s, click here.": "%(brand)s kullanarak yardım etmek için, buraya tıklayın.", - "Chat with %(brand)s Bot": "%(brand)s Bot ile Sohbet Et", "Something went wrong. Please try again or view your console for hints.": "Bir şeyler hatalı gitti. Lütfen yeniden deneyin veya ipuçları için konsolunuza bakın.", "Please try again or view your console for hints.": "Lütfen yeniden deneyin veya ipuçları için konsolunuza bakın.", "None": "Yok", @@ -646,7 +636,6 @@ "Names and surnames by themselves are easy to guess": "Adlar ve soyadlar kendi kendilerine tahmin için kolaydır", "Mirror local video feed": "Yerel video beslemesi yansısı", "Missing media permissions, click the button below to request.": "Medya izinleri eksik, alttaki butona tıkayarak talep edin.", - "Clear cache and reload": "Belleği temizle ve yeniden yükle", "Ignored/Blocked": "Yoksayılan/Bloklanan", "Error adding ignored user/server": "Yoksayılan kullanıcı/sunucu eklenirken hata", "Error subscribing to list": "Listeye abone olunurken hata", @@ -674,7 +663,6 @@ "Continue With Encryption Disabled": "Şifreleme Kapalı Şekilde Devam Et", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "%(fileName)s dosyası anasunucunun yükleme boyutu limitini aşıyor", "Double check that your server supports the room version chosen and try again.": "Seçtiğiniz oda sürümünün sunucunuz tarafından desteklenip desteklenmediğini iki kez kontrol edin ve yeniden deneyin.", - "Please supply a https:// or http:// widget URL": "Lütfen bir https:// ya da http:// olarak bir görsel bileşen URL i belirtin", "Ask your %(brand)s admin to check your config for incorrect or duplicate entries.": "%(brand)s yöneticinize yapılandırmanızın hatalı ve mükerrer girdilerini kontrol etmesi için talepte bulunun.", "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Kayıt olabilirsiniz, fakat kimlik sunucunuz çevrimiçi olana kadar bazı özellikler mevcut olmayacak. Bu uyarıyı sürekli görüyorsanız, yapılandırmanızı kontrol edin veya sunucu yöneticinizle iletişime geçin.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Parolanızı sıfırlayabilirsiniz, fakat kimlik sunucunuz çevrimiçi olana kadar bazı özellikler mevcut olmayacak. Bu uyarıyı sürekli görüyorsanız, yapılandırmanızı kontrol edin veya sunucu yöneticinizle iletişime geçin.", @@ -833,7 +821,6 @@ "Unignored user": "Reddedilmemiş kullanıcı", "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!": "UYARI: ANAHTAR DOĞRULAMASI BAŞARISIZ! %(userld)s'nin/nın %(deviceId)s oturumu için imza anahtarı \"%(fprint)s\" verilen anahtar ile uyuşmuyor \"%(fingerprint)s\". Bu iletişiminizin engellendiği anlamına gelebilir!", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Verilen imza anahtarı %(userld)s'nin/nın %(deviceld)s oturumundan gelen anahtar ile uyumlu. Oturum doğrulanmış olarak işaretlendi.", - "Forces the current outbound group session in an encrypted room to be discarded": "Şifreli bir odadaki geçerli giden grup oturumunun atılmasını zorlar", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) yeni oturuma doğrulamadan giriş yaptı:", "Ask this user to verify their session, or manually verify it below.": "Kullanıcıya oturumunu doğrulamasını söyle, ya da aşağıdan doğrula.", "Use a longer keyboard pattern with more turns": "Daha karmaşık ve uzun bir klavye deseni kullan", @@ -858,7 +845,6 @@ "%(name)s is requesting verification": "%(name)s doğrulama istiyor", "Joins room with given address": "Belirtilen adres ile odaya katılır", "Could not find user in room": "Kullanıcı odada bulunamadı", - "Opens chat with the given user": "Belirtilen kullanıcı ile sohbet başlatır", "You signed in to a new session without verifying it:": "Yeni bir oturuma, doğrulamadan oturum açtınız:", "Verify your other session using one of the options below.": "Diğer oturumunuzu aşağıdaki seçeneklerden birini kullanarak doğrulayın.", "Your homeserver has exceeded its user limit.": "Homeserver'ınız kullanıcı limitini aştı.", @@ -898,9 +884,6 @@ "Change which room you're viewing": "Görüntülediğiniz odayı değiştirin", "Send stickers into your active room": "Aktif odanıza çıkartma gönderin", "Send stickers into this room": "Bu odaya çıkartma gönderin", - "Takes the call in the current room off hold": "Mevcut odadaki aramayı beklemeden çıkarır", - "Places the call in the current room on hold": "Mevcut odadaki aramayı beklemeye alır", - "Please supply a widget URL or embed code": "Lütfen bir widget URL'si veya yerleşik kod girin", "Zimbabwe": "Zimbabve", "Zambia": "Zambiya", "Yemen": "Yemen", @@ -1139,11 +1122,6 @@ "Review terms and conditions": "Hükümler ve koşulları incele", "Terms and Conditions": "Hükümler ve koşullar", "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "%(homeserverDomain)s ana sunucusunu kullanmaya devam etmek için hüküm ve koşulları incelemeli ve kabul etmelisiniz.", - "Create a Group Chat": "Grup sohbeti başlat", - "Explore Public Rooms": "Herkese açık odaları keşfet", - "Send a Direct Message": "Direkt mesaj gönderin", - "Welcome to %(appName)s": "%(appName)s' e hoş geldiniz", - "Now, let's help you get started": "Şimdi, başlamanıza yardım edelim", "Click to view edits": "Düzenlemeleri görmek için tıkla", "Edited at %(date)s": "%(date)s tarihinde düzenlendi", "This room is a continuation of another conversation.": "Bu oda başka bir görüşmenin devamıdır.", @@ -1276,8 +1254,6 @@ "Room settings": "Oda ayarları", "Not encrypted": "Şifrelenmemiş", "Backup version:": "Yedekleme sürümü:", - "Autocomplete": "Otomatik Tamamlama", - "Navigation": "Navigasyon", "User Autocomplete": "Kullanıcı Otomatik Tamamlama", "Room Autocomplete": "Otomatik Oda Tamamlama", "Notification Autocomplete": "Otomatik Bildirim Tamamlama", @@ -1288,8 +1264,6 @@ "Switch theme": "Temayı değiştir", "Keys restored": "Anahtarlar geri yüklendi", "Submit logs": "Günlükleri kaydet", - "New line": "Yeni satır", - "Room List": "Oda listesi", "Server name": "Sunucu adı", "Your server": "Senin sunucun", "All rooms": "Tüm odalar", @@ -1299,7 +1273,6 @@ "Hold": "Beklet", "Resume": "Devam et", "Information": "Bilgi", - "Calls": "Aramalar", "Feedback": "Geri bildirim", "Accepting…": "Kabul ediliyor…", "Room avatar": "Oda avatarı", @@ -1324,8 +1297,6 @@ "%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use %(brand)s Desktop for encrypted messages to appear in search results.": "%(brand)s internet tarayıcısında çalışıyorken şifrelenmiş mesajları güvenli bir şekilde önbelleğe alamaz. Şifrelenmiş mesajların arama sonucunda görünmesi için %(brand)s Masaüstü kullanın.", "%(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, şifrelenmiş iletileri yerel olarak güvenli bir şekilde önbelleğe almak için gereken bazı bileşenlerden yoksun. Bu özelliği denemek istiyorsanız, arama bileşenlerinin eklendiği özel bir masaüstü oluşturun.", "This session is not backing up your keys, but you do have an existing backup you can restore from and add to going forward.": "Bu oturum anahtarlarınızı yedeklemiyor, ama zaten geri yükleyebileceğiniz ve ileride ekleyebileceğiniz bir yedeğiniz var.", - "Converts the room to a DM": "Odayı birebir mesajlaşmaya dönüştürür", - "Converts the DM to a room": "Birebir mesajlaşmayı odaya çevirir", "Enter a server name": "Sunucu adı girin", "Can't find this server or its room list": "Sunucuda veya oda listesinde bulunamıyor", "Add a new server": "Yeni sunucu ekle", @@ -1372,7 +1343,6 @@ "Ignoring people is done through ban lists which contain rules for who to ban. Subscribing to a ban list means the users/servers blocked by that list will be hidden from you.": "Kullanıcıları engelleme, hangi kullanıcıları engelleyeceğini belirleyen kurallar bulunduran bir engelleme listesi kullanılarak gerçekleşir. Bir engelleme listesine abone olmak, o listeden engellenen kullanıcıların veya sunucuların sizden gizlenmesi demektir.", "Add users and servers you want to ignore here. Use asterisks to have %(brand)s match any characters. For example, @bot:* would ignore all users that have the name 'bot' on any server.": "Görmezden gelmek istediğiniz kullanıcıları ya da sunucuları buraya ekleyin. %(brand)s uygulamasının herhangi bir karakteri eşleştirmesini istiyorsanız yıldız imi kullanın. Örneğin @fobar:*, \"foobar\" adlı kullanıcıların hepsini bütün sunucularda görmezden gelir.", "Please verify the room ID or address and try again.": "Lütfen oda kimliğini ya da adresini doğrulayıp yeniden deneyin.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "%(brand)s uygulamasına yardımcı olmak için buraya tıklayın ya da aşağıdaki tuşları kullanarak bot'umuzla sohbet edin.", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "Başkaları tarafından e-posta adresi ya da telefon numarası ile bulunabilmek için %(serverName)s kimlik sunucusunun Kullanım Koşullarını kabul edin.", "Using an identity server is optional. If you choose not to use an identity server, you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Bir kimlik sunucusu kullanmak isteğe bağlıdır. Eğer bir tane kullanmak istemezseniz başkaları tarafından bulunamayabilir ve başkalarını e-posta adresi ya da telefon numarası ile davet edemeyebilirsiniz.", "Disconnecting from your identity server will mean you won't be discoverable by other users and you won't be able to invite others by email or phone.": "Kimlik sunucunuz ile bağlantıyı keserseniz başkaları tarafından bulunamayabilir ve başkalarını e-posta adresi ya da telefon numarası ile davet edemeyebilirsiniz.", @@ -1462,7 +1432,6 @@ "other": "Şu cihazlardan oturumu kapatmayı onayla" }, "Current session": "Şimdiki oturum", - "Search (must be enabled)": "Arama (etkinleştirilmeli)", "common": { "about": "Hakkında", "analytics": "Analitik", @@ -1638,7 +1607,13 @@ "end": "End", "alt": "Alt", "control": "Ctrl", - "shift": "Shift" + "shift": "Shift", + "category_calls": "Aramalar", + "category_room_list": "Oda listesi", + "category_navigation": "Navigasyon", + "category_autocomplete": "Otomatik Tamamlama", + "composer_new_line": "Yeni satır", + "search": "Arama (etkinleştirilmeli)" }, "composer": { "format_bold": "Kalın", @@ -2011,7 +1986,17 @@ "category_admin": "Admin", "category_advanced": "Gelişmiş", "category_effects": "Efektler", - "category_other": "Diğer" + "category_other": "Diğer", + "addwidget_missing_url": "Lütfen bir widget URL'si veya yerleşik kod girin", + "addwidget_invalid_protocol": "Lütfen bir https:// ya da http:// olarak bir görsel bileşen URL i belirtin", + "addwidget_no_permissions": "Bu odadaki görsel bileşenleri değiştiremezsiniz.", + "converttodm": "Odayı birebir mesajlaşmaya dönüştürür", + "converttoroom": "Birebir mesajlaşmayı odaya çevirir", + "discardsession": "Şifreli bir odadaki geçerli giden grup oturumunun atılmasını zorlar", + "query": "Belirtilen kullanıcı ile sohbet başlatır", + "holdcall": "Mevcut odadaki aramayı beklemeye alır", + "unholdcall": "Mevcut odadaki aramayı beklemeden çıkarır", + "me": "Eylemi görüntüler" }, "presence": { "online_for": "%(duration)s süresince çevrimiçi", @@ -2124,7 +2109,10 @@ "auth": { "continue_with_idp": "%(provider)s ile devam et", "sign_in_with_sso": "Çoklu oturum açma ile giriş yap", - "sso": "Tek seferlik oturum aç" + "sso": "Tek seferlik oturum aç", + "account_clash_previous_account": "Önceki hesapla devam et", + "log_in_new_account": "Yeni hesabınızla Oturum açın.", + "registration_successful": "Kayıt Başarılı" }, "room_list": { "sort_unread_first": "Önce okunmamış mesajları olan odaları göster", @@ -2143,5 +2131,23 @@ "report_content": { "missing_reason": "Lütfen neden raporlama yaptığınızı belirtin.", "report_content_to_homeserver": "Ana Sunucu Yöneticinize İçeriği Raporlayın" + }, + "onboarding": { + "welcome_detail": "Şimdi, başlamanıza yardım edelim", + "intro_welcome": "%(appName)s' e hoş geldiniz", + "send_dm": "Direkt mesaj gönderin", + "explore_rooms": "Herkese açık odaları keşfet", + "create_room": "Grup sohbeti başlat" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s versiyon:", + "help_link": "%(brand)s kullanarak yardım etmek için, buraya tıklayın.", + "help_link_chat_bot": "%(brand)s uygulamasına yardımcı olmak için buraya tıklayın ya da aşağıdaki tuşları kullanarak bot'umuzla sohbet edin.", + "chat_bot": "%(brand)s Bot ile Sohbet Et", + "title": "Yardım & Hakkında", + "versions": "Sürümler", + "clear_cache_reload": "Belleği temizle ve yeniden yükle" + } } } diff --git a/src/i18n/strings/tzm.json b/src/i18n/strings/tzm.json index 01e7a15b7b..6f229bebef 100644 --- a/src/i18n/strings/tzm.json +++ b/src/i18n/strings/tzm.json @@ -44,7 +44,6 @@ "Andorra": "Andura", "Algeria": "Dzayer", "Albania": "Albanya", - "Calls": "Iɣuṛiten", "Afghanistan": "Afɣanistan", "Phone": "Atilifun", "Email": "Imayl", @@ -138,7 +137,8 @@ "escape": "Esc", "end": "End", "control": "Ctrl", - "shift": "Shift" + "shift": "Shift", + "category_calls": "Iɣuṛiten" }, "timeline": { "m.image": "yuzen %(senderDisplayName)s yat twelaft." diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json index d074ee9b62..0a49301cb3 100644 --- a/src/i18n/strings/uk.json +++ b/src/i18n/strings/uk.json @@ -132,7 +132,6 @@ "Define the power level of a user": "Вказати рівень повноважень користувача", "Deops user with given id": "Знімає повноваження оператора з користувача із вказаним ID", "Verified key": "Звірений ключ", - "Displays action": "Показ дій", "Reason": "Причина", "Default": "Типовий", "Failure to create room": "Не вдалося створити кімнату", @@ -167,7 +166,6 @@ "Demote": "Зменшити повноваження", "Failed to mute user": "Не вдалося заглушити користувача", "Failed to change power level": "Не вдалося змінити рівень повноважень", - "Chat with %(brand)s Bot": "Бесіда з %(brand)s-ботом", "The file '%(fileName)s' failed to upload.": "Не вдалося вивантажити файл '%(fileName)s'.", "The file '%(fileName)s' exceeds this homeserver's size limit for uploads": "Файл '%(fileName)s' перевищує ліміт розміру для відвантажень домашнього сервера", "The server does not support the room version specified.": "Сервер не підтримує вказану версію кімнати.", @@ -181,9 +179,6 @@ "Unable to load! Check your network connectivity and try again.": "Завантаження неможливе! Перевірте інтернет-зʼєднання та спробуйте ще.", "Use an identity server": "Використовувати сервер ідентифікації", "Use an identity server to invite by email. Manage in Settings.": "Використовувати сервер ідентифікації для запрошень через е-пошту. Керуйте у налаштуваннях.", - "Please supply a https:// or http:// widget URL": "Вкажіть посилання на віджет — https:// або http://", - "You cannot modify widgets in this room.": "Ви не можете змінювати віджет у цій кімнаті.", - "Forces the current outbound group session in an encrypted room to be discarded": "Примусово відкидає поточний вихідний груповий сеанс у зашифрованій кімнаті", "Your %(brand)s is misconfigured": "Ваш %(brand)s налаштовано неправильно", "Join the discussion": "Приєднатися до обговорення", "The conversation continues here.": "Розмова триває тут.", @@ -215,9 +210,6 @@ "For security, this session has been signed out. Please sign in again.": "З метою безпеки ваш сеанс було завершено. Увійдіть знову.", "Error upgrading room": "Помилка поліпшення кімнати", "Double check that your server supports the room version chosen and try again.": "Перевірте, чи підримує ваш сервер вказану версію кімнати та спробуйте ще.", - "Send a Direct Message": "Надіслати особисте повідомлення", - "Explore Public Rooms": "Переглянути загальнодоступні кімнати", - "Create a Group Chat": "Створити групову бесіду", "Failed to reject invitation": "Не вдалось відхилити запрошення", "This room is not public. You will not be able to rejoin without an invite.": "Ця кімната не загальнодоступна. Ви не зможете повторно приєднатися без запрошення.", "Can't leave Server Notices room": "Неможливо вийти з кімнати сповіщень сервера", @@ -241,8 +233,6 @@ "Account management": "Керування обліковим записом", "Deactivate Account": "Деактивувати обліковий запис", "Deactivate account": "Деактивувати обліковий запис", - "For help with using %(brand)s, click here.": "Якщо необхідна допомога у користуванні %(brand)s'ом, клацніть тут.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Якщо необхідна допомога у користуванні %(brand)s, клацніть тут або розпочніть бесіду з нашим ботом, клацнувши на кнопку внизу.", "Join the conversation with an account": "Приєднатись до бесіди з обліковим записом", "Unable to restore session": "Не вдалося відновити сеанс", "We encountered an error trying to restore your previous session.": "Ми натрапили на помилку, намагаючись відновити ваш попередній сеанс.", @@ -295,12 +285,10 @@ "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "Використовувати сервер ідентифікації, щоб запрошувати через е-пошту. Натисніть \"Продовжити\", щоб використовувати типовий сервер ідентифікації (%(defaultIdentityServerName)s) або змініть його у налаштуваннях.", "Joins room with given address": "Приєднатися до кімнати зі вказаною адресою", "Could not find user in room": "Не вдалося знайти користувача в кімнаті", - "Please supply a widget URL or embed code": "Вкажіть URL або код вбудовування віджету", "Verifies a user, session, and pubkey tuple": "Звіряє користувача, сеанс та супровід відкритого ключа", "Session already verified!": "Сеанс вже звірено!", "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "УВАГА: НЕ ВДАЛОСЯ ЗВІРИТИ КЛЮЧ! Ключем для %(userId)s та сеансу %(deviceId)s є «%(fprint)s», що не збігається з наданим ключем «%(fingerprint)s». Це може означати, що ваші повідомлення перехоплюють!", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "Наданий вами ключ підпису збігається з ключем підпису, що ви отримали від сеансу %(deviceId)s %(userId)s. Сеанс позначено звіреним.", - "Opens chat with the given user": "Відкриває бесіду з вказаним користувачем", "You signed in to a new session without verifying it:": "Ви увійшли в новий сеанс, не звіривши його:", "Verify your other session using one of the options below.": "Звірте інший сеанс за допомогою одного з варіантів знизу.", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s (%(userId)s) починає новий сеанс без його звірення:", @@ -356,11 +344,7 @@ "Use custom size": "Використовувати нетиповий розмір", "General": "Загальні", "Discovery": "Виявлення", - "Help & About": "Допомога та про програму", - "Clear cache and reload": "Очистити кеш та перезавантажити", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Щоб повідомити про проблеми безпеки Matrix, будь ласка, прочитайте Політику розкриття інформації Matrix.org.", - "Versions": "Версії", - "%(brand)s version:": "Версія %(brand)s:", "Ignored/Blocked": "Ігноровані/Заблоковані", "Error adding ignored user/server": "Помилка при додаванні ігнорованого користувача/сервера", "Something went wrong. Please try again or view your console for hints.": "Щось пішло не так. Спробуйте знову, або пошукайте підказки в консолі.", @@ -557,7 +541,6 @@ "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "У зашифрованих кімнатах ваші повідомлення є захищеними, тож тільки ви та отримувач маєте ключі для їх розблокування.", "Failed to copy": "Не вдалося скопіювати", "Your display name": "Ваш псевдонім", - "Cancel replying to a message": "Скасувати відповідання на повідомлення", "Clearing all data from this session is permanent. Encrypted messages will be lost unless their keys have been backed up.": "Видалення даних з цього сеансу є безповоротним. Зашифровані повідомлення будуть втрачені якщо їхні ключі не було продубльовано.", "Verify this user to mark them as trusted. Trusting users gives you extra peace of mind when using end-to-end encrypted messages.": "Звірте цього користувача щоб позначити його довіреним. Довіряння користувачам додає спокою якщо ви користуєтесь наскрізно зашифрованими повідомленнями.", "Verify this device to mark it as trusted. Trusting this device gives you and other users extra peace of mind when using end-to-end encrypted messages.": "Звірте цей пристрій щоб позначити його довіреним. Довіряння цьому пристрою додає вам та іншим користувачам спокою якщо ви користуєтесь наскрізно зашифрованими повідомленнями.", @@ -582,7 +565,6 @@ "Old cryptography data detected": "Виявлено старі криптографічні дані", "If you've joined lots of rooms, this might take a while": "Якщо ви приєднались до багатьох кімнат, це може тривати деякий час", "Create account": "Створити обліковий запис", - "Cancel autocomplete": "Скасувати самодоповнення", "Confirm your account deactivation by using Single Sign On to prove your identity.": "Підтвердьте деактивацію свого облікового запису через єдиний вхід, щоб підтвердити вашу особу.", "This account has been deactivated.": "Цей обліковий запис було деактивовано.", "%(name)s (%(userId)s)": "%(name)s (%(userId)s)", @@ -674,8 +656,6 @@ "Cook Islands": "Острови Кука", "Congo - Kinshasa": "Демократична Республіка Конго", "Congo - Brazzaville": "Конго", - "Takes the call in the current room off hold": "Знімає виклик у поточній кімнаті з утримання", - "Places the call in the current room on hold": "Переводить виклик у поточній кімнаті на утримання", "Zimbabwe": "Зімбабве", "Zambia": "Замбія", "Yemen": "Ємен", @@ -917,8 +897,6 @@ "The identity server you have chosen does not have any terms of service.": "Вибраний вами сервер ідентифікації не містить жодних умов користування.", "Terms of service not accepted or the identity server is invalid.": "Умови користування не прийнято або сервер ідентифікації недійсний.", "About homeservers": "Про домашні сервери", - "Converts the DM to a room": "Перетворює приватну бесіду на кімнату", - "Converts the room to a DM": "Перетворює кімнату на приватну бесіду", "Some invites couldn't be sent": "Деякі запрошення неможливо надіслати", "Failed to transfer call": "Не вдалося переадресувати виклик", "Transfer Failed": "Не вдалося переадресувати", @@ -1006,7 +984,6 @@ "New? Create account": "Вперше тут? Створіть обліковий запис", "Forgotten your password?": "Забули свій пароль?", " invited you": " запрошує вас", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s або %(usernamePassword)s", "Sign in with": "Увійти за допомогою", "Sign in with SSO": "Увійти за допомогою SSO", "Got an account? Sign in": "Маєте обліковий запис? Увійти", @@ -1039,7 +1016,6 @@ "See when the avatar changes in this room": "Бачити, коли змінюється аватар цієї кімнати", "Click the button below to confirm your identity.": "Клацніть на кнопку внизу, щоб підтвердити свою особу.", "Confirm to continue": "Підтвердьте, щоб продовжити", - "Now, let's help you get started": "Тепер допоможімо вам почати", "Start authentication": "Почати автентифікацію", "Start Verification": "Почати перевірку", "Start chatting": "Почати спілкування", @@ -1129,12 +1105,6 @@ "Spaces": "Простори", "Custom level": "Власний рівень", "To leave the beta, visit your settings.": "Щоб вийти з бета-тестування, перейдіть до налаштувань.", - "Upload a file": "Вивантажити файл", - "New line": "Новий рядок", - "Autocomplete": "Автозаповнення", - "Room List": "Перелік кімнат", - "Calls": "Виклики", - "Navigation": "Навігація", "File to import": "Файл для імпорту", "User Autocomplete": "Автозаповнення користувача", "Users": "Користувачі", @@ -1145,9 +1115,6 @@ "Notify the whole room": "Сповістити всю кімнату", "Command Autocomplete": "Команда автозаповнення", "Commands": "Команди", - "Registration Successful": "Реєстрацію успішно виконано", - "Log in to your new account.": "Увійти до нового облікового запису.", - "Continue with previous account": "Продовжити з попереднім обліковим записом", "Return to login screen": "Повернутися на сторінку входу", "Switch theme": "Змінити тему", "Just me": "Лише я", @@ -1277,9 +1244,6 @@ "Please enter a name for the space": "Будь ласка, введіть назву простору", "Delete avatar": "Видалити аватар", "Your server isn't responding to some requests.": "Ваш сервер не відповідає на деякі запити.", - "Select room from the room list": "Вибрати кімнату з переліку", - "Collapse room list section": "Згорнути розділ з переліком кімнат", - "Go to Home View": "Перейти до домівки", "Cancel All": "Скасувати все", "Settings - %(spaceName)s": "Налаштування — %(spaceName)s", "Send Logs": "Надіслати журнали", @@ -1392,7 +1356,6 @@ "Topic: %(topic)s (edit)": "Тема: %(topic)s (змінити)", "Italics": "Курсив", "More options": "Інші опції", - "Send a sticker": "Надіслати наліпку", "Create poll": "Створити опитування", "Invited": "Запрошено", "Invite to this space": "Запросити до цього простору", @@ -1532,8 +1495,6 @@ "Images, GIFs and videos": "Зображення, GIF та відео", "Displaying time": "Формат часу", "Code blocks": "Блоки коду", - "Olm version:": "Версія Olm:", - "Your access token gives full access to your account. Do not share it with anyone.": "Токен доступу надає повний доступ до вашого облікового запису. Не передавайте його нікому.", "Messaging": "Спілкування", "Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "Зберігайте ключ безпеки в надійному місці, скажімо в менеджері паролів чи сейфі, бо ключ оберігає ваші зашифровані дані.", "You do not have permission to start polls in this room.": "Ви не маєте дозволу створювати опитування в цій кімнаті.", @@ -1714,9 +1675,6 @@ "This room has already been upgraded.": "Ця кімната вже поліпшена.", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "Поліпшення цієї кімнати припинить роботу наявного її примірника й створить поліпшену кімнату з такою ж назвою.", "This room is running room version , which this homeserver has marked as unstable.": "Ця кімната — версії , позначена цим домашнім сервером нестабільною.", - "Welcome to %(appName)s": "Вітаємо в %(appName)s", - "Welcome %(name)s": "Вітаємо, %(name)s", - "Own your conversations.": "Володійте своїми розмовами.", "%(roomName)s is not accessible at this time.": "%(roomName)s зараз офлайн.", "Send feedback": "Надіслати відгук", "You may contact me if you want to follow up or to let me test out upcoming ideas": "Можете звернутись до мене за подальшими діями чи допомогою з випробуванням ідей", @@ -1725,8 +1683,6 @@ "Please view existing bugs on Github first. No match? Start a new one.": "Спершу гляньте відомі вади на Github. Ця ще невідома? Звітувати про нову ваду.", "%(creator)s created and configured the room.": "%(creator)s створює й налаштовує кімнату.", "This room is a continuation of another conversation.": "Ця кімната — продовження іншої розмови.", - "Jump to oldest unread message": "Перейти до найдавнішого непрочитаного повідомлення", - "Dismiss read marker and jump to bottom": "Відхилити маркер прочитання й перейти донизу", "Jump to read receipt": "Перейти до останнього прочитаного", "Jump to first unread message.": "Перейти до першого непрочитаного повідомлення.", "a new cross-signing key signature": "новий підпис ключа перехресного підписування", @@ -1798,8 +1754,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.": "Це дає змогу імпортувати ключі шифрування, які ви раніше експортували з іншого клієнта Matrix. Тоді ви зможете розшифрувати будь-які повідомлення, які міг розшифровувати той клієнт.", "Import room keys": "Імпортувати ключі кімнат", "Confirm passphrase": "Підтвердьте парольну фразу", - "Decide where your account is hosted": "Оберіть, де розмістити ваш обліковий запис", - "Host account on": "Розмістити обліковий запис на", "Could not load user profile": "Не вдалося звантажити профіль користувача", "Skip verification for now": "На разі пропустити звірку", "Failed to load timeline position": "Не вдалося завантажити позицію стрічки", @@ -1951,7 +1905,6 @@ "That's fine": "Гаразд", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Можете ввійти, але деякі можливості будуть недоступні, поки сервер ідентифікації не відновить роботу. Якщо часто бачите це застереження, перевірте свої параметри чи зв'яжіться з адміністратором сервера.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Можете скинути пароль, але деякі можливості будуть недоступні, поки сервер ідентифікації не відновить роботу. Якщо часто бачите це застереження, перевірте свої параметри чи зв'яжіться з адміністратором сервера.", - "Continue with %(ssoButtons)s": "Продовжити з %(ssoButtons)s", "This server does not support authentication with a phone number.": "Сервер не підтримує входу за номером телефону.", "Registration has been disabled on this homeserver.": "Реєстрація вимкнена на цьому домашньому сервері.", "Unable to query for supported registration methods.": "Не вдалося запитати підтримувані способи реєстрації.", @@ -1963,8 +1916,6 @@ "Verify with Security Key": "Підтвердити ключем безпеки", "Verify with Security Key or Phrase": "Підтвердити ключем чи фразою безпеки", "Proceed with reset": "Продовжити скидання", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Ваш новий обліковий запис (%(newAccountId)s) зареєстровано, проте ви вже ввійшли до іншого облікового запису (%(loggedInUserId)s).", - "Already have an account? Sign in here": "Уже маєте обліковий запис? Увійдіть тут", "Before submitting logs, you must create a GitHub issue to describe your problem.": "Перш ніж надіслати журнали, створіть обговорення на GitHub із описом проблеми.", "Reminder: Your browser is unsupported, so your experience may be unpredictable.": "Нагадуємо, що ваш браузер не підтримується, тож деякі функції можуть не працювати.", "Please tell us what went wrong or, better, create a GitHub issue that describes the problem.": "Будь ласка, повідомте нам, що пішло не так; а ще краще створіть обговорення на GitHub із описом проблеми.", @@ -2055,12 +2006,6 @@ "To continue using the %(homeserverDomain)s homeserver you must review and agree to our terms and conditions.": "Щоб використовувати домашній сервер %(homeserverDomain)s далі, перегляньте й погодьте наші умови й положення.", "Terms and Conditions": "Умови й положення", "Forgotten or lost all recovery methods? Reset all": "Забули чи втратили всі способи відновлення? Скинути все", - "Toggle right panel": "Перемкнути праву панель", - "Close dialog or context menu": "Закрити діалог чи контекстне меню", - "Activate selected button": "Натиснути обрану кнопку", - "Toggle the top left menu": "Перемкнути горішнє ліве меню", - "Expand room list section": "Розгорнути розділ з переліком кімнат", - "Toggle space panel": "Перемкнути панель просторів", "Including you, %(commaSeparatedMembers)s": "Включно з вами, %(commaSeparatedMembers)s", "Incoming Verification Request": "Надійшов запит на звірку", "Integrations are disabled": "Інтеграції вимкнені", @@ -2107,10 +2052,6 @@ "The server (%(serverName)s) took too long to respond.": "Сервер (%(serverName)s) не відповів у прийнятний термін.", "Your server isn't responding to some of your requests. Below are some of the most likely reasons.": "Не вдалося отримати відповідь на деякі запити до вашого сервера. Ось деякі можливі причини.", "Server isn't responding": "Сервер не відповідає", - "Toggle microphone mute": "Ввімкнути/вимкнути мікрофон", - "Toggle Quote": "Перемкнути цитування", - "Toggle Italics": "Перемкнути курсив", - "Toggle Bold": "Перемкнути жирний", "Indexed rooms:": "Індексовано кімнат:", "Space used:": "Використано простору:", "Indexed messages:": "Індексовано повідомлень:", @@ -2151,14 +2092,10 @@ "Search for rooms or people": "Пошук кімнат або людей", "Failed to load list of rooms.": "Не вдалося отримати список кімнат.", "This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.": "Це групує ваші бесіди з учасниками цього простору. Вимкніть, щоб сховати ці бесіди з вашого огляду %(spaceName)s.", - "Jump to room search": "Перейти до пошуку кімнат", - "Search (must be enabled)": "Пошук (повинен бути увімкненим)", "Message downloading sleep time(ms)": "Перерва між завантаженням повідомлень (у мс)", "A private space for you and your teammates": "Приватний простір для вас та учасників вашої команди", "Me and my teammates": "Я й учасники моєї команди", "A private space to organise your rooms": "Приватний простір для впорядкування ваших кімнат", - "Add a photo so people know it's you.": "Додайте світлину, щоб люди могли вас розпізнавати.", - "Great, that'll help people know it's you": "Чудово, це допоможе людям дізнатися, що це ви", "Open in OpenStreetMap": "Відкрити в OpenStreetMap", "toggle event": "перемкнути подію", "This address had invalid server or is already in use": "Ця адреса містить хибний сервер чи вже використовується", @@ -2182,8 +2119,6 @@ "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:": "Переконайтеся, що наведені внизу емоджі показано на обох пристроях в однаковому порядку:", "Expand map": "Розгорнути карту", - "No active call in this room": "Немає активних викликів у цій кімнаті", - "Unable to find Matrix ID for phone number": "Не вдалося знайти Matrix ID для номера телефону", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Невідома пара (користувач, сеанс): (%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "Не вдалося виконати команду: Неможливо знайти кімнату (%(roomId)s", "Unrecognised room address: %(roomAlias)s": "Нерозпізнана адреса кімнати: %(roomAlias)s", @@ -2203,44 +2138,20 @@ "You were removed from %(roomName)s by %(memberName)s": "%(memberName)s вилучає вас із %(roomName)s", "Remove, ban, or invite people to your active room, and make you leave": "Вилучати, блокувати чи запрошувати людей у вашій активній кімнаті, зокрема вас", "Remove, ban, or invite people to this room, and make you leave": "Вилучати, блокувати чи запрошувати людей у цій кімнаті, зокрема вас", - "Open this settings tab": "Відкрити цю вкладку налаштувань", "Keyboard": "Клавіатура", "Message pending moderation": "Повідомлення очікує модерування", "Message pending moderation: %(reason)s": "Повідомлення очікує модерування: %(reason)s", "Space home": "Домівка простору", - "Navigate down in the room list": "Перейти вниз списку кімнат", - "Navigate up in the room list": "Перейти вгору списку кімнат", - "Scroll down in the timeline": "Гортати стрічку вниз", - "Scroll up in the timeline": "Гортати стрічку вгору", - "Toggle webcam on/off": "Увімкнути/вимкнути вебкамеру", - "Navigate to previous message in composer history": "Перейти до попереднього повідомлення в історії редактора", - "Navigate to next message in composer history": "Перейти до наступного повідомлення в історії редактора", - "Jump to end of the composer": "Перейти в кінець редактора", - "Jump to start of the composer": "Перейти на початок редактора", - "Navigate to previous message to edit": "Перейти до попереднього повідомлення для редагування", - "Navigate to next message to edit": "Перейти до наступного повідомлення для редагування", "You can't see earlier messages": "Ви не можете переглядати давніші повідомлення", "Encrypted messages before this point are unavailable.": "Зашифровані повідомлення до цієї точки недоступні.", "You don't have permission to view messages from before you joined.": "Ви не маєте дозволу на перегляд повідомлень, давніших за ваше приєднання.", "You don't have permission to view messages from before you were invited.": "Ви не маєте дозволу на перегляд повідомлень, давніших за ваше запрошення.", "Internal room ID": "Внутрішній ID кімнати", - "Previous autocomplete suggestion": "Попередня пропозиція автодоповнення", - "Next autocomplete suggestion": "Наступна пропозиція автодоповнення", - "Previous room or DM": "Попередня кімната або особисте повідомлення", - "Next room or DM": "Наступна кімната або особисте повідомлення", - "Previous unread room or DM": "Попередня непрочитана кімната або особисте повідомлення", - "Next unread room or DM": "Наступна непрочитана кімната або особисте повідомлення", "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.": "Групуйте всі свої улюблені кімнати та людей в одному місці.", "Spaces are ways to group rooms and people. Alongside the spaces you're in, you can use some pre-built ones too.": "Простори — це спосіб групування кімнат і людей. Окрім просторів, до яких ви приєдналися, ви також можете використовувати деякі вбудовані.", "Unable to check if username has been taken. Try again later.": "Неможливо перевірити, чи зайняте ім'я користувача. Спробуйте ще раз пізніше.", - "Toggle hidden event visibility": "Показати/сховати подію", - "Redo edit": "Повторити зміни", - "Force complete": "Примусово завершити", - "Undo edit": "Скасувати зміни", - "Jump to last message": "Перейти до останнього повідомлення", - "Jump to first message": "Перейти до першого повідомлення", "Pick a date to jump to": "Виберіть до якої дати перейти", "Jump to date": "Перейти до дати", "The beginning of the room": "Початок кімнати", @@ -2267,12 +2178,8 @@ "Poll type": "Тип опитування", "Results will be visible when the poll is ended": "Результати будуть видимі після завершення опитування", "Search Dialog": "Вікно пошуку", - "Open user settings": "Відкрити користувацькі налаштування", - "Switch to space by number": "Перейти до простору за номером", "Pinned": "Закріплені", "Open thread": "Відкрити гілку", - "No virtual room for this room": "Ця кімната не має віртуальної кімнати", - "Switches to this room's virtual room, if it has one": "Переходить до віртуальної кімнати, якщо ваша кімната її має", "What location type do you want to share?": "Який вид місцеперебування поширити?", "Drop a Pin": "Маркер на карті", "My live location": "Змінне місцеперебування наживо", @@ -2295,8 +2202,6 @@ "Shared their location: ": "Повідомляє своє місцеперебування: ", "Unable to load map": "Неможливо завантажити карту", "Can't create a thread from an event with an existing relation": "Неможливо створити гілку з події з наявним відношенням", - "Toggle Link": "Перемкнути посилання", - "Toggle Code Block": "Перемкнути блок коду", "You are sharing your live location": "Ви ділитеся місцеперебуванням", "%(displayName)s's live location": "Місцеперебування %(displayName)s наживо", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "Вимкніть, щоб також видалити системні повідомлення про користувача (зміни членства, редагування профілю…)", @@ -2310,8 +2215,6 @@ "other": "Триває видалення повідомлень у %(count)s кімнатах" }, "Share for %(duration)s": "Поділитися на %(duration)s", - "Previous recently visited room or space": "Попередня недавно відвідана кімната або простір", - "Next recently visited room or space": "Наступна недавно відвідана кімната або простір", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "Використайте нетипові параметри сервера, щоб увійти в інший домашній сервер Matrix, вказавши його URL-адресу. Це дасть вам змогу використовувати %(brand)s з уже наявним у вас на іншому домашньому сервері обліковим записом Matrix.", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s не отримав доступу до вашого місця перебування. Дозвольте доступ до місця перебування в налаштуваннях браузера.", "%(brand)s is experimental on a mobile web browser. For a better experience and the latest features, use our free native app.": "%(brand)s у мобільних браузерах ще випробовується. Поки що кращі враження й новіші функції — у нашому вільному мобільному застосунку.", @@ -2474,7 +2377,6 @@ }, "In %(spaceName)s.": "У просторі %(spaceName)s.", "In spaces %(space1Name)s and %(space2Name)s.": "У просторах %(space1Name)s і %(space2Name)s.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Команда розробника: відкликає поточний сеанс вихідної групи та встановлює нові сеанси Olm", "You don't have permission to share locations": "Ви не маєте дозволу ділитися місцем перебування", "Stop and close": "Припинити й закрити", "Online community members": "Учасники онлайн-спільноти", @@ -2780,8 +2682,6 @@ "Due to decryption errors, some votes may not be counted": "Через помилки розшифрування деякі голоси можуть бути не враховані", "The sender has blocked you from receiving this message": "Відправник заблокував вам отримання цього повідомлення", "Room directory": "Каталог кімнат", - "Identity server is %(identityServerUrl)s": "Сервер ідентифікації %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "Домашній сервер %(homeserverUrl)s", "Yes, it was me": "Так, це я", "Answered elsewhere": "Відповіли деінде", "If you know a room address, try joining through that instead.": "Якщо ви знаєте адресу кімнати, спробуйте приєднатися через неї.", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "Ігнорувати (%(counter)s)", "Once everyone has joined, you’ll be able to chat": "Коли хтось приєднається, ви зможете спілкуватись", "Invites by email can only be sent one at a time": "Запрошення електронною поштою можна надсилати лише одне за раз", - "Could not find room": "Не вдалося знайти кімнату", - "iframe has no src attribute": "iframe не має атрибуту src", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "Сталася помилка під час оновлення налаштувань сповіщень. Спробуйте змінити налаштування ще раз.", "Use your account to continue.": "Скористайтесь обліковим записом, щоб продовжити.", "Desktop app logo": "Логотип комп'ютерного застосунку", @@ -3195,7 +3093,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[цифра]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "Виклики", + "category_room_list": "Перелік кімнат", + "category_navigation": "Навігація", + "category_autocomplete": "Автозаповнення", + "composer_toggle_bold": "Перемкнути жирний", + "composer_toggle_italics": "Перемкнути курсив", + "composer_toggle_quote": "Перемкнути цитування", + "composer_toggle_code_block": "Перемкнути блок коду", + "composer_toggle_link": "Перемкнути посилання", + "cancel_reply": "Скасувати відповідання на повідомлення", + "navigate_next_message_edit": "Перейти до наступного повідомлення для редагування", + "navigate_prev_message_edit": "Перейти до попереднього повідомлення для редагування", + "composer_jump_start": "Перейти на початок редактора", + "composer_jump_end": "Перейти в кінець редактора", + "composer_navigate_next_history": "Перейти до наступного повідомлення в історії редактора", + "composer_navigate_prev_history": "Перейти до попереднього повідомлення в історії редактора", + "send_sticker": "Надіслати наліпку", + "toggle_microphone_mute": "Ввімкнути/вимкнути мікрофон", + "toggle_webcam_mute": "Увімкнути/вимкнути вебкамеру", + "dismiss_read_marker_and_jump_bottom": "Відхилити маркер прочитання й перейти донизу", + "jump_to_read_marker": "Перейти до найдавнішого непрочитаного повідомлення", + "upload_file": "Вивантажити файл", + "scroll_up_timeline": "Гортати стрічку вгору", + "scroll_down_timeline": "Гортати стрічку вниз", + "jump_room_search": "Перейти до пошуку кімнат", + "room_list_select_room": "Вибрати кімнату з переліку", + "room_list_collapse_section": "Згорнути розділ з переліком кімнат", + "room_list_expand_section": "Розгорнути розділ з переліком кімнат", + "room_list_navigate_down": "Перейти вниз списку кімнат", + "room_list_navigate_up": "Перейти вгору списку кімнат", + "toggle_top_left_menu": "Перемкнути горішнє ліве меню", + "toggle_right_panel": "Перемкнути праву панель", + "keyboard_shortcuts_tab": "Відкрити цю вкладку налаштувань", + "go_home_view": "Перейти до домівки", + "next_unread_room": "Наступна непрочитана кімната або особисте повідомлення", + "prev_unread_room": "Попередня непрочитана кімната або особисте повідомлення", + "next_room": "Наступна кімната або особисте повідомлення", + "prev_room": "Попередня кімната або особисте повідомлення", + "autocomplete_cancel": "Скасувати самодоповнення", + "autocomplete_navigate_next": "Наступна пропозиція автодоповнення", + "autocomplete_navigate_prev": "Попередня пропозиція автодоповнення", + "toggle_space_panel": "Перемкнути панель просторів", + "toggle_hidden_events": "Показати/сховати подію", + "jump_first_message": "Перейти до першого повідомлення", + "jump_last_message": "Перейти до останнього повідомлення", + "composer_undo": "Скасувати зміни", + "composer_redo": "Повторити зміни", + "navigate_prev_history": "Попередня недавно відвідана кімната або простір", + "navigate_next_history": "Наступна недавно відвідана кімната або простір", + "switch_to_space": "Перейти до простору за номером", + "open_user_settings": "Відкрити користувацькі налаштування", + "close_dialog_menu": "Закрити діалог чи контекстне меню", + "activate_button": "Натиснути обрану кнопку", + "composer_new_line": "Новий рядок", + "autocomplete_force": "Примусово завершити", + "search": "Пошук (повинен бути увімкненим)" }, "credits": { "default_cover_photo": "Типова світлина обкладинки від © Jesús Roncero використовується на умовах CC-BY-SA 4.0.", @@ -3320,7 +3274,16 @@ "download_google_play": "Отримати з Google Play", "download_f_droid": "Отримати з F-Droid", "apple_trademarks": "App Store® і логотип Apple® є товарними знаками Apple Inc.", - "google_trademarks": "Google Play і логотип Google Play є товарними знаками Google LLC." + "google_trademarks": "Google Play і логотип Google Play є товарними знаками Google LLC.", + "has_avatar_label": "Чудово, це допоможе людям дізнатися, що це ви", + "no_avatar_label": "Додайте світлину, щоб люди могли вас розпізнавати.", + "welcome_user": "Вітаємо, %(name)s", + "welcome_detail": "Тепер допоможімо вам почати", + "intro_welcome": "Вітаємо в %(appName)s", + "intro_byline": "Володійте своїми розмовами.", + "send_dm": "Надіслати особисте повідомлення", + "explore_rooms": "Переглянути загальнодоступні кімнати", + "create_room": "Створити групову бесіду" }, "settings": { "show_breadcrumbs": "Показувати нещодавно переглянуті кімнати над списком кімнат", @@ -3888,7 +3851,24 @@ "category_admin": "Адміністратор", "category_advanced": "Подробиці", "category_effects": "Ефекти", - "category_other": "Інше" + "category_other": "Інше", + "addwidget_missing_url": "Вкажіть URL або код вбудовування віджету", + "addwidget_iframe_missing_src": "iframe не має атрибуту src", + "addwidget_invalid_protocol": "Вкажіть посилання на віджет — https:// або http://", + "addwidget_no_permissions": "Ви не можете змінювати віджет у цій кімнаті.", + "converttodm": "Перетворює кімнату на приватну бесіду", + "could_not_find_room": "Не вдалося знайти кімнату", + "converttoroom": "Перетворює приватну бесіду на кімнату", + "discardsession": "Примусово відкидає поточний вихідний груповий сеанс у зашифрованій кімнаті", + "remakeolm": "Команда розробника: відкликає поточний сеанс вихідної групи та встановлює нові сеанси Olm", + "tovirtual": "Переходить до віртуальної кімнати, якщо ваша кімната її має", + "tovirtual_not_found": "Ця кімната не має віртуальної кімнати", + "query": "Відкриває бесіду з вказаним користувачем", + "query_not_found_phone_number": "Не вдалося знайти Matrix ID для номера телефону", + "holdcall": "Переводить виклик у поточній кімнаті на утримання", + "no_active_call": "Немає активних викликів у цій кімнаті", + "unholdcall": "Знімає виклик у поточній кімнаті з утримання", + "me": "Показ дій" }, "presence": { "busy": "Зайнятий", @@ -4069,7 +4049,16 @@ "sign_in_with_sso": "Увійти за допомогою єдиного входу", "sso": "Єдиний вхід", "reset_password_action": "Скинути пароль", - "reset_password_title": "Скиньте свій пароль" + "reset_password_title": "Скиньте свій пароль", + "continue_with_sso": "Продовжити з %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s або %(usernamePassword)s", + "sign_in_instead": "Уже маєте обліковий запис? Увійдіть тут", + "account_clash": "Ваш новий обліковий запис (%(newAccountId)s) зареєстровано, проте ви вже ввійшли до іншого облікового запису (%(loggedInUserId)s).", + "account_clash_previous_account": "Продовжити з попереднім обліковим записом", + "log_in_new_account": "Увійти до нового облікового запису.", + "registration_successful": "Реєстрацію успішно виконано", + "server_picker_title": "Розмістити обліковий запис на", + "server_picker_dialog_title": "Оберіть, де розмістити ваш обліковий запис" }, "room_list": { "sort_unread_first": "Спочатку показувати кімнати з непрочитаними повідомленнями", @@ -4105,5 +4094,20 @@ "report_entire_room": "Поскаржитися на всю кімнату", "report_content_to_homeserver": "Поскаржитися на вміст адміністратору вашого домашнього сервера", "description": "Зі скаргою на це повідомлення буде надіслано його унікальний «ID події» адміністраторові вашого домашнього сервера. Якщо повідомлення у цій кімнаті зашифровані, то адміністратор не зможе побачити ані тексту повідомлень, ані жодних файлів чи зображень." + }, + "setting": { + "help_about": { + "brand_version": "Версія %(brand)s:", + "olm_version": "Версія Olm:", + "help_link": "Якщо необхідна допомога у користуванні %(brand)s'ом, клацніть тут.", + "help_link_chat_bot": "Якщо необхідна допомога у користуванні %(brand)s, клацніть тут або розпочніть бесіду з нашим ботом, клацнувши на кнопку внизу.", + "chat_bot": "Бесіда з %(brand)s-ботом", + "title": "Допомога та про програму", + "versions": "Версії", + "homeserver": "Домашній сервер %(homeserverUrl)s", + "identity_server": "Сервер ідентифікації %(identityServerUrl)s", + "access_token_detail": "Токен доступу надає повний доступ до вашого облікового запису. Не передавайте його нікому.", + "clear_cache_reload": "Очистити кеш та перезавантажити" + } } } diff --git a/src/i18n/strings/vi.json b/src/i18n/strings/vi.json index 51339c6c09..7316c118a2 100644 --- a/src/i18n/strings/vi.json +++ b/src/i18n/strings/vi.json @@ -64,11 +64,7 @@ "Unignored user": "Đã ngừng bỏ qua người dùng", "You are no longer ignoring %(userId)s": "Bạn không còn bỏ qua %(userId)s nữa", "Define the power level of a user": "Xác định cấp độ quyền của một thành viên", - "Please supply a https:// or http:// widget URL": "Vui lòng điền 1 widget với https:// hoặc http://", - "You cannot modify widgets in this room.": "Bạn không thể sửa đổi widget trong phòng này.", "Verified key": "Khóa được xác thực", - "Displays action": "Hiển thị hành động", - "Forces the current outbound group session in an encrypted room to be discarded": "Buộc nhóm phiên hướng ra hiện tại trong một căn phòng được mã hóa phải bị loại bỏ", "Reason": "Lý do", "Cannot reach homeserver": "Không thể kết nối tới máy chủ", "Ensure you have a stable internet connection, or get in touch with the server admin": "Đảm bảo bạn có kết nối Internet ổn định, hoặc liên hệ quản trị viên để được hỗ trợ", @@ -154,16 +150,6 @@ "User Busy": "Người dùng bận", "Confirm adding this email address by using Single Sign On to prove your identity.": "Xác nhận việc thêm địa chỉ thư điện tử này bằng cách sử dụng Đăng Nhập Một Lần để chứng minh danh tính của bạn.", "Use Single Sign On to continue": "Sử dụng Đăng Nhập Một Lần để tiếp tục", - "Toggle microphone mute": "Chuyển đổi chế độ tắt tiếng micrô", - "Cancel replying to a message": "Hủy trả lời tin nhắn", - "New line": "Dòng mới", - "Toggle Quote": "Chuyển sang Trích dẫn", - "Toggle Italics": "Chuyển sang In nghiêng", - "Toggle Bold": "Chuyển sang In đậm", - "Autocomplete": "Tự động hoàn thành", - "Room List": "Danh sách phòng", - "Calls": "Cuộc gọi", - "Navigation": "Dẫn đường", "Failed to add tag %(tagName)s to room": "Không thêm được thẻ %(tagName)s vào phòng", "Failed to remove tag %(tagName)s from room": "Không xóa được thẻ %(tagName)s khỏi phòng", "Message downloading sleep time(ms)": "Thời gian ngủ tải xuống tin nhắn (mili giây)", @@ -243,16 +229,7 @@ "Incorrect password": "mật khẩu không đúng", "Failed to re-authenticate due to a homeserver problem": "Không xác thực lại được do sự cố máy chủ", "Verify your identity to access encrypted messages and prove your identity to others.": "Xác thực danh tính của bạn để truy cập các tin nhắn được mã hóa và chứng minh danh tính của bạn với người khác.", - "Decide where your account is hosted": "Quyết định nơi tài khoản của bạn được lưu trữ", - "Host account on": "Tài khoản máy chủ trên", "Create account": "Tạo tài khoản", - "Registration Successful": "Đăng ký thành công", - "Log in to your new account.": "Sign in để vào tài khoản mới của bạn.", - "Continue with previous account": "Tiếp tục với tài khoản trước", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Tài khoản mới của bạn (%(newAccountId)s) đã được đăng ký, nhưng bạn đã đăng nhập vào một tài khoản khác (%(loggedInUserId)s).", - "Already have an account? Sign in here": "Bạn đã có sẵn một tài khoản? Sign in here", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Hoặc %(usernamePassword)s", - "Continue with %(ssoButtons)s": "Tiếp tục với %(ssoButtons)s", "This server does not support authentication with a phone number.": "Máy chủ này không hỗ trợ xác thực bằng số điện thoại.", "Registration has been disabled on this homeserver.": "Đăng ký đã bị vô hiệu hóa trên máy chủ này.", "Unable to query for supported registration methods.": "Không thể truy vấn các phương pháp đăng ký được hỗ trợ.", @@ -327,14 +304,6 @@ "You are the only person here. If you leave, no one will be able to join in the future, including you.": "Bạn là người duy nhất ở đây. Nếu bạn rời, không ai có thể tham gia trong tương lai, kể cả bạn.", "Failed to reject invitation": "Không thể từ chối lời mời", "Open dial pad": "Mở bàn phím quay số", - "Create a Group Chat": "Tạo một cuộc trò chuyện nhóm", - "Explore Public Rooms": "Khám phá các phòng chung", - "Send a Direct Message": "Gửi tin nhắn trực tiếp", - "Welcome to %(appName)s": "Chào mừng bạn đến với %(appName)s", - "Now, let's help you get started": "Bây giờ, hãy giúp bạn bắt đầu", - "Welcome %(name)s": "Chào mừng %(name)s", - "Add a photo so people know it's you.": "Thêm ảnh để mọi người biết đó là bạn.", - "Great, that'll help people know it's you": "Tuyệt vời, điều đó sẽ giúp mọi người biết đó là bạn", "Attach files from chat or just drag and drop them anywhere in a room.": "Đính kèm tệp từ cuộc trò chuyện hoặc chỉ cần kéo và thả chúng vào bất kỳ đâu trong phòng.", "No files visible in this room": "Không có tệp nào hiển thị trong phòng này", "You must join the room to see its files": "Bạn phải tham gia vào phòng để xem các tệp của nó", @@ -400,20 +369,6 @@ "Resume": "Tiếp tục", "If you've forgotten your Security Key you can ": "Nếu bạn quên Khóa bảo mật của mình, bạn có thể thiết lập các tùy chọn khôi phục mới ", "Access your secure message history and set up secure messaging by entering your Security Key.": "Truy cập lịch sử tin nhắn an toàn của bạn và thiết lập nhắn tin an toàn bằng cách nhập Khóa bảo mật của bạn.", - "Cancel autocomplete": "Hủy tự động hoàn thành", - "Go to Home View": "Chuyển đến Chế độ xem Trang chủ", - "Toggle right panel": "Chuyển đổi bảng điều khiển bên phải", - "Activate selected button": "Kích hoạt nút đã chọn", - "Close dialog or context menu": "Đóng hộp thoại hoặc menu ngữ cảnh", - "Toggle the top left menu": "Chuyển đổi menu trên cùng bên trái", - "Expand room list section": "Mở rộng phần danh sách phòng", - "Collapse room list section": "Thu gọn phần danh sách phòng", - "Select room from the room list": "Chọn phòng từ danh sách phòng", - "Jump to room search": "Chuyển đến tìm kiếm phòng", - "Search (must be enabled)": "Tìm kiếm (phải được bật)", - "Upload a file": "Tải lên một tài liệu", - "Jump to oldest unread message": "Chuyển đến tin nhắn chưa đọc cũ nhất", - "Dismiss read marker and jump to bottom": "Bỏ qua điểm đánh dấu đã đọc và chuyển xuống cuối", "Not a valid Security Key": "Không phải là khóa bảo mật hợp lệ", "This looks like a valid Security Key!": "Đây có vẻ như là một Khóa bảo mật hợp lệ!", "Enter Security Key": "Nhập khóa bảo mật", @@ -1064,7 +1019,6 @@ "The conversation continues here.": "Cuộc trò chuyện tiếp tục tại đây.", "More options": "Thêm tùy chọn", "Send voice message": "Gửi tin nhắn thoại", - "Send a sticker": "Gửi nhãn dán", "Create poll": "Tạo cuộc tham dò ý kiến", "An error occurred changing the user's power level. Ensure you have sufficient permissions and try again.": "Đã xảy ra lỗi khi thay đổi mức năng lượng của người dùng. Đảm bảo bạn có đủ quyền và thử lại.", "Error changing power level": "Lỗi khi thay đổi mức công suất", @@ -1144,16 +1098,7 @@ "Something went wrong. Please try again or view your console for hints.": "Đã xảy ra lỗi. Vui lòng thử lại hoặc xem bảng điều khiển của bạn để biết gợi ý.", "Error adding ignored user/server": "Lỗi khi thêm người dùng / máy chủ bị bỏ qua", "Ignored/Blocked": "Bị bỏ qua / bị chặn", - "Clear cache and reload": "Xóa bộ nhớ cache và tải lại", - "Your access token gives full access to your account. Do not share it with anyone.": "Mã thông báo truy cập của bạn cấp quyền truy cập đầy đủ vào tài khoản của bạn. Không chia sẻ nó với bất kỳ ai.", - "Versions": "Phiên bản", - "Help & About": "Trợ giúp & Giới thiệu", "To report a Matrix-related security issue, please read the Matrix.org Security Disclosure Policy.": "Để báo cáo sự cố bảo mật liên quan đến Matrix, vui lòng đọc Chính sách tiết lộ bảo mật của Matrix.org Security Disclosure Policy.", - "Chat with %(brand)s Bot": "Trò chuyện với Bot %(brand)s", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây here hoặc bắt đầu trò chuyện với bot của chúng tôi bằng nút bên dưới.", - "For help with using %(brand)s, click here.": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây here.", - "Olm version:": "Phiên bản Olm:", - "%(brand)s version:": "Phiên bản %(brand)s:", "Discovery": "Khám phá", "Deactivate account": "Vô hiệu hoá tài khoản", "Deactivate Account": "Hủy kích hoạt Tài khoản", @@ -1690,15 +1635,9 @@ "Export E2E room keys": "Xuất các mã khoá phòng E2E", "Warning!": "Cảnh báo!", "No display name": "Không có tên hiển thị", - "Converts the DM to a room": "Chuyển đổi chat trực tiếp DM thành một phòng", - "Converts the room to a DM": "Chuyển đổi phòng thành tin nhắn chat trực tiếp DM", - "Takes the call in the current room off hold": "Nối lại cuộc gọi trong phòng hiện tại", - "Places the call in the current room on hold": "Tạm ngưng cuộc gọi trong phòng hiện tại", - "Opens chat with the given user": "Mở cuộc trò chuyện với người dùng nhất định", "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!": "CẢNH BÁO: XÁC THỰC KHÓA THẤT BẠI! Khóa đăng nhập cho %(userId)s và thiết bị %(deviceId)s là \"%(fprint)s\" không khớp với khóa được cung cấp \"%(fingerprint)s\". Điều này có nghĩa là các thông tin liên lạc của bạn đang bị chặn!", "Session already verified!": "Thiết bị đã được xác thực rồi!", "Verifies a user, session, and pubkey tuple": "Xác thực người dùng, thiết bị và tuple pubkey", - "Please supply a widget URL or embed code": "Vui lòng cung cấp URL tiện ích hoặc mã nhúng", "Deops user with given id": "Deops user với id đã cho", "Could not find user in room": "Không tìm thấy người dùng trong phòng", "Joins room with given address": "Tham gia phòng có địa chỉ được chỉ định", @@ -1985,7 +1924,6 @@ "Call failed due to misconfigured server": "Thực hiện cuộc gọi thất bại do thiết lập máy chủ sai", "The call was answered on another device.": "Cuộc gọi đã được trả lời trên một thiết bị khác.", "Answered Elsewhere": "Đã trả lời ở nơi khác", - "Toggle space panel": "Chuyển đổi bảng điều khiển space", "Store your Security Key somewhere safe, like a password manager or a safe, as it's used to safeguard your encrypted data.": "Lưu trữ Khóa bảo mật của bạn ở nơi an toàn, như trình quản lý mật khẩu hoặc két sắt, vì nó được sử dụng để bảo vệ dữ liệu được mã hóa của bạn.", "We'll generate a Security Key for you to store somewhere safe, like a password manager or a safe.": "Chúng tôi sẽ tạo khóa bảo mật để bạn lưu trữ ở nơi an toàn, như trình quản lý mật khẩu hoặc két sắt.", "Regain access to your account and recover encryption keys stored in this session. Without them, you won't be able to read all of your secure messages in any session.": "Lấy lại quyền truy cập vào tài khoản của bạn và khôi phục các khóa mã hóa được lưu trữ trong phiên này. Nếu không có chúng, bạn sẽ không thể đọc tất cả các tin nhắn an toàn của mình trong bất kỳ phiên nào.", @@ -2022,7 +1960,6 @@ "other": "Bạn có %(count)s thông báo chưa đọc trong phiên bản trước của phòng này." }, "You're all caught up": "Tất cả các bạn đều bị bắt", - "Own your conversations.": "Sở hữu các cuộc trò chuyện của bạn.", "Someone already has that username. Try another or if it is you, sign in below.": "Ai đó đã có username đó. Hãy thử một cái khác hoặc nếu đó là bạn, hay đăng nhập bên dưới.", "Copy link to thread": "Sao chép liên kết vào chủ đề", "Thread options": "Tùy chọn theo chủ đề", @@ -2224,24 +2161,7 @@ "%(space1Name)s and %(space2Name)s": "%(space1Name)s và %(space2Name)s", "Remove, ban, or invite people to your active room, and make you leave": "Xóa, cấm, hoặc mời mọi người vào phòng đang hoạt động của bạn, và bạn rời khỏi đó", "Remove, ban, or invite people to this room, and make you leave": "Xóa, cấm, hoặc mời mọi người vào phòng này, và bạn rời khỏi đó", - "No active call in this room": "Không có cuộc gọi đang hoạt động trong phòng này", - "Unable to find Matrix ID for phone number": "Không thể tìm thấy Matrix ID của số điện thoại", - "No virtual room for this room": "Không có phòng ảo của phòng này", - "Switches to this room's virtual room, if it has one": "Chuyển sang phòng ảo của phòng này, nếu nó có", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "Cặp (người dùng, phiên) không xác định: (%(userId)s, %(deviceId)s)", - "Scroll down in the timeline": "Cuộn xuống trong dòng thời gian", - "Scroll up in the timeline": "Cuộn lên trong dòng thời gian", - "Toggle webcam on/off": "Bật/tắt webcam", - "Navigate to previous message in composer history": "Di chuyển đến tin nhắn trước trong lịch sử người gửi", - "Navigate to next message in composer history": "Di chuyển đến tin nhắn kế trong lịch sử người gửi", - "Navigate to previous message to edit": "Di chuyển đến tin nhắn trước để điều chỉnh", - "Navigate to next message to edit": "Di chuyển đến tin nhắn kế để điều chỉnh", - "Jump to end of the composer": "Chuyển đến cuối khung trò chuyện của người gửi", - "Jump to start of the composer": "Chuyển đến đầu khung trò chuyện của người gửi", - "Redo edit": "Tái chỉnh sửa", - "Undo edit": "Hoàn tác chỉnh sửa", - "Toggle Code Block": "Chuyển đổi khối mã", - "Toggle Link": "Chuyển đổi liên kết", "Keyboard": "Bàn phím", "Your email address does not appear to be associated with a Matrix ID on this homeserver.": "Địa chỉ thư điện tử của bạn không được liên kết với một định danh Matrix trên máy chủ này.", "Cannot invite user by email without an identity server. You can connect to one under \"Settings\".": "Không thể mời người dùng bằng địa chỉ thư điện tử mà không dùng máy chủ định danh. Bạn có thể kết nối với một máy chủ trong phần \"Cài đặt\".", @@ -2291,7 +2211,6 @@ "Share your activity and status with others.": "Chia sẻ hoạt động và trạng thái với người khác.", "Early previews": "Thử trước tính năng mới", "Upcoming features": "Tính năng sắp tới", - "Homeserver is %(homeserverUrl)s": "Máy chủ nhà là %(homeserverUrl)s", "Deactivating your account is a permanent action — be careful!": "Vô hiệu hóa tài khoản của bạn là vĩnh viễn — hãy cẩn trọng!", "Spell check": "Kiểm tra chính tả", "Manage account": "Quản lý tài khoản", @@ -2339,8 +2258,6 @@ "You don't have the required permissions to start a voice broadcast in this room. Contact a room administrator to upgrade your permissions.": "Bạn không có quyền để phát thanh trong phòng này. Hỏi một quản trị viên của phòng để nâng quyền của bạn.", "Someone else is already recording a voice broadcast. Wait for their voice broadcast to end to start a new one.": "Một người khác đang phát thanh. Hãy chờ cho đến khi họ ngừng rồi bạn mới bắt đầu phát thanh.", "Connection error": "Lỗi kết nối", - "Open user settings": "Mở cài đặt người dùng", - "Could not find room": "Không tìm thấy phòng", "WARNING: session already verified, but keys do NOT MATCH!": "CẢNH BÁO: phiên đã được xác thực, nhưng các khóa KHÔNG KHỚP!", "30s forward": "30 giây kế tiếp", "30s backward": "30 giây trước", @@ -2349,7 +2266,6 @@ "Starting export process…": "Bắt đầu trích xuất…", "Yes, stop broadcast": "Đúng rồi, dừng phát thanh", "You are already recording a voice broadcast. Please end your current voice broadcast to start a new one.": "Bạn hiện đang ghi một cuộc phát thanh. Kết thúc phát thanh để thực hiện một cái mới.", - "iframe has no src attribute": "Thẻ iframe (khung) không có thuộc tính src (nguồn)", "Check your email to continue": "Kiểm tra hòm thư để tiếp tục", "This invite was sent to %(email)s": "Lời mời này đã được gửi tới %(email)s", "This invite was sent to %(email)s which is not associated with your account": "Lời mời này đã được gửi đến %(email)s nhưng không liên kết với tài khoản của bạn", @@ -2400,7 +2316,6 @@ "Verify Session": "Xác thực phiên", "Your account details are managed separately at %(hostname)s.": "Thông tin tài khoản bạn được quản lý riêng ở %(hostname)s.", "Spaces are a new way to group rooms and people. What kind of Space do you want to create? You can change this later.": "Space là một cách mới để nhóm các phòng và mọi người. Loại space nào bạn muốn tạo? Bạn có thể thay đổi sau.", - "Identity server is %(identityServerUrl)s": "Máy chủ định danh là %(identityServerUrl)s", "For best security and privacy, it is recommended to use Matrix clients that support encryption.": "Để có bảo mật và quyền riêng tư tốt nhất, nên dùng các phần mềm máy khách Matrix có hỗ trợ mã hóa.", "If you can't find the room you're looking for, ask for an invite or create a new room.": "Nếu bạn không tìm được phòng bạn muốn, yêu cầu lời mời hay tạo phòng mới.", "Fetching keys from server…": "Đang lấy các khóa từ máy chủ…", @@ -2573,7 +2488,6 @@ "Live": "Trực tiếp", "Listen to live broadcast?": "Nghe phát thanh trực tiếp không?", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s không được cho phép để tìm vị trí của bạn. Vui lòng cho phép truy cập vị trí trong cài đặt trình duyệt của bạn.", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "Lệnh cho nhà phát triển: Hủy phiên ra ngoài hiện tại của nhóm và thiết lập phiên Olm mới", "All messages and invites from this user will be hidden. Are you sure you want to ignore them?": "Toàn bộ tin nhắn và lời mời từ người dùng này sẽ bị ẩn. Bạn có muốn tảng lờ người dùng?", "When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "Khi bạn đăng xuất, các khóa sẽ được xóa khỏi thiết bị này, tức là bạn không thể đọc các tin nhắn được mã hóa trừ khi bạn có khóa cho chúng trong thiết bị khác, hoặc sao lưu chúng lên máy chủ.", "Warning: upgrading a room will not automatically migrate room members to the new version of the room. We'll post a link to the new room in the old version of the room - room members will have to click this link to join the new room.": "Cảnh báo: nâng cấp một phòng sẽ không tự động đưa thành viên sang phiên bản mới của phòng. Chúng tôi đăng liên kết tới phòng mới trong phòng cũ - thành viên sẽ cần nhấp vào liên kết để tham gia phòng mới.", @@ -2964,7 +2878,47 @@ "control": "Ctrl", "shift": "Shift", "number": "[con số]", - "backspace": "Phím lùi" + "backspace": "Phím lùi", + "category_calls": "Cuộc gọi", + "category_room_list": "Danh sách phòng", + "category_navigation": "Dẫn đường", + "category_autocomplete": "Tự động hoàn thành", + "composer_toggle_bold": "Chuyển sang In đậm", + "composer_toggle_italics": "Chuyển sang In nghiêng", + "composer_toggle_quote": "Chuyển sang Trích dẫn", + "composer_toggle_code_block": "Chuyển đổi khối mã", + "composer_toggle_link": "Chuyển đổi liên kết", + "cancel_reply": "Hủy trả lời tin nhắn", + "navigate_next_message_edit": "Di chuyển đến tin nhắn kế để điều chỉnh", + "navigate_prev_message_edit": "Di chuyển đến tin nhắn trước để điều chỉnh", + "composer_jump_start": "Chuyển đến đầu khung trò chuyện của người gửi", + "composer_jump_end": "Chuyển đến cuối khung trò chuyện của người gửi", + "composer_navigate_next_history": "Di chuyển đến tin nhắn kế trong lịch sử người gửi", + "composer_navigate_prev_history": "Di chuyển đến tin nhắn trước trong lịch sử người gửi", + "send_sticker": "Gửi nhãn dán", + "toggle_microphone_mute": "Chuyển đổi chế độ tắt tiếng micrô", + "toggle_webcam_mute": "Bật/tắt webcam", + "dismiss_read_marker_and_jump_bottom": "Bỏ qua điểm đánh dấu đã đọc và chuyển xuống cuối", + "jump_to_read_marker": "Chuyển đến tin nhắn chưa đọc cũ nhất", + "upload_file": "Tải lên một tài liệu", + "scroll_up_timeline": "Cuộn lên trong dòng thời gian", + "scroll_down_timeline": "Cuộn xuống trong dòng thời gian", + "jump_room_search": "Chuyển đến tìm kiếm phòng", + "room_list_select_room": "Chọn phòng từ danh sách phòng", + "room_list_collapse_section": "Thu gọn phần danh sách phòng", + "room_list_expand_section": "Mở rộng phần danh sách phòng", + "toggle_top_left_menu": "Chuyển đổi menu trên cùng bên trái", + "toggle_right_panel": "Chuyển đổi bảng điều khiển bên phải", + "go_home_view": "Chuyển đến Chế độ xem Trang chủ", + "autocomplete_cancel": "Hủy tự động hoàn thành", + "toggle_space_panel": "Chuyển đổi bảng điều khiển space", + "composer_undo": "Hoàn tác chỉnh sửa", + "composer_redo": "Tái chỉnh sửa", + "open_user_settings": "Mở cài đặt người dùng", + "close_dialog_menu": "Đóng hộp thoại hoặc menu ngữ cảnh", + "activate_button": "Kích hoạt nút đã chọn", + "composer_new_line": "Dòng mới", + "search": "Tìm kiếm (phải được bật)" }, "credits": { "default_cover_photo": "Các ảnh bìa mặc định Là © Chúa Jesus Roncero Được sử dụng theo các điều khoản của CC-BY-SA 4.0." @@ -3079,7 +3033,16 @@ "download_brand": "Tải xuống %(brand)s", "download_app_store": "Tải trên App Store", "download_google_play": "Tải trên CH Play", - "download_f_droid": "Tải trên F-Droid" + "download_f_droid": "Tải trên F-Droid", + "has_avatar_label": "Tuyệt vời, điều đó sẽ giúp mọi người biết đó là bạn", + "no_avatar_label": "Thêm ảnh để mọi người biết đó là bạn.", + "welcome_user": "Chào mừng %(name)s", + "welcome_detail": "Bây giờ, hãy giúp bạn bắt đầu", + "intro_welcome": "Chào mừng bạn đến với %(appName)s", + "intro_byline": "Sở hữu các cuộc trò chuyện của bạn.", + "send_dm": "Gửi tin nhắn trực tiếp", + "explore_rooms": "Khám phá các phòng chung", + "create_room": "Tạo một cuộc trò chuyện nhóm" }, "settings": { "show_breadcrumbs": "Hiển thị shortcuts cho các phòng đã xem gần đây phía trên danh sách phòng", @@ -3595,7 +3558,24 @@ "category_admin": "Quản trị viên", "category_advanced": "Nâng cao", "category_effects": "Hiệu ứng", - "category_other": "Khác" + "category_other": "Khác", + "addwidget_missing_url": "Vui lòng cung cấp URL tiện ích hoặc mã nhúng", + "addwidget_iframe_missing_src": "Thẻ iframe (khung) không có thuộc tính src (nguồn)", + "addwidget_invalid_protocol": "Vui lòng điền 1 widget với https:// hoặc http://", + "addwidget_no_permissions": "Bạn không thể sửa đổi widget trong phòng này.", + "converttodm": "Chuyển đổi phòng thành tin nhắn chat trực tiếp DM", + "could_not_find_room": "Không tìm thấy phòng", + "converttoroom": "Chuyển đổi chat trực tiếp DM thành một phòng", + "discardsession": "Buộc nhóm phiên hướng ra hiện tại trong một căn phòng được mã hóa phải bị loại bỏ", + "remakeolm": "Lệnh cho nhà phát triển: Hủy phiên ra ngoài hiện tại của nhóm và thiết lập phiên Olm mới", + "tovirtual": "Chuyển sang phòng ảo của phòng này, nếu nó có", + "tovirtual_not_found": "Không có phòng ảo của phòng này", + "query": "Mở cuộc trò chuyện với người dùng nhất định", + "query_not_found_phone_number": "Không thể tìm thấy Matrix ID của số điện thoại", + "holdcall": "Tạm ngưng cuộc gọi trong phòng hiện tại", + "no_active_call": "Không có cuộc gọi đang hoạt động trong phòng này", + "unholdcall": "Nối lại cuộc gọi trong phòng hiện tại", + "me": "Hiển thị hành động" }, "presence": { "busy": "Bận", @@ -3775,7 +3755,16 @@ "sign_in_with_sso": "Đăng nhập bằng đăng nhập một lần", "sso": "Đăng Nhập Một Lần", "reset_password_action": "Đặt lại mật khẩu", - "reset_password_title": "Đặt lại mật khẩu của bạn" + "reset_password_title": "Đặt lại mật khẩu của bạn", + "continue_with_sso": "Tiếp tục với %(ssoButtons)s", + "sso_or_username_password": "%(ssoButtons)s Hoặc %(usernamePassword)s", + "sign_in_instead": "Bạn đã có sẵn một tài khoản? Sign in here", + "account_clash": "Tài khoản mới của bạn (%(newAccountId)s) đã được đăng ký, nhưng bạn đã đăng nhập vào một tài khoản khác (%(loggedInUserId)s).", + "account_clash_previous_account": "Tiếp tục với tài khoản trước", + "log_in_new_account": "Sign in để vào tài khoản mới của bạn.", + "registration_successful": "Đăng ký thành công", + "server_picker_title": "Tài khoản máy chủ trên", + "server_picker_dialog_title": "Quyết định nơi tài khoản của bạn được lưu trữ" }, "room_list": { "sort_unread_first": "Hiển thị các phòng có tin nhắn chưa đọc trước", @@ -3808,5 +3797,20 @@ "report_entire_room": "Báo cáo toàn bộ phòng", "report_content_to_homeserver": "Báo cáo Nội dung cho Quản trị viên Máy chủ Trang chủ của Bạn", "description": "Báo cáo thông báo này sẽ gửi 'ID sự kiện' duy nhất của nó đến quản trị viên của máy chủ của bạn. Nếu tin nhắn trong phòng này được mã hóa, quản trị viên máy chủ của bạn sẽ không thể đọc nội dung tin nhắn hoặc xem bất kỳ tệp hoặc hình ảnh nào." + }, + "setting": { + "help_about": { + "brand_version": "Phiên bản %(brand)s:", + "olm_version": "Phiên bản Olm:", + "help_link": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây here.", + "help_link_chat_bot": "Để được trợ giúp về cách sử dụng %(brand)s, hãy nhấp vào đây here hoặc bắt đầu trò chuyện với bot của chúng tôi bằng nút bên dưới.", + "chat_bot": "Trò chuyện với Bot %(brand)s", + "title": "Trợ giúp & Giới thiệu", + "versions": "Phiên bản", + "homeserver": "Máy chủ nhà là %(homeserverUrl)s", + "identity_server": "Máy chủ định danh là %(identityServerUrl)s", + "access_token_detail": "Mã thông báo truy cập của bạn cấp quyền truy cập đầy đủ vào tài khoản của bạn. Không chia sẻ nó với bất kỳ ai.", + "clear_cache_reload": "Xóa bộ nhớ cache và tải lại" + } } } diff --git a/src/i18n/strings/vls.json b/src/i18n/strings/vls.json index 4dcc8e48b1..cb243e59ac 100644 --- a/src/i18n/strings/vls.json +++ b/src/i18n/strings/vls.json @@ -65,11 +65,7 @@ "You are no longer ignoring %(userId)s": "Je negeert %(userId)s nie mi", "Define the power level of a user": "Bepoal ’t machtsniveau van e gebruuker", "Deops user with given id": "Ountmachtigt de gebruuker me de gegeevn ID", - "Please supply a https:// or http:// widget URL": "Gift een https://- of http://-widget-URL in", - "You cannot modify widgets in this room.": "J’en kut de widgets in ’t gesprek hier nie anpassn.", "Verified key": "Geverifieerde sleuter", - "Displays action": "Toogt actie", - "Forces the current outbound group session in an encrypted room to be discarded": "Forceert de huudige uutwoartsche groepssessie in e versleuterd gesprek vo verworpn te wordn", "Reason": "Reedn", "No homeserver URL provided": "Geen thuusserver-URL ingegeevn", "Unexpected error resolving homeserver configuration": "Ounverwachte foute by ’t controleern van de thuusserverconfiguroasje", @@ -237,13 +233,7 @@ "Account management": "Accountbeheer", "Deactivate Account": "Account deactiveern", "General": "Algemeen", - "For help with using %(brand)s, click here.": "Klikt hier voor hulp by ’t gebruukn van %(brand)s.", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "Klikt hier voor hulp by ’t gebruukn van %(brand)s, of begint e gesprek met uzze robot me de knop hieroundern.", - "Chat with %(brand)s Bot": "Chattn me %(brand)s-robot", "Check for update": "Controleern ip updates", - "Help & About": "Hulp & Info", - "Versions": "Versies", - "%(brand)s version:": "%(brand)s-versie:", "Notifications": "Meldiengn", "Composer": "Ipsteller", "Room list": "Gesprekslyste", @@ -656,14 +646,10 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Je ku je registreern, moa sommige functies goan pas beschikboar zyn wanneer da den identiteitsserver were online is. A je deze woarschuwienge te zien bluft krygn, controleert tan je configuroasje of nimt contact ip met e serverbeheerder.", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Je ku je paswoord herinstelln, moa sommige functies goan pas beschikboar zyn wanneer da den identiteitsserver were online is. A je deze woarschuwienge te zien bluft krygn, controleert tan je configuroasje of nimt contact ip met e serverbeheerder.", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "Je ku jen anmeldn, moa sommige functies goan pas beschikboar zyn wanneer da den identiteitsserver were online is. A je deze woarschuwienge te zien bluft krygn, controleert tan je configuroasje of nimt contact ip met e serverbeheerder.", - "Log in to your new account.": "Meldt jen eigen an me je nieuwen account.", - "Registration Successful": "Registroasje gesloagd", "Edited at %(date)s. Click to view edits.": "Bewerkt ip %(date)s. Klikt vo de bewerkiengn te bekykn.", "Message edits": "Berichtbewerkiengn", "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:": "Dit gesprek bywerkn vereist da je d’huudige instantie dervan ofsluut en in de plekke dervan e nieuw gesprek anmakt. Vo de gespreksleedn de best meuglike ervoarienge te biedn, goan me:", "Upload all": "Alles iploadn", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "Je nieuwen account (%(newAccountId)s) is geregistreerd, mo je zyt al angemeld met een anderen account (%(loggedInUserId)s).", - "Continue with previous account": "Verdergoan me de vorigen account", "Please tell us what went wrong or, better, create a GitHub issue that describes the problem.": "Vertelt uus wuk dat der verkeerd is geloopn, of nog beter, makt e foutmeldienge an ip GitHub woarin da je 't probleem beschryft.", "Removing…": "Bezig me te verwydern…", "Clear all data": "Alle gegeevns wissn", @@ -1051,7 +1037,11 @@ "category_actions": "Acties", "category_admin": "Beheerder", "category_advanced": "Geavanceerd", - "category_other": "Overige" + "category_other": "Overige", + "addwidget_invalid_protocol": "Gift een https://- of http://-widget-URL in", + "addwidget_no_permissions": "J’en kut de widgets in ’t gesprek hier nie anpassn.", + "discardsession": "Forceert de huudige uutwoartsche groepssessie in e versleuterd gesprek vo verworpn te wordn", + "me": "Toogt actie" }, "presence": { "online_for": "Online vo %(duration)s", @@ -1097,9 +1087,23 @@ } }, "auth": { - "sign_in_with_sso": "Anmeldn met enkele anmeldienge" + "sign_in_with_sso": "Anmeldn met enkele anmeldienge", + "account_clash": "Je nieuwen account (%(newAccountId)s) is geregistreerd, mo je zyt al angemeld met een anderen account (%(loggedInUserId)s).", + "account_clash_previous_account": "Verdergoan me de vorigen account", + "log_in_new_account": "Meldt jen eigen an me je nieuwen account.", + "registration_successful": "Registroasje gesloagd" }, "export_chat": { "messages": "Berichtn" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s-versie:", + "help_link": "Klikt hier voor hulp by ’t gebruukn van %(brand)s.", + "help_link_chat_bot": "Klikt hier voor hulp by ’t gebruukn van %(brand)s, of begint e gesprek met uzze robot me de knop hieroundern.", + "chat_bot": "Chattn me %(brand)s-robot", + "title": "Hulp & Info", + "versions": "Versies" + } } } diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index ebb21419b9..4b8ffb06fb 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -4,7 +4,6 @@ "Deactivate Account": "停用账户", "Decrypt %(text)s": "解密 %(text)s", "Default": "默认", - "Displays action": "显示操作", "Download %(text)s": "下载 %(text)s", "Email": "电子邮箱", "Email address": "邮箱地址", @@ -34,7 +33,6 @@ "Return to login screen": "返回登录页面", "%(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 没有通知发送权限 - 请重试", - "%(brand)s version:": "%(brand)s 版本:", "Room %(roomId)s not visible": "房间%(roomId)s不可见", "Rooms": "房间", "Search failed": "搜索失败", @@ -331,7 +329,6 @@ "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "尝试了加载此房间时间线上的特定点,但你没有查看相关消息的权限。", "No Audio Outputs detected": "未检测到可用的音频输出方式", "Audio Output": "音频输出", - "Forces the current outbound group session in an encrypted room to be discarded": "强制丢弃加密房间中的当前出站群组会话", "Mirror local video feed": "镜像本地视频源", "This room has been replaced and is no longer active.": "此房间已被取代,且不再活跃。", "The conversation continues here.": "对话在这里继续。", @@ -481,11 +478,6 @@ "Language and region": "语言与地区", "Account management": "账户管理", "General": "通用", - "For help with using %(brand)s, click here.": "关于 %(brand)s 的使用说明。", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "关于 %(brand)s 的使用说明,请点击这里或者通过下方按钮同我们的机器人聊聊。", - "Chat with %(brand)s Bot": "与 %(brand)s 机器人聊天", - "Help & About": "帮助及关于", - "Versions": "版本", "Composer": "编辑器", "Room list": "房间列表", "Autocomplete delay (ms)": "自动完成延迟(毫秒)", @@ -563,8 +555,6 @@ "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.": "房间加密一经启用,便无法禁用。在加密房间中,发送的消息无法被服务器看到,只能被房间的参与者看到。启用加密可能会使许多机器人和桥接无法正常运作。 详细了解加密。", "Power level": "权力级别", - "Please supply a https:// or http:// widget URL": "请提供一个 https:// 或 http:// 挂件URL", - "You cannot modify widgets in this room.": "你无法修改此房间的插件。", "Upgrade this room to the recommended room version": "升级此房间至推荐版本", "This room is running room version , which this homeserver has marked as unstable.": "此房间运行的房间版本是 ,此版本已被家服务器标记为 不稳定 。", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "升级此房间将会关闭房间的当前实例并创建一个具有相同名称的升级版房间。", @@ -609,12 +599,10 @@ "Use an identity server to invite by email. Click continue to use the default identity server (%(defaultIdentityServerName)s) or manage in Settings.": "使用身份服务器以通过电子邮件邀请其他用户。单击继续以使用默认身份服务器(%(defaultIdentityServerName)s),或在设置中进行管理。", "Use an identity server to invite by email. Manage in Settings.": "使用身份服务器以通过电子邮件邀请其他用户。在设置中进行管理。", "Could not find user in room": "房间中无用户", - "Please supply a widget URL or embed code": "请提供一个挂件URL或嵌入代码", "Verifies a user, session, and pubkey tuple": "验证用户、会话和公钥元组", "Session already verified!": "会话已验证!", "WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "警告:密钥验证失败!%(userId)s 的会话 %(deviceId)s 的签名密钥为 %(fprint)s,与提供的密钥 %(fingerprint)s 不符。这可能表示你的通讯已被截获!", "The signing key you provided matches the signing key you received from %(userId)s's session %(deviceId)s. Session marked as verified.": "你提供的签名密钥与你从 %(userId)s 的会话 %(deviceId)s 获取的一致。此会话被标为已验证。", - "Opens chat with the given user": "与指定用户发起聊天", "You signed in to a new session without verifying it:": "你登录了未经过验证的新会话:", "Verify your other session using one of the options below.": "使用以下选项之一验证你的其他会话。", "%(name)s (%(userId)s) signed in to a new session without verifying it:": "%(name)s(%(userId)s)登录到未验证的新会话:", @@ -703,7 +691,6 @@ "Custom font size can only be between %(min)s pt and %(max)s pt": "自定义字体大小只能介于 %(min)s pt 和 %(max)s pt 之间", "Agree to the identity server (%(serverName)s) Terms of Service to allow yourself to be discoverable by email address or phone number.": "同意身份服务器(%(serverName)s)的服务协议以允许自己被通过邮件地址或电话号码发现。", "Discovery": "发现", - "Clear cache and reload": "清理缓存并重载", "Ignored/Blocked": "已忽略/已屏蔽", "Error adding ignored user/server": "添加已忽略的用户/服务器时出现错误", "Error subscribing to list": "订阅列表时出现错误", @@ -1067,10 +1054,6 @@ "Enter username": "输入用户名", "Sign in with SSO": "使用单点登录", "No files visible in this room": "此房间中没有文件可见", - "Welcome to %(appName)s": "欢迎来到 %(appName)s", - "Send a Direct Message": "发送私聊", - "Explore Public Rooms": "探索公共房间", - "Create a Group Chat": "创建一个群聊", "Explore rooms": "探索房间", "%(creator)s created and configured the room.": "%(creator)s 创建并配置了此房间。", "Switch to light mode": "切换到浅色模式", @@ -1085,10 +1068,6 @@ "Identity server URL does not appear to be a valid identity server": "身份服务器链接不像是有效的身份服务器", "This account has been deactivated.": "此账户已被停用。", "If you've joined lots of rooms, this might take a while": "如果你加入了很多房间,可能会消耗一些时间", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "你的新账户(%(newAccountId)s)已注册,但你已经登录了一个不同的账户(%(loggedInUserId)s)。", - "Continue with previous account": "用之前的账户继续", - "Log in to your new account.": "登录到你的新账户。", - "Registration Successful": "注册成功", "Failed to re-authenticate due to a homeserver problem": "由于家服务器的问题,重新认证失败", "Failed to re-authenticate": "重新认证失败", "Enter your password to sign in and regain access to your account.": "输入你的密码以登录并重新获取访问你账户的权限。", @@ -1132,21 +1111,6 @@ "Indexed messages:": "已索引的消息:", "Indexed rooms:": "已索引的房间:", "%(doneRooms)s out of %(totalRooms)s": "%(totalRooms)s 中之 %(doneRooms)s", - "Navigation": "导航", - "Calls": "通话", - "Room List": "房间列表", - "Autocomplete": "自动补全", - "New line": "换行", - "Cancel replying to a message": "取消回复消息", - "Dismiss read marker and jump to bottom": "忽略已读标记并跳转到底部", - "Jump to oldest unread message": "跳转到最旧的未读消息", - "Upload a file": "上传文件", - "Jump to room search": "跳转到房间搜索", - "Select room from the room list": "从房间列表选择房间", - "Collapse room list section": "折叠房间列表段", - "Expand room list section": "展开房间列表段", - "Close dialog or context menu": "关闭对话框或上下文菜单", - "Cancel autocomplete": "取消自动补全", "How fast should messages be downloaded.": "消息下载速度。", "IRC display name width": "IRC 显示名称宽度", "Unexpected server error trying to leave the room": "试图离开房间时发生意外服务器错误", @@ -1169,14 +1133,7 @@ "Country Dropdown": "国家下拉菜单", "Attach files from chat or just drag and drop them anywhere in a room.": "从聊天中附加文件或将文件拖放到房间的任何地方。", "Message downloading sleep time(ms)": "消息下载休眠时间 (ms)", - "Toggle Bold": "切换粗体", - "Toggle Italics": "切换斜体", - "Toggle Quote": "切换引用", - "Toggle microphone mute": "切换麦克风静音", - "Toggle the top left menu": "切换左上方的菜单", - "Toggle right panel": "切换右侧面板", "The server is not configured to indicate what the problem is (CORS).": "服务器没有配置为提示错误是什么(CORS)。", - "Activate selected button": "激活选中的按钮", "Unknown App": "未知应用", "Cross-signing is ready for use.": "交叉签名已可用。", "Cross-signing is not set up.": "未设置交叉签名。", @@ -1264,8 +1221,6 @@ "Dial pad": "拨号盘", "There was an error looking up the phone number": "查询电话号码时发生错误", "Unable to look up phone number": "无法查询电话号码", - "Takes the call in the current room off hold": "解除挂起当前房间的通话", - "Places the call in the current room on hold": "挂起当前房间的通话", "Use app": "使用 app", "Use app for a better experience": "使用 app 以获得更好的体验", "Enable desktop notifications": "开启桌面通知", @@ -1284,16 +1239,10 @@ "Send stickers into this room": "发送贴纸到此房间", "Remain on your screen while running": "运行时始终保留在你的屏幕上", "Remain on your screen when viewing another room, when running": "运行时始终保留在你的屏幕上,即使你在浏览其它房间", - "Converts the room to a DM": "将此房间会话转化为私聊会话", - "Converts the DM to a room": "将此私聊会话转化为房间会话", - "Go to Home View": "转到主视图", - "Search (must be enabled)": "搜索(必须启用)", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s 或 %(usernamePassword)s", "%(count)s members": { "one": "%(count)s 位成员", "other": "%(count)s 位成员" }, - "Welcome %(name)s": "欢迎 %(name)s", "Enter Security Key": "输入安全密钥", "Invalid Security Key": "安全密钥无效", "Wrong Security Key": "安全密钥错误", @@ -1561,7 +1510,6 @@ "Mali": "马里", "Ignored attempt to disable encryption": "已忽略禁用加密的尝试", "Confirm your Security Phrase": "确认你的安全短语", - "Continue with %(ssoButtons)s": "使用 %(ssoButtons)s 继续", "There was a problem communicating with the homeserver, please try again later.": "与家服务器通讯时出现问题,请稍后再试。", "Decrypted event source": "解密的事件源码", "Original event source": "原始事件源码", @@ -1616,9 +1564,6 @@ "Great! This Security Phrase looks strong enough.": "棒!这个安全短语看着够强。", "Space Autocomplete": "空间自动完成", "Verify your identity to access encrypted messages and prove your identity to others.": "验证你的身份来获取已加密的消息并向其他人证明你的身份。", - "Decide where your account is hosted": "决定账户托管位置", - "Host account on": "账户托管于", - "Already have an account? Sign in here": "已有账户?在此登录", "New? Create account": "新来的?创建账户", "New here? Create an account": "新来的?创建账户", "Got an account? Sign in": "有账户了?登录", @@ -1723,7 +1668,6 @@ "Only the two of you are in this conversation, unless either of you invites anyone to join.": "除非你们其中一个邀请了别人加入,否则将仅有你们两个人在此对话中。", "Failed to send": "发送失败", "You have no ignored users.": "你没有设置忽略用户。", - "Your access token gives full access to your account. Do not share it with anyone.": "你的访问令牌可以完全访问你的账户。不要将其与任何人分享。", "Message search initialisation failed": "消息搜索初始化失败", "Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": { "one": "使用%(size)s存储%(rooms)s个房间的消息。在本地安全地缓存已加密的消息以使其出现在搜索结果中。", @@ -1745,9 +1689,6 @@ "Are you sure you want to leave the space '%(spaceName)s'?": "你确定要离开空间「%(spaceName)s」吗?", "This space is not public. You will not be able to rejoin without an invite.": "此空间并不公开。在没有得到邀请的情况下,你将无法重新加入。", "You are the only person here. If you leave, no one will be able to join in the future, including you.": "你是这里唯一的人。如果你离开了,以后包括你在内任何人都将无法加入。", - "Now, let's help you get started": "现在,让我们协助你开始", - "Add a photo so people know it's you.": "添加照片,让人们知道这是你。", - "Great, that'll help people know it's you": "很好,这样大家就知道是你了", "Use email to optionally be discoverable by existing contacts.": "使用电子邮箱以选择性地被现有联系人搜索。", "Use email or phone to optionally be discoverable by existing contacts.": "使用电子邮箱或电话以选择性地被现有联系人搜索。", "Add an email to be able to reset your password.": "添加电子邮箱以重置你的密码。", @@ -1854,7 +1795,6 @@ "Code blocks": "代码块", "Displaying time": "显示的时间戳", "Keyboard shortcuts": "键盘快捷键", - "Olm version:": "Olm 版本:", "There was an error loading your notification settings.": "加载你的通知设置时出错。", "Mentions & keywords": "提及&关键词", "Global": "全局", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "以上,但也包括你加入或被邀请的任何房间中", "Some encryption parameters have been changed.": "一些加密参数已更改。", "Role in ": " 中的角色", - "Send a sticker": "发送贴纸", "Unknown failure": "未知失败", "Failed to update the join rules": "未能更新加入列表", "Anyone in can find and join. You can select other spaces too.": " 中的任何人都可以寻找和加入。你也可以选择其他空间。", @@ -2069,7 +2008,6 @@ "Thread options": "消息列选项", "Someone already has that username, please try another.": "用户名已被占用,请尝试使用其他用户名。", "Someone already has that username. Try another or if it is you, sign in below.": "该名称已被占用。 尝试另一个,或者如果是您,请在下面登录。", - "Own your conversations.": "拥有您的对话。", "Show tray icon and minimise window to it on close": "显示托盘图标并在关闭时最小化窗口至托盘", "Reply in thread": "在消息列中回复", "Spaces to show": "要显示的空间", @@ -2135,7 +2073,6 @@ "You cannot place calls without a connection to the server.": "你不能在未连接到服务器时进行呼叫。", "Connectivity to the server has been lost": "已丢失与服务器的连接", "Share location": "共享位置", - "Toggle space panel": "切换空间仪表盘", "Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "您确定要结束此投票吗? 这将显示投票的最终结果并阻止人们投票。", "End Poll": "结束投票", "Sorry, the poll did not end. Please try again.": "抱歉,投票没有结束。 请再试一次。", @@ -2200,11 +2137,6 @@ "%(space1Name)s and %(space2Name)s": "%(space1Name)s 与 %(space2Name)s", "Remove, ban, or invite people to your active room, and make you leave": "移除、封禁或邀请他人加入你的活跃房间,方可离开", "Remove, ban, or invite people to this room, and make you leave": "移除、封禁或邀请他人加入此房间,方可离开", - "No active call in this room": "此房间未有活跃中的通话", - "Unable to find Matrix ID for phone number": "未能找到与此手机号码关联的 Matrix ID", - "No virtual room for this room": "此房间未有虚拟房间", - "Switches to this room's virtual room, if it has one": "切换到此房间的虚拟房间(如有)", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "开发者命令:放弃当前输出群组会话并设置新的Olm会话", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "未知用户会话配对:(%(userId)s:%(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "命令失败:无法找到房间(%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "无法识别的房间地址:%(roomAlias)s", @@ -2311,30 +2243,8 @@ "If someone told you to copy/paste something here, there is a high likelihood you're being scammed!": "若某人告诉你在这里复制/粘贴某物,那你极有可能正被欺骗!", "Wait!": "等等!", "This address does not point at this room": "此地址不指向此房间", - "Redo edit": "重做编辑", - "Force complete": "强制完成", - "Undo edit": "撤销编辑", - "Jump to last message": "跳转至最后一条消息", - "Jump to first message": "跳转至第一条消息", - "Toggle hidden event visibility": "切换隐藏事件可见性", "Unable to check if username has been taken. Try again later.": "无法检查用户名是否已被使用。稍后再试。", - "Previous autocomplete suggestion": "上个自动完成建议", - "Next autocomplete suggestion": "下个自动完成建议", - "Previous room or DM": "上个房间或私聊", - "Next room or DM": "下个房间或私聊", - "Previous unread room or DM": "上个未读房间或私聊", - "Next unread room or DM": "下个未读房间或私聊", - "Scroll down in the timeline": "在时间线里向下滚动", - "Scroll up in the timeline": "在时间线里向上滚动", - "Toggle webcam on/off": "切换网络相机开/关", - "Navigate to previous message in composer history": "导航到编辑器历史里的上条消息", - "Navigate to next message in composer history": "导航到编辑器历史里的下条消息", - "Jump to end of the composer": "跳至编辑器尾部", - "Jump to start of the composer": "跳至编辑器的开头", - "Navigate to previous message to edit": "导航到上条要编辑的消息", - "Navigate to next message to edit": "导航到下条要编辑的消息", "Space home": "空间首页", - "Open this settings tab": "打开此设置标签页", "Unknown error fetching location. Please try again later.": "获取位置时发生错误。请之后再试。", "Timed out trying to fetch your location. Please try again later.": "尝试获取你的位置超时。请之后再试。", "Failed to fetch your location. Please try again later.": "获取你的位置失败。请之后再试。", @@ -2471,9 +2381,6 @@ "An error occurred whilst sharing your live location": "分享实时位置时出错", "An error occurred while stopping your live location": "停止实时位置时出错", "Close sidebar": "关闭侧边栏", - "Navigate up in the room list": "在房间列表中向上导航", - "Navigate down in the room list": "在房间列表中向下导航", - "Toggle Code Block": "切换代码块", "Failed to set direct message tag": "设置私聊标签失败", "You have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, sign in again on each device.": "你已登出全部设备,并将不再收到推送通知。要重新启用通知,请在每台设备上再次登入。", "If you want to retain access to your chat history in encrypted rooms, set up Key Backup or export your message keys from one of your other devices before proceeding.": "若想保留对加密房间的聊天历史的访问权,请设置密钥备份或从其他设备导出消息密钥,然后再继续。", @@ -2481,10 +2388,6 @@ "Resent!": "已重新发送!", "Did not receive it? Resend it": "没收到吗?重新发送", "To create your account, open the link in the email we just sent to %(emailAddress)s.": "要创建账户,请打开我们刚刚发送到%(emailAddress)s的电子邮件里的链接。", - "Toggle Link": "切换链接", - "Previous recently visited room or space": "上个最近访问过的房间或空间", - "Next recently visited room or space": "下个最近访问过的房间或空间", - "Open user settings": "打开用户设置", "Verified sessions": "已验证的会话", "For best security, sign out from any session that you don't recognize or use anymore.": "为了最佳安全性,请从任何不认识或不再使用的会话登出。", "No verified sessions found.": "未找到已验证的会话。", @@ -2535,7 +2438,6 @@ }, "Record the client name, version, and url to recognise sessions more easily in session manager": "记录客户端名称、版本和url以便在会话管理器里更易识别", "Room info": "房间信息", - "Switch to space by number": "按数字切换到空间", "You don't have the required permissions to start a voice broadcast in this room. Contact a room administrator to upgrade your permissions.": "你没有必要的权限在这个房间开始语音广播。请联系房间管理员以提升你的权限。", "You are already recording a voice broadcast. Please end your current voice broadcast to start a new one.": "你已经在录制一个语音广播。请结束你当前的语音广播以开始新的语音广播。", "pause voice broadcast": "暂停语音广播", @@ -2588,9 +2490,7 @@ "Can’t start a call": "无法开始通话", "Unfortunately we're unable to start a recording right now. Please try again later.": "很遗憾,我们现在无法开始录音。请稍后再试。", "Connection error": "连接错误", - "Could not find room": "无法找到房间", "WARNING: session already verified, but keys do NOT MATCH!": "警告:会话已验证,然而密钥不匹配!", - "iframe has no src attribute": "iframe无src属性", "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,但邀请工具没给出错误", "Failed to read events": "读取时间失败", "Failed to send event": "发送事件失败", @@ -2862,7 +2762,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[number]", - "backspace": "Backspace" + "backspace": "Backspace", + "category_calls": "通话", + "category_room_list": "房间列表", + "category_navigation": "导航", + "category_autocomplete": "自动补全", + "composer_toggle_bold": "切换粗体", + "composer_toggle_italics": "切换斜体", + "composer_toggle_quote": "切换引用", + "composer_toggle_code_block": "切换代码块", + "composer_toggle_link": "切换链接", + "cancel_reply": "取消回复消息", + "navigate_next_message_edit": "导航到下条要编辑的消息", + "navigate_prev_message_edit": "导航到上条要编辑的消息", + "composer_jump_start": "跳至编辑器的开头", + "composer_jump_end": "跳至编辑器尾部", + "composer_navigate_next_history": "导航到编辑器历史里的下条消息", + "composer_navigate_prev_history": "导航到编辑器历史里的上条消息", + "send_sticker": "发送贴纸", + "toggle_microphone_mute": "切换麦克风静音", + "toggle_webcam_mute": "切换网络相机开/关", + "dismiss_read_marker_and_jump_bottom": "忽略已读标记并跳转到底部", + "jump_to_read_marker": "跳转到最旧的未读消息", + "upload_file": "上传文件", + "scroll_up_timeline": "在时间线里向上滚动", + "scroll_down_timeline": "在时间线里向下滚动", + "jump_room_search": "跳转到房间搜索", + "room_list_select_room": "从房间列表选择房间", + "room_list_collapse_section": "折叠房间列表段", + "room_list_expand_section": "展开房间列表段", + "room_list_navigate_down": "在房间列表中向下导航", + "room_list_navigate_up": "在房间列表中向上导航", + "toggle_top_left_menu": "切换左上方的菜单", + "toggle_right_panel": "切换右侧面板", + "keyboard_shortcuts_tab": "打开此设置标签页", + "go_home_view": "转到主视图", + "next_unread_room": "下个未读房间或私聊", + "prev_unread_room": "上个未读房间或私聊", + "next_room": "下个房间或私聊", + "prev_room": "上个房间或私聊", + "autocomplete_cancel": "取消自动补全", + "autocomplete_navigate_next": "下个自动完成建议", + "autocomplete_navigate_prev": "上个自动完成建议", + "toggle_space_panel": "切换空间仪表盘", + "toggle_hidden_events": "切换隐藏事件可见性", + "jump_first_message": "跳转至第一条消息", + "jump_last_message": "跳转至最后一条消息", + "composer_undo": "撤销编辑", + "composer_redo": "重做编辑", + "navigate_prev_history": "上个最近访问过的房间或空间", + "navigate_next_history": "下个最近访问过的房间或空间", + "switch_to_space": "按数字切换到空间", + "open_user_settings": "打开用户设置", + "close_dialog_menu": "关闭对话框或上下文菜单", + "activate_button": "激活选中的按钮", + "composer_new_line": "换行", + "autocomplete_force": "强制完成", + "search": "搜索(必须启用)" }, "composer": { "format_bold": "粗体", @@ -2972,7 +2928,16 @@ "qr_or_app_links": "%(qrCode)s或%(appLinks)s", "download_app_store": "在App Store下载", "apple_trademarks": "App Store®和Apple logo®是Apple Inc.的商标", - "google_trademarks": "Google Play及其logo是Google LLC的商标。" + "google_trademarks": "Google Play及其logo是Google LLC的商标。", + "has_avatar_label": "很好,这样大家就知道是你了", + "no_avatar_label": "添加照片,让人们知道这是你。", + "welcome_user": "欢迎 %(name)s", + "welcome_detail": "现在,让我们协助你开始", + "intro_welcome": "欢迎来到 %(appName)s", + "intro_byline": "拥有您的对话。", + "send_dm": "发送私聊", + "explore_rooms": "探索公共房间", + "create_room": "创建一个群聊" }, "settings": { "show_breadcrumbs": "在房间列表上方显示最近浏览过的房间的快捷方式", @@ -3485,7 +3450,24 @@ "category_admin": "管理员", "category_advanced": "高级", "category_effects": "效果", - "category_other": "其他" + "category_other": "其他", + "addwidget_missing_url": "请提供一个挂件URL或嵌入代码", + "addwidget_iframe_missing_src": "iframe无src属性", + "addwidget_invalid_protocol": "请提供一个 https:// 或 http:// 挂件URL", + "addwidget_no_permissions": "你无法修改此房间的插件。", + "converttodm": "将此房间会话转化为私聊会话", + "could_not_find_room": "无法找到房间", + "converttoroom": "将此私聊会话转化为房间会话", + "discardsession": "强制丢弃加密房间中的当前出站群组会话", + "remakeolm": "开发者命令:放弃当前输出群组会话并设置新的Olm会话", + "tovirtual": "切换到此房间的虚拟房间(如有)", + "tovirtual_not_found": "此房间未有虚拟房间", + "query": "与指定用户发起聊天", + "query_not_found_phone_number": "未能找到与此手机号码关联的 Matrix ID", + "holdcall": "挂起当前房间的通话", + "no_active_call": "此房间未有活跃中的通话", + "unholdcall": "解除挂起当前房间的通话", + "me": "显示操作" }, "presence": { "busy": "忙", @@ -3659,7 +3641,16 @@ "auth": { "continue_with_idp": "使用 %(provider)s 继续", "sign_in_with_sso": "使用单点登录", - "sso": "单点登录" + "sso": "单点登录", + "continue_with_sso": "使用 %(ssoButtons)s 继续", + "sso_or_username_password": "%(ssoButtons)s 或 %(usernamePassword)s", + "sign_in_instead": "已有账户?在此登录", + "account_clash": "你的新账户(%(newAccountId)s)已注册,但你已经登录了一个不同的账户(%(loggedInUserId)s)。", + "account_clash_previous_account": "用之前的账户继续", + "log_in_new_account": "登录到你的新账户。", + "registration_successful": "注册成功", + "server_picker_title": "账户托管于", + "server_picker_dialog_title": "决定账户托管位置" }, "room_list": { "sort_unread_first": "优先显示有未读消息的房间", @@ -3692,5 +3683,18 @@ "report_entire_room": "报告整个房间", "report_content_to_homeserver": "向你的家服务器管理员举报内容", "description": "举报此消息会将其唯一的“事件ID”发送给你的家服务器的管理员。如果此房间中的消息是加密的,则你的家服务器管理员将无法阅读消息文本,也无法查看任何文件或图片。" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s 版本:", + "olm_version": "Olm 版本:", + "help_link": "关于 %(brand)s 的使用说明。", + "help_link_chat_bot": "关于 %(brand)s 的使用说明,请点击这里或者通过下方按钮同我们的机器人聊聊。", + "chat_bot": "与 %(brand)s 机器人聊天", + "title": "帮助及关于", + "versions": "版本", + "access_token_detail": "你的访问令牌可以完全访问你的账户。不要将其与任何人分享。", + "clear_cache_reload": "清理缓存并重载" + } } } diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index a0da453c25..ceb9d3c306 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -15,7 +15,6 @@ "Deactivate Account": "停用帳號", "Decrypt %(text)s": "解密 %(text)s", "Default": "預設", - "Displays action": "顯示操作", "Download %(text)s": "下載 %(text)s", "Email": "電子郵件地址", "Email address": "電子郵件地址", @@ -351,7 +350,6 @@ "Failed to upgrade room": "無法升級聊天室", "The room upgrade could not be completed": "聊天室升級可能不完整", "Upgrade this room to version %(version)s": "升級此聊天室到版本 %(version)s", - "Forces the current outbound group session in an encrypted room to be discarded": "強制丟棄目前在已加密聊天室中的外發群組工作階段", "Before submitting logs, you must create a GitHub issue to describe your problem.": "在遞交紀錄檔前,您必須建立 GitHub 議題以描述您的問題。", "%(brand)s now uses 3-5x less memory, by only loading information about other users when needed. Please wait whilst we resynchronise with the server!": "%(brand)s 現在僅使用低於原本3-5倍的記憶體,僅在需要時才會載入其他使用者的資訊。請等待我們與伺服器重新同步!", "Updating %(brand)s": "正在更新 %(brand)s", @@ -439,11 +437,6 @@ "Phone numbers": "電話號碼", "Language and region": "語言與區域", "Account management": "帳號管理", - "For help with using %(brand)s, click here.": "若需 %(brand)s 的使用說明,請點擊這裡。", - "For help with using %(brand)s, click here or start a chat with our bot using the button below.": "對於使用 %(brand)s 的說明,點選這裡或是使用下面的按鈕開始與我們的聊天機器人聊天。", - "Chat with %(brand)s Bot": "與 %(brand)s 機器人聊天", - "Help & About": "說明與關於", - "Versions": "版本", "Composer": "編輯器", "Room list": "聊天室清單", "Autocomplete delay (ms)": "自動完成延遲(毫秒)", @@ -563,8 +556,6 @@ "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.": "一旦啟用,聊天室的加密就不能停用了。在已加密的聊天室裡傳送的訊息無法被伺服器看見,僅能被聊天室的參與者看到。啟用加密可能會讓許多聊天機器人與橋接運作不正常。取得更多關於加密的資訊。", "Power level": "權限等級", - "Please supply a https:// or http:// widget URL": "請提供 https:// 或 http:// 開頭的小工具網址", - "You cannot modify widgets in this room.": "您無法在此聊天室中修改小工具。", "Upgrade this room to the recommended room version": "升級此聊天室到建議的聊天室版本", "This room is running room version , which this homeserver has marked as unstable.": "此聊天室正在執行聊天室版本 ,此家伺服器已標記為不穩定。", "Upgrading this room will shut down the current instance of the room and create an upgraded room with the same name.": "升級此聊天室將會關閉聊天室目前的執行個體,並建立一個同名的升級版。", @@ -654,11 +645,7 @@ "You can register, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "您可以註冊,但有些功能在身分伺服器重新上線前會沒辦法運作。如果您一直看到這個警告,請檢查您的設定或聯絡伺服器管理員。", "You can reset your password, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "您可以重設密碼,但有些功能在身分伺服器重新上線前會沒辦法運作。如果您一直看到這個警告,請檢查您的設定或聯絡伺服器管理員。", "You can log in, but some features will be unavailable until the identity server is back online. If you keep seeing this warning, check your configuration or contact a server admin.": "您可以登入,但有些功能在身分伺服器重新上線前會沒辦法運作。如果您一直看到這個警告,請檢查您的設定或聯絡伺服器管理員。", - "Log in to your new account.": "登入到您的新帳號。", - "Registration Successful": "註冊成功", "Upload all": "上傳全部", - "Your new account (%(newAccountId)s) is registered, but you're already logged into a different account (%(loggedInUserId)s).": "您的新帳號 %(newAccountId)s 已註冊,但您已經登入到不同的帳號 (%(loggedInUserId)s)。", - "Continue with previous account": "使用先前的帳號繼續", "Edited at %(date)s. Click to view edits.": "編輯於 %(date)s。點擊以檢視編輯。", "Message edits": "訊息編輯紀錄", "Upgrading this room requires closing down the current instance of the room and creating a new room in its place. To give room members the best possible experience, we will:": "升級這個聊天室需要關閉目前的執行個體並重新建立一個新的聊天室來替代。為了給予聊天室成員最佳的體驗,我們將會:", @@ -762,7 +749,6 @@ "Notification Autocomplete": "通知自動完成", "Room Autocomplete": "聊天室自動完成", "User Autocomplete": "使用者自動完成", - "Clear cache and reload": "清除快取並重新載入", "Show image": "顯示圖片", "Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator.": "未於家伺服器設定中指定 Captcha 公鑰。請將此問題回報給您的家伺服器管理員。", "Your email address hasn't been verified yet": "您的電子郵件地址尚未被驗證", @@ -1014,27 +1000,9 @@ "Cancelled signature upload": "已取消簽章上傳", "Signature upload success": "簽章上傳成功", "Signature upload failed": "無上傳簽章", - "Navigation": "導航", - "Calls": "通話", - "Room List": "聊天室清單", - "Autocomplete": "自動完成", - "Toggle Bold": "切換粗體", - "Toggle Italics": "切換斜體", - "Toggle Quote": "切換引用", - "New line": "換行", - "Toggle microphone mute": "切換麥克風靜音", - "Jump to room search": "跳至聊天室搜尋", - "Select room from the room list": "從聊天室清單中選取聊天室", - "Collapse room list section": "折疊聊天室清單段落", - "Expand room list section": "展開聊天室清單段落", - "Toggle the top left menu": "切換左上方選單", - "Close dialog or context menu": "關閉對話框或內容選單", - "Activate selected button": "啟動已選取按鈕", - "Cancel autocomplete": "取消自動完成", "Confirm by comparing the following with the User Settings in your other session:": "透過將下列內容與您其他工作階段中的「使用者設定」所顯示的內容來確認:", "Confirm this user's session by comparing the following with their User Settings:": "將以下內容與對方的「使用者設定」當中顯示的內容進行比對,來確認對方的工作階段:", "If they don't match, the security of your communication may be compromised.": "如果它們不相符,則可能會威脅到您的通訊安全。", - "Toggle right panel": "切換右側面板", "Self signing private key:": "自行簽署私鑰:", "cached locally": "已快取至本機", "not found locally": "在本機找不到", @@ -1043,7 +1011,6 @@ "Individually verify each session used by a user to mark it as trusted, not trusting cross-signed devices.": "逐一手動驗證使用者的工作階段,將其標記為受信任階段,不透過裝置的交叉簽署機制來信任。", "In encrypted rooms, your messages are secured and only you and the recipient have the unique keys to unlock them.": "在加密聊天室中,您的訊息相當安全,只有您與接收者有獨特的金鑰可以將其解鎖。", "Verify all users in a room to ensure it's secure.": "請驗證聊天室中的所有使用者來確保安全。", - "Cancel replying to a message": "取消回覆訊息", "Sign in with SSO": "使用 SSO 登入", "Use Single Sign On to continue": "使用單一登入來繼續", "Confirm adding this email address by using Single Sign On to prove your identity.": "使用單一登入來證明身分,以確認新增該電子郵件地址。", @@ -1059,10 +1026,6 @@ "Verification timed out.": "驗證逾時。", "%(displayName)s cancelled verification.": "%(displayName)s 取消驗證。", "You cancelled verification.": "您取消了驗證。", - "Welcome to %(appName)s": "歡迎使用 %(appName)s", - "Send a Direct Message": "傳送私人訊息", - "Explore Public Rooms": "探索公開聊天室", - "Create a Group Chat": "建立群組聊天", "%(name)s is requesting verification": "%(name)s 正在要求驗證", "well formed": "組成良好", "unexpected type": "預料之外的類型", @@ -1080,7 +1043,6 @@ "Reminder: Your browser is unsupported, so your experience may be unpredictable.": "提醒:您的瀏覽器不受支援,所以您的使用體驗可能無法預測。", "Unable to upload": "無法上傳", "Currently indexing: %(currentRoom)s": "目前正在建立索引:%(currentRoom)s", - "Please supply a widget URL or embed code": "請提供小工具網址或嵌入程式碼", "Unable to query secret storage status": "無法查詢秘密儲存空間狀態", "New login. Was this you?": "新登入。這是您嗎?", "Restoring keys from backup": "從備份還原金鑰", @@ -1089,16 +1051,12 @@ "Successfully restored %(sessionCount)s keys": "成功復原 %(sessionCount)s 金鑰", "You signed in to a new session without verifying it:": "您已登入新的工作階段但未驗證:", "Verify your other session using one of the options below.": "使用下方的其中一個選項來驗證您其他工作階段。", - "Opens chat with the given user": "開啟與指定使用者的聊天", "You've successfully verified your device!": "您已成功驗證您的裝置!", "To continue, use Single Sign On to prove your identity.": "要繼續,使用單一登入系統來證明您的身分。", "Confirm to continue": "確認以繼續", "Click the button below to confirm your identity.": "點擊下方按鈕以確認您的身分。", "Confirm encryption setup": "確認加密設定", "Click the button below to confirm setting up encryption.": "點擊下方按鈕以確認設定加密。", - "Dismiss read marker and jump to bottom": "清除讀取標記並跳至底部", - "Jump to oldest unread message": "跳至最舊的未讀訊息", - "Upload a file": "上傳檔案", "IRC display name width": "IRC 顯示名稱寬度", "Size must be a number": "大小必須為數字", "Custom font size can only be between %(min)s pt and %(max)s pt": "自訂字型大小僅能為 %(min)s 點至 %(max)s 點間", @@ -1151,7 +1109,6 @@ "Save your Security Key": "儲存您的安全金鑰", "Are you sure you want to cancel entering passphrase?": "您確定要取消輸入安全密語嗎?", "%(brand)s can't securely cache encrypted messages locally while running in a web browser. Use %(brand)s Desktop for encrypted messages to appear in search results.": "%(brand)s 無法在網頁瀏覽器中執行時,安全地在本機快取加密訊息。若需搜尋加密訊息,請使用 %(brand)s 桌面版。", - "%(brand)s version:": "%(brand)s 版本:", "Favourited": "已加入我的最愛", "Forget Room": "忘記聊天室", "This room is public": "此聊天室為公開聊天室", @@ -1236,10 +1193,6 @@ "Please view existing bugs on Github first. No match? Start a new one.": "請先檢視 GitHub 上既有的錯誤。沒有相符的嗎?回報新的問題。", "Comment": "評論", "Feedback sent": "已傳送回饋", - "Now, let's help you get started": "現在,讓我們協助您開始", - "Welcome %(name)s": "歡迎 %(name)s", - "Add a photo so people know it's you.": "新增照片以讓其他人知道是您。", - "Great, that'll help people know it's you": "太好了,這會讓人們知道是您", "Invite someone using their name, email address, username (like ) or share this room.": "使用某人的名字、電子郵件地址、使用者名稱(如 )或分享此聊天空間來邀請人。", "Start a conversation with someone using their name, email address or username (like ).": "使用某人的名字、電子郵件地址或使用者名稱(如 )來與他們開始對話。", "Invite by email": "透過電子郵件邀請", @@ -1506,9 +1459,6 @@ "Topic: %(topic)s (edit)": "主題:%(topic)s(編輯)", "This is the beginning of your direct message history with .": "這是您與 私人訊息紀錄的開頭。", "Only the two of you are in this conversation, unless either of you invites anyone to join.": "除非你們兩位之中有人邀請其他人加入,否則此對話中只會有你們兩位。", - "Takes the call in the current room off hold": "取消目前聊天室通話等候接聽狀態", - "Places the call in the current room on hold": "把目前聊天室通話設為等候接聽", - "Go to Home View": "前往主畫面", "Securely cache encrypted messages locally for them to appear in search results, using %(size)s to store messages from %(rooms)s rooms.": { "one": "使用 %(size)s 來儲存來自 %(rooms)s 個聊天室的訊息,在本機安全地快取已加密的訊息以使其出現在搜尋結果中。", "other": "使用 %(size)s 來儲存來自 %(rooms)s 個聊天室的訊息,在本機安全地快取已加密的訊息以使其出現在搜尋結果中。" @@ -1576,11 +1526,6 @@ "Enter email address": "輸入電子郵件地址", "New here? Create an account": "新手?建立帳號", "Got an account? Sign in": "有帳號了嗎?登入", - "Decide where your account is hosted": "決定託管帳號的位置", - "Host account on": "帳號託管於", - "Already have an account? Sign in here": "已有帳號?在此登入", - "%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s 或 %(usernamePassword)s", - "Continue with %(ssoButtons)s": "使用 %(ssoButtons)s 繼續", "New? Create account": "新手?建立帳號", "There was a problem communicating with the homeserver, please try again later.": "與家伺服器通訊時出現問題,請再試一次。", "Use email to optionally be discoverable by existing contacts.": "設定電子郵件地址後,即可選擇性被已有的聯絡人新增為好友。", @@ -1634,12 +1579,9 @@ "Wrong Security Key": "錯誤的安全金鑰", "Set my room layout for everyone": "為所有人設定我的聊天室佈局", "Back up your encryption keys with your account data in case you lose access to your sessions. Your keys will be secured with a unique Security Key.": "請備份您帳號的加密金鑰,以防無法使用您的工作階段。您的金鑰會被特殊的安全金鑰保護。", - "Search (must be enabled)": "搜尋(必須啟用)", "Remember this": "記住這個", "The widget will verify your user ID, but won't be able to perform actions for you:": "小工具將會驗證您的使用者 ID,但將無法為您執行動作:", "Allow this widget to verify your identity": "允許此小工具驗證您的身分", - "Converts the DM to a room": "將私人訊息轉換為聊天室", - "Converts the room to a DM": "將聊天室轉換為私人訊息", "Use app for a better experience": "使用應用程式以取得更好的體驗", "Use app": "使用應用程式", "Something went wrong in confirming your identity. Cancel and try again.": "確認您身分時出了一點問題。取消並再試一次。", @@ -1780,7 +1722,6 @@ "No microphone found": "找不到麥克風", "We were unable to access your microphone. Please check your browser settings and try again.": "我們無法存取您的麥克風。請檢查您的瀏覽器設定並再試一次。", "Unable to access your microphone": "無法存取您的麥克風", - "Your access token gives full access to your account. Do not share it with anyone.": "您的存取權杖可提供您帳號完整的存取權限。請勿分享給任何人。", "Please enter a name for the space": "請輸入聊天空間名稱", "Connecting": "連線中", "Message search initialisation failed": "訊息搜尋初始化失敗", @@ -1945,7 +1886,6 @@ "Show sidebar": "顯示側邊欄", "Hide sidebar": "隱藏側邊欄", "Surround selected text when typing special characters": "輸入特殊字元時,圍繞選取的文字", - "Olm version:": "Olm 版本:", "Delete avatar": "刪除大頭照", "Unknown failure: %(reason)s": "未知錯誤:%(reason)s", "Rooms and spaces": "聊天室與聊天空間", @@ -1962,7 +1902,6 @@ "The above, but in any room you are joined or invited to as well": "以上,但在任何您已加入或被邀請的聊天室中", "Some encryption parameters have been changed.": "部份加密參數已變更。", "Role in ": " 中的角色", - "Send a sticker": "傳送貼圖", "Unknown failure": "未知錯誤", "Failed to update the join rules": "加入規則更新失敗", "Select the roles required to change various parts of the space": "選取變更聊天空間各個部份所需的角色", @@ -2069,7 +2008,6 @@ "You do not have permission to start polls in this room.": "您沒有權限在此聊天室發起投票。", "Someone already has that username, please try another.": "某人已使用該使用者名稱。請改用其他名稱。", "Someone already has that username. Try another or if it is you, sign in below.": "某人已使用該使用者名稱。請改用其他名稱。但如果是您,請在下方登入。", - "Own your conversations.": "擁有您的對話。", "Show tray icon and minimise window to it on close": "顯示系統匣圖示並於關閉時最小化", "Show all threads": "顯示所有討論串", "Keep discussions organised with threads": "使用「討論串」功能,讓討論保持有條不紊", @@ -2135,7 +2073,6 @@ "Share location": "分享位置", "You cannot place calls without a connection to the server.": "您無法在未連線至伺服器的情況下通話。", "Connectivity to the server has been lost": "與伺服器的連線已遺失", - "Toggle space panel": "切換聊天空間面板", "Are you sure you want to end this poll? This will show the final results of the poll and stop people from being able to vote.": "您確定您想要結束此投票?這將會顯示最終投票結果並阻止人們投票。", "End Poll": "結束投票", "Sorry, the poll did not end. Please try again.": "抱歉,投票沒有結束。請再試一次。", @@ -2182,8 +2119,6 @@ "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:": "確認以下的表情符號以相同的順序顯示在兩台裝置上:", "Expand map": "展開地圖", - "No active call in this room": "此聊天室內沒有活躍的通話", - "Unable to find Matrix ID for phone number": "找不到電話號碼的 Matrix ID", "Unknown (user, session) pair: (%(userId)s, %(deviceId)s)": "未知(使用者,工作階段)配對:(%(userId)s, %(deviceId)s)", "Command failed: Unable to find room (%(roomId)s": "命令無效:無法尋找聊天室(%(roomId)s)", "Unrecognised room address: %(roomAlias)s": "無法識別的聊天室位址:%(roomAlias)s", @@ -2203,28 +2138,10 @@ "You were removed from %(roomName)s by %(memberName)s": "您已被 %(memberName)s 從 %(roomName)s 中移除", "Remove, ban, or invite people to your active room, and make you leave": "移除、封鎖或邀請夥伴加入您的活躍聊天室,然後讓您離開", "Remove, ban, or invite people to this room, and make you leave": "移除、封鎖或邀請他人進入此聊天室,然後讓您離開", - "Open this settings tab": "開啟此設定分頁", "Message pending moderation": "待審核的訊息", "Message pending moderation: %(reason)s": "待審核的訊息:%(reason)s", "Keyboard": "鍵盤", "Space home": "聊天空間首頁", - "Previous autocomplete suggestion": "上一個自動完成建議", - "Next autocomplete suggestion": "下一個自動完成建議", - "Previous room or DM": "上一個聊天室或私人訊息", - "Next room or DM": "下一個聊天室或私人訊息", - "Previous unread room or DM": "上一個未讀的聊天室或私人訊息", - "Next unread room or DM": "下一個未讀的聊天室或私人訊息", - "Navigate down in the room list": "在聊天室清單中向下瀏覽", - "Navigate up in the room list": "在聊天室清單中向上瀏覽", - "Scroll down in the timeline": "在時間軸中向下捲動", - "Scroll up in the timeline": "在時間軸中向上捲動", - "Toggle webcam on/off": "開啟/關閉網路攝影機", - "Navigate to previous message in composer history": "跳至輸入紀錄中的上一則訊息", - "Navigate to next message in composer history": "跳至輸入紀錄中的下一則訊息", - "Jump to end of the composer": "跳至編輯器的結尾", - "Jump to start of the composer": "跳至編輯器的開頭", - "Navigate to previous message to edit": "跳至上一則要編輯的訊息", - "Navigate to next message to edit": "跳至下一則要編輯的訊息", "You can't see earlier messages": "您看不到更早的訊息", "Encrypted messages before this point are unavailable.": "在此之前的加密訊息不可用。", "You don't have permission to view messages from before you joined.": "您沒有權限檢視加入前的訊息。", @@ -2235,12 +2152,6 @@ "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.": "聊天空間是將聊天室與夥伴們分組的方式。除了您所在的聊天空間之外,還可以使用一些預設分類。", "Unable to check if username has been taken. Try again later.": "無法檢查使用者名稱是否已被使用。請稍後再試。", - "Toggle hidden event visibility": "切換隱藏事件的能見度", - "Redo edit": "重做編輯", - "Force complete": "強制完成", - "Undo edit": "復原編輯", - "Jump to last message": "跳至最後一則訊息", - "Jump to first message": "跳至第一則訊息", "Pick a date to jump to": "挑選要跳至的日期", "Jump to date": "跳至日期", "The beginning of the room": "聊天室開頭", @@ -2267,12 +2178,8 @@ "Closed poll": "秘密投票", "Poll type": "投票類型", "Results will be visible when the poll is ended": "結果將在投票結束時可見", - "Open user settings": "開啟使用者設定", - "Switch to space by number": "根據數字切換到空格", "Pinned": "已釘選", "Open thread": "開啟討論串", - "No virtual room for this room": "此聊天室沒有虛擬聊天室", - "Switches to this room's virtual room, if it has one": "切換到此聊天室的虛擬聊天室(若有)", "What location type do you want to share?": "您要分享哪種位置類型?", "Drop a Pin": "自訂位置", "My live location": "我的即時位置", @@ -2295,8 +2202,6 @@ "Shared their location: ": "已分享了他們的位置: ", "Unable to load map": "無法載入地圖", "Can't create a thread from an event with an existing relation": "無法從討論串既有的關係建立活動", - "Toggle Link": "切換連結", - "Toggle Code Block": "切換程式碼區塊", "You are sharing your live location": "您正在分享您的即時位置", "Uncheck if you also want to remove system messages on this user (e.g. membership change, profile change…)": "若您也想移除此使用者的系統訊息(例如成員資格變更、個人資料變更…),請取消勾選", "Preserve system messages": "保留系統訊息", @@ -2310,8 +2215,6 @@ "other": "目前正在移除 %(count)s 個聊天室中的訊息" }, "Share for %(duration)s": "分享 %(duration)s", - "Next recently visited room or space": "下一個最近造訪過的聊天室或聊天空間", - "Previous recently visited room or space": "上一個最近造訪過的聊天室或群組空間", "Unsent": "未傳送", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use %(brand)s with an existing Matrix account on a different homeserver.": "您可以透過指定不同的家伺服器網址,來登入至其他的 Matrix 伺服器。使用自訂伺服器選項讓您可以使用 %(brand)s 登入到不同家伺服器上的 Matrix 帳號。", "%(brand)s was denied permission to fetch your location. Please allow location access in your browser settings.": "%(brand)s 沒有權限取得您的位置。請在您的瀏覽器設定中允許位置存取權限。", @@ -2474,7 +2377,6 @@ }, "In %(spaceName)s.": "在空間 %(spaceName)s。", "In spaces %(space1Name)s and %(space2Name)s.": "在聊天空間 %(space1Name)s 與 %(space2Name)s。", - "Developer command: Discards the current outbound group session and sets up new Olm sessions": "開發者指令:丟棄目前外傳的群組工作階段,並設定新的 Olm 工作階段", "Stop and close": "停止並關閉", "Online community members": "線上社群成員", "Coworkers and teams": "同事與團隊", @@ -2780,8 +2682,6 @@ "Due to decryption errors, some votes may not be counted": "因為解密錯誤,不會計算部份投票", "The sender has blocked you from receiving this message": "傳送者已封鎖您,因此無法接收此訊息", "Room directory": "聊天室目錄", - "Identity server is %(identityServerUrl)s": "身分伺服器為 %(identityServerUrl)s", - "Homeserver is %(homeserverUrl)s": "家伺服器為 %(homeserverUrl)s", "View poll": "檢視投票", "There are no past polls for the past %(count)s days. Load more polls to view polls for previous months": { "one": "過去一天沒有過去的投票。載入更多投票以檢視前幾個月的投票", @@ -2805,8 +2705,6 @@ "Ignore (%(counter)s)": "忽略(%(counter)s)", "Invites by email can only be sent one at a time": "透過電子郵件傳送的邀請一次只能傳送一個", "Once everyone has joined, you’ll be able to chat": "所有人都加入後,您就可以聊天了", - "Could not find room": "找不到聊天室", - "iframe has no src attribute": "iframe 沒有 src 屬性", "An error occurred when updating your notification preferences. Please try to toggle your option again.": "更新您的通知偏好設定時發生錯誤。請再試一次。", "Desktop app logo": "桌面應用程式標誌", "Use your account to continue.": "使用您的帳號繼續。", @@ -3195,7 +3093,63 @@ "control": "Ctrl", "shift": "Shift", "number": "[number]", - "backspace": "後端空間" + "backspace": "後端空間", + "category_calls": "通話", + "category_room_list": "聊天室清單", + "category_navigation": "導航", + "category_autocomplete": "自動完成", + "composer_toggle_bold": "切換粗體", + "composer_toggle_italics": "切換斜體", + "composer_toggle_quote": "切換引用", + "composer_toggle_code_block": "切換程式碼區塊", + "composer_toggle_link": "切換連結", + "cancel_reply": "取消回覆訊息", + "navigate_next_message_edit": "跳至下一則要編輯的訊息", + "navigate_prev_message_edit": "跳至上一則要編輯的訊息", + "composer_jump_start": "跳至編輯器的開頭", + "composer_jump_end": "跳至編輯器的結尾", + "composer_navigate_next_history": "跳至輸入紀錄中的下一則訊息", + "composer_navigate_prev_history": "跳至輸入紀錄中的上一則訊息", + "send_sticker": "傳送貼圖", + "toggle_microphone_mute": "切換麥克風靜音", + "toggle_webcam_mute": "開啟/關閉網路攝影機", + "dismiss_read_marker_and_jump_bottom": "清除讀取標記並跳至底部", + "jump_to_read_marker": "跳至最舊的未讀訊息", + "upload_file": "上傳檔案", + "scroll_up_timeline": "在時間軸中向上捲動", + "scroll_down_timeline": "在時間軸中向下捲動", + "jump_room_search": "跳至聊天室搜尋", + "room_list_select_room": "從聊天室清單中選取聊天室", + "room_list_collapse_section": "折疊聊天室清單段落", + "room_list_expand_section": "展開聊天室清單段落", + "room_list_navigate_down": "在聊天室清單中向下瀏覽", + "room_list_navigate_up": "在聊天室清單中向上瀏覽", + "toggle_top_left_menu": "切換左上方選單", + "toggle_right_panel": "切換右側面板", + "keyboard_shortcuts_tab": "開啟此設定分頁", + "go_home_view": "前往主畫面", + "next_unread_room": "下一個未讀的聊天室或私人訊息", + "prev_unread_room": "上一個未讀的聊天室或私人訊息", + "next_room": "下一個聊天室或私人訊息", + "prev_room": "上一個聊天室或私人訊息", + "autocomplete_cancel": "取消自動完成", + "autocomplete_navigate_next": "下一個自動完成建議", + "autocomplete_navigate_prev": "上一個自動完成建議", + "toggle_space_panel": "切換聊天空間面板", + "toggle_hidden_events": "切換隱藏事件的能見度", + "jump_first_message": "跳至第一則訊息", + "jump_last_message": "跳至最後一則訊息", + "composer_undo": "復原編輯", + "composer_redo": "重做編輯", + "navigate_prev_history": "上一個最近造訪過的聊天室或群組空間", + "navigate_next_history": "下一個最近造訪過的聊天室或聊天空間", + "switch_to_space": "根據數字切換到空格", + "open_user_settings": "開啟使用者設定", + "close_dialog_menu": "關閉對話框或內容選單", + "activate_button": "啟動已選取按鈕", + "composer_new_line": "換行", + "autocomplete_force": "強制完成", + "search": "搜尋(必須啟用)" }, "credits": { "default_cover_photo": "預設封面照片作者為 © Jesús Roncero,以 CC-BY-SA 4.0 授權使用。", @@ -3320,7 +3274,16 @@ "download_google_play": "在 Google Play 上取得", "download_f_droid": "在 F-Droid 上取得", "apple_trademarks": "App Store® 與 Apple logo® 是 Apple Inc 的註冊商標。", - "google_trademarks": "Google Play 與 Google Play 圖示是 Google LLC 的註冊商標。" + "google_trademarks": "Google Play 與 Google Play 圖示是 Google LLC 的註冊商標。", + "has_avatar_label": "太好了,這會讓人們知道是您", + "no_avatar_label": "新增照片以讓其他人知道是您。", + "welcome_user": "歡迎 %(name)s", + "welcome_detail": "現在,讓我們協助您開始", + "intro_welcome": "歡迎使用 %(appName)s", + "intro_byline": "擁有您的對話。", + "send_dm": "傳送私人訊息", + "explore_rooms": "探索公開聊天室", + "create_room": "建立群組聊天" }, "settings": { "show_breadcrumbs": "在聊天室清單上方顯示最近看過的聊天室的捷徑", @@ -3888,7 +3851,24 @@ "category_admin": "管理員", "category_advanced": "進階", "category_effects": "影響", - "category_other": "其他" + "category_other": "其他", + "addwidget_missing_url": "請提供小工具網址或嵌入程式碼", + "addwidget_iframe_missing_src": "iframe 沒有 src 屬性", + "addwidget_invalid_protocol": "請提供 https:// 或 http:// 開頭的小工具網址", + "addwidget_no_permissions": "您無法在此聊天室中修改小工具。", + "converttodm": "將聊天室轉換為私人訊息", + "could_not_find_room": "找不到聊天室", + "converttoroom": "將私人訊息轉換為聊天室", + "discardsession": "強制丟棄目前在已加密聊天室中的外發群組工作階段", + "remakeolm": "開發者指令:丟棄目前外傳的群組工作階段,並設定新的 Olm 工作階段", + "tovirtual": "切換到此聊天室的虛擬聊天室(若有)", + "tovirtual_not_found": "此聊天室沒有虛擬聊天室", + "query": "開啟與指定使用者的聊天", + "query_not_found_phone_number": "找不到電話號碼的 Matrix ID", + "holdcall": "把目前聊天室通話設為等候接聽", + "no_active_call": "此聊天室內沒有活躍的通話", + "unholdcall": "取消目前聊天室通話等候接聽狀態", + "me": "顯示操作" }, "presence": { "busy": "忙碌", @@ -4069,7 +4049,16 @@ "sign_in_with_sso": "以單一登入來登入", "sso": "單一登入", "reset_password_action": "重設密碼", - "reset_password_title": "重新設定您的密碼" + "reset_password_title": "重新設定您的密碼", + "continue_with_sso": "使用 %(ssoButtons)s 繼續", + "sso_or_username_password": "%(ssoButtons)s 或 %(usernamePassword)s", + "sign_in_instead": "已有帳號?在此登入", + "account_clash": "您的新帳號 %(newAccountId)s 已註冊,但您已經登入到不同的帳號 (%(loggedInUserId)s)。", + "account_clash_previous_account": "使用先前的帳號繼續", + "log_in_new_account": "登入到您的新帳號。", + "registration_successful": "註冊成功", + "server_picker_title": "帳號託管於", + "server_picker_dialog_title": "決定託管帳號的位置" }, "room_list": { "sort_unread_first": "先顯示有未讀訊息的聊天室", @@ -4105,5 +4094,20 @@ "report_entire_room": "回報整個聊天室", "report_content_to_homeserver": "回報內容給您的家伺服器管理員", "description": "回報此訊息將會傳送其獨特的「活動 ID」給您家伺服器的管理員。如果此聊天室中的訊息已加密,您的家伺服器管理員將無法閱讀訊息文字或檢視任何檔案或圖片。" + }, + "setting": { + "help_about": { + "brand_version": "%(brand)s 版本:", + "olm_version": "Olm 版本:", + "help_link": "若需 %(brand)s 的使用說明,請點擊這裡。", + "help_link_chat_bot": "對於使用 %(brand)s 的說明,點選這裡或是使用下面的按鈕開始與我們的聊天機器人聊天。", + "chat_bot": "與 %(brand)s 機器人聊天", + "title": "說明與關於", + "versions": "版本", + "homeserver": "家伺服器為 %(homeserverUrl)s", + "identity_server": "身分伺服器為 %(identityServerUrl)s", + "access_token_detail": "您的存取權杖可提供您帳號完整的存取權限。請勿分享給任何人。", + "clear_cache_reload": "清除快取並重新載入" + } } }