Compare commits
	
		
			34 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 15902e51f6 | ||
|  | 19705bc90b | ||
|  | a9313f4756 | ||
|  | 13b4d2037a | ||
|  | ab63ec2a4a | ||
|  | 1de4f88c6c | ||
|  | ab4381a6bf | ||
|  | d409a0bf33 | ||
|  | c40e05646e | ||
|  | 13f3818c77 | ||
|  | 4a0e590921 | ||
|  | eb19b20da2 | ||
|  | 69cb509fe5 | ||
|  | 123263e5bb | ||
|  | a26a10849d | ||
|  | da7e026550 | ||
|  | c70f6df096 | ||
|  | ef0110f8e7 | ||
|  | b7a7ca3e5c | ||
|  | 467e7b11c5 | ||
|  | 105e7e93a1 | ||
|  | a736f664c6 | ||
|  | 38c7695a99 | ||
|  | b268fe9478 | ||
|  | 981a262836 | ||
|  | 527bb5ab2f | ||
|  | e2947a0ce6 | ||
|  | 3b2c758e09 | ||
|  | 4867fc672a | ||
|  | f85f05d66b | ||
|  | 39fd0e9877 | ||
|  | f6ff112f0e | ||
|  | 6fcd1ef0d5 | ||
|  | 92260b0f97 | 
							
								
								
									
										53
									
								
								.github/PULL_REQUEST_TEMPLATE.md
									
									
									
									
										vendored
									
									
								
							
							
						
						| @@ -1,18 +1,49 @@ | ||||
| --- | ||||
| <!-- Describe your pull request here.--> | ||||
|  | ||||
| <!-- | ||||
| Remove the fields that are not appropriate | ||||
| Please include: | ||||
| Fixes: <!-- Issue link, or clear description.--> | ||||
|  | ||||
| <!-- If the PR makes UI changes, always include one or more still screenshots to demonstrate your changes. If it seems helpful, add a screen capture of the new functionality as well. | ||||
|  | ||||
| Tooling tips: https://zulip.readthedocs.io/en/latest/tutorials/screenshot-and-gif-software.html | ||||
| --> | ||||
|  | ||||
| **What's this PR do?** | ||||
| **Screenshots and screen captures:** | ||||
|  | ||||
| **Any background context you want to provide?** | ||||
|  | ||||
| **Screenshots?** | ||||
|  | ||||
| **You have tested this PR on:** | ||||
| **Platforms this PR was tested on:** | ||||
|  | ||||
| - [ ] Windows | ||||
| - [ ] Linux/Ubuntu | ||||
| - [ ] macOS | ||||
| - [ ] Linux (specify distro) | ||||
|  | ||||
| <details> | ||||
| <summary>Self-review checklist</summary> | ||||
|  | ||||
| <!-- Prior to submitting a PR, follow our step-by-step guide to review your own code: | ||||
| https://zulip.readthedocs.io/en/latest/contributing/code-reviewing.html#how-to-review-code --> | ||||
|  | ||||
| <!-- Once you create the PR, check off all the steps below that you have completed. | ||||
| If any of these steps are not relevant or you have not completed, leave them unchecked.--> | ||||
|  | ||||
| - [ ] [Self-reviewed](https://zulip.readthedocs.io/en/latest/contributing/code-reviewing.html#how-to-review-code) the changes for clarity and maintainability | ||||
|       (variable names, code reuse, readability, etc.). | ||||
|  | ||||
| Communicate decisions, questions, and potential concerns. | ||||
|  | ||||
| - [ ] Explains differences from previous plans (e.g., issue description). | ||||
| - [ ] Highlights technical choices and bugs encountered. | ||||
| - [ ] Calls out remaining decisions and concerns. | ||||
| - [ ] Automated tests verify logic where appropriate. | ||||
|  | ||||
| Individual commits are ready for review (see [commit discipline](https://zulip.readthedocs.io/en/latest/contributing/commit-discipline.html)). | ||||
|  | ||||
| - [ ] Each commit is a coherent idea. | ||||
| - [ ] Commit message(s) explain reasoning and motivation for changes. | ||||
|  | ||||
| Completed manual review and testing of the following: | ||||
|  | ||||
| - [ ] Visual appearance of the changes. | ||||
| - [ ] Responsiveness and internationalization. | ||||
| - [ ] Strings and tooltips. | ||||
| - [ ] End-to-end functionality of buttons, interactions and flows. | ||||
| - [ ] Corner cases, error conditions, and easily imagined bugs. | ||||
| </details> | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| # Zulip Desktop Client | ||||
|  | ||||
| [](https://travis-ci.com/github/zulip/zulip-desktop) | ||||
| [](https://github.com/zulip/zulip-desktop/actions/workflows/node.js.yml?query=branch%3Amain) | ||||
| [](https://ci.appveyor.com/project/zulip/zulip-desktop/branch/main) | ||||
| [](https://github.com/sindresorhus/xo) | ||||
| [](https://chat.zulip.org) | ||||
|   | ||||
| @@ -20,9 +20,11 @@ export type ServerConfig = { | ||||
| }; | ||||
|  | ||||
| export type TabRole = "server" | "function"; | ||||
| export type TabPage = "Settings" | "About"; | ||||
|  | ||||
| export type TabData = { | ||||
|   role: TabRole; | ||||
|   name: string; | ||||
|   page?: TabPage; | ||||
|   label: string; | ||||
|   index: number; | ||||
| }; | ||||
|   | ||||
| @@ -10,6 +10,7 @@ import { | ||||
| } from "electron-updater"; | ||||
|  | ||||
| import * as ConfigUtil from "../common/config-util.js"; | ||||
| import * as t from "../common/translation-util.js"; | ||||
|  | ||||
| import {linuxUpdateNotification} from "./linuxupdater.js"; // Required only in case of linux | ||||
|  | ||||
| @@ -58,9 +59,13 @@ export async function appUpdater(updateFromMenu = false): Promise<void> { | ||||
|       } | ||||
|  | ||||
|       await dialog.showMessageBox({ | ||||
|         message: `A new version ${info.version}, of Zulip Desktop is available`, | ||||
|         detail: | ||||
|         message: t.__( | ||||
|           "A new version {{{version}}} of Zulip Desktop is available.", | ||||
|           {version: info.version}, | ||||
|         ), | ||||
|         detail: t.__( | ||||
|           "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
|         ), | ||||
|       }); | ||||
|     } | ||||
|   }); | ||||
| @@ -72,8 +77,11 @@ export async function appUpdater(updateFromMenu = false): Promise<void> { | ||||
|       autoUpdater.removeAllListeners(); | ||||
|  | ||||
|       await dialog.showMessageBox({ | ||||
|         message: "No updates available", | ||||
|         detail: `You are running the latest version of Zulip Desktop.\nVersion: ${app.getVersion()}`, | ||||
|         message: t.__("No updates available."), | ||||
|         detail: t.__( | ||||
|           "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
|           {version: app.getVersion()}, | ||||
|         ), | ||||
|       }); | ||||
|     } | ||||
|   }); | ||||
| @@ -85,20 +93,20 @@ export async function appUpdater(updateFromMenu = false): Promise<void> { | ||||
|       autoUpdater.removeAllListeners(); | ||||
|  | ||||
|       const messageText = updateAvailable | ||||
|         ? "Unable to download the updates" | ||||
|         : "Unable to check for updates"; | ||||
|         ? t.__("Unable to download the update.") | ||||
|         : t.__("Unable to check for updates."); | ||||
|       const link = "https://zulip.com/apps/"; | ||||
|       const {response} = await dialog.showMessageBox({ | ||||
|         type: "error", | ||||
|         buttons: ["Manual Download", "Cancel"], | ||||
|         buttons: [t.__("Manual Download"), t.__("Cancel")], | ||||
|         message: messageText, | ||||
|         detail: `Error: ${error.message} | ||||
|  | ||||
| The latest version of Zulip Desktop is available at - | ||||
| https://zulip.com/apps/. | ||||
| Current Version: ${app.getVersion()}`, | ||||
|         detail: t.__( | ||||
|           "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
|           {error: error.message, link, version: app.getVersion()}, | ||||
|         ), | ||||
|       }); | ||||
|       if (response === 0) { | ||||
|         await shell.openExternal("https://zulip.com/apps/"); | ||||
|         await shell.openExternal(link); | ||||
|       } | ||||
|     } | ||||
|   }); | ||||
| @@ -108,10 +116,14 @@ Current Version: ${app.getVersion()}`, | ||||
|     // Ask user to update the app | ||||
|     const {response} = await dialog.showMessageBox({ | ||||
|       type: "question", | ||||
|       buttons: ["Install and Relaunch", "Install Later"], | ||||
|       buttons: [t.__("Install and Relaunch"), t.__("Install Later")], | ||||
|       defaultId: 0, | ||||
|       message: `A new update ${event.version} has been downloaded`, | ||||
|       detail: "It will be installed the next time you restart the application", | ||||
|       message: t.__("A new update {{{version}}} has been downloaded.", { | ||||
|         version: event.version, | ||||
|       }), | ||||
|       detail: t.__( | ||||
|         "It will be installed the next time you restart the application.", | ||||
|       ), | ||||
|     }); | ||||
|     if (response === 0) { | ||||
|       quitting = true; | ||||
|   | ||||
| @@ -19,6 +19,7 @@ import windowStateKeeper from "electron-window-state"; | ||||
|  | ||||
| import * as ConfigUtil from "../common/config-util.js"; | ||||
| import {bundlePath, bundleUrl, publicPath} from "../common/paths.js"; | ||||
| import * as t from "../common/translation-util.js"; | ||||
| import type {RendererMessage} from "../common/typed-ipc.js"; | ||||
| import type {MenuProperties} from "../common/types.js"; | ||||
|  | ||||
| @@ -318,10 +319,11 @@ function createMainWindow(): BrowserWindow { | ||||
|       if (isMainFrame) { | ||||
|         const url = new URL(urlString); | ||||
|         dialog.showErrorBox( | ||||
|           "Certificate error", | ||||
|           `The server presented an invalid certificate for ${url.origin}: | ||||
|  | ||||
| ${error}`, | ||||
|           t.__("Certificate error"), | ||||
|           t.__( | ||||
|             "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
|             {origin: url.origin, error}, | ||||
|           ), | ||||
|         ); | ||||
|       } | ||||
|     }, | ||||
| @@ -428,7 +430,7 @@ ${error}`, | ||||
|     AppMenu.setMenu(properties); | ||||
|     if (properties.activeTabIndex !== undefined) { | ||||
|       const activeTab = properties.tabs[properties.activeTabIndex]; | ||||
|       mainWindow.setTitle(`Zulip - ${activeTab.name}`); | ||||
|       mainWindow.setTitle(`Zulip - ${activeTab.label}`); | ||||
|     } | ||||
|   }); | ||||
|  | ||||
|   | ||||
| @@ -6,6 +6,7 @@ import {JsonDB} from "node-json-db"; | ||||
| import {DataError} from "node-json-db/dist/lib/Errors"; | ||||
|  | ||||
| import Logger from "../common/logger-util.js"; | ||||
| import * as t from "../common/translation-util.js"; | ||||
|  | ||||
| const logger = new Logger({ | ||||
|   file: "linux-update-util.log", | ||||
| @@ -57,8 +58,8 @@ function reloadDatabase(): void { | ||||
|     if (fs.existsSync(linuxUpdateJsonPath)) { | ||||
|       fs.unlinkSync(linuxUpdateJsonPath); | ||||
|       dialog.showErrorBox( | ||||
|         "Error saving update notifications.", | ||||
|         "We encountered an error while saving the update notifications.", | ||||
|         t.__("Error saving update notifications"), | ||||
|         t.__("We encountered an error while saving the update notifications."), | ||||
|       ); | ||||
|       logger.error("Error while JSON parsing updates.json: "); | ||||
|       logger.error(error); | ||||
|   | ||||
| @@ -94,7 +94,7 @@ function getToolsSubmenu(): MenuItemConstructorOptions[] { | ||||
|       accelerator: | ||||
|         process.platform === "darwin" ? "Alt+Command+I" : "Ctrl+Shift+I", | ||||
|       click(_item, focusedWindow) { | ||||
|         if (focusedWindow) { | ||||
|         if (focusedWindow instanceof BrowserWindow) { | ||||
|           focusedWindow.webContents.openDevTools({mode: "undocked"}); | ||||
|         } | ||||
|       }, | ||||
| @@ -222,7 +222,7 @@ function getViewSubmenu(): MenuItemConstructorOptions[] { | ||||
|     { | ||||
|       label: t.__("Toggle Tray Icon"), | ||||
|       click(_item, focusedWindow) { | ||||
|         if (focusedWindow) { | ||||
|         if (focusedWindow instanceof BrowserWindow) { | ||||
|           send(focusedWindow.webContents, "toggletray"); | ||||
|         } | ||||
|       }, | ||||
| @@ -231,7 +231,7 @@ function getViewSubmenu(): MenuItemConstructorOptions[] { | ||||
|       label: t.__("Toggle Sidebar"), | ||||
|       accelerator: "CommandOrControl+Shift+S", | ||||
|       click(_item, focusedWindow) { | ||||
|         if (focusedWindow) { | ||||
|         if (focusedWindow instanceof BrowserWindow) { | ||||
|           const newValue = !ConfigUtil.getConfigItem("showSidebar", true); | ||||
|           send(focusedWindow.webContents, "toggle-sidebar", newValue); | ||||
|           ConfigUtil.setConfigItem("showSidebar", newValue); | ||||
| @@ -243,7 +243,7 @@ function getViewSubmenu(): MenuItemConstructorOptions[] { | ||||
|       checked: ConfigUtil.getConfigItem("autoHideMenubar", false), | ||||
|       visible: process.platform !== "darwin", | ||||
|       click(_item, focusedWindow) { | ||||
|         if (focusedWindow) { | ||||
|         if (focusedWindow instanceof BrowserWindow) { | ||||
|           const newValue = !ConfigUtil.getConfigItem("autoHideMenubar", false); | ||||
|           focusedWindow.autoHideMenuBar = newValue; | ||||
|           focusedWindow.setMenuBarVisibility(!newValue); | ||||
| @@ -318,12 +318,12 @@ function getWindowSubmenu( | ||||
|       if (tab === undefined) continue; | ||||
|  | ||||
|       // Do not add functional tab settings to list of windows in menu bar | ||||
|       if (tab.role === "function" && tab.name === "Settings") { | ||||
|       if (tab.role === "function" && tab.page === "Settings") { | ||||
|         continue; | ||||
|       } | ||||
|  | ||||
|       initialSubmenu.push({ | ||||
|         label: tab.name, | ||||
|         label: tab.label, | ||||
|         accelerator: | ||||
|           tab.role === "function" ? "" : `${shortcutKey} + ${tab.index + 1}`, | ||||
|         checked: tab.index === activeTabIndex, | ||||
|   | ||||
| @@ -6,21 +6,4 @@ | ||||
| <div class="about" hidden> | ||||
|   <img class="logo" src="../resources/zulip.png" /> | ||||
|   <p class="detail" id="version"></p> | ||||
|   <div class="maintenance-info"> | ||||
|     <p class="detail maintainer"> | ||||
|       Maintained by | ||||
|       <a href="https://zulip.com" target="_blank" rel="noopener noreferrer" | ||||
|         >Zulip</a | ||||
|       > | ||||
|     </p> | ||||
|     <p class="detail license"> | ||||
|       Available under the | ||||
|       <a | ||||
|         href="https://github.com/zulip/zulip-desktop/blob/main/LICENSE" | ||||
|         target="_blank" | ||||
|         rel="noopener noreferrer" | ||||
|         >Apache 2.0 License</a | ||||
|       > | ||||
|     </p> | ||||
|   </div> | ||||
| </div> | ||||
|   | ||||
| @@ -47,7 +47,6 @@ | ||||
| } | ||||
|  | ||||
| .maintenance-info { | ||||
|   cursor: pointer; | ||||
|   position: absolute; | ||||
|   width: 100%; | ||||
|   left: 0; | ||||
|   | ||||
| @@ -578,7 +578,6 @@ input.toggle-round:checked + label::after { | ||||
|   text-align: center; | ||||
|   color: rgb(255 255 255 / 100%); | ||||
|   background: rgb(78 191 172 / 100%); | ||||
|   border-color: none; | ||||
|   border: none; | ||||
|   width: 98%; | ||||
|   height: 46px; | ||||
|   | ||||
| @@ -1,10 +1,12 @@ | ||||
| import {type Html, html} from "../../../common/html.js"; | ||||
| import type {TabPage} from "../../../common/types.js"; | ||||
|  | ||||
| import {generateNodeFromHtml} from "./base.js"; | ||||
| import Tab, {type TabProperties} from "./tab.js"; | ||||
|  | ||||
| export type FunctionalTabProperties = { | ||||
|   $view: Element; | ||||
|   page: TabPage; | ||||
| } & TabProperties; | ||||
|  | ||||
| export default class FunctionalTab extends Tab { | ||||
| @@ -17,7 +19,7 @@ export default class FunctionalTab extends Tab { | ||||
|  | ||||
|     this.$view = $view; | ||||
|     this.$el = generateNodeFromHtml(this.templateHtml()); | ||||
|     if (this.properties.name !== "Settings") { | ||||
|     if (properties.page !== "Settings") { | ||||
|       this.properties.$root.append(this.$el); | ||||
|       this.$closeButton = this.$el.querySelector(".server-tab-badge")!; | ||||
|       this.registerListeners(); | ||||
|   | ||||
| @@ -49,7 +49,7 @@ export default class ServerTab extends Tab { | ||||
|     return html` | ||||
|       <div class="tab" data-tab-id="${this.properties.tabIndex}"> | ||||
|         <div class="server-tooltip" style="display:none"> | ||||
|           ${this.properties.name} | ||||
|           ${this.properties.label} | ||||
|         </div> | ||||
|         <div class="server-tab-badge"></div> | ||||
|         <div class="server-tab"> | ||||
| @@ -60,9 +60,9 @@ export default class ServerTab extends Tab { | ||||
|     `; | ||||
|   } | ||||
|  | ||||
|   setName(name: string): void { | ||||
|     this.properties.name = name; | ||||
|     this.$name.textContent = name; | ||||
|   setLabel(label: string): void { | ||||
|     this.properties.label = label; | ||||
|     this.$name.textContent = label; | ||||
|   } | ||||
|  | ||||
|   setIcon(icon: string): void { | ||||
|   | ||||
| @@ -1,9 +1,10 @@ | ||||
| import type {TabRole} from "../../../common/types.js"; | ||||
| import type {TabPage, TabRole} from "../../../common/types.js"; | ||||
|  | ||||
| export type TabProperties = { | ||||
|   role: TabRole; | ||||
|   page?: TabPage; | ||||
|   icon?: string; | ||||
|   name: string; | ||||
|   label: string; | ||||
|   $root: Element; | ||||
|   onClick: () => void; | ||||
|   index: number; | ||||
|   | ||||
| @@ -7,6 +7,7 @@ import {app, dialog} from "@electron/remote"; | ||||
|  | ||||
| import * as ConfigUtil from "../../../common/config-util.js"; | ||||
| import {type Html, html} from "../../../common/html.js"; | ||||
| import * as t from "../../../common/translation-util.js"; | ||||
| import type {RendererMessage} from "../../../common/typed-ipc.js"; | ||||
| import type {TabRole} from "../../../common/types.js"; | ||||
| import preloadCss from "../../css/preload.css?raw"; | ||||
| @@ -183,8 +184,8 @@ export default class WebView { | ||||
|   } | ||||
|  | ||||
|   back(): void { | ||||
|     if (this.getWebContents().canGoBack()) { | ||||
|       this.getWebContents().goBack(); | ||||
|     if (this.getWebContents().navigationHistory.canGoBack()) { | ||||
|       this.getWebContents().navigationHistory.goBack(); | ||||
|       this.focus(); | ||||
|     } | ||||
|   } | ||||
| @@ -193,12 +194,15 @@ export default class WebView { | ||||
|     const $backButton = document.querySelector( | ||||
|       "#actions-container #back-action", | ||||
|     )!; | ||||
|     $backButton.classList.toggle("disable", !this.getWebContents().canGoBack()); | ||||
|     $backButton.classList.toggle( | ||||
|       "disable", | ||||
|       !this.getWebContents().navigationHistory.canGoBack(), | ||||
|     ); | ||||
|   } | ||||
|  | ||||
|   forward(): void { | ||||
|     if (this.getWebContents().canGoForward()) { | ||||
|       this.getWebContents().goForward(); | ||||
|     if (this.getWebContents().navigationHistory.canGoForward()) { | ||||
|       this.getWebContents().navigationHistory.goForward(); | ||||
|     } | ||||
|   } | ||||
|  | ||||
| @@ -328,8 +332,8 @@ export default class WebView { | ||||
|         this.customCss = null; | ||||
|         ConfigUtil.setConfigItem("customCSS", null); | ||||
|  | ||||
|         const errorMessage = "The custom css previously set is deleted!"; | ||||
|         dialog.showErrorBox("custom css file deleted!", errorMessage); | ||||
|         const errorMessage = t.__("The custom CSS previously set is deleted."); | ||||
|         dialog.showErrorBox(t.__("Custom CSS file deleted"), errorMessage); | ||||
|         return; | ||||
|       } | ||||
|  | ||||
|   | ||||
| @@ -12,14 +12,17 @@ import * as ConfigUtil from "../../common/config-util.js"; | ||||
| import * as DNDUtil from "../../common/dnd-util.js"; | ||||
| import type {DndSettings} from "../../common/dnd-util.js"; | ||||
| import * as EnterpriseUtil from "../../common/enterprise-util.js"; | ||||
| import {html} from "../../common/html.js"; | ||||
| import * as LinkUtil from "../../common/link-util.js"; | ||||
| import Logger from "../../common/logger-util.js"; | ||||
| import * as Messages from "../../common/messages.js"; | ||||
| import {bundlePath, bundleUrl} from "../../common/paths.js"; | ||||
| import * as t from "../../common/translation-util.js"; | ||||
| import type { | ||||
|   NavigationItem, | ||||
|   ServerConfig, | ||||
|   TabData, | ||||
|   TabPage, | ||||
| } from "../../common/types.js"; | ||||
| import defaultIcon from "../img/icon.png"; | ||||
|  | ||||
| @@ -81,7 +84,7 @@ export class ServerManagerView { | ||||
|   loading: Set<string>; | ||||
|   activeTabIndex: number; | ||||
|   tabs: ServerOrFunctionalTab[]; | ||||
|   functionalTabs: Map<string, number>; | ||||
|   functionalTabs: Map<TabPage, number>; | ||||
|   tabIndex: number; | ||||
|   presetOrgs: string[]; | ||||
|   preferenceView?: PreferenceView; | ||||
| @@ -287,12 +290,9 @@ export class ServerManagerView { | ||||
|         // ask them before reloading the app | ||||
|         const {response} = await dialog.showMessageBox({ | ||||
|           type: "question", | ||||
|           buttons: ["Yes", "Later"], | ||||
|           buttons: [t.__("Yes"), t.__("Later")], | ||||
|           defaultId: 0, | ||||
|           message: | ||||
|             "New server" + | ||||
|             (domainsAdded.length > 1 ? "s" : "") + | ||||
|             " added. Reload app now?", | ||||
|           message: t.__("New servers added. Reload app now?"), | ||||
|         }); | ||||
|         if (response === 0) { | ||||
|           ipcRenderer.send("reload-full-app"); | ||||
| @@ -333,7 +333,7 @@ export class ServerManagerView { | ||||
|             server.url, | ||||
|             i, | ||||
|           ); | ||||
|           tab.setName(serverConfig.alias); | ||||
|           tab.setLabel(serverConfig.alias); | ||||
|           tab.setIcon(DomainUtil.iconAsUrl(serverConfig.icon)); | ||||
|           (await tab.webview).setUnsupportedMessage( | ||||
|             DomainUtil.getUnsupportedMessage(serverConfig), | ||||
| @@ -376,7 +376,7 @@ export class ServerManagerView { | ||||
|     const tab = new ServerTab({ | ||||
|       role: "server", | ||||
|       icon: DomainUtil.iconAsUrl(server.icon), | ||||
|       name: server.alias, | ||||
|       label: server.alias, | ||||
|       $root: this.$tabsContainer, | ||||
|       onClick: this.activateLastTab.bind(this, index), | ||||
|       index, | ||||
| @@ -558,18 +558,19 @@ export class ServerManagerView { | ||||
|   } | ||||
|  | ||||
|   async openFunctionalTab(tabProperties: { | ||||
|     name: string; | ||||
|     label: string; | ||||
|     page: TabPage; | ||||
|     materialIcon: string; | ||||
|     makeView: () => Promise<Element>; | ||||
|     destroyView: () => void; | ||||
|   }): Promise<void> { | ||||
|     if (this.functionalTabs.has(tabProperties.name)) { | ||||
|       await this.activateTab(this.functionalTabs.get(tabProperties.name)!); | ||||
|     if (this.functionalTabs.has(tabProperties.page)) { | ||||
|       await this.activateTab(this.functionalTabs.get(tabProperties.page)!); | ||||
|       return; | ||||
|     } | ||||
|  | ||||
|     const index = this.tabs.length; | ||||
|     this.functionalTabs.set(tabProperties.name, index); | ||||
|     this.functionalTabs.set(tabProperties.page, index); | ||||
|  | ||||
|     const tabIndex = this.getTabIndex(); | ||||
|     const $view = await tabProperties.makeView(); | ||||
| @@ -579,13 +580,14 @@ export class ServerManagerView { | ||||
|       new FunctionalTab({ | ||||
|         role: "function", | ||||
|         materialIcon: tabProperties.materialIcon, | ||||
|         name: tabProperties.name, | ||||
|         label: tabProperties.label, | ||||
|         page: tabProperties.page, | ||||
|         $root: this.$tabsContainer, | ||||
|         index, | ||||
|         tabIndex, | ||||
|         onClick: this.activateTab.bind(this, index), | ||||
|         onDestroy: async () => { | ||||
|           await this.destroyTab(tabProperties.name, index); | ||||
|           await this.destroyFunctionalTab(tabProperties.page, index); | ||||
|           tabProperties.destroyView(); | ||||
|         }, | ||||
|         $view, | ||||
| @@ -596,14 +598,15 @@ export class ServerManagerView { | ||||
|     // closed when the functional tab DOM is ready, handled in webview.js | ||||
|     this.$webviewsContainer.classList.remove("loaded"); | ||||
|  | ||||
|     await this.activateTab(this.functionalTabs.get(tabProperties.name)!); | ||||
|     await this.activateTab(this.functionalTabs.get(tabProperties.page)!); | ||||
|   } | ||||
|  | ||||
|   async openSettings( | ||||
|     navigationItem: NavigationItem = "General", | ||||
|   ): Promise<void> { | ||||
|     await this.openFunctionalTab({ | ||||
|       name: "Settings", | ||||
|       page: "Settings", | ||||
|       label: t.__("Settings"), | ||||
|       materialIcon: "settings", | ||||
|       makeView: async () => { | ||||
|         this.preferenceView = await PreferenceView.create(); | ||||
| @@ -622,7 +625,8 @@ export class ServerManagerView { | ||||
|   async openAbout(): Promise<void> { | ||||
|     let aboutView: AboutView; | ||||
|     await this.openFunctionalTab({ | ||||
|       name: "About", | ||||
|       page: "About", | ||||
|       label: t.__("About"), | ||||
|       materialIcon: "sentiment_very_satisfied", | ||||
|       async makeView() { | ||||
|         aboutView = await AboutView.create(); | ||||
| @@ -660,7 +664,8 @@ export class ServerManagerView { | ||||
|   get tabsForIpc(): TabData[] { | ||||
|     return this.tabs.map((tab) => ({ | ||||
|       role: tab.properties.role, | ||||
|       name: tab.properties.name, | ||||
|       page: tab.properties.page, | ||||
|       label: tab.properties.label, | ||||
|       index: tab.properties.index, | ||||
|     })); | ||||
|   } | ||||
| @@ -680,7 +685,7 @@ export class ServerManagerView { | ||||
|         // If old tab is functional tab Settings, remove focus from the settings icon at sidebar bottom | ||||
|         if ( | ||||
|           this.tabs[this.activeTabIndex].properties.role === "function" && | ||||
|           this.tabs[this.activeTabIndex].properties.name === "Settings" | ||||
|           this.tabs[this.activeTabIndex].properties.page === "Settings" | ||||
|         ) { | ||||
|           this.$settingsButton.classList.remove("active"); | ||||
|         } | ||||
| @@ -722,7 +727,7 @@ export class ServerManagerView { | ||||
|     this.$loadingIndicator.classList.toggle("hidden", !loading); | ||||
|   } | ||||
|  | ||||
|   async destroyTab(name: string, index: number): Promise<void> { | ||||
|   async destroyFunctionalTab(page: TabPage, index: number): Promise<void> { | ||||
|     const tab = this.tabs[index]; | ||||
|     if (tab instanceof ServerTab && (await tab.webview).loading) { | ||||
|       return; | ||||
| @@ -731,7 +736,7 @@ export class ServerManagerView { | ||||
|     await tab.destroy(); | ||||
|  | ||||
|     delete this.tabs[index]; // eslint-disable-line @typescript-eslint/no-array-delete | ||||
|     this.functionalTabs.delete(name); | ||||
|     this.functionalTabs.delete(page); | ||||
|  | ||||
|     // Issue #188: If the functional tab was not focused, do not activate another tab. | ||||
|     if (this.activeTabIndex === index) { | ||||
| @@ -811,13 +816,15 @@ export class ServerManagerView { | ||||
|       event.preventDefault(); | ||||
|       const template = [ | ||||
|         { | ||||
|           label: "Disconnect organization", | ||||
|           label: t.__("Disconnect organization"), | ||||
|           async click() { | ||||
|             const {response} = await dialog.showMessageBox({ | ||||
|               type: "warning", | ||||
|               buttons: ["YES", "NO"], | ||||
|               buttons: [t.__("Yes"), t.__("No")], | ||||
|               defaultId: 0, | ||||
|               message: "Are you sure you want to disconnect this organization?", | ||||
|               message: t.__( | ||||
|                 "Are you sure you want to disconnect this organization?", | ||||
|               ), | ||||
|             }); | ||||
|             if (response === 0) { | ||||
|               if (DomainUtil.removeDomain(index)) { | ||||
| @@ -832,7 +839,7 @@ export class ServerManagerView { | ||||
|           }, | ||||
|         }, | ||||
|         { | ||||
|           label: "Notification settings", | ||||
|           label: t.__("Notification settings"), | ||||
|           enabled: await this.isLoggedIn(index), | ||||
|           click: async () => { | ||||
|             // Switch to tab whose icon was right-clicked | ||||
| @@ -843,7 +850,7 @@ export class ServerManagerView { | ||||
|           }, | ||||
|         }, | ||||
|         { | ||||
|           label: "Copy Zulip URL", | ||||
|           label: t.__("Copy Zulip URL"), | ||||
|           click() { | ||||
|             clipboard.writeText(DomainUtil.getDomain(index).url); | ||||
|           }, | ||||
| @@ -1002,8 +1009,8 @@ export class ServerManagerView { | ||||
|       await this.loadProxy(); | ||||
|       if (showAlert) { | ||||
|         await dialog.showMessageBox({ | ||||
|           message: "Proxy settings saved!", | ||||
|           buttons: ["OK"], | ||||
|           message: t.__("Proxy settings saved."), | ||||
|           buttons: [t.__("OK")], | ||||
|         }); | ||||
|         ipcRenderer.send("reload-full-app"); | ||||
|       } | ||||
| @@ -1053,7 +1060,7 @@ export class ServerManagerView { | ||||
|         for (const [index, domain] of DomainUtil.getDomains().entries()) { | ||||
|           if (domain.url === serverURL) { | ||||
|             const tab = this.tabs[index]; | ||||
|             if (tab instanceof ServerTab) tab.setName(realmName); | ||||
|             if (tab instanceof ServerTab) tab.setLabel(realmName); | ||||
|             domain.alias = realmName; | ||||
|             DomainUtil.updateDomain(index, domain); | ||||
|             // Update the realm name also on the Window menu | ||||
| @@ -1179,6 +1186,62 @@ export class ServerManagerView { | ||||
| } | ||||
|  | ||||
| window.addEventListener("load", async () => { | ||||
|   document.body.innerHTML = html` | ||||
|     <div id="content"> | ||||
|       <div class="popup"> | ||||
|         <span class="popuptext hidden" id="fullscreen-popup"></span> | ||||
|       </div> | ||||
|       <div id="sidebar" class="toggle-sidebar"> | ||||
|         <div id="view-controls-container"> | ||||
|           <div id="tabs-container"></div> | ||||
|           <div id="add-tab" class="tab functional-tab"> | ||||
|             <div class="server-tab" id="add-action"> | ||||
|               <i class="material-icons">add</i> | ||||
|             </div> | ||||
|             <span id="add-server-tooltip" style="display: none" | ||||
|               >${t.__("Add Organization")}</span | ||||
|             > | ||||
|           </div> | ||||
|         </div> | ||||
|         <div id="actions-container"> | ||||
|           <div class="action-button" id="dnd-action"> | ||||
|             <i class="material-icons md-48">notifications</i> | ||||
|             <span id="dnd-tooltip" style="display: none" | ||||
|               >${t.__("Do Not Disturb")}</span | ||||
|             > | ||||
|           </div> | ||||
|           <div class="action-button hidden" id="reload-action"> | ||||
|             <i class="material-icons md-48">refresh</i> | ||||
|             <span id="reload-tooltip" style="display: none" | ||||
|               >${t.__("Reload")}</span | ||||
|             > | ||||
|           </div> | ||||
|           <div class="action-button disable" id="loading-action"> | ||||
|             <i class="refresh material-icons md-48">loop</i> | ||||
|             <span id="loading-tooltip" style="display: none" | ||||
|               >${t.__("Loading")}</span | ||||
|             > | ||||
|           </div> | ||||
|           <div class="action-button disable" id="back-action"> | ||||
|             <i class="material-icons md-48">arrow_back</i> | ||||
|             <span id="back-tooltip" style="display: none" | ||||
|               >${t.__("Go Back")}</span | ||||
|             > | ||||
|           </div> | ||||
|           <div class="action-button" id="settings-action"> | ||||
|             <i class="material-icons md-48">settings</i> | ||||
|             <span id="setting-tooltip" style="display: none" | ||||
|               >${t.__("Settings")}</span | ||||
|             > | ||||
|           </div> | ||||
|         </div> | ||||
|       </div> | ||||
|       <div id="main-container"> | ||||
|         <div id="webviews-container"></div> | ||||
|       </div> | ||||
|     </div> | ||||
|   `.html; | ||||
|  | ||||
|   const serverManagerView = new ServerManagerView(); | ||||
|   await serverManagerView.init(); | ||||
| }); | ||||
|   | ||||
| @@ -1,6 +1,9 @@ | ||||
| import {app} from "@electron/remote"; | ||||
|  | ||||
| import {Html, html} from "../../../common/html.js"; | ||||
| import {bundleUrl} from "../../../common/paths.js"; | ||||
| import * as t from "../../../common/translation-util.js"; | ||||
| import {generateNodeFromHtml} from "../components/base.js"; | ||||
|  | ||||
| export class AboutView { | ||||
|   static async create(): Promise<AboutView> { | ||||
| @@ -16,6 +19,32 @@ export class AboutView { | ||||
|     const $shadow = this.$view.attachShadow({mode: "open"}); | ||||
|     $shadow.innerHTML = templateHtml; | ||||
|     $shadow.querySelector("#version")!.textContent = `v${app.getVersion()}`; | ||||
|     const maintenanceInfoHtml = html` | ||||
|       <div class="maintenance-info"> | ||||
|         <p class="detail maintainer"> | ||||
|           ${new Html({ | ||||
|             html: t.__("Maintained by {{{link}}}Zulip{{{endLink}}}", { | ||||
|               link: '<a href="https://zulip.com" target="_blank" rel="noopener noreferrer">', | ||||
|               endLink: "</a>", | ||||
|             }), | ||||
|           })} | ||||
|         </p> | ||||
|         <p class="detail license"> | ||||
|           ${new Html({ | ||||
|             html: t.__( | ||||
|               "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
|               { | ||||
|                 link: '<a href="https://github.com/zulip/zulip-desktop/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">', | ||||
|                 endLink: "</a>", | ||||
|               }, | ||||
|             ), | ||||
|           })} | ||||
|         </p> | ||||
|       </div> | ||||
|     `; | ||||
|     $shadow | ||||
|       .querySelector(".about")! | ||||
|       .append(generateNodeFromHtml(maintenanceInfoHtml)); | ||||
|   } | ||||
|  | ||||
|   destroy() { | ||||
|   | ||||
| @@ -6,7 +6,6 @@ import process from "node:process"; | ||||
| import * as remote from "@electron/remote"; | ||||
| import {app, dialog, session} from "@electron/remote"; | ||||
| import Tagify from "@yaireo/tagify"; | ||||
| import ISO6391 from "iso-639-1"; | ||||
| import {z} from "zod"; | ||||
|  | ||||
| import supportedLocales from "../../../../../public/translations/supported-locales.json"; | ||||
| @@ -57,7 +56,7 @@ export function initGeneralSection({$root}: GeneralSectionProperties): void { | ||||
|         </div> | ||||
|         <div class="setting-row" id="badge-option"> | ||||
|           <div class="setting-description"> | ||||
|             ${t.__("Show app unread badge")} | ||||
|             ${t.__("Show unread count badge on app icon")} | ||||
|           </div> | ||||
|           <div class="setting-control"></div> | ||||
|         </div> | ||||
| @@ -456,9 +455,9 @@ export function initGeneralSection({$root}: GeneralSectionProperties): void { | ||||
|  | ||||
|   async function customCssDialog(): Promise<void> { | ||||
|     const showDialogOptions: OpenDialogOptions = { | ||||
|       title: "Select file", | ||||
|       title: t.__("Select file"), | ||||
|       properties: ["openFile"], | ||||
|       filters: [{name: "CSS file", extensions: ["css"]}], | ||||
|       filters: [{name: t.__("CSS file"), extensions: ["css"]}], | ||||
|     }; | ||||
|  | ||||
|     const {filePaths, canceled} = | ||||
| @@ -525,7 +524,7 @@ export function initGeneralSection({$root}: GeneralSectionProperties): void { | ||||
|  | ||||
|   async function downloadFolderDialog(): Promise<void> { | ||||
|     const showDialogOptions: OpenDialogOptions = { | ||||
|       title: "Select Download Location", | ||||
|       title: t.__("Select Download Location"), | ||||
|       properties: ["openDirectory"], | ||||
|     }; | ||||
|  | ||||
| @@ -568,9 +567,9 @@ export function initGeneralSection({$root}: GeneralSectionProperties): void { | ||||
|  | ||||
|     const {response} = await dialog.showMessageBox({ | ||||
|       type: "warning", | ||||
|       buttons: ["YES", "NO"], | ||||
|       buttons: [t.__("Yes"), t.__("No")], | ||||
|       defaultId: 0, | ||||
|       message: "Are you sure?", | ||||
|       message: t.__("Are you sure?"), | ||||
|       detail: clearAppDataMessage, | ||||
|     }); | ||||
|     if (response === 0) { | ||||
| @@ -619,26 +618,23 @@ export function initGeneralSection({$root}: GeneralSectionProperties): void { | ||||
|       ).availableSpellCheckerLanguages; | ||||
|       let languagePairs = new Map<string, string>(); | ||||
|       for (const l of availableLanguages) { | ||||
|         if (ISO6391.validate(l)) { | ||||
|           languagePairs.set(ISO6391.getName(l), l); | ||||
|         } | ||||
|         const locale = new Intl.Locale(l.replaceAll("_", "-")); | ||||
|         let displayName = new Intl.DisplayNames([locale], { | ||||
|           type: "language", | ||||
|         }).of(locale.language); | ||||
|         if (displayName === undefined) continue; | ||||
|         displayName = displayName.replace(/^./u, (firstChar) => | ||||
|           firstChar.toLocaleUpperCase(locale), | ||||
|         ); | ||||
|         if (locale.script !== undefined) | ||||
|           displayName += ` (${new Intl.DisplayNames([locale], {type: "script"}).of(locale.script)})`; | ||||
|         if (locale.region !== undefined) | ||||
|           displayName += ` (${new Intl.DisplayNames([locale], {type: "region"}).of(locale.region)})`; | ||||
|         languagePairs.set(displayName, l); | ||||
|       } | ||||
|  | ||||
|       // Manually set names for languages not available in ISO6391 | ||||
|       languagePairs.set("English (AU)", "en-AU"); | ||||
|       languagePairs.set("English (CA)", "en-CA"); | ||||
|       languagePairs.set("English (GB)", "en-GB"); | ||||
|       languagePairs.set("English (US)", "en-US"); | ||||
|       languagePairs.set("Spanish (Latin America)", "es-419"); | ||||
|       languagePairs.set("Spanish (Argentina)", "es-AR"); | ||||
|       languagePairs.set("Spanish (Mexico)", "es-MX"); | ||||
|       languagePairs.set("Spanish (US)", "es-US"); | ||||
|       languagePairs.set("Portuguese (Brazil)", "pt-BR"); | ||||
|       languagePairs.set("Portuguese (Portugal)", "pt-PT"); | ||||
|       languagePairs.set("Serbo-Croatian", "sh"); | ||||
|  | ||||
|       languagePairs = new Map( | ||||
|         [...languagePairs].sort((a, b) => (a[0] < b[0] ? -1 : 1)), | ||||
|         [...languagePairs].sort((a, b) => a[0].localeCompare(b[1])), | ||||
|       ); | ||||
|  | ||||
|       const tagField: HTMLInputElement = $root.querySelector( | ||||
|   | ||||
| @@ -9,15 +9,15 @@ type PreferenceNavigationProperties = { | ||||
| }; | ||||
|  | ||||
| export default class PreferenceNavigation { | ||||
|   navigationItems: NavigationItem[]; | ||||
|   navigationItems: Array<{navigationItem: NavigationItem; label: string}>; | ||||
|   $el: Element; | ||||
|   constructor(private readonly properties: PreferenceNavigationProperties) { | ||||
|     this.navigationItems = [ | ||||
|       "General", | ||||
|       "Network", | ||||
|       "AddServer", | ||||
|       "Organizations", | ||||
|       "Shortcuts", | ||||
|       {navigationItem: "General", label: t.__("General")}, | ||||
|       {navigationItem: "Network", label: t.__("Network")}, | ||||
|       {navigationItem: "AddServer", label: t.__("Add Organization")}, | ||||
|       {navigationItem: "Organizations", label: t.__("Organizations")}, | ||||
|       {navigationItem: "Shortcuts", label: t.__("Shortcuts")}, | ||||
|     ]; | ||||
|  | ||||
|     this.$el = generateNodeFromHtml(this.templateHtml()); | ||||
| @@ -28,11 +28,8 @@ export default class PreferenceNavigation { | ||||
|   templateHtml(): Html { | ||||
|     const navigationItemsHtml = html``.join( | ||||
|       this.navigationItems.map( | ||||
|         (navigationItem) => html` | ||||
|           <div class="nav" id="nav-${navigationItem}"> | ||||
|             ${t.__(navigationItem)} | ||||
|           </div> | ||||
|         `, | ||||
|         ({navigationItem, label}) => | ||||
|           html`<div class="nav" id="nav-${navigationItem}">${label}</div>`, | ||||
|       ), | ||||
|     ); | ||||
|  | ||||
| @@ -45,7 +42,7 @@ export default class PreferenceNavigation { | ||||
|   } | ||||
|  | ||||
|   registerListeners(): void { | ||||
|     for (const navigationItem of this.navigationItems) { | ||||
|     for (const {navigationItem} of this.navigationItems) { | ||||
|       const $item = this.$el.querySelector( | ||||
|         `#nav-${CSS.escape(navigationItem)}`, | ||||
|       )!; | ||||
| @@ -56,7 +53,7 @@ export default class PreferenceNavigation { | ||||
|   } | ||||
|  | ||||
|   select(navigationItemToSelect: NavigationItem): void { | ||||
|     for (const navigationItem of this.navigationItems) { | ||||
|     for (const {navigationItem} of this.navigationItems) { | ||||
|       if (navigationItem === navigationItemToSelect) { | ||||
|         this.activate(navigationItem); | ||||
|       } else { | ||||
|   | ||||
| @@ -71,8 +71,8 @@ export function initNewServerForm({ | ||||
|         message: | ||||
|           error instanceof Error | ||||
|             ? `${error.name}: ${error.message}` | ||||
|             : "Unknown error", | ||||
|         buttons: ["OK"], | ||||
|             : t.__("Unknown error"), | ||||
|         buttons: [t.__("OK")], | ||||
|       }); | ||||
|       return; | ||||
|     } | ||||
|   | ||||
| @@ -90,7 +90,7 @@ export class PreferenceView { | ||||
|       } | ||||
|     } | ||||
|  | ||||
|     window.location.hash = `#${navigationItem}`; | ||||
|     location.hash = `#${navigationItem}`; | ||||
|   }; | ||||
|  | ||||
|   handleToggleTray(state: boolean) { | ||||
|   | ||||
| @@ -53,7 +53,7 @@ export function initServerInfoForm(properties: ServerInfoFormProperties): void { | ||||
|   $deleteServerButton.addEventListener("click", async () => { | ||||
|     const {response} = await dialog.showMessageBox({ | ||||
|       type: "warning", | ||||
|       buttons: [t.__("YES"), t.__("NO")], | ||||
|       buttons: [t.__("Yes"), t.__("No")], | ||||
|       defaultId: 0, | ||||
|       message: t.__("Are you sure you want to disconnect this organization?"), | ||||
|     }); | ||||
|   | ||||
| @@ -182,9 +182,10 @@ function reloadDatabase(): void { | ||||
|     if (fs.existsSync(domainJsonPath)) { | ||||
|       fs.unlinkSync(domainJsonPath); | ||||
|       dialog.showErrorBox( | ||||
|         "Error saving new organization", | ||||
|         "There seems to be error while saving new organization, " + | ||||
|           "you may have to re-add your previous organizations back.", | ||||
|         t.__("Error saving new organization"), | ||||
|         t.__( | ||||
|           "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
|         ), | ||||
|       ); | ||||
|       logger.error("Error while JSON parsing domain.json: "); | ||||
|       logger.error(error); | ||||
|   | ||||
| @@ -12,49 +12,5 @@ | ||||
|     <link rel="stylesheet" href="css/main.css" /> | ||||
|   </head> | ||||
|  | ||||
|   <body> | ||||
|     <div id="content"> | ||||
|       <div class="popup"> | ||||
|         <span class="popuptext hidden" id="fullscreen-popup"></span> | ||||
|       </div> | ||||
|       <div id="sidebar" class="toggle-sidebar"> | ||||
|         <div id="view-controls-container"> | ||||
|           <div id="tabs-container"></div> | ||||
|           <div id="add-tab" class="tab functional-tab"> | ||||
|             <div class="server-tab" id="add-action"> | ||||
|               <i class="material-icons">add</i> | ||||
|             </div> | ||||
|             <span id="add-server-tooltip" style="display: none" | ||||
|               >Add organization</span | ||||
|             > | ||||
|           </div> | ||||
|         </div> | ||||
|         <div id="actions-container"> | ||||
|           <div class="action-button" id="dnd-action"> | ||||
|             <i class="material-icons md-48">notifications</i> | ||||
|             <span id="dnd-tooltip" style="display: none">Do Not Disturb</span> | ||||
|           </div> | ||||
|           <div class="action-button hidden" id="reload-action"> | ||||
|             <i class="material-icons md-48">refresh</i> | ||||
|             <span id="reload-tooltip" style="display: none">Reload</span> | ||||
|           </div> | ||||
|           <div class="action-button disable" id="loading-action"> | ||||
|             <i class="refresh material-icons md-48">loop</i> | ||||
|             <span id="loading-tooltip" style="display: none">Loading</span> | ||||
|           </div> | ||||
|           <div class="action-button disable" id="back-action"> | ||||
|             <i class="material-icons md-48">arrow_back</i> | ||||
|             <span id="back-tooltip" style="display: none">Go Back</span> | ||||
|           </div> | ||||
|           <div class="action-button" id="settings-action"> | ||||
|             <i class="material-icons md-48">settings</i> | ||||
|             <span id="setting-tooltip" style="display: none">Settings</span> | ||||
|           </div> | ||||
|         </div> | ||||
|       </div> | ||||
|       <div id="main-container"> | ||||
|         <div id="webviews-container"></div> | ||||
|       </div> | ||||
|     </div> | ||||
|   </body> | ||||
|   <body></body> | ||||
| </html> | ||||
|   | ||||
							
								
								
									
										
											BIN
										
									
								
								build/icon-macos.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 20 KiB | 
							
								
								
									
										1
									
								
								build/icon-macos.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1 @@ | ||||
| <svg xmlns="http://www.w3.org/2000/svg" viewBox="-100 -100 1024 1024"><defs><linearGradient id="a" x1="0" y1="0" x2="0" y2="1"><stop offset="0" stop-color="#50adff"/><stop offset="1" stop-color="#7877fc"/></linearGradient><mask id="b"><rect x="-100" y="-100" width="1024" height="1024" fill="#fff"/><path d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z" transform="scale(1.0658112582781456)" fill="#000"/></mask><path id="c" d="M824 257c0-64 0-104-14-141A173 173 0 00708 14C671 0 631 0 567 0H257C193 0 153 0 116 14A173 173 0 0014 116C0 153 0 193 0 257V567c0 64 0 104 14 141A173 173 0 00116 810c37 14 77 14 141 14H567c64 0 104 0 141-14A173 173 0 00810 708c14-37 14-77 14-141Z"/><filter id="d"><feGaussianBlur in="SourceGraphic" stdDeviation="10"/></filter><filter id="e"><feGaussianBlur in="SourceGraphic" stdDeviation="5"/></filter></defs><use href="#c" transform="translate(0 10)" fill-opacity="0.3" filter="url(#d)"/><rect x="120" y="120" width="584" height="584" fill="#fff" /><g filter="url(#e)"><rect x="120" y="120" width="584" height="584" fill="#32497f" mask="url(#b)" transform="translate(0 5)"/></g><use href="#c" mask="url(#b)" fill="url(#a)"/></svg> | ||||
| After Width: | Height: | Size: 1.5 KiB | 
							
								
								
									
										
											BIN
										
									
								
								build/icon.icns
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 60 KiB | 
| Before Width: | Height: | Size: 4.4 KiB | 
| Before Width: | Height: | Size: 581 B | 
| Before Width: | Height: | Size: 797 B | 
| Before Width: | Height: | Size: 9.5 KiB | 
| Before Width: | Height: | Size: 1.1 KiB | 
| Before Width: | Height: | Size: 1.6 KiB | 
| Before Width: | Height: | Size: 13 KiB | 
| Before Width: | Height: | Size: 2.1 KiB | 
| Before Width: | Height: | Size: 3.2 KiB | 
							
								
								
									
										26
									
								
								changelog.md
									
									
									
									
									
								
							
							
						
						| @@ -2,6 +2,32 @@ | ||||
|  | ||||
| All notable changes to the Zulip desktop app are documented in this file. | ||||
|  | ||||
| ### v5.12.0 --2025-03-13 | ||||
|  | ||||
| **Enhancements**: | ||||
|  | ||||
| - Updated the icon in macOS with a native appearance. | ||||
| - Marked untranslated strings for translation. | ||||
| - Updated translations. | ||||
|  | ||||
| **Dependencies**: | ||||
|  | ||||
| - Upgraded all dependencies, including Electron 35.0.1. | ||||
|  | ||||
| **Removed features**: | ||||
|  | ||||
| - Removed support for macOS 10.15 and earlier, which reached end-of-life in 2022 and is [no longer supported](https://www.electronjs.org/blog/electron-33-0#removed-macos-1015-support) by Electron. | ||||
|  | ||||
| ### v5.11.1 --2024-08-23 | ||||
|  | ||||
| **Enhancements**: | ||||
|  | ||||
| - Updated translations. | ||||
|  | ||||
| **Dependencies**: | ||||
|  | ||||
| - Upgraded all dependencies, including Electron 32.0.1. | ||||
|  | ||||
| ### v5.11.0 --2024-03-22 | ||||
|  | ||||
| **Fixes**: | ||||
|   | ||||
							
								
								
									
										21
									
								
								i18next-scanner.config.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,21 @@ | ||||
| "use strict"; | ||||
|  | ||||
| module.exports = { | ||||
|   input: ["app/**/*.ts"], | ||||
|   options: { | ||||
|     debug: true, | ||||
|     removeUnusedKeys: true, | ||||
|     sort: true, | ||||
|     func: {list: ["t.__"], extensions: [".ts"]}, | ||||
|     defaultLng: "en", | ||||
|     defaultValue: (lng, ns, key) => (lng === "en" ? key : ""), | ||||
|     resource: { | ||||
|       loadPath: "public/translations/{{lng}}.json", | ||||
|       savePath: "public/translations/{{lng}}.json", | ||||
|       jsonIndent: "\t", | ||||
|     }, | ||||
|     keySeparator: false, | ||||
|     nsSeparator: false, | ||||
|     context: false, | ||||
|   }, | ||||
| }; | ||||
							
								
								
									
										8495
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
							
								
								
									
										46
									
								
								package.json
									
									
									
									
									
								
							
							
						
						| @@ -1,7 +1,7 @@ | ||||
| { | ||||
|   "name": "zulip", | ||||
|   "productName": "Zulip", | ||||
|   "version": "5.11.0", | ||||
|   "version": "5.12.0", | ||||
|   "main": "./dist-electron", | ||||
|   "description": "Zulip Desktop App", | ||||
|   "license": "Apache-2.0", | ||||
| @@ -18,7 +18,7 @@ | ||||
|     "url": "https://github.com/zulip/zulip-desktop/issues" | ||||
|   }, | ||||
|   "engines": { | ||||
|     "node": ">=16.13.2" | ||||
|     "node": ">=18" | ||||
|   }, | ||||
|   "scripts": { | ||||
|     "start": "vite", | ||||
| @@ -50,6 +50,7 @@ | ||||
|     "copyright": "©2020 Kandra Labs, Inc.", | ||||
|     "mac": { | ||||
|       "category": "public.app-category.productivity", | ||||
|       "icon": "build/icon-macos.png", | ||||
|       "target": [ | ||||
|         { | ||||
|           "target": "default", | ||||
| @@ -67,14 +68,11 @@ | ||||
|         } | ||||
|       ], | ||||
|       "darkModeSupport": true, | ||||
|       "artifactName": "${productName}-${version}-${arch}.${ext}", | ||||
|       "notarize": { | ||||
|         "teamId": "66KHCWMEYB" | ||||
|       } | ||||
|       "artifactName": "${productName}-${version}-${arch}.${ext}" | ||||
|     }, | ||||
|     "linux": { | ||||
|       "category": "Chat;GNOME;GTK;Network;InstantMessaging", | ||||
|       "icon": "build/icon.icns", | ||||
|       "icon": "build/zulip.png", | ||||
|       "description": "Zulip Desktop Client for Linux", | ||||
|       "target": [ | ||||
|         "deb", | ||||
| @@ -120,7 +118,16 @@ | ||||
|         } | ||||
|       ], | ||||
|       "icon": "build/icon.ico", | ||||
|       "publisherName": "Kandra Labs, Inc." | ||||
|       "signtoolOptions": { | ||||
|         "publisherName": "Kandra Labs, Inc." | ||||
|       }, | ||||
|       "azureSignOptions": { | ||||
|         "endpoint": "https://eus.codesigning.azure.net/", | ||||
|         "codeSigningAccountName": "kandralabs", | ||||
|         "certificateProfileName": "kandralabs", | ||||
|         "timestampRfc3161": "http://timestamp.acs.microsoft.com", | ||||
|         "timestampDigest": "SHA256" | ||||
|       } | ||||
|     }, | ||||
|     "msi": { | ||||
|       "artifactName": "${productName}-${version}-${arch}.${ext}" | ||||
| @@ -147,42 +154,42 @@ | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|     "@electron/remote": "^2.0.8", | ||||
|     "@sentry/core": "^7.94.1", | ||||
|     "@sentry/electron": "^4.1.2", | ||||
|     "@sentry/core": "^9.5.0", | ||||
|     "@sentry/electron": "^6.1.0", | ||||
|     "@types/adm-zip": "^0.5.0", | ||||
|     "@types/auto-launch": "^5.0.2", | ||||
|     "@types/backoff": "^2.5.2", | ||||
|     "@types/i18n": "^0.13.1", | ||||
|     "@types/node": "^20.11.30", | ||||
|     "@types/node": "^22.13.10", | ||||
|     "@types/requestidlecallback": "^0.3.4", | ||||
|     "@types/semver": "^7.5.8", | ||||
|     "@types/yaireo__tagify": "^4.3.2", | ||||
|     "@yaireo/tagify": "^4.5.0", | ||||
|     "adm-zip": "^0.5.5", | ||||
|     "auto-launch": "^5.0.5", | ||||
|     "backoff": "^2.5.0", | ||||
|     "electron": "^29.1.5", | ||||
|     "electron-builder": "^24.6.4", | ||||
|     "electron": "^35.0.1", | ||||
|     "electron-builder": "^25.1.8", | ||||
|     "electron-log": "^5.0.3", | ||||
|     "electron-updater": "^6.1.4", | ||||
|     "electron-updater": "^6.3.4", | ||||
|     "electron-window-state": "^5.0.3", | ||||
|     "escape-goat": "^4.0.0", | ||||
|     "htmlhint": "^1.1.2", | ||||
|     "i18n": "^0.15.1", | ||||
|     "iso-639-1": "^3.1.0", | ||||
|     "i18next-scanner": "^4.6.0", | ||||
|     "medium": "^1.2.0", | ||||
|     "node-json-db": "^1.3.0", | ||||
|     "playwright-core": "^1.41.0-alpha-jan-9-2024", | ||||
|     "pre-commit": "^1.2.2", | ||||
|     "prettier": "^3.0.3", | ||||
|     "rimraf": "^5.0.0", | ||||
|     "semver": "^7.3.5", | ||||
|     "stylelint": "^16.1.0", | ||||
|     "stylelint-config-standard": "^36.0.0", | ||||
|     "stylelint-config-standard": "^37.0.0", | ||||
|     "tape": "^5.2.2", | ||||
|     "typescript": "^5.0.4", | ||||
|     "vite": "^5.0.11", | ||||
|     "vite-plugin-electron": "^0.28.0", | ||||
|     "xo": "^0.58.0", | ||||
|     "xo": "^0.60.0", | ||||
|     "zod": "^3.5.1" | ||||
|   }, | ||||
|   "prettier": { | ||||
| @@ -309,7 +316,8 @@ | ||||
|       }, | ||||
|       { | ||||
|         "files": [ | ||||
|           "scripts/notarize.js", | ||||
|           "i18next-scanner.config.js", | ||||
|           "scripts/win-sign.js", | ||||
|           "tests/**/*.js" | ||||
|         ], | ||||
|         "parserOptions": { | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "حول \"زوليب\"", | ||||
| 	"Actual Size": "الحجم الفعلي", | ||||
| 	"Add Organization": "إضافة منظمة", | ||||
| 	"Add a Zulip organization": "إضافة منظمة \"زوليب\"", | ||||
| 	"Add custom CSS": "إضافة CSS معدلة", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "متقدم", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "جميع المنظمات المتصلة ستظهر هنا", | ||||
| 	"Always start minimized": "دائماً إبدأ بالقليل", | ||||
| 	"App Updates": "تحديثات التطبيق", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "المظهر", | ||||
| 	"Application Shortcuts": "إختصارات التطبيق", | ||||
| 	"Are you sure you want to disconnect this organization?": "هل أنت متأكد من فصل هذة المنظمة؟", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "أخف القائمة تلقائياً", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "أخف القائمة تلقائياً (إضغط Alt لعرض القائمة)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "رجوع", | ||||
| 	"Bounce dock on new private message": "أخرج المنصة في حال رسالة خاصة جديدة", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "إلغاء", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "تغيير", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "التحقق من التحديثات", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "التوصيل مع منظمة أخرى", | ||||
| 	"Connected organizations": "المنظمات المتصلة", | ||||
| 	"Copy": "نسخ", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "نسخ رابط زوليب", | ||||
| 	"Create a new organization": "إنشاء منظمة جديدة", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "قص", | ||||
| 	"Default download location": "موقع التحميل الافتراضي", | ||||
| 	"Delete": "حذف", | ||||
| 	"Desktop Notifications": "إشعارات سطح المكتب", | ||||
| 	"Desktop Settings": "إعدادات سطح المكتب", | ||||
| 	"Disconnect": "قطع الاتصال", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "تنزيل سجلات التطبيق", | ||||
| 	"Edit": "تعديل", | ||||
| 	"Edit Shortcuts": "تعديل الاختصارات", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "الإيموجي و الرموز", | ||||
| 	"Enable auto updates": "تفعيل التحديثات التلقائية", | ||||
| 	"Enable error reporting (requires restart)": "تفعيل تقارير الأخطاء (يتطلب إعادة التشغيل)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "اعرض الشاشة كاملة", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "إعادة ضبط المصنع", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "ملف", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Zulip": "أخفي زوليب", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "الشبكة و إعدادات البروكسي", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "حسنًا", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -85,21 +118,27 @@ | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset App Settings": "أعد ضبط إعدادات التطبيق", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "إعادة ضبط التطبيق, و بالتالي مسح جميع المنظمات المتصلة و الحسابات", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} يقوم بتشغيل نسخة قديمة من خادم زوليب {{{version}}}. قد لا يعمل بشكل كامل مع هذا التطبيق " | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Пра Zulip", | ||||
| 	"Actual Size": "Сапраўдны памер", | ||||
| 	"Add Organization": "Дадаць арганізацыю", | ||||
| 	"Add a Zulip organization": "Дадаць арганізацыю Zulip", | ||||
| 	"Add custom CSS": "Дадаць свой CSS", | ||||
| 	"AddServer": "Дадаць сэрвер", | ||||
| 	"Add to Dictionary": "Дадаць у слоўнік", | ||||
| 	"Advanced": "Пашыраныя", | ||||
| 	"All the connected organizations will appear here.": "Тут з'явяцца ўсе звязаныя арганізацыі.", | ||||
| 	"Always start minimized": "Заўсёды адкрываць згорнутым", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Выгляд", | ||||
| 	"Application Shortcuts": "Спалучэнні клавішаў", | ||||
| 	"Are you sure you want to disconnect this organization?": "Вы ўпэўненыя, што хочаце адключыць гэту арганізацыю?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Спытаць, куды захоўваць файлы перад сцягваннем", | ||||
| 	"Auto hide Menu bar": "Аўтаматычна хаваць радок меню", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Аўтаматычна хаваць радок меню (для выявы націсніце клавішу Alt)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Назад", | ||||
| 	"Bounce dock on new private message": "Подпрыгваючы dock пры новым асабістым паведамленні", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Скасаваць", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Змяніць", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Змяніце мову ў: Сістэмныя налады → Клавіятура → Тэкст → Правапіс.", | ||||
| 	"Check for Updates": "Праверыць наяўнасць абнаўленняў", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Падлучыць да іншай арганізацыі", | ||||
| 	"Connected organizations": "Падлучаныя арганізацыі", | ||||
| 	"Copy": "Капіяваць", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Капіяваць відарыс", | ||||
| 	"Copy Image URL": "Капіяваць URL відарысу", | ||||
| 	"Copy Link": "Капіяваць спасылку", | ||||
| 	"Copy Zulip URL": "Капіяваць Zulip URL", | ||||
| 	"Create a new organization": "Стварыць новую арганізацыю", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Выразаць", | ||||
| 	"Default download location": "Месца сцягвання па змаўчанні", | ||||
| 	"Delete": "Выдаліць", | ||||
| 	"Desktop Notifications": "Апавяшчэнні для ПК", | ||||
| 	"Desktop Settings": "Налады для ПК", | ||||
| 	"Disconnect": "Адлучыць", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Сцягнуць журналы праграмаў", | ||||
| 	"Edit": "Рэдагаваць", | ||||
| 	"Edit Shortcuts": "Рэдагаваць cпалучэнні клавішаў", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Увамкнуць справаздачу аб памылках (патрабуецца перазапуск)", | ||||
| 	"Enable spellchecker (requires restart)": "Увамкнуць праверку правапісу (патрабуецца перазапуск)", | ||||
| 	"Enter Full Screen": "Пераход у поўнаэкранны рэжым", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Аднаўленне заводскіх наладаў", | ||||
| 	"Factory Reset Data": "Аднаўленне даных да заводскіх наладаў", | ||||
| 	"File": "Файл", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Функцыянальнасць", | ||||
| 	"General": "Агульныя", | ||||
| 	"Get beta updates": "Атрымлівць бэта-абнаўленні", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Апаратнае пераладаванне", | ||||
| 	"Help": "Даведка", | ||||
| 	"Help Center": "Цэнтр даведак", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Схаваць Zulip", | ||||
| 	"History": "Гісторыя", | ||||
| 	"History Shortcuts": "Гісторыя cпалучэнняў клавішаў", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Спалучэнні клавішаў", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Выйсці з уліковага запісу", | ||||
| 	"Log Out of Organization": "Выйсці з уліковага запісу арганізацыі", | ||||
| 	"Look Up": "Шукаць", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Ручная налада проксі", | ||||
| 	"Minimize": "Згарнуць", | ||||
| 	"Mute all sounds from Zulip": "Адключыць усе гукі з Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Сетка", | ||||
| 	"Network and Proxy Settings": "Налады сеткі і проксі", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Прапановы не знойдзеныя", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "У macOS выкарыстоўваецца сістэмная праверка правапісу.", | ||||
| 	"Organization URL": "URL арганізацыі", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Проксі", | ||||
| 	"Proxy bypass rules": "Правілы абыходу проксі", | ||||
| 	"Proxy rules": "Правілы проксі", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Выйсці", | ||||
| 	"Quit Zulip": "Выйсці з Zulip", | ||||
| 	"Quit when the window is closed": "Выйсці, калі акно зачыненае", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Скінуць усю праграму, выдаліўшы такім чынам усе звязаныя арганізацыі і ўліковыя запісы.", | ||||
| 	"Save": "Захаваць", | ||||
| 	"Select All": "Выбраць усё", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Сэрвісы", | ||||
| 	"Settings": "Налады", | ||||
| 	"Shortcuts": "Спалучэнні клавішаў", | ||||
| 	"Show app icon in system tray": "Паказаць значок праграмы ў вобласці паведамленняў", | ||||
| 	"Show app unread badge": "Паказваць значок непрачытаных паведамленняў", | ||||
| 	"Show desktop notifications": "Паказваць апавяшчэнні на працоўным стале", | ||||
| 	"Show sidebar": "Паказваць бакавую панэль", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Мовы для праверкі правапісу", | ||||
| 	"Start app at login": "Запусціць праграму пры ўваходзе ва ўліковы запіс", | ||||
| 	"Switch to Next Organization": "Пераключыцца на наступную арганізацыю", | ||||
| 	"Switch to Previous Organization": "Пераключыцца на папярэднюю арганізацыю", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Гэтыя спалучэнні клавішаў пашыраюць магчымасці Zulip", | ||||
| 	"Tip": "Парада", | ||||
| 	"Toggle DevTools for Active Tab": "Увамкнуць DevTools для актыўнай укладкі", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Перамкнуць бакавую панэль", | ||||
| 	"Toggle Tray Icon": "Перамкнуць значок у вобласці паведамленняў", | ||||
| 	"Tools": "Інструменты", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Адрабіць", | ||||
| 	"Unhide": "Зрабіць бачным", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Заладаваць", | ||||
| 	"Use system proxy settings (requires restart)": "Выкарыстоўваць сістэмныя налады проксі (патрабуе перазапуск)", | ||||
| 	"View": "Прагляд", | ||||
| 	"View Shortcuts": "Спалучэнні клавішаў прагляду", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Акно", | ||||
| 	"Window Shortcuts": "Спалучэнні клавішаў акна", | ||||
| 	"YES": "ТАК", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Вы можаце выбраць максімум 3 мовы для праверкі правапісу.", | ||||
| 	"Zoom In": "Павялічыць", | ||||
| 	"Zoom Out": "Паменшыць", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Относно Zulip", | ||||
| 	"Actual Size": "Действителен размер", | ||||
| 	"Add Organization": "Добавяне на организация", | ||||
| 	"Add a Zulip organization": "Добавете организация Zulip", | ||||
| 	"Add custom CSS": "Добавете персонализиран CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "напреднал", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Винаги започвайте да минимизирате", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Външен вид", | ||||
| 	"Application Shortcuts": "Клавишни комбинации за приложения", | ||||
| 	"Are you sure you want to disconnect this organization?": "Наистина ли искате да прекъснете връзката с тази организация?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Автоматично скриване на лентата с менюта", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Автоматично скриване на лентата с менюта (натиснете клавиша Alt за показване)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "обратно", | ||||
| 	"Bounce dock on new private message": "Прескочи док в новото лично съобщение", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Откажи", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "промяна", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Провери за обновления", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Свържете се с друга организация", | ||||
| 	"Connected organizations": "Свързани организации", | ||||
| 	"Copy": "копие", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Копирайте URL адреса на Zulip", | ||||
| 	"Create a new organization": "Създайте нова организация", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Разрез", | ||||
| 	"Default download location": "Място на изтегляне по подразбиране", | ||||
| 	"Delete": "Изтрий", | ||||
| 	"Desktop Notifications": "Известия за работния плот", | ||||
| 	"Desktop Settings": "Настройки на работния плот", | ||||
| 	"Disconnect": "Прекъсване на връзката", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Изтеглете регистрационни файлове на приложенията", | ||||
| 	"Edit": "редактиране", | ||||
| 	"Edit Shortcuts": "Редактиране на преки пътища", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Активиране на отчитането за грешки (изисква се рестартиране)", | ||||
| 	"Enable spellchecker (requires restart)": "Активиране на проверката на правописа (изисква се рестартиране)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Фабрично нулиране", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "досие", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Функционалност", | ||||
| 	"General": "Общ", | ||||
| 	"Get beta updates": "Изтеглете бета актуализации", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Помогне", | ||||
| 	"Help Center": "Помощен център", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "история", | ||||
| 	"History Shortcuts": "Преки пътища в историята", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Комбинация от клавиши", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Излез от профила си", | ||||
| 	"Log Out of Organization": "Излезте от организацията", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Ръчна конфигурация на прокси", | ||||
| 	"Minimize": "Минимизиране", | ||||
| 	"Mute all sounds from Zulip": "Заглуши всички звуци от Zulip", | ||||
| 	"NO": "НЕ", | ||||
| 	"Network": "мрежа", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Настройки на известията", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "ИЛИ", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "URL адрес на организацията", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "пълномощник", | ||||
| 	"Proxy bypass rules": "Правила за заобикаляне на прокси", | ||||
| 	"Proxy rules": "Прокси правила", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "напускам", | ||||
| 	"Quit Zulip": "Прекрати Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Запази", | ||||
| 	"Select All": "Избери всички", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Настройки", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Показване на иконата на приложението в системната област", | ||||
| 	"Show app unread badge": "Показване на непрочетената значка на приложението", | ||||
| 	"Show desktop notifications": "Показване на известията на работния плот", | ||||
| 	"Show sidebar": "Показване на страничната лента", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Стартирайте приложението при влизане", | ||||
| 	"Switch to Next Organization": "Превключване към следваща организация", | ||||
| 	"Switch to Previous Organization": "Превключване към предишна организация", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Тези клавишни комбинации за настолни приложения разширяват webapp на Zulip", | ||||
| 	"Tip": "Бакшиш", | ||||
| 	"Toggle DevTools for Active Tab": "Превключете DevTools за Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Превключване на страничната лента", | ||||
| 	"Toggle Tray Icon": "Превключете иконата на тава", | ||||
| 	"Tools": "Инструменти", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "премахвам", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Качи", | ||||
| 	"Use system proxy settings (requires restart)": "Използване на системните прокси настройки (изисква рестартиране)", | ||||
| 	"View": "изглед", | ||||
| 	"View Shortcuts": "Преглед на преки пътища", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "прозорец", | ||||
| 	"Window Shortcuts": "Клавишни комбинации", | ||||
| 	"YES": "ДА", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Увеличавам", | ||||
| 	"Zoom Out": "Отдалечавам", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "যুলিপ সম্পর্কে ", | ||||
| 	"Actual Size": "প্রকৃত সাইজ ", | ||||
| 	"Add Organization": "সংস্থা যুক্ত করুন", | ||||
| 	"Add a Zulip organization": "একটি যুলিপ প্রতিষ্ঠান যুক্ত করুন", | ||||
| 	"Add custom CSS": "কাস্টম সিএসএস যুক্ত করুন", | ||||
| 	"AddServer": "এড সার্ভার ", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "অগ্রসর ", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "সব সময় মিনিমাইজড ভাবে শুরু করুন ", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "প্রকাশ", | ||||
| 	"Application Shortcuts": "অ্যাপ্লিকেশান শর্টকাট ", | ||||
| 	"Are you sure you want to disconnect this organization?": "আপনি কি নিশ্চিত যে আপনি এই সংস্থার সংযোগ বিচ্ছিন্ন করতে চান ?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "অটো মেনুবার হাইড করুন ", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "অটো মেনুবার হাইড করুন (দেখার জন্য অল্টার কি চাপুন)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "পেছন", | ||||
| 	"Bounce dock on new private message": "ব্যাক্তিগত মেসেজে ডক বাউন্স করুন ", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "বাতিল", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "পরিবর্তন", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "ভাষা পরিবর্তন করতে  সিস্টেম প্রেফারেন্স  →  কীবোর্ড → টেক্সট  → স্পেলিং এ যান ", | ||||
| 	"Check for Updates": "আপডেট চেক করুন", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "অন্য একটি সংস্থার সাথে সংযুক্ত করুন", | ||||
| 	"Connected organizations": "সংযুক্ত সংস্থা সমূহ ", | ||||
| 	"Copy": "কপি", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "যুলিপ  ইউআরএল কপি করুন ", | ||||
| 	"Create a new organization": "নতুন সংস্থা তৈরি করুন ", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "কাট ", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "ডিলিট", | ||||
| 	"Desktop Notifications": "ডেস্কটপ নোটিফিকেশান ", | ||||
| 	"Desktop Settings": "ডেস্কটপ সেটিংস", | ||||
| 	"Disconnect": "সংযোগ বিছিন্ন করুন", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "অ্যাপ লগ ডাউনলোড করুন ", | ||||
| 	"Edit": "এডিট", | ||||
| 	"Edit Shortcuts": "শর্টকাটগুলো এডিট করুন ", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "ফ্যাক্টরি রিসেট", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "ফাইল", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "সাধারন", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "সাহায্য", | ||||
| 	"Help Center": "সাহায্য কেন্দ্র", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "ইতিহাস", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "লগ আউট", | ||||
| 	"Log Out of Organization": "সংস্থা থেকে লগ আউট করুন", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "ছোট করুন", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "না", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "কোন সাজেশন পাওয়া যায়নি", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "অথবা", | ||||
| 	"On macOS, the OS spellchecker is used.": "ম্যাক ওএস এ , ওএস এর স্পেলচেকার ব্যাবহার করা হয় ।", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "সেভ", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "সেটিংস", | ||||
| 	"Shortcuts": "শর্টকাট সমূহ", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "টিপ", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "অ্যান্ডু ", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "আপলোড", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "হ্যাঁ", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "জুম আউট", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "raď kerdên", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "ālêštkâri", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "pāk kerdên", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "ālêšt", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "fāyl", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "xā", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "zaft kerdên", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "sāmovā", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,11 +1,14 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Quant a Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Avançat", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel·la", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copia", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Crea una nova organització", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Elimina", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Configuració d'escriptori", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edita", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "Fitxer", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Recàrrega forçada", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Centre d'ajuda", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "Historial", | ||||
| 	"History Shortcuts": "Dreceres d'historial", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Tanca la sessió", | ||||
| 	"Log Out of Organization": "Tanca la sessió de l'organització", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Silencia tots els sons de Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "D'acord", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "URL d'organització", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Guardar", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Configuració", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Mostrar una marca en la icona si hi ha missatges no llegits", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Pujada", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "Byla stažena nová aktualizace {{{version}}}.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "Je dostupná nová verze {{{version}}} Zulip Desktop.", | ||||
| 	"About": "O programu", | ||||
| 	"About Zulip": "O Zulipu", | ||||
| 	"Actual Size": "Skutečná velikost", | ||||
| 	"Add Organization": "Přidat organizaci", | ||||
| 	"Add a Zulip organization": "Přidat organizaci Zulip", | ||||
| 	"Add custom CSS": "Přidat vlastní CSS", | ||||
| 	"AddServer": "Přidat server", | ||||
| 	"Add to Dictionary": "Přidat do slovníku", | ||||
| 	"Advanced": "Rozšířené", | ||||
| 	"All the connected organizations will appear here.": "Všechny připojené organizace se objeví zde.", | ||||
| 	"Always start minimized": "Vždy spouštět minimalizované", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Vzhled", | ||||
| 	"Application Shortcuts": "Zkratky programu", | ||||
| 	"Are you sure you want to disconnect this organization?": "Opravdu chcete odpojit tuto organizaci?", | ||||
| 	"Are you sure?": "Jste si jistý?", | ||||
| 	"Ask where to save files before downloading": "Před stažením se zeptat kam uložit soubory", | ||||
| 	"Auto hide Menu bar": "Automaticky skrývat menu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Automaticky skrývat menu (pro zobrazení stiskněte klávesu Alt)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Dostupné pod {{{link}}}licencí Apache 2.0{{{endLink}}}", | ||||
| 	"Back": "Zpět", | ||||
| 	"Bounce dock on new private message": "Poskakování ikony v docku po obdržení nové soukromé zprávy", | ||||
| 	"CSS file": "Soubor CSS", | ||||
| 	"Cancel": "Zrušit", | ||||
| 	"Certificate error": "Chyba certifikátu", | ||||
| 	"Change": "Změnit", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Změnit jazyk v Nastavení systému → Klávesnice → Text → Kontrola pravopisu.", | ||||
| 	"Check for Updates": "Zkontrolovat aktualizace", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Připojit se k jiné organizaci", | ||||
| 	"Connected organizations": "Připojené organizace", | ||||
| 	"Copy": "Kopírovat", | ||||
| 	"Copy Email Address": "Kopírovat adresu elektronické pošty", | ||||
| 	"Copy Image": "Kopírovat obrázek", | ||||
| 	"Copy Image URL": "Kopírovat adresu (URL) obrázku", | ||||
| 	"Copy Link": "Kopírovat odkaz", | ||||
| 	"Copy Zulip URL": "Kopírovat adresu (URL) Zulipu", | ||||
| 	"Create a new organization": "Vytvořit novou organizaci", | ||||
| 	"Custom CSS file deleted": "Vlastní soubor CSS smazán", | ||||
| 	"Cut": "Vyjmout", | ||||
| 	"Default download location": "Výchozí umístění stahování", | ||||
| 	"Delete": "Smazat", | ||||
| 	"Desktop Notifications": "Oznámení na ploše", | ||||
| 	"Desktop Settings": "Nastavení plochy", | ||||
| 	"Disconnect": "Odpojit", | ||||
| 	"Disconnect organization": "Odpojit organizaci", | ||||
| 	"Do Not Disturb": "Nerušit", | ||||
| 	"Download App Logs": "Stáhnout záznamy programu", | ||||
| 	"Edit": "Upravit", | ||||
| 	"Edit Shortcuts": "Upravit zkratky", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Povolit hlášení chyb (vyžaduje opětovné spuštění programu)", | ||||
| 	"Enable spellchecker (requires restart)": "Povolit kontrolu pravopisu (vyžaduje opětovné spuštění programu)", | ||||
| 	"Enter Full Screen": "Vstoupit na celou obrazovku", | ||||
| 	"Error saving new organization": "Chyba při ukládání nové organizace", | ||||
| 	"Error saving update notifications": "Chyba při ukládání oznámení aktualizace", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Chyba: {{{error}}}\n\nNejnovější verze aplikace Zulip Desktop je dostupná na adrese:\n{{{link}}}\nNynější verze: {{{version}}}", | ||||
| 	"Factory Reset": "Obnovení do továrního nastavení", | ||||
| 	"Factory Reset Data": "Obnovení dat do továrního nastavení", | ||||
| 	"File": "Soubor", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Funkce", | ||||
| 	"General": "Obecné", | ||||
| 	"Get beta updates": "Dostávat beta aktualizace", | ||||
| 	"Go Back": "Jít zpět", | ||||
| 	"Hard Reload": "Tvrdé znovunahrání", | ||||
| 	"Help": "Nápověda", | ||||
| 	"Help Center": "Centrum nápovědy", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Skrýt Zulip", | ||||
| 	"History": "Historie", | ||||
| 	"History Shortcuts": "Zkratky pro historii", | ||||
| 	"Install Later": "Instalovat později", | ||||
| 	"Install and Relaunch": "Nainstalovat a spustit znovu", | ||||
| 	"It will be installed the next time you restart the application.": "Nainstaluje se při příštím restartu aplikace.", | ||||
| 	"Keyboard Shortcuts": "Klávesové zkratky", | ||||
| 	"Later": "Později", | ||||
| 	"Loading": "Nahrává se", | ||||
| 	"Log Out": "Odhlásit se", | ||||
| 	"Log Out of Organization": "Odhlásit se z organizace", | ||||
| 	"Look Up": "Vyhledat", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Udržováno {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Ruční stažení", | ||||
| 	"Manual proxy configuration": "Ruční nastavení proxy", | ||||
| 	"Minimize": "Minimalizovat", | ||||
| 	"Mute all sounds from Zulip": "Ztlumit všechny zvuky ze Zulipu", | ||||
| 	"NO": "NE", | ||||
| 	"Network": "Síť", | ||||
| 	"Network and Proxy Settings": "Nastavení sítě a proxy serveru", | ||||
| 	"New servers added. Reload app now?": "Přidány nové servery. Nahrát nyní aplikaci znovu?", | ||||
| 	"No": "Ne", | ||||
| 	"No Suggestion Found": "Nenalezen žádný návrh", | ||||
| 	"No updates available.": "Žádné dostupné aktualizace", | ||||
| 	"Notification settings": "Nastavení oznámení", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "NEBO", | ||||
| 	"On macOS, the OS spellchecker is used.": "Na macOS se používá kontrola pravopisu OS.", | ||||
| 	"Organization URL": "Adresa organizace", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Pravidla pro obejití Proxy", | ||||
| 	"Proxy rules": "Pravidla Proxy", | ||||
| 	"Proxy settings saved.": "Nastavení proxy serveru je uloženo.", | ||||
| 	"Quit": "Ukončit", | ||||
| 	"Quit Zulip": "Ukončit Zulip", | ||||
| 	"Quit when the window is closed": "Ukončit, když je okno zavřeno", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Obnovit program do výchozího nastavení. čili smazat všechny připojené organizace a účty.", | ||||
| 	"Save": "Uložit", | ||||
| 	"Select All": "Vybrat vše", | ||||
| 	"Select Download Location": "Vyberte umístění stahování", | ||||
| 	"Select file": "Vybrat soubor", | ||||
| 	"Services": "Služby", | ||||
| 	"Settings": "Nastavení", | ||||
| 	"Shortcuts": "Zkratky", | ||||
| 	"Show app icon in system tray": "Zobrazovat ikonu programu v oznamovací oblasti panelu", | ||||
| 	"Show app unread badge": "Zobrazovat u ikony aplikace symbol nepřečteno", | ||||
| 	"Show desktop notifications": "Zobrazovat oznámení na ploše", | ||||
| 	"Show sidebar": "Zobrazovat postranní panel", | ||||
| 	"Show unread count badge on app icon": "Ukázat počet nepřečtených na ikoně aplikace", | ||||
| 	"Spellchecker Languages": "Kontrola pravopisu jazyků", | ||||
| 	"Start app at login": "Spustit program při přihlášení", | ||||
| 	"Switch to Next Organization": "Přepnout na další organizaci", | ||||
| 	"Switch to Previous Organization": "Přepnout na předchozí organizaci", | ||||
| 	"The custom CSS previously set is deleted.": "Předtím nastavený vlastní soubor CSS je smazán.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "Server předložil neplatný certifikát pro {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "Aktualizace se stáhne na pozadí. Až bude připravena k instalaci, budete o tom informováni.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "Při ukládání nové organizace došlo k chybě. Je možné, že budete muset předchozí organizace přidat znovu.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Tyto zkratky rozšiřují webovou aplikaci Zulipu", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Přepnout vývojářské nástroje pro aktivní kartu", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Přepnout zobrazení postranního panelu", | ||||
| 	"Toggle Tray Icon": "Přepnout ikonu v oznamovací oblasti panelu", | ||||
| 	"Tools": "Nástroje", | ||||
| 	"Unable to check for updates.": "Nelze zkontrolovat aktualizace.", | ||||
| 	"Unable to download the update.": "Aktualizaci se nepodařilo stáhnout.", | ||||
| 	"Undo": "Zpět", | ||||
| 	"Unhide": "Zobrazit", | ||||
| 	"Unknown error": "Neznámá chyba", | ||||
| 	"Upload": "Nahrát", | ||||
| 	"Use system proxy settings (requires restart)": "Použít systémová nastavení proxy (vyžaduje opětovné spuštění programu)", | ||||
| 	"View": "Zobrazení", | ||||
| 	"View Shortcuts": "Zobrazit zkratky", | ||||
| 	"We encountered an error while saving the update notifications.": "Při ukládání oznámení o aktualizaci jsme narazili na chybu.", | ||||
| 	"Window": "Okno", | ||||
| 	"Window Shortcuts": "Zkratky pro okno", | ||||
| 	"YES": "ANO", | ||||
| 	"Yes": "Ano", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "Používáte nejnovější verzi aplikace Zulip Desktop.\nVerze: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Pro kontrolu pravopisu můžete vybrat nejvíce 3 jazyky.", | ||||
| 	"Zoom In": "Přiblížit", | ||||
| 	"Zoom Out": "Oddálit", | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Am Zulip", | ||||
| 	"Actual Size": "Maint Gwirioneddol", | ||||
| 	"Add Organization": "Ychwanegu Sefydliad", | ||||
| 	"Add a Zulip organization": "Ychwanegwch sefydliad Zulip", | ||||
| 	"Add custom CSS": "Ychwanegwch CSS wedi'i ddylunio'n benodol", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Ychwanegu at y Geiriadur", | ||||
| 	"Advanced": "Uwch", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "Bydd yr holl sefydliadau cysylltiedig yn ymddangos yma", | ||||
| 	"Always start minimized": "Dechreuwch gyn lleied â phosibl bob amser", | ||||
| 	"App Updates": "Diweddariadau Ap", | ||||
| 	"App language (requires restart)": "Iaith ap (angen ailgychwyn)", | ||||
| 	"Appearance": "Ymddangosiad", | ||||
| 	"Application Shortcuts": "Llwybrau Byr yr Ap", | ||||
| 	"Are you sure you want to disconnect this organization?": "Ydych chi'n siŵr eich bod chi am ddatgysylltu'r sefydliad hwn?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Gofynnwch ble i arbed ffeiliau cyn eu lawrlwytho", | ||||
| 	"Auto hide Menu bar": "Cuddiwch y bar dewislen yn awtomatig", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Cuddiwch y bar dewislen yn awtomatig (Pwyswch Alt i'w harddangos)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Yn ôl", | ||||
| 	"Bounce dock on new private message": "Sbonciwch doc ar neges breifat newydd", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Canslo", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Newid", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Newid yr iaith o Dewisiadau System → Bysellfwrdd → Testun → Sillafu.", | ||||
| 	"Check for Updates": "Chwiliwch am Ddiweddariadau", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "Cysylltu â sefydliad arall", | ||||
| 	"Connected organizations": "Sefydliadau cysylltiedig", | ||||
| 	"Copy": "Copi", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copi Delwedd", | ||||
| 	"Copy Image URL": "Copi URL Delwedd", | ||||
| 	"Copy Link": "Copi Dolen", | ||||
| 	"Copy Zulip URL": "Copïwch URL Zulip", | ||||
| 	"Create a new organization": "Creu sefydliad newydd", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Torri", | ||||
| 	"Default download location": "Lleoliad lawrlwytho diofyn", | ||||
| 	"Delete": "Dileu", | ||||
| 	"Desktop Notifications": "Hysbysiadau Penbwrdd", | ||||
| 	"Desktop Settings": "Gosodiadau Penbwrdd", | ||||
| 	"Disconnect": "Datgysylltwch", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Lawrlwythwch Logiau Ap", | ||||
| 	"Edit": "Golygu", | ||||
| 	"Edit Shortcuts": "Golygu Llwybrau Byr", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "Emoji a Symbolau", | ||||
| 	"Enable auto updates": "Galluogi diweddariadau yn awtomatig", | ||||
| 	"Enable error reporting (requires restart)": "Galluogi adrodd am wallau (angen ailgychwyn)", | ||||
| 	"Enable spellchecker (requires restart)": "Galluogi gwiriwr sillafu (angen ailgychwyn)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Rhowch sgrin lawn", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Ailosod Ffatri", | ||||
| 	"Factory Reset Data": "Ailosod Data Ffatri", | ||||
| 	"File": "Ffeil", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "Ymarferoldeb", | ||||
| 	"General": "Cyffredinol", | ||||
| 	"Get beta updates": "Cael diweddariadau beta", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Ail-lwytho Caled", | ||||
| 	"Help": "Cymorth", | ||||
| 	"Help Center": "Canolfan Gymorth", | ||||
| 	"Hide": "Cuddio", | ||||
| 	"Hide Others": "Cuddio Eraill", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Zulip": "Cuddiwch Zulip", | ||||
| 	"History": "Hanes", | ||||
| 	"History Shortcuts": "Hanes Llwybrau Byr ", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Llwybrau Byr Bysellfwrdd", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Allgofnodi", | ||||
| 	"Log Out of Organization": "Allgofnodi Sefydliad", | ||||
| 	"Look Up": "Ymchwiliwch", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Cyfluniad dirprwy â llaw", | ||||
| 	"Minimize": "Lleihau", | ||||
| 	"Mute all sounds from Zulip": "Tawelwch pob sain o Zulip", | ||||
| 	"NO": "NA", | ||||
| 	"Network": "Rhwydwaith", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Gosodiadau Rhwydwaith a Dirprwy", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Ni chanfuwyd unrhyw awgrym", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Gosodiadau hysbysu", | ||||
| 	"OK": "Iawn", | ||||
| 	"OR": "NEU", | ||||
| 	"On macOS, the OS spellchecker is used.": "Ar macOS, defnyddir gwiriwr sillafu OS.", | ||||
| 	"Organization URL": "URL y sefydliad", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Dirprwy", | ||||
| 	"Proxy bypass rules": "Rheolau ffordd osgoi dirprwy", | ||||
| 	"Proxy rules": "Rheolau dirprwy", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Ymadael", | ||||
| 	"Quit Zulip": "Ymadael Zulip", | ||||
| 	"Quit when the window is closed": "Cau pan fydd y ffenestr ar gau", | ||||
| @@ -85,21 +118,27 @@ | ||||
| 	"Release Notes": "Nodiadau ar y datganiad hwn", | ||||
| 	"Reload": "Ail-lwytho", | ||||
| 	"Report an Issue": "Adroddiwch mater", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset App Settings": "Ailosod Gosodiadau Ap", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Ailosod y cais, gan ddileu'r holl sefydliadau a chyfrifon cysylltiedig.", | ||||
| 	"Save": "Cadw", | ||||
| 	"Select All": "Dewiswch Bobeth", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Gwasanaethau", | ||||
| 	"Settings": "Gosodiadau", | ||||
| 	"Shortcuts": "Llwybrau byr", | ||||
| 	"Show app icon in system tray": "Dangos eicon ap yn yr hambwrdd system", | ||||
| 	"Show app unread badge": "Dangos bathodyn heb ei ddarllen ", | ||||
| 	"Show desktop notifications": "Dangos hysbysiadau bwrdd gwaith", | ||||
| 	"Show sidebar": "Dangos bar ochr", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Ieithoedd Sillafu", | ||||
| 	"Start app at login": "Dechreuwch yr ap wrth fewngofnodi", | ||||
| 	"Switch to Next Organization": "Newid i'r Sefydliad Nesaf", | ||||
| 	"Switch to Previous Organization": "Newid i Sefydliad Blaenorol", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Mae'r llwybrau byr ap bwrdd gwaith hyn yn ymestyn y webap-iau Zulip", | ||||
| 	"Tip": "Awgrym", | ||||
| 	"Toggle DevTools for Active Tab": "Toglo DevTools ar gyfer Tab Gweithredol", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Toglo Bar Ochr", | ||||
| 	"Toggle Tray Icon": "Toglo Eicon Hambwrdd", | ||||
| 	"Tools": "Offer", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Dadwneud", | ||||
| 	"Unhide": "Dad-guddio", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Fyny-lwytho", | ||||
| 	"Use system proxy settings (requires restart)": "Defnyddiwch osodiadau dirprwy system (angen ailgychwyn)", | ||||
| 	"View": "Gweld", | ||||
| 	"View Shortcuts": "Gweld y Llwybrau Byr", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Ffenestr", | ||||
| 	"Window Shortcuts": "Llwybrau Byr Ffenestri", | ||||
| 	"YES": "YDY", | ||||
| 	"Yes": "Ydy", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Gallwch ddewis uchafswm o 3 iaith ar gyfer gwirio sillafu.", | ||||
| 	"Zoom In": "Chwyddo Mewn", | ||||
| 	"Zoom Out": "Chwyddo allan", | ||||
| 	"keyboard shortcuts": "llwybrau byr bysellfwrdd", | ||||
| 	"script": "sgript", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "Mae {{{server}}} yn rhedeg fersiwn Zulip Server {{{version}}} sydd wedi dyddio. Efallai na fydd yn gweithio'n llawn yn yr app hon." | ||||
| } | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Om Zulip", | ||||
| 	"Actual Size": "Faktisk størrelse", | ||||
| 	"Add Organization": "Opret organisation", | ||||
| 	"Add a Zulip organization": "Opret en Zulip organisation", | ||||
| 	"Add Organization": "Tilføj organisation", | ||||
| 	"Add a Zulip organization": "Tilføj en Zulip organisation", | ||||
| 	"Add custom CSS": "Tilføj egen CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Avanceret", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "Alle forbundne organisationer vil blive vist her", | ||||
| 	"Always start minimized": "Start altid minimeret", | ||||
| 	"App Updates": "App-opdateringer", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Udseende", | ||||
| 	"Application Shortcuts": "Genveje", | ||||
| 	"Are you sure you want to disconnect this organization?": "Er du sikker på du vil frakoble denne organisation? ", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Skjul menu automatisk", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Skjul menu automatisk (tryk på Alt-tasten for at vise)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Tilbage", | ||||
| 	"Bounce dock on new private message": "Animér dock ved ny privat meddelelse", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Annuller", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Skift", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Tjek for opdateringer", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "Forbind til en anden organisation", | ||||
| 	"Connected organizations": "Tilsluttede organisationer", | ||||
| 	"Copy": "Kopiér", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Kopiér Zulip URL", | ||||
| 	"Create a new organization": "Opret ny organisation", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Klip", | ||||
| 	"Default download location": "Default download placering", | ||||
| 	"Delete": "Slet", | ||||
| 	"Desktop Notifications": "Desktop-notifikationer", | ||||
| 	"Desktop Settings": "Desktop-indstillinger", | ||||
| 	"Disconnect": "Frakobl", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download app-logfiler", | ||||
| 	"Edit": "Redigér", | ||||
| 	"Edit Shortcuts": "Redigér genveje", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "Emoji og symboler", | ||||
| 	"Enable auto updates": "Aktivér auto-opdateringer", | ||||
| 	"Enable error reporting (requires restart)": "Aktivér fejlrapportering (kræver genstart)", | ||||
| 	"Enable spellchecker (requires restart)": "Aktivér stavekontrol (kræver genstart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Fuld skærm", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Nulstil til fabriksindstillinger", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "Fil", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "Funktionalitet", | ||||
| 	"General": "Generelt", | ||||
| 	"Get beta updates": "Få beta opdateringer", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hård reload", | ||||
| 	"Help": "Hjælp", | ||||
| 	"Help Center": "Hjælpecenter", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide": "Skjul", | ||||
| 	"Hide Others": "Skjul andre", | ||||
| 	"Hide Zulip": "Skjul Zulip", | ||||
| 	"History": "Historik", | ||||
| 	"History Shortcuts": "Historik genveje", | ||||
| 	"Keyboard Shortcuts": "Tastatur genveje", | ||||
| 	"History Shortcuts": "Historikgenveje", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Tastaturgenveje", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log ud", | ||||
| 	"Log Out of Organization": "Log ud af organisation", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manuel proxy opsætning", | ||||
| 	"Minimize": "Minimér", | ||||
| 	"Minimize": "Minimer", | ||||
| 	"Mute all sounds from Zulip": "Dæmp alle lyde fra Zulip", | ||||
| 	"NO": "NEJ", | ||||
| 	"Network": "Netværk", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Netværk og proxy indstillinger", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Indstillinger for notifikationer", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "ELLER", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organisation URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass regler", | ||||
| 	"Proxy rules": "Proxy regler", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Luk", | ||||
| 	"Quit Zulip": "Luk Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -85,43 +118,54 @@ | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Reset App Settings": "Nulstil App-indstillinger", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Nulstil applikationen, dvs: slet alle forbundne organisationer og konti.", | ||||
| 	"Save": "Gem", | ||||
| 	"Select All": "Vælg alle", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Tjenester", | ||||
| 	"Settings": "Indstillinger", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Do Not Disturb": "Slå forstyr ej til eller fra", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} kører en ældre version {{{version}}}. Den virker måske ikke fuld ud med denne app." | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "Ein neues Update {{{version}}} wurde heruntergeladen.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "Eine neue Version {{{version}}} von Zulip Desktop ist verfügbar.", | ||||
| 	"About": "Über", | ||||
| 	"About Zulip": "Über Zulip", | ||||
| 	"Actual Size": "Tatsächliche Größe", | ||||
| 	"Add Organization": "Organisation hinzufügen", | ||||
| 	"Add a Zulip organization": "Zulip-Organisation hinzufügen", | ||||
| 	"Add custom CSS": "Eigenes CSS hinzufügen", | ||||
| 	"AddServer": "ServerHinzufügen", | ||||
| 	"Add to Dictionary": "Zum Wörterbuch hinzufügen", | ||||
| 	"Advanced": "Erweitert", | ||||
| 	"All the connected organizations will appear here.": "Alle verbundenen Organisationen werden hier angezeigt.", | ||||
| 	"Always start minimized": "Immer minimiert öffnen", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Erscheinungsbild", | ||||
| 	"Application Shortcuts": "App-Verknüpfungen", | ||||
| 	"Are you sure you want to disconnect this organization?": "Bist du dir sicher, dass du die Verbindung zur Organisation trennen möchtest?", | ||||
| 	"Are you sure?": "Sind Sie sicher?", | ||||
| 	"Ask where to save files before downloading": "Fragen, wo heruntergeladene Dateien gespeichert werden sollen", | ||||
| 	"Auto hide Menu bar": "Menü automatisch verstecken", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Menü automatisch verstecken (zum Anzeigen die Alt-Taste drücken)", | ||||
| 	"Auto hide Menu bar": "Menü automatisch verbergen", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Menü automatisch verbergen (zum Anzeigen die Alt-Taste drücken)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Zurück", | ||||
| 	"Bounce dock on new private message": "Im Dock hüpfen, wenn neue private Nachrichten eingehen", | ||||
| 	"CSS file": "CSS-Datei", | ||||
| 	"Cancel": "Abbrechen", | ||||
| 	"Certificate error": "Zertifikatfehler", | ||||
| 	"Change": "Ändern", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Ändere die Spracheinstellung über Systemeinstellungen → Tastatur → Text → Rechtschreibung.", | ||||
| 	"Check for Updates": "Auf Updates prüfen", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Mit einer anderen Organisation verbinden", | ||||
| 	"Connected organizations": "Verbundene Organisationen", | ||||
| 	"Copy": "Kopieren", | ||||
| 	"Copy Email Address": "Email-Addresse kopieren", | ||||
| 	"Copy Image": "Bild kopieren", | ||||
| 	"Copy Image URL": "Bild-URL kopieren", | ||||
| 	"Copy Link": "Link kopieren", | ||||
| 	"Copy Zulip URL": "Zulip-URL kopieren", | ||||
| 	"Create a new organization": "Eine neue Organisation erstellen", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Ausschneiden", | ||||
| 	"Default download location": "Voreingestelltes Ziel für Downloads", | ||||
| 	"Delete": "Löschen", | ||||
| 	"Desktop Notifications": "Desktopbenachrichtigungen", | ||||
| 	"Desktop Settings": "Desktop-Einstellungen", | ||||
| 	"Disconnect": "Verbindung trennen", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Bitte nicht stören", | ||||
| 	"Download App Logs": "Logdateien der App herunterladen", | ||||
| 	"Edit": "Bearbeiten", | ||||
| 	"Edit Shortcuts": "Tastenkürzel bearbeiten", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Fehlerberichte aktivieren (erfordert Neustart)", | ||||
| 	"Enable spellchecker (requires restart)": "Rechtschreibprüfung aktivieren (erfordert Neustart)", | ||||
| 	"Enter Full Screen": "Vollbildschirm aktivieren", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Alle Einstellungen auf Standardwerte zurücksetzen", | ||||
| 	"Factory Reset Data": "Auf Werkseinstellung zurücksetzen", | ||||
| 	"File": "Datei", | ||||
| @@ -52,32 +70,47 @@ | ||||
| 	"Functionality": "Funktionalität", | ||||
| 	"General": "Allgemein", | ||||
| 	"Get beta updates": "Auf Betaversionen aktualisieren", | ||||
| 	"Go Back": "Zurück", | ||||
| 	"Hard Reload": "Komplett neu laden", | ||||
| 	"Help": "Hilfe", | ||||
| 	"Help Center": "Hilfe-Zentrum", | ||||
| 	"Help Center": "Hilfecenter", | ||||
| 	"Hide": "Verbergen", | ||||
| 	"Hide Others": "Andere verbergen", | ||||
| 	"Hide Zulip": "Zulip verbergen", | ||||
| 	"History": "Verlauf", | ||||
| 	"History Shortcuts": "Kurzbefehle für Verlauf", | ||||
| 	"Install Later": "Später installieren", | ||||
| 	"Install and Relaunch": "Installieren und neustarten", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Tastenkürzel", | ||||
| 	"Later": "Später", | ||||
| 	"Loading": "Laden", | ||||
| 	"Log Out": "Abmelden", | ||||
| 	"Log Out of Organization": "Von Organisation abmelden", | ||||
| 	"Look Up": "Nachschlagen", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained von {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manueller Download", | ||||
| 	"Manual proxy configuration": "Manuelle Proxy-Konfiguration", | ||||
| 	"Minimize": "Minimieren", | ||||
| 	"Mute all sounds from Zulip": "Alle Zulip-Klänge stummschalten", | ||||
| 	"NO": "NEIN", | ||||
| 	"Network": "Netzwerk", | ||||
| 	"Network and Proxy Settings": "Netzwerk- und Proxy-Einstellungen", | ||||
| 	"New servers added. Reload app now?": "Neue Server hinzugefügt. App jetzt erneut laden?", | ||||
| 	"No": "Nein", | ||||
| 	"No Suggestion Found": "Keine Vorschläge gefunden", | ||||
| 	"No updates available.": "Keine Updates verfügbar.", | ||||
| 	"Notification settings": "Benachrichtigungseinstellungen", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "ODER", | ||||
| 	"On macOS, the OS spellchecker is used.": "In macOS wird die OS Rechtschreibprüfung verwendet.", | ||||
| 	"Organization URL": "URL der Organisation", | ||||
| 	"Organization URL": "Organisations-URL", | ||||
| 	"Organizations": "Organisationen", | ||||
| 	"Paste": "Einfügen", | ||||
| 	"Paste and Match Style": "Ohne Formatierung einfügen", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy-Ausnahmen", | ||||
| 	"Proxy rules": "Proxy-Regeln", | ||||
| 	"Proxy settings saved.": "Proxy-Einstellungen gespeichert.", | ||||
| 	"Quit": "Beenden", | ||||
| 	"Quit Zulip": "Zulip beenden", | ||||
| 	"Quit when the window is closed": "Beim Schließen des Fensters beenden", | ||||
| @@ -85,21 +118,27 @@ | ||||
| 	"Release Notes": "Hinweise zur Versionsfreigabe", | ||||
| 	"Reload": "Neu laden", | ||||
| 	"Report an Issue": "Ein Problem melden", | ||||
| 	"Reset App Settings": "Einstellungen der App zurücksetzen", | ||||
| 	"Reset App Settings": "App-Einstellungen zurücksetzen", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Die Anwendung zurücksetzen. Dabei werden alle verbundenen Organisationen und Konten gelöscht.", | ||||
| 	"Save": "Speichern", | ||||
| 	"Select All": "Alles auswählen", | ||||
| 	"Select Download Location": "Wählen Sie das Download-Ziel", | ||||
| 	"Select file": "Datei auswählen", | ||||
| 	"Services": "Dienste", | ||||
| 	"Settings": "Einstellungen", | ||||
| 	"Shortcuts": "Kurzbefehle", | ||||
| 	"Show app icon in system tray": "App-Icon in Systemleiste anzeigen", | ||||
| 	"Show app unread badge": "Anzahl ungelesener Nachrichten in App-Icon einblenden", | ||||
| 	"Show desktop notifications": "Desktopbenachrichtigungen anzeigen", | ||||
| 	"Show sidebar": "Seitenleiste anzeigen", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Sprachen für die Rechtschreibprüfung", | ||||
| 	"Start app at login": "App beim Login automatisch starten", | ||||
| 	"Switch to Next Organization": "Zur nächsten Organisation wechseln", | ||||
| 	"Switch to Previous Organization": "Zur vorhergehenden Organisation wechseln", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Dies sind zusätzliche Kurzbefehle in der Desktop-App gegenüber der Web-App", | ||||
| 	"Tip": "Tipp", | ||||
| 	"Toggle DevTools for Active Tab": "Entwickler-Tools für aktiven Tab umschalten", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Seitenleiste umschalten", | ||||
| 	"Toggle Tray Icon": "Tray-Icon umschalten", | ||||
| 	"Tools": "Extras", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Rückgängig", | ||||
| 	"Unhide": "Nicht mehr verbergen", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Hochladen", | ||||
| 	"Use system proxy settings (requires restart)": "Systemweite Proxy-Einstellungen verwenden (erfordert Neustart)", | ||||
| 	"View": "Ansicht", | ||||
| 	"View Shortcuts": "Tastenkürzel anzeigen", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Fenster", | ||||
| 	"Window Shortcuts": "Kurzbefehle für Fenster", | ||||
| 	"YES": "JA", | ||||
| 	"Yes": "Ja", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Du kannst höchstens 3 Sprachen für die Rechtschreibprüfung auswählen.", | ||||
| 	"Zoom In": "Vergrößern", | ||||
| 	"Zoom Out": "Verkleinern", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Σχετικά με το Zulip", | ||||
| 	"Actual Size": "Πραγματικό μέγεθος", | ||||
| 	"Add Organization": "Προσθήκη Οργανισμού", | ||||
| 	"Add a Zulip organization": "Προσθήκη οργανισμού Zulip", | ||||
| 	"Add custom CSS": "Προσθήκη χειροποίητης CSS.", | ||||
| 	"AddServer": "ΠροσθήκηServer", | ||||
| 	"Add custom CSS": "Προσθήκη προσαρμοσμένης CSS", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Για προχωρημένους", | ||||
| 	"All the connected organizations will appear here.": "Όλοι οι συνδεδεμένοι οργανισμοί θα εμφανίζονται εδώ.", | ||||
| 	"Always start minimized": "Να ξεκινά πάντα ελαχιστοποιημένο", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Εμφάνιση", | ||||
| 	"Application Shortcuts": "Συντομεύσεις εφαρμογής", | ||||
| 	"Are you sure you want to disconnect this organization?": "Είστε σίγουροι ότι θέλετε να αποσυνδέσετε αυτό τον οργανισμό;", | ||||
| 	"Ask where to save files before downloading": "Να ερωτούμαι πού να αποθηκευτούν τα αρχεία προτού κατεβούν.", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Να ερωτούμαι πού να αποθηκευτούν τα αρχεία προτού κατέβουν.", | ||||
| 	"Auto hide Menu bar": "Αυτόματη απόκρυψη γραμμής Μενού", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Αυτόματη απόκρυψη γραμμής Μενού (Πατήστε Alt για να εμφανιστεί)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Πίσω", | ||||
| 	"Bounce dock on new private message": "Να χοροπηδάει το σχετικό εικονίδιο κατά τη λήψη ιδιωτικού μηνύματος", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Ακύρωση", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Αλλαγή", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Αλλάξτε τη γλώσσα από τις Επιλογές Συστήματος → Πληκτρολόγιο → Κείμενο → Γραφή", | ||||
| 	"Check for Updates": "Έλεγχος για Ενημερώσεις", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "Σύνδεση με άλλο οργανισμό", | ||||
| 	"Connected organizations": "Συνδεδεμένοι οργανισμοί", | ||||
| 	"Copy": "Αντιγραφή", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Αντιγραφή διεύθυνσης URL Zulip", | ||||
| 	"Create a new organization": "Δημιουργία νέου οργανισμού", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Αποκοπή", | ||||
| 	"Default download location": "Προεπιλεγμένη τοποθεσία λήψης", | ||||
| 	"Delete": "Διαγραφή", | ||||
| 	"Desktop Notifications": "Ειδοποιήσεις στην Επιφάνεια Εργασίας", | ||||
| 	"Desktop Settings": "Ρυθμίσεις Επιφάνειας Εργασίας", | ||||
| 	"Disconnect": "Αποσύνδεση", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Λήψη Logs Εφαρμογής", | ||||
| 	"Edit": "Τροποποίηση", | ||||
| 	"Edit Shortcuts": "Τροποποίηση Συντομεύσεων", | ||||
| 	"Edit": "Επεξεργασία", | ||||
| 	"Edit Shortcuts": "Επεξεργασία Συντομεύσεων", | ||||
| 	"Emoji & Symbols": "Φατσούλες Ιμότζι και Σύμβολα", | ||||
| 	"Enable auto updates": "Ενεργοποίηση αυτόματων ενημερώσεων", | ||||
| 	"Enable error reporting (requires restart)": "Ενεργοποίηση αναφοράς λαθών (χρειάζεται επανεκκίνηση)", | ||||
| 	"Enable spellchecker (requires restart)": "Ενεργοποίηση ελέγχου ορθογραφίας (χρειάζεται επανεκκίνηση)", | ||||
| 	"Enter Full Screen": "Μετάβαση σε Πλήρη Οθόνη", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Επαναφορά Εργοστασιακών Ρυθμίσεων", | ||||
| 	"Factory Reset Data": "Επαναφορά εργοστασιακών ρυθμίσεων - Δεδομένα", | ||||
| 	"File": "Αρχείο", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Λειτουργία", | ||||
| 	"General": "Γενικά", | ||||
| 	"Get beta updates": "Λήψη beta - δοκιμαστικών ενημερώσεων", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Ολική επαναφόρτωση", | ||||
| 	"Help": "Βοήθεια", | ||||
| 	"Help Center": "Κέντρο Βοήθειας", | ||||
| @@ -60,17 +79,30 @@ | ||||
| 	"Hide Zulip": "Απόκρυψη του Zulip", | ||||
| 	"History": "Ιστορικό", | ||||
| 	"History Shortcuts": "Συντομεύσεις Ιστορικού", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Συντομεύσεις Πληκτρολογίου", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Αποσύνδεση", | ||||
| 	"Log Out of Organization": "Αποσύνδεση από Οργανισμό", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Χειροκίνητη παραμετροποίηση proxy", | ||||
| 	"Minimize": "Ελαχιστοποίηση", | ||||
| 	"Mute all sounds from Zulip": "Σίγαση όλων των ήχων του Zulip", | ||||
| 	"NO": "ΟΧΙ", | ||||
| 	"Network": "Δίκτυο", | ||||
| 	"Network and Proxy Settings": "Ρυθμίσεις Δικτύου και Proxy", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "Στο macOS, χρησιμοποιείται ο έμφυτος έλεγχος ορθογραφίας του.", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "Ή", | ||||
| 	"On macOS, the OS spellchecker is used.": "Στο macOS, χρησιμοποιείται ο έλεγχος ορθογραφίας του λειτουργικού συστήματος.", | ||||
| 	"Organization URL": "URL Οργανισμού", | ||||
| 	"Organizations": "Οργανισμοί", | ||||
| 	"Paste": "Επικόλληση", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Κανόνες παράκαμψης Proxy", | ||||
| 	"Proxy rules": "Κανόνες Proxy", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Έξοδος", | ||||
| 	"Quit Zulip": "Έξοδος από Zulip", | ||||
| 	"Quit when the window is closed": "Έξοδος όταν κλείνει το παράθυρο", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Επαναφορά της εφαρμογής, με διαγραφή όλων των συνδεδεμένων οργανισμών και λογαριασμών.", | ||||
| 	"Save": "Αποθήκευση", | ||||
| 	"Select All": "Επιλογή Όλων", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Υπηρεσίες", | ||||
| 	"Settings": "Ρυθμίσεις", | ||||
| 	"Shortcuts": "Συντομεύσεις", | ||||
| 	"Show app icon in system tray": "Εμφάνιση εικονιδίου στη γραμμή εργασιών", | ||||
| 	"Show app unread badge": "Εμφάνιση ένδειξης μη αναγνωσμένων μηνυμάτων", | ||||
| 	"Show desktop notifications": "Εμφάνιση ειδοποιήσεων στην Επιφάνεια Εργασίας", | ||||
| 	"Show sidebar": "Εμφάνιση πλευρικής γραμμής εργαλείων", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Γλώσσες Ορθογραφικού Ελέγχου", | ||||
| 	"Start app at login": "Έναρξη εφαρμογής κατά τη σύνδεση", | ||||
| 	"Switch to Next Organization": "Μετάβαση σε Επόμενο Οργανισμό", | ||||
| 	"Switch to Previous Organization": "Μετάβαση σε Προηγούμενο Οργανισμό", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Συμβουλή", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Εμφάνιση/Απόκρυψη πλευρικής γραμμής εργαλείων", | ||||
| 	"Toggle Tray Icon": "Εμφάνιση/Απόκρυψη εικονιδίου γραμμής εργασιών", | ||||
| 	"Tools": "Εργαλεία", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Αναίρεση", | ||||
| 	"Unhide": "Επανεμφάνιση", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Ανέβασμα", | ||||
| 	"Use system proxy settings (requires restart)": "Χρήση ρυθμίσεων proxy συστήματος (χρειάζεται επανεκκίνηση)", | ||||
| 	"View": "Προβολή", | ||||
| 	"View Shortcuts": "Εμφάνιση Συντομεύσεων", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Παράθυρο", | ||||
| 	"Window Shortcuts": "Συντομεύσεις Παραθύρου", | ||||
| 	"YES": "ΝΑΙ", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Μπορούν να επιλεγούν μέχρι 3 γλώσσες ορθογραφικού ελέγχου.", | ||||
| 	"Zoom In": "Ζουμ εγγύτερα", | ||||
| 	"Zoom Out": "Ζουμ μακρύτερα", | ||||
| 	"keyboard shortcuts": "συντομεύσεις πληκτρολογίου", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} τρέχει μία παρωχημένη έκδοση του Zulip Server {{{version}}}. Ενδεχομένως να μη λειτουργεί πλήρως σε αυτή την εφαρμογή." | ||||
| } | ||||
|   | ||||
| @@ -1,127 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| } | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organisation", | ||||
| 	"Add a Zulip organization": "Add a Zulip organisation", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organisations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organisation?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organisation", | ||||
| 	"Connected organizations": "Connected organisations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organisation", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organisation", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organisation", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organisation", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organisation URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organisations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organisation", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organisation", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organisation. You may have to add your previous organisations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,127 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| } | ||||
| @@ -1,127 +1,171 @@ | ||||
| { | ||||
| 	"About Zulip": "Acerca de Zulip", | ||||
| 	"A new update {{{version}}} has been downloaded.": "Se descargó la actualización {{{version}}}.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "Hay una actualización disponible {{{version}}} para la aplicación de escritorio de Zulip.", | ||||
| 	"About": "Más información", | ||||
| 	"About Zulip": "Sobre Zulip", | ||||
| 	"Actual Size": "Tamaño actual", | ||||
| 	"Add Organization": "Añadir organización", | ||||
| 	"Add a Zulip organization": "Añadir una organización de Zulip", | ||||
| 	"Add custom CSS": "Añadir CSS personalizado", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add Organization": "Agregar organización", | ||||
| 	"Add a Zulip organization": "Agragar una organización de Zulip", | ||||
| 	"Add custom CSS": "Agregar CSS personalizado", | ||||
| 	"Add to Dictionary": "Añadir al diccionario", | ||||
| 	"Advanced": "Avanzado", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Iniciar siempre minimizado", | ||||
| 	"App Updates": "Actualizaciones de la aplicación", | ||||
| 	"App language (requires restart)": "Idioma de la aplicación (requiere reinicio)", | ||||
| 	"All the connected organizations will appear here.": "Las organizaciones conectadas aparecerán aquí.", | ||||
| 	"Always start minimized": "Inicializar minimizado", | ||||
| 	"App Updates": "Actualizaciones de aplicación", | ||||
| 	"App language (requires restart)": "Idioma (Requiere reiniciar aplicación)", | ||||
| 	"Appearance": "Apariencia", | ||||
| 	"Application Shortcuts": "Atajos de la aplicación", | ||||
| 	"Are you sure you want to disconnect this organization?": "Estas seguro de desconectar esta organización?", | ||||
| 	"Ask where to save files before downloading": "Preguntar dónde guardar los archivos antes de descargar", | ||||
| 	"Auto hide Menu bar": "Ocultar la barra de menú automáticamente", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Ocultar la barra de menú automáticamente (mantén tecla Alt para mostrar)", | ||||
| 	"Application Shortcuts": "Atajos", | ||||
| 	"Are you sure you want to disconnect this organization?": "¿Seguro que quieres desconectarte de esta organización?", | ||||
| 	"Are you sure?": "Estás seguro?", | ||||
| 	"Ask where to save files before downloading": "Preguntar dónde guardar archivos antes de descargarlos", | ||||
| 	"Auto hide Menu bar": "Esconder barra de menú automaticamente", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Esconder barra de menú automáticamente (Aparece al presionar Alt)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Disponible bajo la licencia {{{link}}}Apache 2.0 {{{endLink}}}", | ||||
| 	"Back": "Atrás", | ||||
| 	"Bounce dock on new private message": "Rebotar dock cuando se reciba un nuevo mensaje privado", | ||||
| 	"Bounce dock on new private message": "Mostrar barra de herramientas al recibir un mensaje privado", | ||||
| 	"CSS file": "Archivo CSS", | ||||
| 	"Cancel": "Cancelar", | ||||
| 	"Certificate error": "Certificar error", | ||||
| 	"Change": "Cambiar", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Modifica el idioma en Preferencias del sistema → Teclado → Texto → Ortografía.", | ||||
| 	"Check for Updates": "Comprobar actualizaciones", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Cambia el lenguaje desde Preferencias del sistema → Teclado → Texto → Escritura.", | ||||
| 	"Check for Updates": "Buscar actualizaciones", | ||||
| 	"Close": "Cerrar", | ||||
| 	"Connect": "Conectar", | ||||
| 	"Connect to another organization": "Conectar a otra organización", | ||||
| 	"Connected organizations": "Organizaciones conectada", | ||||
| 	"Connect to another organization": "Conectarse a otra organización", | ||||
| 	"Connected organizations": "Organizaciones conectadas", | ||||
| 	"Copy": "Copiar", | ||||
| 	"Copy Email Address": "Copiar dirección de correo", | ||||
| 	"Copy Image": "Copiar imagen", | ||||
| 	"Copy Image URL": "Copiar URL de la imagen", | ||||
| 	"Copy Link": "Copiar enlace", | ||||
| 	"Copy Zulip URL": "Copiar URL de Zulip", | ||||
| 	"Create a new organization": "Crear una nueva organización", | ||||
| 	"Custom CSS file deleted": "Se eliminó el archivo CSS personalizado", | ||||
| 	"Cut": "Cortar", | ||||
| 	"Default download location": "Ubicación por defecto de descargas", | ||||
| 	"Delete": "Eliminar", | ||||
| 	"Default download location": "Ubicación de descargas predeterminada", | ||||
| 	"Delete": "Borrar", | ||||
| 	"Desktop Notifications": "Notificaciones de escritorio", | ||||
| 	"Desktop Settings": "Ajustes de escritorio", | ||||
| 	"Desktop Settings": "Configuración de escritorio", | ||||
| 	"Disconnect": "Desconectar", | ||||
| 	"Disconnect organization": "Desconectarse de esta organización", | ||||
| 	"Do Not Disturb": "No molestar", | ||||
| 	"Download App Logs": "Descargar registros de la aplicación", | ||||
| 	"Edit": "Editar", | ||||
| 	"Edit Shortcuts": "Editar atajos", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Edit Shortcuts": "Editar Atajos", | ||||
| 	"Emoji & Symbols": "Símbolos y Emojis", | ||||
| 	"Enable auto updates": "Activar actualizaciones automáticas", | ||||
| 	"Enable error reporting (requires restart)": "Activar reporte de fallos (necesita reinicio)", | ||||
| 	"Enable spellchecker (requires restart)": "Activar corrector ortográfico (necesita reinicio)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Reinicio de fábrica", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"Enable error reporting (requires restart)": "Activar reportes de errores (Requiere reiniciar aplicación)", | ||||
| 	"Enable spellchecker (requires restart)": "Subrayar errores de escritura (Requiere reiniciar aplicación)", | ||||
| 	"Enter Full Screen": "Activar pantalla completa", | ||||
| 	"Error saving new organization": "Ocurrió un error al guardar la nueva organización", | ||||
| 	"Error saving update notifications": "Ocurrió un error al guardar las notificaciones de actualización", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nLa última versión de la aplicación de escritorio de Zulip está disponible en:\n{{{link}}}\nVersión actual: {{{version}}} ", | ||||
| 	"Factory Reset": "Reinicio de Fábrica", | ||||
| 	"Factory Reset Data": "Datos del Reinicio de Fábrica", | ||||
| 	"File": "Archivo", | ||||
| 	"Find accounts": "Encontrar cuentas", | ||||
| 	"Find accounts by email": "Encontrar cuentas por correo electrónico", | ||||
| 	"Flash taskbar on new message": "Hacer que la barra de tareas parpadee cuando se reciba un mensaje nuevo", | ||||
| 	"Forward": "Reenviar", | ||||
| 	"Find accounts": "Buscar cuentas", | ||||
| 	"Find accounts by email": "Buscar cuentas por correo", | ||||
| 	"Flash taskbar on new message": "Mostrar barra de tareas al recibir un mensaje", | ||||
| 	"Forward": "Avanzar", | ||||
| 	"Functionality": "Funcionalidad", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Obtener actualizaciones beta", | ||||
| 	"Hard Reload": "Recarga forzosa", | ||||
| 	"Get beta updates": "Recibir actualizaciones en beta", | ||||
| 	"Go Back": "Volver atrás", | ||||
| 	"Hard Reload": "Forzar Reinicio", | ||||
| 	"Help": "Ayuda", | ||||
| 	"Help Center": "Centro de ayuda", | ||||
| 	"Hide": "Ocultar", | ||||
| 	"Hide Others": "Ocultar otros", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide": "Esconder", | ||||
| 	"Hide Others": "Esconder otros", | ||||
| 	"Hide Zulip": "Minimizar Zulip", | ||||
| 	"History": "Historial", | ||||
| 	"History Shortcuts": "Atajos del historial", | ||||
| 	"History Shortcuts": "Historial de atajos", | ||||
| 	"Install Later": "Instalar luego", | ||||
| 	"Install and Relaunch": "Instalar y reiniciar aplicación", | ||||
| 	"It will be installed the next time you restart the application.": "Se instalará la próxima vez que inicies la aplicación.", | ||||
| 	"Keyboard Shortcuts": "Atajos de teclado", | ||||
| 	"Later": "Luego", | ||||
| 	"Loading": "Cargando", | ||||
| 	"Log Out": "Cerrar sesión", | ||||
| 	"Log Out of Organization": "Cerrar sesión de organización", | ||||
| 	"Manual proxy configuration": "Configuración de proxy manual", | ||||
| 	"Log Out of Organization": "Cerrar sesión en esta organización", | ||||
| 	"Look Up": "Consultar", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Mantenido por {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Descargar Manualmente", | ||||
| 	"Manual proxy configuration": "Configurar proxy manualmente", | ||||
| 	"Minimize": "Minimizar", | ||||
| 	"Mute all sounds from Zulip": "Silenciar todos los sonidos de Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Red", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Configuración de Redes y Proxy", | ||||
| 	"New servers added. Reload app now?": "Se agregaron nuevos servidores. ¿Reiniciar aplicación ahora?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No se encontraron sugerencias", | ||||
| 	"No updates available.": "No hay actualizaciones disponibles.", | ||||
| 	"Notification settings": "Configuraciones de notificación", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "O", | ||||
| 	"On macOS, the OS spellchecker is used.": "En macOS se utiliza la verificación ortográfica del sistema operativo.", | ||||
| 	"Organization URL": "URL de la organización", | ||||
| 	"On macOS, the OS spellchecker is used.": "En macOS, se utiliza el corrector del sistema.", | ||||
| 	"Organization URL": "Link de la organización", | ||||
| 	"Organizations": "Organizaciones", | ||||
| 	"Paste": "Pegar", | ||||
| 	"Paste and Match Style": "Pegar y mantener estilo", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Reglas para ignorar proxy", | ||||
| 	"Proxy rules": "Reglas del proxy", | ||||
| 	"Proxy settings saved.": "Se guardó la configuración de Proxy.", | ||||
| 	"Quit": "Cerrar", | ||||
| 	"Quit Zulip": "Cerrar Zulip", | ||||
| 	"Quit when the window is closed": "Salir cuando la ventana se cierre", | ||||
| 	"Quit when the window is closed": "Cerrar aplicación al cerrar la ventana", | ||||
| 	"Redo": "Rehacer", | ||||
| 	"Release Notes": "Notas de la versión", | ||||
| 	"Reload": "Recargar", | ||||
| 	"Report an Issue": "Informar de un error", | ||||
| 	"Reset App Settings": "Reiniciar ajustes de la aplicación", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Report an Issue": "Reportar un problema ", | ||||
| 	"Reset App Settings": "Restaurar configuración de la aplicación", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Restaurar la aplicación eliminando todas las cuentas y organizaciones conectadas.", | ||||
| 	"Save": "Guardar", | ||||
| 	"Select All": "Seleccionar todo", | ||||
| 	"Select Download Location": "Seleccionar ubicación de Descargas", | ||||
| 	"Select file": "Seleccionar archivo", | ||||
| 	"Services": "Servicios", | ||||
| 	"Settings": "Ajustes", | ||||
| 	"Shortcuts": "Atajos de teclado", | ||||
| 	"Show app icon in system tray": "Mostrar un icono de la aplicación en la bandeja del sistema", | ||||
| 	"Show app unread badge": "Mostrar un globo en el icono si hay mensajes sin leer", | ||||
| 	"Settings": "Configuración", | ||||
| 	"Shortcuts": "Atajos", | ||||
| 	"Show app icon in system tray": "Mostrar ícono de la aplicación en la bandeja del sistema", | ||||
| 	"Show desktop notifications": "Mostrar notificaciones de escritorio", | ||||
| 	"Show sidebar": "Mostrar barra lateral", | ||||
| 	"Spellchecker Languages": "Idiomas de verificación ortográfica", | ||||
| 	"Start app at login": "Lanzar aplicación al inicio", | ||||
| 	"Switch to Next Organization": "Cambiar a la siguiente organización", | ||||
| 	"Switch to Previous Organization": "Cambiar a la anterior organización", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Estos atajos de la aplicación de escritorio extienden los ya existentes en Zulip", | ||||
| 	"Tip": "Consej", | ||||
| 	"Toggle DevTools for Active Tab": "Activar/desactivar herramientas de desarrollador para la pestaña activa", | ||||
| 	"Toggle DevTools for Zulip App": "Activar/desactivar herramientas de desarrollador para la aplicación de Zulip", | ||||
| 	"Toggle Do Not Disturb": "Activar/desactivar no molestar", | ||||
| 	"Toggle Full Screen": "Activar/desactivar pantalla completa", | ||||
| 	"Toggle Sidebar": "Activar/desactivar barra lateral", | ||||
| 	"Toggle Tray Icon": "Activar/desactivar icono en bandeja del sistema", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Idiomas a verificar por el corrector", | ||||
| 	"Start app at login": "Lanzar aplicación al iniciar sistema", | ||||
| 	"Switch to Next Organization": "Pasar a la siguiente organización", | ||||
| 	"Switch to Previous Organization": "Volver a la organización anterior", | ||||
| 	"The custom CSS previously set is deleted.": "Se eliminó el CSS personalizado establecido previamente.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "El servidor presentó un certificado inválido para {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "La actualización se descargará en segundo plano. Se notificará cuando esté lista para su instalación.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "Ocurrió un error mientras se guardaba la nueva organización. Se recomienda volver a agregar las organizaciones anteriores.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Los atajos de la aplicación son los mismos que al utilizar Zulip en el navegador", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Activar o desactivar herramientas de desarrollador en la pestaña seleccionada", | ||||
| 	"Toggle DevTools for Zulip App": "Activar o desactivar herramientas de desarrollador en toda la aplicación", | ||||
| 	"Toggle Do Not Disturb": "Activar o desactivar no Molestar", | ||||
| 	"Toggle Full Screen": "Activar o desactivar pantalla completa", | ||||
| 	"Toggle Sidebar": "Activar o desactivar barra lateral", | ||||
| 	"Toggle Tray Icon": "Activar o desactivar ícono en barra de herramientas", | ||||
| 	"Tools": "Herramientas", | ||||
| 	"Unable to check for updates.": "No se pudieron buscar actualizaciones.", | ||||
| 	"Unable to download the update.": "No se pudo descargar la actualización", | ||||
| 	"Undo": "Deshacer", | ||||
| 	"Unhide": "Dejar de ocultar", | ||||
| 	"Unhide": "Mostrar", | ||||
| 	"Unknown error": "Error desconocido", | ||||
| 	"Upload": "Subir", | ||||
| 	"Use system proxy settings (requires restart)": "Usar ajustes de proxy del sistema (necesita reinicio)", | ||||
| 	"Use system proxy settings (requires restart)": "Usar configuración de proxy del sistema (Requiere reiniciar aplicación)", | ||||
| 	"View": "Ver", | ||||
| 	"View Shortcuts": "Ver atajos", | ||||
| 	"We encountered an error while saving the update notifications.": "Se encontró un error mientras se guardaban las notificaciones de actualización.", | ||||
| 	"Window": "Ventana", | ||||
| 	"Window Shortcuts": "Atajos de ventana", | ||||
| 	"YES": "SÍ", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Puedes elegir un máximo de 3 idiomas para la verificación ortográfica.", | ||||
| 	"Yes": "Sí", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "Tienes la última versión de la aplicación de escritorio de Zulip.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Se pueden seleccionar hasta 3 idiomas para la verificación ortográfica", | ||||
| 	"Zoom In": "Aumentar zoom", | ||||
| 	"Zoom Out": "Reducir zoom", | ||||
| 	"keyboard shortcuts": "atajos de teclado", | ||||
| 	"Zoom Out": "Reducir zoom ", | ||||
| 	"keyboard shortcuts": "Atajos de teclado", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "El servidor {{{server}}} se ejecuta en la versión {{{version}}}, la cual está desactuzliada. Su funcionamiento puede ser inesperado." | ||||
| } | ||||
|   | ||||
| @@ -1,47 +1,65 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Zulip-i buruz", | ||||
| 	"Actual Size": "Egungo tamaina", | ||||
| 	"Add Organization": "Gehitu erakundea", | ||||
| 	"Add a Zulip organization": "Gehitu Zulip erakunde bat", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Aurreratua", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Appearance": "Itxura", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Itzuli", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Aldatu", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Close": "Itxi", | ||||
| 	"Connect": "Konektatu", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Copy": "Kopiatu", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Kopiatu Zulip URL-a", | ||||
| 	"Create a new organization": "Sortu erakunde berriia", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Moztu", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Delete": "Desegin", | ||||
| 	"Desktop Notifications": "Mahaigaineko jakinarazpenak", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect": "Deskonektatu", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit": "Editatu", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -50,35 +68,50 @@ | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"General": "Orokorra", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Help": "Laguntza", | ||||
| 	"Help Center": "Laguntza gunea\n", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History": "Historia", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network": "Sarea", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "EDO", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Organization URL": "Erakundearen URL-a", | ||||
| 	"Organizations": "Erakundeak", | ||||
| 	"Paste": "Itsatsi", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Irten", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| @@ -87,19 +120,25 @@ | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Save": "Gorde", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Desegin", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Igo", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View": "Ikusi", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"About Zulip": "درباره Zulip ", | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "درباره زولیپ", | ||||
| 	"Actual Size": "اندازه واقعی", | ||||
| 	"Add Organization": "اضافه کردن سازمان", | ||||
| 	"Add a Zulip organization": "اضافه کردن سازمان Zulip", | ||||
| 	"Add a Zulip organization": "اضافه کردن سازمان زولیپ", | ||||
| 	"Add custom CSS": "اضافه کردن CSS دلخواه", | ||||
| 	"AddServer": "افزودن سرور", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "پیشرفته", | ||||
| 	"All the connected organizations will appear here.": "همه سازمانهای مرتبط در اینجا ظاهر میشوند.", | ||||
| 	"Always start minimized": "همواره به صورت کوچک شده اجرا شو", | ||||
| @@ -13,27 +16,39 @@ | ||||
| 	"Appearance": "شمایل", | ||||
| 	"Application Shortcuts": "میانبرهای برنامه", | ||||
| 	"Are you sure you want to disconnect this organization?": "آیا از قطع ارتباط از سازمان اطمینان دارید؟", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "قبل از دانلود بپرس که کجا ذخیره شود.", | ||||
| 	"Auto hide Menu bar": "مخفیسازی خودکار نوار منو", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "مخفیسازی خودکار نوار منو (برای نمایش دکمه Alt را بزنید)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "عقب", | ||||
| 	"Bounce dock on new private message": "جهش پرش در پیام خصوصی جدید", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "لغو کردن", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "تغییر دادن", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "زبان را از تنظیمات سیستم ← صفحه کلید ← متن ← املا تغییر دهید.", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "زبان را از اولویتها ← صفحه کلید ← متن ← املا تغییر دهید.", | ||||
| 	"Check for Updates": "بررسی برای بهروزرسانی", | ||||
| 	"Close": "بستن", | ||||
| 	"Connect": "اتصال", | ||||
| 	"Connect to another organization": "اتصال به یک سازمان دیگر", | ||||
| 	"Connected organizations": "سازمانهای وصل شده", | ||||
| 	"Connected organizations": "سازمانهای وصلشده", | ||||
| 	"Copy": "رونوشت", | ||||
| 	"Copy Zulip URL": "کپی از Zulip URL", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "کپی از URL زولیپ", | ||||
| 	"Create a new organization": "ایجاد سازمان جدید", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "بریدن", | ||||
| 	"Default download location": "محل پیشفرض دانلود", | ||||
| 	"Delete": "حذف", | ||||
| 	"Desktop Notifications": "اطلاعرسانیهای دسکتاپ", | ||||
| 	"Desktop Settings": "تنظیمات دسکتاپ", | ||||
| 	"Disconnect": "قطع اتصال", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "دانلود لاگ های اپلیکیشن", | ||||
| 	"Edit": "ویرایش", | ||||
| 	"Edit Shortcuts": "ویرایش میانبرها", | ||||
| @@ -42,86 +57,115 @@ | ||||
| 	"Enable error reporting (requires restart)": "فعال کردن گزارش خطا (نیاز به راه اندازی مجدد)", | ||||
| 	"Enable spellchecker (requires restart)": "فعال کردن غلطگیر املا (نیاز به راهاندازی مجدد)", | ||||
| 	"Enter Full Screen": "ورود به حالت تمام صفحه", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "تنظیم مجدد کارخانه", | ||||
| 	"Factory Reset Data": "بازگشت به تنظیمات کارخانه", | ||||
| 	"File": "فایل", | ||||
| 	"Find accounts": "پیدا کردن حساب های کاربری ", | ||||
| 	"Find accounts": "پیدا کردن حسابهای کاربری ", | ||||
| 	"Find accounts by email": "اکانت ها را از طریق ایمیل پیدا کنید", | ||||
| 	"Flash taskbar on new message": "فلش نوار وظیفه در پیام جدید", | ||||
| 	"Forward": "فوروارد", | ||||
| 	"Forward": "رفتن به جلو", | ||||
| 	"Functionality": "عملکرد", | ||||
| 	"General": "عمومی", | ||||
| 	"Get beta updates": "دریافت بروز رسانی بتا", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "بارگذاری مجدد", | ||||
| 	"Help": "کمک", | ||||
| 	"Help Center": "مرکز کمک", | ||||
| 	"Help Center": "مرکز کمکرسانی", | ||||
| 	"Hide": "مخفی کردن", | ||||
| 	"Hide Others": "پنهان کردن دیگران", | ||||
| 	"Hide Zulip": "پنهان کردن زولیپ", | ||||
| 	"History": "تاریخچه ", | ||||
| 	"History Shortcuts": "تاریخچه میانبرها", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "میانبرهای صفحهکلید", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "خروج", | ||||
| 	"Log Out of Organization": "خروج از سازمان", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "پیکربندی دستی پروکسی", | ||||
| 	"Minimize": "کوچک کردن", | ||||
| 	"Mute all sounds from Zulip": "غیرفعال کردن همه صداها در زولیپ", | ||||
| 	"NO": "خیر", | ||||
| 	"Network": "شبکه", | ||||
| 	"Network and Proxy Settings": "تنظیمات شبکه و پروکسی", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "نه", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "تنظیمات اطلاعرسانی", | ||||
| 	"OK": "باشه ", | ||||
| 	"OR": "یا", | ||||
| 	"On macOS, the OS spellchecker is used.": "در macOS از غلطگیر املای سیستمعامل استفاده میشود.", | ||||
| 	"Organization URL": "URL سازمان", | ||||
| 	"Organizations": "سازمان ها", | ||||
| 	"Organizations": "سازمانها", | ||||
| 	"Paste": "جایگذاری", | ||||
| 	"Paste and Match Style": "جایگذاری و تطابق استایل", | ||||
| 	"Proxy": "پروکسی", | ||||
| 	"Proxy bypass rules": "قوانین دور زدن پروکسی", | ||||
| 	"Proxy rules": "قوانین پروکسی", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "خروج", | ||||
| 	"Quit Zulip": "خروج از زولیپ", | ||||
| 	"Quit when the window is closed": "وقتی پنجره بسته است از آن خارج شوید", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "یادداشت های انتشار", | ||||
| 	"Redo": "اجرای دوباره", | ||||
| 	"Release Notes": "یادداشتهای انتشار", | ||||
| 	"Reload": "بارگذاری مجدد", | ||||
| 	"Report an Issue": "گزارش یک مشکل", | ||||
| 	"Reset App Settings": "بازنشانی تنظیمات برنامه", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "برنامه را بازنشانی کنید، بنابراین تمام سازمان ها و حساب های متصل حذف می شوند.", | ||||
| 	"Save": "ذخیره", | ||||
| 	"Select All": "انتخاب همه", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "خدمات", | ||||
| 	"Settings": "تنظیمات", | ||||
| 	"Shortcuts": "میانبرها", | ||||
| 	"Show app icon in system tray": "نمایش نماد برنامه در ناحیه اعلان سیستم", | ||||
| 	"Show app unread badge": "نشان برنامه خوانده نشده نمایش داده شود", | ||||
| 	"Show desktop notifications": "نمایش اعلان های دسکتاپ", | ||||
| 	"Show sidebar": "نمایش ستون کناری", | ||||
| 	"Spellchecker Languages": "غلط یاب املایی زبان ها", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "غلط یاب املایی زبانها", | ||||
| 	"Start app at login": "برنامه را در هنگام ورود شروع کنید", | ||||
| 	"Switch to Next Organization": "جابجایی به سازمان بعدی", | ||||
| 	"Switch to Previous Organization": "جابجایی به سازمان قبلی", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "این میانبرهای برنامه دسکتاپ، برنامه وب Zulip را گسترش می دهند", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "این میانبرهای برنامه دسکتاپ، برنامه وب زولیپ را گسترش می دهند", | ||||
| 	"Tip": "نکته", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle DevTools for Active Tab": "تغییر ابزارهای توسعه برای تب فعال", | ||||
| 	"Toggle DevTools for Zulip App": "تغییر ابزارهای توسعه برای اپلیکیشن زولیپ", | ||||
| 	"Toggle Do Not Disturb": "تغییر حالت مزاحم نشو", | ||||
| 	"Toggle Full Screen": "تغییر حالت تمام صفحه", | ||||
| 	"Toggle Sidebar": "تغییر نوار کناری", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Toggle Tray Icon": "تغییر آیکون کازیه", | ||||
| 	"Tools": "ابزارها", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "بازگشت به عقب", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unhide": "ظاهر کردن", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "آپلود", | ||||
| 	"Use system proxy settings (requires restart)": "استفاده از تنظیمات پراکسی سیستم (نیاز به راه اندازی مجدد)", | ||||
| 	"View": "مشاهده", | ||||
| 	"View Shortcuts": "مشاهده میانبرها", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "پنجره", | ||||
| 	"Window Shortcuts": "میانبرهای پنجره", | ||||
| 	"YES": "بله", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "شما می توانید حداکثر 3 زبان را برای بررسی املا انتخاب کنید.", | ||||
| 	"Zoom In": "بزرگنمایی", | ||||
| 	"Zoom Out": "کوچک نمایی", | ||||
| 	"keyboard shortcuts": "میانبرهای صفحه کلید", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} نسخه {{{version}}} سرور Zulip قدیمی را اجرا میکند. ممکن است به طور کامل در این برنامه کار نکند." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} نسخه {{{version}}} سرور زولیپ قدیمی را اجرا میکند. ممکن است به طور کامل در این برنامه کار نکند." | ||||
| } | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Tietoa Zulipista", | ||||
| 	"Actual Size": "Alkuperäinen koko", | ||||
| 	"Add Organization": "Lisää organisaatio", | ||||
| 	"Add a Zulip organization": "Lisää Zulip-organisaatio", | ||||
| 	"Add custom CSS": "Lisää oma CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Lisäasetukset", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "Kaikki yhdistetyt organisaatiot näkyvät täällä.", | ||||
| 	"Always start minimized": "Aloita aina pienennettynä", | ||||
| 	"App Updates": "Sovelluspäivitykset", | ||||
| 	"App language (requires restart)": "Sovelluksen kieli (uudelleenkäynnistys tarvitaan)", | ||||
| 	"Appearance": "Ulkonäkö", | ||||
| 	"Application Shortcuts": "Sovelluksen pikanäppäimet", | ||||
| 	"Are you sure you want to disconnect this organization?": "Oletko varma että haluat katkaista yhteyden tähän organisaatioon?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Kysy ennen lataamista, minne tiedostot tallennetaan", | ||||
| 	"Auto hide Menu bar": "Piilota automaattisesti Menu-valikko", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Piilota automaattisesti Menu-valikko (Näytä painamalla Alt-näppäintä)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Takaisin", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Peruuta", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Muuta", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Tarkista päivitykset", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "Yhdistä toiseen organisaatioon", | ||||
| 	"Connected organizations": "Yhdistetyt organisaatiot", | ||||
| 	"Copy": "Kopioi", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Kopioi kuva", | ||||
| 	"Copy Image URL": "Kopioi kuvan URL", | ||||
| 	"Copy Link": "Kopioi linkki", | ||||
| 	"Copy Zulip URL": "Kopioi Zulip-URL", | ||||
| 	"Create a new organization": "Luo uusi organisaatio", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Leikkaa", | ||||
| 	"Default download location": "Tallennuksen oletushakemisto", | ||||
| 	"Delete": "Poista", | ||||
| 	"Desktop Notifications": "Työpöydän ilmoitukset", | ||||
| 	"Desktop Settings": "Työpöytä asetukset", | ||||
| 	"Disconnect": "Katkaise yhteys", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Lataushistoria", | ||||
| 	"Edit": "Muokkaa", | ||||
| 	"Edit Shortcuts": "Muokkauksen pikanäppäimet", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "Emojit ja symbolit", | ||||
| 	"Enable auto updates": "Salli automaattiset päivitykset", | ||||
| 	"Enable error reporting (requires restart)": "Ota virheraportointi käyttöön (uudelleenkäynnistys tarvitaan) ", | ||||
| 	"Enable spellchecker (requires restart)": "Ota oikoluku käyttöön (uudelleenkäynnistys tarvitaan)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Vaihda koko näytön tilaan", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Tehdasasetusten palautus", | ||||
| 	"Factory Reset Data": "Tehdasasetusten palautustiedot", | ||||
| 	"File": "Tiedosto", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "Ominaisuus", | ||||
| 	"General": "Yleiset", | ||||
| 	"Get beta updates": "Tilaa beta-päivitykset", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Täysi uudelleenlataus", | ||||
| 	"Help": "Ohje", | ||||
| 	"Help Center": "Tukikeskus", | ||||
| 	"Hide": "Piilota", | ||||
| 	"Hide Others": "Piilota muut", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Zulip": "Piilota Zulip", | ||||
| 	"History": "Historia", | ||||
| 	"History Shortcuts": "Historian pikanäppäimet", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Pikanäppäimet", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Kirjaudu ulos", | ||||
| 	"Log Out of Organization": "Kirjaudu ulos organisaatiosta", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manualiset välityspalvelin-asetukset", | ||||
| 	"Minimize": "Pienennä", | ||||
| 	"Mute all sounds from Zulip": "Mykistä kaikki Zulip-äänet", | ||||
| 	"NO": "EI", | ||||
| 	"Network": "Verkko", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Verkon ja välipalvelimen asetukset", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "Ei", | ||||
| 	"No Suggestion Found": "Ei ehdotuksia", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Ilmoitusasetukset", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "TAI", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organisaation URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Välityspalvelin", | ||||
| 	"Proxy bypass rules": "Välityspalvelimen ohituksen säännöt", | ||||
| 	"Proxy rules": "Välityspalvelimen-säännöt", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Lopeta", | ||||
| 	"Quit Zulip": "Lopeta Zulip", | ||||
| 	"Quit when the window is closed": "Sulje sovellus, kun ikkuna suljetaan", | ||||
| @@ -85,21 +118,27 @@ | ||||
| 	"Release Notes": "Julkaisutiedot", | ||||
| 	"Reload": "Lataa uudelleen", | ||||
| 	"Report an Issue": "Raportoi ongelmasta", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset App Settings": "Nollaa asetukset", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Nollaa sovelluksen, ja poistaa kaikki liitetyt organisaatiot ja tilit.", | ||||
| 	"Save": "Tallenna", | ||||
| 	"Select All": "Valitse kaikki", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Asetukset", | ||||
| 	"Shortcuts": "Oikopolut", | ||||
| 	"Show app icon in system tray": "Näytä sovellus ilmoituspaneelissa", | ||||
| 	"Show app unread badge": "Näytä lukemattomien määrä -merkki", | ||||
| 	"Show desktop notifications": "Näytä työpöytäilmoitukset", | ||||
| 	"Show sidebar": "Näytä sivupaneeli", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Oikoluvun kielet", | ||||
| 	"Start app at login": "Käynnistä sovellus sisäänkirjauduttaessa", | ||||
| 	"Switch to Next Organization": "Vaihda seuraavaan organisaatioon", | ||||
| 	"Switch to Previous Organization": "Vaihda edelliseen organisaatioon", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Nämä työpöytäsovelluksen pikanäppäimet laajentavat Zulip web-sovelluksen ", | ||||
| 	"Tip": "Vinkki", | ||||
| 	"Toggle DevTools for Active Tab": "Kehitystyökalut / aktiivinen ikkuna", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Näytä/piilota sivupalkki", | ||||
| 	"Toggle Tray Icon": "Vaihda Tray-kuvaketta", | ||||
| 	"Tools": "Työkalut", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Peru", | ||||
| 	"Unhide": "Näytä", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Lähetä tiedosto", | ||||
| 	"Use system proxy settings (requires restart)": "Käytä järjestelmän välityspalvelimen asetuksia (uudelleenkäynnistys tarvitaan)", | ||||
| 	"View": "Näytä", | ||||
| 	"View Shortcuts": "Katselun pikanäppäimet", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Ikkuna", | ||||
| 	"Window Shortcuts": "Näkymän pikanäppäimet", | ||||
| 	"YES": "KYLLÄ", | ||||
| 	"Yes": "Kyllä", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Voit valita oikolukua varten enintään 3 kieltä.", | ||||
| 	"Zoom In": "Lähennä", | ||||
| 	"Zoom Out": "Loitonna", | ||||
| 	"keyboard shortcuts": "Pikanäppäimet", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} käyttää vanhentutta versiota Zulipista: {{{version}}}. Se ei välttämättä toimi tämän sovelluksen kanssa yhteen." | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "À propos", | ||||
| 	"About Zulip": "À propos de Zulip", | ||||
| 	"Actual Size": "Taille actuelle", | ||||
| 	"Add Organization": "Ajouter une organisation", | ||||
| 	"Add a Zulip organization": "Ajouter une organisation Zulip", | ||||
| 	"Add custom CSS": "Ajouter un CSS spécifique", | ||||
| 	"AddServer": "AjouterServeur", | ||||
| 	"Add to Dictionary": "Ajouter au dictionnaire", | ||||
| 	"Advanced": "Avancé", | ||||
| 	"All the connected organizations will appear here.": "Toutes les organisations connectées apparaitront ici.", | ||||
| 	"Always start minimized": "Toujours démarrer en fenêtre réduite", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Apparence", | ||||
| 	"Application Shortcuts": "Raccourcis de l'application", | ||||
| 	"Are you sure you want to disconnect this organization?": "Êtes-vous certain de vouloir déconnecter cette organisation?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Demander où sauvegarder les fichiers avant de télécharger", | ||||
| 	"Auto hide Menu bar": "Cacher automatiquement la barre de menu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Cacher automatiquement la barre de menu (Appuyez sur la touche Alt pour l'afficher)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Précédent", | ||||
| 	"Bounce dock on new private message": "Animer l'horloge à la réception d'un nouveau message privé", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Annuler", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Changer", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Modifier la langue à partir des Préférences Système → Clavier → Text → Orthographe.", | ||||
| 	"Check for Updates": "Vérifier les mises à jour", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Se connecter à une autre organisation", | ||||
| 	"Connected organizations": "Organisations connectées", | ||||
| 	"Copy": "Copier", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copier l'image", | ||||
| 	"Copy Image URL": "Copier l'URL de l'image", | ||||
| 	"Copy Link": "Copier le lien", | ||||
| 	"Copy Zulip URL": "Copier l'URL de Zulip", | ||||
| 	"Create a new organization": "Créer une nouvelle organisation", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Couper", | ||||
| 	"Default download location": "Destination de téléchargement par défaut", | ||||
| 	"Delete": "Supprimer", | ||||
| 	"Desktop Notifications": "Notifications de bureau", | ||||
| 	"Desktop Settings": "Paramètres de bureau", | ||||
| 	"Disconnect": "Déconnecter", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Télécharger le journal de l'application", | ||||
| 	"Edit": "Modifier", | ||||
| 	"Edit Shortcuts": "Modifier les raccourcis", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Activer le rapport d'erreur (redémarrage nécessaire)", | ||||
| 	"Enable spellchecker (requires restart)": "Activer le correcteur orthographique (redémarrage nécessaire)", | ||||
| 	"Enter Full Screen": "Accéder au plein écran", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Réinitialiser aux paramètres par défaut", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "Fichier", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Fonctionnalités", | ||||
| 	"General": "Général", | ||||
| 	"Get beta updates": "Recevoir les mises à jour Beta", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Forcer un rechargement", | ||||
| 	"Help": "Aide", | ||||
| 	"Help Center": "Centre d'aide", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Cacher Zulip", | ||||
| 	"History": "Historique", | ||||
| 	"History Shortcuts": "Historique des raccourcis", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Raccourcis clavier", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Se déconnecter", | ||||
| 	"Log Out of Organization": "Se déconnecter de l'organisation", | ||||
| 	"Look Up": "Chercher", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Configuration manuelle du proxy", | ||||
| 	"Minimize": "Minimiser", | ||||
| 	"Mute all sounds from Zulip": "Couper tous les sons de Zulip", | ||||
| 	"NO": "Non", | ||||
| 	"Network": "Réseau", | ||||
| 	"Network and Proxy Settings": "Paramètres réseau et proxy", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "Non", | ||||
| 	"No Suggestion Found": "Aucune suggestion trouvée", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Paramètres de notification", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OU", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "URL de l'organisation", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Règles de contournement du proxy", | ||||
| 	"Proxy rules": "Règles du proxy", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quitter", | ||||
| 	"Quit Zulip": "Quitter Zulip", | ||||
| 	"Quit when the window is closed": "Quitter l'application lors de la fermeture de la fenêtre", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Réinitialiser l'application, supprimant ainsi toutes les organisations et tous les comptes connectés.", | ||||
| 	"Save": "Sauvegarder", | ||||
| 	"Select All": "Sélectionner tout", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Paramètres", | ||||
| 	"Shortcuts": "Raccourcis", | ||||
| 	"Show app icon in system tray": "Afficher l'icone de l'application dans la barre d'état", | ||||
| 	"Show app unread badge": "Afficher un badge lors d'un message non lu", | ||||
| 	"Show desktop notifications": "Afficher les notifications sur le bureau", | ||||
| 	"Show sidebar": "Afficher la barre latérale", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Langues du vérificateur orthographique", | ||||
| 	"Start app at login": "Démarrer l'application à l'ouverture", | ||||
| 	"Switch to Next Organization": "Basculer à l'organisation suivante", | ||||
| 	"Switch to Previous Organization": "Basculer à l'organisation précédente", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Ces raccourcis d'application vont au-delà de l'application web Zulip", | ||||
| 	"Tip": "Conseil", | ||||
| 	"Toggle DevTools for Active Tab": "Activer les outils de développement dans l'onglet actif", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Activer la barre latérale", | ||||
| 	"Toggle Tray Icon": "Activer l'icone dans la barre d'état", | ||||
| 	"Tools": "Outils", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Annuler", | ||||
| 	"Unhide": "Démasquer", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Envoyer", | ||||
| 	"Use system proxy settings (requires restart)": "Utiliser les paramètres de proxy du système (exige un redémarrage)", | ||||
| 	"View": "Affichage", | ||||
| 	"View Shortcuts": "Voir les raccourcis", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Fenêtre", | ||||
| 	"Window Shortcuts": "Raccourcis fenêtre", | ||||
| 	"YES": "Oui", | ||||
| 	"Yes": "Oui", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Vous pouvez sélectionner au maximum 3 langues pour la vérification orthographique.", | ||||
| 	"Zoom In": "Zoom avant", | ||||
| 	"Zoom Out": "Zoom arrière", | ||||
| 	"keyboard shortcuts": "Raccourcis clavier", | ||||
| 	"script": "scénario", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} fonctionne sur une version de Zulip Server qui n'est plus à jour.\n{{{version}}} Il se peut qu'il ne fonctionne pas entièrement dans cette application." | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancelar", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Editar", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "Aceptar", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Gardar", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Configuración", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,127 +1,171 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "જુલિપ વિશે", | ||||
| 	"Actual Size": "વાસ્તવિક માપ", | ||||
| 	"Add Organization": "સંસ્થા ઉમેરો", | ||||
| 	"Add a Zulip organization": "એક જુલિપ સંસ્થા ઉમેરો", | ||||
| 	"Add custom CSS": "વૈયક્તિક CSS ઉમેરો", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "અગ્રણિત", | ||||
| 	"All the connected organizations will appear here.": "સર્વ જોડાયેલ સંસ્થાઓ અહીં દર્શાવાશે.", | ||||
| 	"Always start minimized": "હંમેશા નીચેની આરંભ કરો", | ||||
| 	"App Updates": "એપ્લિકેશન અપડેટ્સ", | ||||
| 	"App language (requires restart)": "એપ્લિકેશન ભાષા (પુનઃઆરંભ કરવાની જરૂર છે)", | ||||
| 	"Appearance": "દેખાવ", | ||||
| 	"Application Shortcuts": "એપ્લિકેશન શોર્ટકટ્સ", | ||||
| 	"Are you sure you want to disconnect this organization?": "શું તમે ખાતરી છે કે તમે આ સંસ્થાનો ડિસ્કનેક્ટ કરવા માંગો છો?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "ડાઉનલોડ કરવા પહેલા ફાઈલો સેવ કરવાની જગ્યા વિશે પુછો", | ||||
| 	"Auto hide Menu bar": "આટો મેન્યુ બાર છુપાવો", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "આટો મેન્યુ બાર છુપાવો (ડિસ્પ્લે કરવા માટે Alt કી દબાવો)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "પાછળ", | ||||
| 	"Bounce dock on new private message": "નવો ખાનગી સંદેશ પર ડૉક બાઉન્સ કરો", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "રદ કરો", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "બદલો", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "ભાષા બદલો સિસ્ટમ પ્રાથમિકતાઓ → કીબોર્ડ → ટેક્સટ → સ્પેલિંગમાંથી.", | ||||
| 	"Check for Updates": "અપડેટ્સ માટે તપાસ કરો", | ||||
| 	"Close": "બંધ", | ||||
| 	"Connect": "જોડો", | ||||
| 	"Connect to another organization": "અન્ય સંસ્થાને જોડો", | ||||
| 	"Connected organizations": "જોડાયેલ સંસ્થાઓ", | ||||
| 	"Copy": "કૉપી", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "જુલિપ URL કૉપી કરો", | ||||
| 	"Create a new organization": "નવી સંસ્થા બનાવો", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "કટ કરો", | ||||
| 	"Default download location": "મૂળભૂત ડાઉનલોડ સ્થળ", | ||||
| 	"Delete": "કાઢો", | ||||
| 	"Desktop Notifications": "ડેસ્કટોપ સૂચનાઓ", | ||||
| 	"Desktop Settings": "ડેસ્કટોપ સેટિંગ્સ", | ||||
| 	"Disconnect": "ડિસ્કનેક્ટ", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "એપ્લિકેશન લોગ્સ ડાઉનલોડ કરો", | ||||
| 	"Edit": "સંપાદિત કરો", | ||||
| 	"Edit Shortcuts": "શોર્ટકટ્સ સંપાદિત કરો", | ||||
| 	"Emoji & Symbols": "ઇમોજી અને પ્રતીકો", | ||||
| 	"Enable auto updates": "ઓટો અપડેટ્સ સક્ષમ કરો", | ||||
| 	"Enable error reporting (requires restart)": "ત્રુટિ રિપોર્ટિંગ સક્ષમ કરો (પુનઃઆરંભ કરવાની જરૂર છે)", | ||||
| 	"Enable spellchecker (requires restart)": "સ્પેલચેકર સક્ષમ કરો (પુનઃઆરંભ કરવાની જરૂર છે)", | ||||
| 	"Enter Full Screen": "ફુલ સ્ક્રીનમાં દાખલ કરો", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "ફેક્ટરી રીસેટ", | ||||
| 	"Factory Reset Data": "ફેક્ટરી રીસેટ ડેટા", | ||||
| 	"File": "ફાઈલ", | ||||
| 	"Find accounts": "એકાઉન્ટ્સ શોધો", | ||||
| 	"Find accounts by email": "ઇમેઇલ દ્વારા એકાઉન્ટ્સ શોધો", | ||||
| 	"Flash taskbar on new message": "નવો સંદેશ પર ટાસ્કબાર ફ્લેશ કરો", | ||||
| 	"Forward": "ફોરવર્ડ", | ||||
| 	"Functionality": "કાર્યક્ષમતા", | ||||
| 	"General": "સામાન્ય", | ||||
| 	"Get beta updates": "બીટા અપડેટ્સ મેળવો", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "હાર્ડ રિલોડ", | ||||
| 	"Help": "મદદ", | ||||
| 	"Help Center": "મદદ કેન્દ્ર", | ||||
| 	"Hide": "છુપાવો", | ||||
| 	"Hide Others": "અન્યો છુપાવો", | ||||
| 	"Hide Zulip": "જુલિપ છુપાવો", | ||||
| 	"History": "ઇતિહાસ", | ||||
| 	"History Shortcuts": "ઇતિહાસ શોર્ટકટ્સ", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "કીબોર્ડ શોર્ટકટ્સ", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "લૉગ આઉટ", | ||||
| 	"Log Out of Organization": "સંસ્થામાં લૉગ આઉટ કરો", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "મેન્યુઅલ પ્રોક્સી રૂપરેખાંકન", | ||||
| 	"Minimize": "નીચેનું કરો", | ||||
| 	"Mute all sounds from Zulip": "જુલિપમાંથી બધા ધ્વનિઓ મ્યુટ કરો", | ||||
| 	"Network": "નેટવર્ક", | ||||
| 	"Network and Proxy Settings": "નેટવર્ક અને પ્રોક્સી સેટિંગ્સ", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "સૂચના સેટિંગ્સ", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "અથવા", | ||||
| 	"On macOS, the OS spellchecker is used.": "macOS પર, OS સ્પેલચેકરનો ઉપયોગ થાય છે.", | ||||
| 	"Organization URL": "સંસ્થા URL", | ||||
| 	"Organizations": "સંસ્થાઓ", | ||||
| 	"Paste": "પેસ્ટ", | ||||
| 	"Paste and Match Style": "પેસ્ટ અને સ્ટાઇલ મેચ", | ||||
| 	"Proxy": "પ્રોક્સી", | ||||
| 	"Proxy bypass rules": "પ્રોક્સી બાયપાસ નિયમો", | ||||
| 	"Proxy rules": "પ્રોક્સી નિયમો", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "છોડો", | ||||
| 	"Quit Zulip": "જુલિપ છોડો", | ||||
| 	"Quit when the window is closed": "જ્યારે વિન્ડો બંધ થાય ત્યારે છોડો", | ||||
| 	"Redo": "ફરીથી કરો", | ||||
| 	"Release Notes": "રિલીઝ નોંધો", | ||||
| 	"Reload": "રીલોડ", | ||||
| 	"Report an Issue": "એક મુદ્દો રિપોર્ટ કરો", | ||||
| 	"Reset App Settings": "એપ્લિકેશન સેટિંગ્સ રીસેટ કરો", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "એપ્લિકેશન રીસેટ કરો, તેથી બંધ થેલેલી બધી સંસ્થાઓ અને એકાઉન્ટ્સ ડિલીટ કરો.", | ||||
| 	"Save": "સાચવો", | ||||
| 	"Select All": "બધું પસંદ કરો", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "સેવાઓ", | ||||
| 	"Settings": "સેટિંગ્સ", | ||||
| 	"Shortcuts": "શોર્ટકટ્સ", | ||||
| 	"Show app icon in system tray": "સિસ્ટમ ટ્રેમાં એપ આઇકોન બતાવો", | ||||
| 	"Show desktop notifications": "ડેસ્કટોપ નોટિફિકેશન્સ બતાવો", | ||||
| 	"Show sidebar": "સાઇડબાર બતાવો", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "સ્પેલચેકર ભાષાઓ", | ||||
| 	"Start app at login": "લૉગિન પર એપ શરૂ કરો", | ||||
| 	"Switch to Next Organization": "આગામી સંસ્થા પર સ્વિચ કરો", | ||||
| 	"Switch to Previous Organization": "પાછલી સંસ્થા પર સ્વિચ કરો", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "આ ડેસ્કટોપ એપ શોર્ટકટ્સ જુલિપ વેબએપને વધારાવે છે", | ||||
| 	"Tip": "ટીપ", | ||||
| 	"Toggle DevTools for Active Tab": "એક્ટિવ ટેબ માટે ડેવટૂલ્સ ટોગલ કરો", | ||||
| 	"Toggle DevTools for Zulip App": "જુલિપ એપ માટે ડેવટૂલ્સ ટોગલ કરો", | ||||
| 	"Toggle Do Not Disturb": "ચિંતાનો સમય ટોગલ કરો", | ||||
| 	"Toggle Full Screen": "પૂર્ણ સ્ક્રીન ટોગલ કરો", | ||||
| 	"Toggle Sidebar": "સાઇડબાર ટોગલ કરો", | ||||
| 	"Toggle Tray Icon": "ટ્રે આઇકોન ટોગલ કરો", | ||||
| 	"Tools": "ટૂલ્સ", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "અનકરવું", | ||||
| 	"Unhide": "અદૃશ્ય કરો", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "અપલોડ કરો", | ||||
| 	"Use system proxy settings (requires restart)": "સિસ્ટમ પ્રોક્સી સેટિંગ્સનો ઉપયોગ કરો (પુનઃઆરંભ કરવાની જરૂર છે)", | ||||
| 	"View": "જુઓ", | ||||
| 	"View Shortcuts": "શોર્ટકટ્સ જુઓ", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "વિન્ડો", | ||||
| 	"Window Shortcuts": "વિન્ડો શોર્ટકટ્સ", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "તમે સ્પેલચેક માટે મહત્તમ 3 ભાષાઓ પસંદ કરી શકો છો.", | ||||
| 	"Zoom In": "ઝૂમ ઇન", | ||||
| 	"Zoom Out": "ઝૂમ આઉટ", | ||||
| 	"keyboard shortcuts": "કીબોર્ડ શોર્ટકટ્સ", | ||||
| 	"script": "લિપિ", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} એ જુલિપ સર્વર આવૃત્તિ {{{version}}} ચલાવે છે. તે આ એપમાં પૂર્ણ રીતે કામ કરી શકતી નથી." | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "जूलिप के बारे में", | ||||
| 	"Actual Size": "वास्तविक आकार", | ||||
| 	"Add Organization": "संगठन जोड़ें", | ||||
| 	"Add a Zulip organization": "एक जूलिप संगठन जोड़ें", | ||||
| 	"Add custom CSS": "कस्टम CSS जोड़ें", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "उन्नत", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "हमेशा कम से कम शुरू करें", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "दिखावट", | ||||
| 	"Application Shortcuts": "आवेदन शॉर्टकट", | ||||
| 	"Are you sure you want to disconnect this organization?": "क्या आप वाकई इस संगठन को डिस्कनेक्ट करना चाहते हैं?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "ऑटो मेनू मेनू छुपाएँ", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "ऑटो छिपाने मेनू बार (प्रेस Alt कुंजी प्रदर्शित करने के लिए)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "वापस", | ||||
| 	"Bounce dock on new private message": "नए निजी संदेश पर बाउंस डॉक", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "रद्द करना", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "परिवर्तन", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "अद्यतन के लिए जाँच", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "किसी अन्य संगठन से कनेक्ट करें", | ||||
| 	"Connected organizations": "जुड़े हुए संगठन", | ||||
| 	"Copy": "प्रतिलिपि", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Zulip URL को कॉपी करें", | ||||
| 	"Create a new organization": "एक नया संगठन बनाएं", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "कट गया", | ||||
| 	"Default download location": "डिफ़ॉल्ट डाउनलोड स्थान", | ||||
| 	"Delete": "हटाना", | ||||
| 	"Desktop Notifications": "डेस्कटॉप सूचनाएं", | ||||
| 	"Desktop Settings": "डेस्कटॉप सेटिंग्स", | ||||
| 	"Disconnect": "डिस्कनेक्ट", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "ऐप लॉग डाउनलोड करें", | ||||
| 	"Edit": "संपादित करें", | ||||
| 	"Edit Shortcuts": "शॉर्टकट संपादित करें", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "त्रुटि रिपोर्टिंग सक्षम करें (पुनरारंभ की आवश्यकता है)", | ||||
| 	"Enable spellchecker (requires restart)": "वर्तनी जाँचक सक्षम करें (पुनः आरंभ करने की आवश्यकता है)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "नए यंत्र जैसी सेटिंग", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "फ़ाइल", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "कार्यक्षमता", | ||||
| 	"General": "सामान्य", | ||||
| 	"Get beta updates": "बीटा अपडेट प्राप्त करें", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "हार्ड रीलोड", | ||||
| 	"Help": "मदद", | ||||
| 	"Help Center": "सहायता केंद्र", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "इतिहास", | ||||
| 	"History Shortcuts": "इतिहास शॉर्टकट", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "कुंजीपटल अल्प मार्ग", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "लोग आउट", | ||||
| 	"Log Out of Organization": "संगठन से बाहर प्रवेश करें", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "मैनुअल प्रॉक्सी कॉन्फ़िगरेशन", | ||||
| 	"Minimize": "छोटा करना", | ||||
| 	"Mute all sounds from Zulip": "ज़ूलिप से सभी ध्वनियों को म्यूट करें", | ||||
| 	"NO": "नहीं", | ||||
| 	"Network": "नेटवर्क", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "ठीक", | ||||
| 	"OR": "या", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "संगठन का URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "प्रतिनिधि", | ||||
| 	"Proxy bypass rules": "प्रॉक्सी बायपास नियम", | ||||
| 	"Proxy rules": "प्रॉक्सी नियम", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "छोड़ना", | ||||
| 	"Quit Zulip": "जूलिप छोड़ दें", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "बचाना / सहेजें", | ||||
| 	"Select All": "सभी का चयन करे", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "सेटिंग्स", | ||||
| 	"Shortcuts": "शॉर्टकट", | ||||
| 	"Show app icon in system tray": "सिस्टम ट्रे में ऐप आइकन दिखाएं", | ||||
| 	"Show app unread badge": "ऐप अपठित बैज दिखाएं", | ||||
| 	"Show desktop notifications": "डेस्कटॉप सूचनाएं दिखाएं", | ||||
| 	"Show sidebar": "साइडबार दिखाओ", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "लॉगिन पर ऐप शुरू करें", | ||||
| 	"Switch to Next Organization": "अगला संगठन पर स्विच करें", | ||||
| 	"Switch to Previous Organization": "पिछले संगठन पर स्विच करें", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "ये डेस्कटॉप ऐप शॉर्टकट Zulip webapp's का विस्तार करते हैं", | ||||
| 	"Tip": "टिप", | ||||
| 	"Toggle DevTools for Active Tab": "सक्रिय टैब के लिए DevTools टॉगल करें", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "टॉगल साइडबार", | ||||
| 	"Toggle Tray Icon": "टॉगल ट्रे आइकन", | ||||
| 	"Tools": "उपकरण", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "पूर्ववत करें", | ||||
| 	"Unhide": "प्रकट करें", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "अपलोड", | ||||
| 	"Use system proxy settings (requires restart)": "सिस्टम प्रॉक्सी सेटिंग्स का उपयोग करें (पुनः आरंभ करने की आवश्यकता है)", | ||||
| 	"View": "राय", | ||||
| 	"View Shortcuts": "शॉर्टकट देखें", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "खिड़की", | ||||
| 	"Window Shortcuts": "विंडो शॉर्टकट", | ||||
| 	"YES": "हाँ", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "ज़ूम इन", | ||||
| 	"Zoom Out": "ज़ूम आउट", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "A Zulip-ról", | ||||
| 	"Actual Size": "Alapértelmezett méret", | ||||
| 	"Add Organization": "Szervezet hozzáadása", | ||||
| 	"Add a Zulip organization": "Zulip szervezet hozzáadása", | ||||
| 	"Add custom CSS": "Saját CSS hozzáadása", | ||||
| 	"AddServer": "Szerver hozzáadás", | ||||
| 	"Add to Dictionary": "Hozzáadás a szótárhoz", | ||||
| 	"Advanced": "Haladó", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Mindig kis méretben induljon", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Megjelenés", | ||||
| 	"Application Shortcuts": "Gyorsbillentyűk", | ||||
| 	"Are you sure you want to disconnect this organization?": "Biztosan kilép ebből a szervezetből?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Letöltés előtt kérdezze meg a mentés helyét", | ||||
| 	"Auto hide Menu bar": "Menüsáv automatikus rejtése", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Menüsáv automatikus rejtése (Alt megnyomására megjelenik)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Vissza", | ||||
| 	"Bounce dock on new private message": "Ugráló dokk ikon új privát üzenet esetén", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Mégse", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Változtatás", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "A nyelv a Rendszerbeállítások → Billentyűzet → Szöveg → Helyesírás pontban változtatható meg.", | ||||
| 	"Check for Updates": "Frissítések keresése", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Csatlakozás másik szervezethez", | ||||
| 	"Connected organizations": "Csatlakoztatott szervezetek", | ||||
| 	"Copy": "Másolás", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Kép másolása", | ||||
| 	"Copy Image URL": "Kép címének másolása", | ||||
| 	"Copy Link": "Hivatkozás másolása", | ||||
| 	"Copy Zulip URL": "Zulip URL másolása", | ||||
| 	"Create a new organization": "Új szervezet létrehozása", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Kivágás", | ||||
| 	"Default download location": "Alapértelmezett letöltési hely", | ||||
| 	"Delete": "Törlés", | ||||
| 	"Desktop Notifications": "Asztali értesítések", | ||||
| 	"Desktop Settings": "Asztali beállítások", | ||||
| 	"Disconnect": "Szétkapcsolás", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Alkalmazásnaplók letöltése", | ||||
| 	"Edit": "Szerkesztés", | ||||
| 	"Edit Shortcuts": "Gyorsbillentyűk szerkesztése", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Hibajelentés engedélyezése (újraindítást igényel)", | ||||
| 	"Enable spellchecker (requires restart)": "Helyesírásellenőrzés engedélyezése (újraindítást igényel)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Gyári beállítások visszaállítása", | ||||
| 	"Factory Reset Data": "Gyári adatok visszaállítása", | ||||
| 	"File": "Fájl", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Rendszerfunkciók", | ||||
| 	"General": "Általános", | ||||
| 	"Get beta updates": "Béta frissítések letöltése", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Teljes újratöltés", | ||||
| 	"Help": "Súgó", | ||||
| 	"Help Center": "Súgóközpont", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "Előzmények", | ||||
| 	"History Shortcuts": "Előzmények gyorsbillentyűi", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Gyorsbillentyűk", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Kilépés", | ||||
| 	"Log Out of Organization": "Kilépés a szervezetből", | ||||
| 	"Look Up": "Keresés", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Kézi proxy beállítások", | ||||
| 	"Minimize": "Kis méret", | ||||
| 	"Mute all sounds from Zulip": "Az összes Zulip hang némítása", | ||||
| 	"NO": "NEM", | ||||
| 	"Network": "Hálózat", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Nem találtunk javaslatot", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Értesítési beállítások", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "VAGY", | ||||
| 	"On macOS, the OS spellchecker is used.": "MacOS rendszereken az operációs rendszer helyesírásellenőrzőjét használjuk.", | ||||
| 	"Organization URL": "Szervezet URL-je", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass szabályok", | ||||
| 	"Proxy rules": "Proxy szabályok", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Kilépés", | ||||
| 	"Quit Zulip": "Kilépés a Zulip-ból", | ||||
| 	"Quit when the window is closed": "Kilépés az ablak bezárásakor", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Mentés", | ||||
| 	"Select All": "Mindet kijelöl", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Szolgáltatások", | ||||
| 	"Settings": "Beállítások", | ||||
| 	"Shortcuts": "Gyorsbillentyűk", | ||||
| 	"Show app icon in system tray": "Ikon megjelenítése a tálcán", | ||||
| 	"Show app unread badge": "Az alkalmazás olvasatlan jelvényének megjelenítése", | ||||
| 	"Show desktop notifications": "Az asztali értesítések megjelenítése", | ||||
| 	"Show sidebar": "Oldalsáv megjelenítése", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Helyesírásellenőrzés nyelvei", | ||||
| 	"Start app at login": "Indítsa el az alkalmazást bejelentkezéskor", | ||||
| 	"Switch to Next Organization": "Váltás a következő szervezetre", | ||||
| 	"Switch to Previous Organization": "Váltás az előző szervezetre", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Az alábbi asztali gyorsbillentyűk kiegészítik a Zulip webapp gyorsbillentyűket.", | ||||
| 	"Tip": "Tipp", | ||||
| 	"Toggle DevTools for Active Tab": "DevTools bekapcsolása az aktív fülön", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Oldalsáv bekapcsolása", | ||||
| 	"Toggle Tray Icon": "Tálca ikon bekapcsolása", | ||||
| 	"Tools": "Eszközök", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Visszavonás", | ||||
| 	"Unhide": "Felfedés", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Feltöltés", | ||||
| 	"Use system proxy settings (requires restart)": "A rendszer proxybeállításainak használata (újraindítást igényel)", | ||||
| 	"View": "Nézet", | ||||
| 	"View Shortcuts": "Nézet gyorsbillentyűk", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Ablak", | ||||
| 	"Window Shortcuts": "Ablak gyorsbillentyűk", | ||||
| 	"YES": "IGEN", | ||||
| 	"Yes": "Igen", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Maximum 3 nyelv választható ki helyesírásellenőrzéshez.", | ||||
| 	"Zoom In": "Nagyítása", | ||||
| 	"Zoom Out": "Kicsinyítés", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Tentang Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Batal", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Ubah", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "URL Organisasi", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Simpan", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Pengaturan", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,134 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "Tentang Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Custom Certificates": "Add Custom Certificates", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here": "All the connected organizations will appear here", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Certificate file": "Certificate file", | ||||
| 	"Change": "Ubah", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Tutup", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop App Settings": "Desktop App Settings", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Temukan akun", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"OR": "OR", | ||||
| 	"Organization URL": "URL Organisasi", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Save": "Simpan", | ||||
| 	"Select All": "Select All", | ||||
| 	"Settings": "Pengaturan", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show App Logs": "Show App Logs", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show downloaded files in file manager": "Show downloaded files in file manager", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"This will delete all application data including all added accounts and preferences": "This will delete all application data including all added accounts and preferences", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"Zulip Help": "Zulip Help", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Services": "Services", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"Reset the application, thus deleting all the connected organizations, accounts, and certificates.": "Reset the application, thus deleting all the connected organizations, accounts, and certificates.", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Look Up": "Look Up" | ||||
| } | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "È stato scaricato un nuovo aggiornamento {{{version}}}.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "È disponibile una nuova versione {{{version}}} di Zulip Desktop.", | ||||
| 	"About": "Di", | ||||
| 	"About Zulip": "A proposito di Zulip", | ||||
| 	"Actual Size": "Dimensione Attuale", | ||||
| 	"Add Organization": "Aggiungi Organizzazione", | ||||
| 	"Add a Zulip organization": "Aggiungi organizzazione a Zulip", | ||||
| 	"Add custom CSS": "Aggiungi codice CSS personalizzato", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Aggiungi al dizionario", | ||||
| 	"Advanced": "Avanzate", | ||||
| 	"All the connected organizations will appear here.": "Tutte le organizzazioni collegate appariranno qui.", | ||||
| 	"Always start minimized": "Avvia sempre minimizzato", | ||||
| 	"App Updates": "Aggiornamenti App", | ||||
| 	"App language (requires restart)": "Lingua applicazione (richiede riavvio)", | ||||
| 	"Appearance": "Aspetto", | ||||
| 	"Application Shortcuts": "Scorciatoie Applicazione", | ||||
| 	"Application Shortcuts": "Scorciatoie applicazione", | ||||
| 	"Are you sure you want to disconnect this organization?": "Sei sicuro di volerti scollegare da questa organizzazione?", | ||||
| 	"Are you sure?": "Sei sicuro?", | ||||
| 	"Ask where to save files before downloading": "Chiedi dove salvare i file prima di scaricarli", | ||||
| 	"Auto hide Menu bar": "Nascondi automaticamente la barra del Menù", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Nascondi automaticamente la barra del menù (Premi il tasto Alt per visualizzarlo)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Disponibile con licenza {{{link}}}Apache 2.0{{{endLink}}}", | ||||
| 	"Back": "Indietro", | ||||
| 	"Bounce dock on new private message": "Lampeggia icona sula barra alla ricezione di un nuovo messaggio privato", | ||||
| 	"CSS file": "file CSS", | ||||
| 	"Cancel": "Annulla", | ||||
| 	"Certificate error": "Errore del certificato", | ||||
| 	"Change": "Modifica", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Cambia la lingua in Preferenze di Sistema → Tastiera → Testo → Ortografia.", | ||||
| 	"Check for Updates": "Controlla aggiornamenti", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connetti ad un'altra organizzazione", | ||||
| 	"Connected organizations": "Organizzazioni connesse", | ||||
| 	"Copy": "Copia", | ||||
| 	"Copy Email Address": "Copia indirizzo e-mail", | ||||
| 	"Copy Image": "Copia immagine", | ||||
| 	"Copy Image URL": "Copia URL dell'immagine", | ||||
| 	"Copy Link": "Copia link", | ||||
| 	"Copy Zulip URL": "Copia URL Zulip", | ||||
| 	"Create a new organization": "Crea nuova organizzazione", | ||||
| 	"Custom CSS file deleted": "FileCSS personalizzato eliminato", | ||||
| 	"Cut": "Taglia", | ||||
| 	"Default download location": "Percorso predefinito di download", | ||||
| 	"Delete": "Cancella", | ||||
| 	"Desktop Notifications": "Notifiche Desktop", | ||||
| 	"Desktop Settings": "Impostazioni Desktop", | ||||
| 	"Disconnect": "Disconnetti", | ||||
| 	"Disconnect organization": "Organizzazione disconnessa", | ||||
| 	"Do Not Disturb": "Non disturbare", | ||||
| 	"Download App Logs": "Scarica Log Applicativi", | ||||
| 	"Edit": "Modifica", | ||||
| 	"Edit Shortcuts": "Edita Scorciatoie", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Abilita segnalazione errori (richiede riavvio)", | ||||
| 	"Enable spellchecker (requires restart)": "Abilita correttore ortografico (richiede riavvio)", | ||||
| 	"Enter Full Screen": "Accedi a Schermo intero", | ||||
| 	"Error saving new organization": "Errore durante il salvataggio della nuova organizzazione", | ||||
| 	"Error saving update notifications": "Errore durante il salvataggio delle notifiche di aggiornamento", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Errore: {{{errore}}} \n\nL'ultima versione di Zulip Desktop è disponibile all'indirizzo: \n{{{collegamento}}} \nVersione corrente: {{{version}}}", | ||||
| 	"Factory Reset": "Reset di fabbrica", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Funzionalità", | ||||
| 	"General": "Generale", | ||||
| 	"Get beta updates": "Ottieni aggiornamenti beta", | ||||
| 	"Go Back": "Torna indietro", | ||||
| 	"Hard Reload": "Forza Ricarica", | ||||
| 	"Help": "Aiuto", | ||||
| 	"Help Center": "Centro di aiuto", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Nascondi Zulip", | ||||
| 	"History": "Storico", | ||||
| 	"History Shortcuts": "Cronologia Scorciatoie", | ||||
| 	"Keyboard Shortcuts": "Scorciatoie Tastiera", | ||||
| 	"Install Later": "Installa più tardi", | ||||
| 	"Install and Relaunch": "Installa e riavvia", | ||||
| 	"It will be installed the next time you restart the application.": "Verrà installato al successivo riavvio dell'applicazione.", | ||||
| 	"Keyboard Shortcuts": "Scorciatoie tastiera", | ||||
| 	"Later": "Dopo", | ||||
| 	"Loading": "Caricamento", | ||||
| 	"Log Out": "Esci", | ||||
| 	"Log Out of Organization": "Esci dall'organizzazione", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Gestito da {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Scaricamento manuale", | ||||
| 	"Manual proxy configuration": "Configurazione proxy manuale", | ||||
| 	"Minimize": "Minimizza", | ||||
| 	"Mute all sounds from Zulip": "Silenzia tutti i suoni di Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Rete", | ||||
| 	"Network and Proxy Settings": "Impostazioni di rete e proxy", | ||||
| 	"New servers added. Reload app now?": "Aggiunti nuovi server. Ricaricare l'app ora?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Nessun suggerimento trovato", | ||||
| 	"No updates available.": "Nessun aggiornamento disponibile.", | ||||
| 	"Notification settings": "Impostazioni di notifica", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "O", | ||||
| 	"On macOS, the OS spellchecker is used.": "Su macOS, è usato il correttore ortografico di sistema.", | ||||
| 	"Organization URL": "URL dell'organizzazione", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Regole di bypass proxy", | ||||
| 	"Proxy rules": "Regole Proxy", | ||||
| 	"Proxy settings saved.": "Impostazioni proxy salvate.", | ||||
| 	"Quit": "Esci", | ||||
| 	"Quit Zulip": "Esci da Zulip", | ||||
| 	"Quit when the window is closed": "Esci quando la finestra è chiusa", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Ripristina l'applicazione, eliminando così tutte le organizzazioni e gli account collegati.", | ||||
| 	"Save": "Salva", | ||||
| 	"Select All": "Seleziona Tutto", | ||||
| 	"Select Download Location": "Selezionare la posizione di download", | ||||
| 	"Select file": "Seleziona file", | ||||
| 	"Services": "Servizi", | ||||
| 	"Settings": "Impostazioni", | ||||
| 	"Shortcuts": "Scorciatoie", | ||||
| 	"Show app icon in system tray": "Mostra icona applicazione nella barra di sistema", | ||||
| 	"Show app unread badge": "Mostra icona notifiche non lette", | ||||
| 	"Show desktop notifications": "Mostra notifiche desktop", | ||||
| 	"Show sidebar": "Mostra barra laterale", | ||||
| 	"Show unread count badge on app icon": "Mostra il badge del conteggio dei non letti sull'icona dell'app", | ||||
| 	"Spellchecker Languages": "Lingue correttore ortografico", | ||||
| 	"Start app at login": "Avvia l'applicazione all'avvio", | ||||
| 	"Switch to Next Organization": "Passa alla Prossima Organizzazione", | ||||
| 	"Switch to Previous Organization": "Passa alla Precedente Organizzazione", | ||||
| 	"The custom CSS previously set is deleted.": "Il CSS personalizzato impostato in precedenza viene eliminato.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "Il server ha presentato un certificato non valido per {{{origin}}}:{{{errore}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "L'aggiornamento verrà scaricato in background. Riceverai una notifica quando sarà pronto per essere installato.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "Si è verificato un errore durante il salvataggio della nuova organizzazione. potresti dover aggiungere di nuovo le tue organizzazioni precedenti.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Queste scorciatoie per l'app desktop, estendono le webapp di Zulip", | ||||
| 	"Tip": "Consiglio", | ||||
| 	"Toggle DevTools for Active Tab": "Attiva/Disattiva Tool di Sviluppo per il Tab Attivo", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Attiva/Disattiva Barra Laterale", | ||||
| 	"Toggle Tray Icon": "Abilita/Disabilita Icona nella Tray Bar", | ||||
| 	"Tools": "Strumenti", | ||||
| 	"Unable to check for updates.": "Impossibile verificare la presenza di aggiornamenti.", | ||||
| 	"Unable to download the update.": "Impossibile scaricare l'aggiornamento.", | ||||
| 	"Undo": "Annulla", | ||||
| 	"Unhide": "Mostra", | ||||
| 	"Unknown error": "Errore sconosciuto", | ||||
| 	"Upload": "Carica", | ||||
| 	"Use system proxy settings (requires restart)": "Usa impostazioni proxy di sistema (richiede riavvio)", | ||||
| 	"View": "Visualizza", | ||||
| 	"View Shortcuts": "Visualizza Scorciatoie", | ||||
| 	"We encountered an error while saving the update notifications.": "Si è verificato un errore durante il salvataggio delle notifiche di aggiornamento.", | ||||
| 	"Window": "Finestra", | ||||
| 	"Window Shortcuts": "Scorciatoie Finestra", | ||||
| 	"YES": "SI", | ||||
| 	"Window Shortcuts": "Scorciatoie finestra", | ||||
| 	"Yes": "Sì", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "Stai utilizzando l'ultima versione di Zulip Desktop.Versione: {{{versione}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Puoi selezionare fino ad un massimo di 3 lingue per il correttore ortografico", | ||||
| 	"Zoom In": "Ingrandisci", | ||||
| 	"Zoom Out": "Riduci", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "Zulipについて", | ||||
| 	"About Zulip": "Zulip について", | ||||
| 	"Actual Size": "サイズを元に戻す", | ||||
| 	"Add Organization": "組織を追加", | ||||
| 	"Add a Zulip organization": "新しいZulip組織を追加", | ||||
| 	"Add custom CSS": "カスタムCSSを追加", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "その他", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "常に最小化して起動", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "外観", | ||||
| 	"Application Shortcuts": "アプリケーションのショートカット", | ||||
| 	"Are you sure you want to disconnect this organization?": "本当にこの組織から脱退しますか?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "ダウンロード時にファイルの保存先を指定する", | ||||
| 	"Auto hide Menu bar": "メニューバーを自動的に隠す", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "メニューバーを自動的に隠す (Altキーを押すと表示)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "戻る", | ||||
| 	"Bounce dock on new private message": "新しいプライベートメッセージがあると Dock アイコンが跳ねる", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "キャンセル", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "変更", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "アップデートを確認", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "別の組織に接続", | ||||
| 	"Connected organizations": "接続済みの組織", | ||||
| 	"Copy": "コピー", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "画像をコピー", | ||||
| 	"Copy Image URL": "画像の URL をコピー", | ||||
| 	"Copy Link": "リンクをコピー", | ||||
| 	"Copy Zulip URL": "Zulip URL をコピー", | ||||
| 	"Create a new organization": "新しい組織を作成", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "切り取り", | ||||
| 	"Default download location": "デフォルトのダウンロードフォルダ", | ||||
| 	"Default download location": "デフォルトのダウンロードフォルダー", | ||||
| 	"Delete": "削除", | ||||
| 	"Desktop Notifications": "デスクトップ通知", | ||||
| 	"Desktop Settings": "デスクトップ設定", | ||||
| 	"Disconnect": "切断", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "サイレントモード", | ||||
| 	"Download App Logs": "アプリログをダウンロード", | ||||
| 	"Edit": "編集", | ||||
| 	"Edit Shortcuts": "ショートカットを編集", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "エラー報告を有効にする (再起動が必要です)", | ||||
| 	"Enable spellchecker (requires restart)": "スペルチェックを有効にする (再起動が必要です)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "ファクトリーリセット", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "ファイル", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "機能", | ||||
| 	"General": "全般", | ||||
| 	"Get beta updates": "ベータ版のアップデートを入手", | ||||
| 	"Go Back": "戻る", | ||||
| 	"Hard Reload": "ハードリロード", | ||||
| 	"Help": "ヘルプ", | ||||
| 	"Help Center": "ヘルプセンター", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "履歴", | ||||
| 	"History Shortcuts": "履歴ショートカット", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "キーボードショートカット", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "ロード中", | ||||
| 	"Log Out": "ログアウト", | ||||
| 	"Log Out of Organization": "組織からログアウトする", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "手動プロキシ設定", | ||||
| 	"Minimize": "最小化", | ||||
| 	"Mute all sounds from Zulip": "Zulip からのすべてのサウンドをミュート", | ||||
| 	"NO": "いいえ", | ||||
| 	"Network": "ネットワーク", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "ネットワークとプロキシ", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "いいえ", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "通知設定", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "または", | ||||
| 	"On macOS, the OS spellchecker is used.": "macOSでは、OSのスペルチェックが使用されます。", | ||||
| 	"Organization URL": "組織のURL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "プロキシ", | ||||
| 	"Proxy bypass rules": "プロキシバイパスルール", | ||||
| 	"Proxy rules": "プロキシルール", | ||||
| 	"Proxy settings saved.": "プロキシ設定を保存しました。", | ||||
| 	"Quit": "終了", | ||||
| 	"Quit Zulip": "Zulip を終了", | ||||
| 	"Quit when the window is closed": "ウインドウを閉じるときに自動的に退出", | ||||
| @@ -86,20 +119,26 @@ | ||||
| 	"Reload": "リロード", | ||||
| 	"Report an Issue": "問題を報告する", | ||||
| 	"Reset App Settings": "アプリの設定をリセット", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "アプリケーションをリセットし、接続されたすべての組織とアカウントを削除します。", | ||||
| 	"Save": "保存", | ||||
| 	"Select All": "すべて選択", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "サービス", | ||||
| 	"Settings": "設定", | ||||
| 	"Shortcuts": "ショートカット", | ||||
| 	"Show app icon in system tray": "システムトレイにアプリアイコンを表示する", | ||||
| 	"Show app unread badge": "アプリの未読バッジを表示する", | ||||
| 	"Show desktop notifications": "デスクトップ通知を表示する", | ||||
| 	"Show sidebar": "サイドバーを表示", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "スペルチェックの言語", | ||||
| 	"Start app at login": "ログイン時にアプリを起動する", | ||||
| 	"Switch to Next Organization": "次の組織に切り替える", | ||||
| 	"Switch to Previous Organization": "前の組織に切り替える", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "これらのデスクトップアプリのショートカットは Zulip Web アプリケーションのショートカットを拡張します。", | ||||
| 	"Tip": "ヒント", | ||||
| 	"Toggle DevTools for Active Tab": "アクティブなタブの DevTools を切り替え", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "サイドバーの切り替え", | ||||
| 	"Toggle Tray Icon": "トレイアイコンの切り替え", | ||||
| 	"Tools": "ツール", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "元に戻す", | ||||
| 	"Unhide": "表示", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "アップロード", | ||||
| 	"Use system proxy settings (requires restart)": "システムのプロキシ設定を使用する (再起動が必要です)", | ||||
| 	"View": "表示", | ||||
| 	"View Shortcuts": "ショートカットを表示", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "ウインドウ", | ||||
| 	"Window Shortcuts": "ウィンドウショートカット", | ||||
| 	"YES": "はい", | ||||
| 	"Yes": "はい", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "最大で3つの言語のスペルチェックを選択できます。", | ||||
| 	"Zoom In": "拡大", | ||||
| 	"Zoom Out": "縮小", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "관하여", | ||||
| 	"About Zulip": "Zulip에 대해", | ||||
| 	"Actual Size": "실제 크기", | ||||
| 	"Add Organization": "조직 추가", | ||||
| 	"Add a Zulip organization": "새로운 Zulip 조직 추가", | ||||
| 	"Add custom CSS": "맞춤 CSS 추가", | ||||
| 	"AddServer": "서버추가", | ||||
| 	"Add to Dictionary": "사전에 추가하기", | ||||
| 	"Advanced": "많은", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "항상 최소화 된 상태로 시작하십시오.", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "외관", | ||||
| 	"Application Shortcuts": "애플리케이션 단축키", | ||||
| 	"Are you sure you want to disconnect this organization?": "이 조직의 연결을 해제 하시겠습니까?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "다운로드 전에 어디에 파일을 저장할지 묻기", | ||||
| 	"Auto hide Menu bar": "메뉴 바 자동 숨기기", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "메뉴 바 자동 숨기기 (표시하려면 Alt 키를 누릅니다)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "뒤로가기", | ||||
| 	"Bounce dock on new private message": "새로운 비공개 메시지에 바운스 독", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "취소", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "변경", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "시스템 환경설정 → 키보드 → 텍스트 → 맞춤법에서 언어를 바꾸세요.", | ||||
| 	"Check for Updates": "업데이트 확인", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "다른 조직에 연결", | ||||
| 	"Connected organizations": "연결된 조직", | ||||
| 	"Copy": "복사", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "이미지 복사", | ||||
| 	"Copy Image URL": "이미지 URL 복사", | ||||
| 	"Copy Link": "링크 복사", | ||||
| 	"Copy Zulip URL": "Zulip URL 복사", | ||||
| 	"Create a new organization": "새 조직 만들기", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "잘라내기", | ||||
| 	"Default download location": "기본 다운로드 위치", | ||||
| 	"Delete": "삭제", | ||||
| 	"Desktop Notifications": "데스크톱 알림", | ||||
| 	"Desktop Settings": "데스크톱 설정", | ||||
| 	"Disconnect": "연결 끊기", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "앱 로그 다운로드", | ||||
| 	"Edit": "편집하다", | ||||
| 	"Edit Shortcuts": "바로 가기 편집", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "오류보고 사용 (재시작 필요)", | ||||
| 	"Enable spellchecker (requires restart)": "맞춤법 검사기 사용 (재시작 필요)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "공장 초기화", | ||||
| 	"Factory Reset Data": "공장 초기화 정보", | ||||
| 	"File": "파일", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "기능", | ||||
| 	"General": "일반", | ||||
| 	"Get beta updates": "베타 업데이트 받기", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "하드 다시로드", | ||||
| 	"Help": "도움", | ||||
| 	"Help Center": "지원 센터", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "히스토리", | ||||
| 	"History Shortcuts": "히스토리 단축키", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "키보드 단축키", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "로그 아웃", | ||||
| 	"Log Out of Organization": "조직에서 로그 아웃", | ||||
| 	"Look Up": "찾아보기", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "수동 프록시 구성", | ||||
| 	"Minimize": "최소화", | ||||
| 	"Mute all sounds from Zulip": "Zulip에서 모든 소리를 음소거합니다.", | ||||
| 	"NO": "아니오", | ||||
| 	"Network": "네트워크", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "아니오", | ||||
| 	"No Suggestion Found": "추천을 찾지 못했습니다", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "알림 설정", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "또는", | ||||
| 	"On macOS, the OS spellchecker is used.": "macOS에서는 운영체제의 맞춤법 검사기가 사용됩니다.", | ||||
| 	"Organization URL": "조직 URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "프록시", | ||||
| 	"Proxy bypass rules": "프록시 우회 규칙", | ||||
| 	"Proxy rules": "프록시 규칙", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "종료", | ||||
| 	"Quit Zulip": "Zulip 을 종료합니다.", | ||||
| 	"Quit when the window is closed": "윈도우가 닫히면 종료", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "저장", | ||||
| 	"Select All": "모두 선택", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "서비스들", | ||||
| 	"Settings": "설정", | ||||
| 	"Shortcuts": "바로 가기", | ||||
| 	"Show app icon in system tray": "시스템 트레이에 앱 아이콘 표시", | ||||
| 	"Show app unread badge": "앱에 읽지 않은 배지 표시", | ||||
| 	"Show desktop notifications": "바탕 화면 알림 표시", | ||||
| 	"Show sidebar": "사이드 바 표시", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "맞춤법 검사기 언어", | ||||
| 	"Start app at login": "로그인시 앱 시작", | ||||
| 	"Switch to Next Organization": "다음 조직으로 전환", | ||||
| 	"Switch to Previous Organization": "이전 조직으로 전환", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "데스크톱 앱 바로 가기들은 Zulip 웹 앱을 확장합니다.", | ||||
| 	"Tip": "팁", | ||||
| 	"Toggle DevTools for Active Tab": "DevTools for Active Tab 토글", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "사이드 바 전환", | ||||
| 	"Toggle Tray Icon": "트레이 아이콘 토글", | ||||
| 	"Tools": "도구들", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "되돌리기", | ||||
| 	"Unhide": "나타내기", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "올리기", | ||||
| 	"Use system proxy settings (requires restart)": "시스템 프록시 설정 사용 (다시 시작해야 함)", | ||||
| 	"View": "보기", | ||||
| 	"View Shortcuts": "바로가기 보기", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "창", | ||||
| 	"Window Shortcuts": "창 바로 가기", | ||||
| 	"YES": "예", | ||||
| 	"Yes": "네", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "최대 3개 언어에 대한 맞춤법 검사기를 선택할수 있습니다.", | ||||
| 	"Zoom In": "확대", | ||||
| 	"Zoom Out": "축소", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Atšaukti", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Nustatymai", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Par Zulip", | ||||
| 	"Actual Size": "Patiesais izmērs", | ||||
| 	"Add Organization": "Pievienot Organizāciju", | ||||
| 	"Add a Zulip organization": "Pievienot Zulip organizāciju", | ||||
| 	"Add custom CSS": "Pievienot pielāgotu CSS", | ||||
| 	"AddServer": "Pievienot serveri", | ||||
| 	"Add to Dictionary": "Pievienot vārdnīcai", | ||||
| 	"Advanced": "Papildus", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Vienmēr palaist samazinātu", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Izskats", | ||||
| 	"Application Shortcuts": "Programmas īsinājumtaustiņi", | ||||
| 	"Are you sure you want to disconnect this organization?": "Vai tiešām vēlaties atvienoties no šīs organizācijas?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Pirms lejupielādes jautāt, kur saglabāt failus", | ||||
| 	"Auto hide Menu bar": "Automātiski slēpt izvēļņu joslu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Automātiski slēpt izvēļņu joslu (lai parādītu, nospiediet taustiņu Alt)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Atpakaļ", | ||||
| 	"Bounce dock on new private message": "Tirināt doka ikonu, kad saņemts jauns privāts ziņojums", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Mainīt", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Mainīt valodu var zem System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Pārbaudīt, vai ir pieejami atjauninājumi", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Pievienoties citai organizācijai", | ||||
| 	"Connected organizations": "Organizācijas, kurā esmu pievienojies", | ||||
| 	"Copy": "Kopēt", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Kopēt attēlu", | ||||
| 	"Copy Image URL": "Kopēt attēla URL", | ||||
| 	"Copy Link": "Kopēt saiti", | ||||
| 	"Copy Zulip URL": "Kopēt Zulip URL", | ||||
| 	"Create a new organization": "Izveidot jaunu organizāciju", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Izgriezt", | ||||
| 	"Default download location": "Noklusētā lejupielādes mape", | ||||
| 	"Delete": "Dzēst", | ||||
| 	"Desktop Notifications": "Darbvirsmas paziņojumi", | ||||
| 	"Desktop Settings": "Darbvirsmas iestatījumi", | ||||
| 	"Disconnect": "Atvienot", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Lejupielādēt programmas žurnālus", | ||||
| 	"Edit": "Rediģēt", | ||||
| 	"Edit Shortcuts": "Rediģēt īsinājumtaustiņi", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Iespējot kļūdu ziņošanu (nepieciešama restartēšana)", | ||||
| 	"Enable spellchecker (requires restart)": "Iespējot pareizrakstības pārbaudi (nepieciešama restartēšana)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Atiestatīt programmu", | ||||
| 	"Factory Reset Data": "Programmas datu atiestatīšana", | ||||
| 	"File": "Fails", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Funkcionalitāte", | ||||
| 	"General": "Vispārīgie", | ||||
| 	"Get beta updates": "Saņemt beta atjauninājumus", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Pārlādēt piespiedu", | ||||
| 	"Help": "Palīgs", | ||||
| 	"Help Center": "Palīdzības centrs", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "Vēsture", | ||||
| 	"History Shortcuts": "Vēstures īsinājumtaustiņi", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Tastatūras īsinājumtaustiņi", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Atteikties", | ||||
| 	"Log Out of Organization": "Atteikties no organizācijas", | ||||
| 	"Look Up": "Meklēt", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manuālā starpniekservera konfigurācija", | ||||
| 	"Minimize": "Minimizēt", | ||||
| 	"Mute all sounds from Zulip": "Izslēgt visas Zulip skaņas", | ||||
| 	"NO": "NĒ", | ||||
| 	"Network": "Tīkls", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Ieteikums netika atrasts", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "VAI", | ||||
| 	"On macOS, the OS spellchecker is used.": "Operētājsistēmā macOS tiek izmantota OS pareizrakstības pārbaude.", | ||||
| 	"Organization URL": "Organizācijas URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Starpniekserveris", | ||||
| 	"Proxy bypass rules": "Starpniekservera apiešanas noteikumi", | ||||
| 	"Proxy rules": "Starpniekservera noteikumi", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Aizvērt", | ||||
| 	"Quit Zulip": "Aizvērt Zulip programmu", | ||||
| 	"Quit when the window is closed": "Aizvērt programmu, kad logs tiek aizvērts", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Saglabāt", | ||||
| 	"Select All": "Atlasīt visu", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Pakalpojumi", | ||||
| 	"Settings": "Iestatījumi", | ||||
| 	"Shortcuts": "Īsinājumtaustiņi", | ||||
| 	"Show app icon in system tray": "Rādīt programmas ikonu sistēmas teknē", | ||||
| 	"Show app unread badge": "Rādīt programmas nelasīto emblēmu", | ||||
| 	"Show desktop notifications": "Rādīt darbvirsmas paziņojumus", | ||||
| 	"Show sidebar": "Rādīt sānjoslu", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Pareizrakstības pārbaudes valodas", | ||||
| 	"Start app at login": "Palaist programmu pie pieteikšanās", | ||||
| 	"Switch to Next Organization": "Pārslēgties uz nākamo organizāciju", | ||||
| 	"Switch to Previous Organization": "Pārslēgties uz iepriekšējo organizāciju", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Šie darbvirsmas programmu īsinājumtaustiņi paplašina Zulip tīmekļa lietotnes", | ||||
| 	"Tip": "Padoms", | ||||
| 	"Toggle DevTools for Active Tab": "Paslēpt/Parādīt Izstrādātāja rīkus aktīvājā cilnē", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Paslēpt/Parādīt sānjoslu", | ||||
| 	"Toggle Tray Icon": "Paslēpt/Parādīt teknes ikonu", | ||||
| 	"Tools": "Rīki", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Atsaukt", | ||||
| 	"Unhide": "Parādīt", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Augšupielādēt", | ||||
| 	"Use system proxy settings (requires restart)": "Izmantot sistēmas starpniekservera iestatījumus (nepieciešama restartēšana)", | ||||
| 	"View": "Skatīt", | ||||
| 	"View Shortcuts": "Skatīt īsinājumtaustiņi", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Logs", | ||||
| 	"Window Shortcuts": "Logu īsinājumtaustiņi", | ||||
| 	"YES": "JĀ", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Pareizrakstības pārbaudei varat atlasīt ne vairāk kā 3 valodas.", | ||||
| 	"Zoom In": "Pietuvināt", | ||||
| 	"Zoom Out": "Attālināt", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "സുലിപ്പിനെക്കുറിച്ച്", | ||||
| 	"Actual Size": "യഥാർത്ഥ വലുപ്പം", | ||||
| 	"Add Organization": "ഓർഗനൈസേഷൻ ചേർക്കുക", | ||||
| 	"Add a Zulip organization": "ഒരു സുലിപ്പ് ഓർഗനൈസേഷൻ ചേർക്കുക", | ||||
| 	"Add custom CSS": "ഇഷ്ടാനുസൃത CSS ചേർക്കുക", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "വിപുലമായത്", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "എല്ലായ്പ്പോഴും ചെറുതാക്കാൻ ആരംഭിക്കുക", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "രൂപം", | ||||
| 	"Application Shortcuts": "അപ്ലിക്കേഷൻ കുറുക്കുവഴികൾ", | ||||
| 	"Are you sure you want to disconnect this organization?": "ഈ ഓർഗനൈസേഷൻ വിച്ഛേദിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "യാന്ത്രികമായി മറയ്ക്കുക മെനു ബാർ", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "യാന്ത്രികമായി മറയ്ക്കുക മെനു ബാർ (പ്രദർശിപ്പിക്കുന്നതിന് Alt കീ അമർത്തുക)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "തിരികെ", | ||||
| 	"Bounce dock on new private message": "പുതിയ സ്വകാര്യ സന്ദേശത്തിൽ ഡോക്ക് ബൗൺസ് ചെയ്യുക", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "റദ്ദാക്കുക", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "മാറ്റുക", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "അപ്ഡേറ്റുകൾക്കായി പരിശോധിക്കുക", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "മറ്റൊരു ഓർഗനൈസേഷനിലേക്ക് കണക്റ്റുചെയ്യുക", | ||||
| 	"Connected organizations": "ബന്ധിപ്പിച്ച ഓർഗനൈസേഷനുകൾ", | ||||
| 	"Copy": "പകർത്തുക", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Zulip URL പകർത്തുക", | ||||
| 	"Create a new organization": "ഒരു പുതിയ ഓർഗനൈസേഷൻ സൃഷ്ടിക്കുക", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "മുറിക്കുക", | ||||
| 	"Default download location": "സ്ഥിരസ്ഥിതി ഡ download ൺലോഡ് സ്ഥാനം", | ||||
| 	"Delete": "ഇല്ലാതാക്കുക", | ||||
| 	"Desktop Notifications": "ഡെസ്ക്ടോപ്പ് അറിയിപ്പുകൾ", | ||||
| 	"Desktop Settings": "ഡെസ്ക്ടോപ്പ് ക്രമീകരണങ്ങൾ", | ||||
| 	"Disconnect": "വിച്ഛേദിക്കുക", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "അപ്ലിക്കേഷൻ ലോഗുകൾ ഡൗൺലോഡുചെയ്യുക", | ||||
| 	"Edit": "എഡിറ്റുചെയ്യുക", | ||||
| 	"Edit Shortcuts": "കുറുക്കുവഴികൾ എഡിറ്റുചെയ്യുക", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "പിശക് റിപ്പോർട്ടിംഗ് പ്രാപ്തമാക്കുക (പുനരാരംഭിക്കേണ്ടതുണ്ട്)", | ||||
| 	"Enable spellchecker (requires restart)": "അക്ഷരത്തെറ്റ് പരിശോധന പ്രാപ്തമാക്കുക (പുനരാരംഭിക്കേണ്ടതുണ്ട്)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "ഫാക്ടറി പുന .സജ്ജമാക്കുക", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "ഫയൽ", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "പ്രവർത്തനം", | ||||
| 	"General": "ജനറൽ", | ||||
| 	"Get beta updates": "ബീറ്റ അപ്ഡേറ്റുകൾ നേടുക", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "ഹാർഡ് റീലോഡ്", | ||||
| 	"Help": "സഹായിക്കൂ", | ||||
| 	"Help Center": "സഹായകേന്ദ്രം", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "ചരിത്രം", | ||||
| 	"History Shortcuts": "ചരിത്രം കുറുക്കുവഴികൾ", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "കീബോർഡ് കുറുക്കുവഴികൾ", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "ലോഗ് .ട്ട് ചെയ്യുക", | ||||
| 	"Log Out of Organization": "ഓർഗനൈസേഷനിൽ നിന്ന് പുറത്തുകടക്കുക", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "സ്വമേധയാലുള്ള പ്രോക്സി കോൺഫിഗറേഷൻ", | ||||
| 	"Minimize": "ചെറുതാക്കുക", | ||||
| 	"Mute all sounds from Zulip": "സുലിപ്പിൽ നിന്നുള്ള എല്ലാ ശബ്ദങ്ങളും നിശബ്ദമാക്കുക", | ||||
| 	"NO": "ഇല്ല", | ||||
| 	"Network": "നെറ്റ്വർക്ക്", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "ഇല്ല", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "അഥവാ", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "ഓർഗനൈസേഷൻ URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "പ്രോക്സി", | ||||
| 	"Proxy bypass rules": "പ്രോക്സി ബൈപാസ് നിയമങ്ങൾ", | ||||
| 	"Proxy rules": "പ്രോക്സി നിയമങ്ങൾ", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "ഉപേക്ഷിക്കുക", | ||||
| 	"Quit Zulip": "സുലിപ്പ് ഉപേക്ഷിക്കുക", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "രക്ഷിക്കും", | ||||
| 	"Select All": "എല്ലാം തിരഞ്ഞെടുക്കുക", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "ക്രമീകരണങ്ങൾ", | ||||
| 	"Shortcuts": "കുറുക്കുവഴികൾ", | ||||
| 	"Show app icon in system tray": "സിസ്റ്റം ട്രേയിൽ അപ്ലിക്കേഷൻ ഐക്കൺ കാണിക്കുക", | ||||
| 	"Show app unread badge": "അപ്ലിക്കേഷൻ വായിക്കാത്ത ബാഡ്ജ് കാണിക്കുക", | ||||
| 	"Show desktop notifications": "ഡെസ്ക്ടോപ്പ് അറിയിപ്പുകൾ കാണിക്കുക", | ||||
| 	"Show sidebar": "സൈഡ്ബാർ കാണിക്കുക", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "ലോഗിൻ ചെയ്യുമ്പോൾ അപ്ലിക്കേഷൻ ആരംഭിക്കുക", | ||||
| 	"Switch to Next Organization": "അടുത്ത ഓർഗനൈസേഷനിലേക്ക് മാറുക", | ||||
| 	"Switch to Previous Organization": "മുമ്പത്തെ ഓർഗനൈസേഷനിലേക്ക് മാറുക", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "ഈ ഡെസ്ക്ടോപ്പ് അപ്ലിക്കേഷൻ കുറുക്കുവഴികൾ സുലിപ് വെബ്അപ്പിനെ വിപുലീകരിക്കുന്നു", | ||||
| 	"Tip": "നുറുങ്ങ്", | ||||
| 	"Toggle DevTools for Active Tab": "സജീവ ടാബിനായി DevTools ടോഗിൾ ചെയ്യുക", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "സൈഡ്ബാർ ടോഗിൾ ചെയ്യുക", | ||||
| 	"Toggle Tray Icon": "ട്രേ ഐക്കൺ ടോഗിൾ ചെയ്യുക", | ||||
| 	"Tools": "ഉപകരണങ്ങൾ", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "പഴയപടിയാക്കുക", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "അപ്ലോഡുചെയ്യുക", | ||||
| 	"Use system proxy settings (requires restart)": "സിസ്റ്റം പ്രോക്സി ക്രമീകരണങ്ങൾ ഉപയോഗിക്കുക (പുനരാരംഭിക്കേണ്ടതുണ്ട്)", | ||||
| 	"View": "കാണുക", | ||||
| 	"View Shortcuts": "കുറുക്കുവഴികൾ കാണുക", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "ജാലകം", | ||||
| 	"Window Shortcuts": "വിൻഡോ കുറുക്കുവഴികൾ", | ||||
| 	"YES": "അതെ", | ||||
| 	"Yes": "ശരി", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "വലുതാക്കുക", | ||||
| 	"Zoom Out": "സൂം .ട്ട് ചെയ്യുക", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Тухай", | ||||
| 	"Actual Size": "Багтаамж", | ||||
| 	"Add Organization": "Бүлэг нэмэх", | ||||
| 	"Add a Zulip organization": "Чат бүлэг нэмэх", | ||||
| 	"Add custom CSS": "Нэмэлт CSS нэмэх", | ||||
| 	"AddServer": "Сервер нэмэх", | ||||
| 	"Add to Dictionary": "Үгийн санд нэмэх", | ||||
| 	"Advanced": "Нарийвчилсан", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Minimized байдлаар эхлэнэ", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Харагдах байдал", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Та энэ бүлгээс гарахдаа итгэлтэй байна уу?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Файл хаана татагдахыг асуух", | ||||
| 	"Auto hide Menu bar": "Цэс автоматаар нуух", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Цэс автоматаар нуух ( Alt товч даран харна уу)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Буцах", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Цуцлах", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Өөрчлөа", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Хэл солих бол System preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Шинэчлэлт шалгах", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Өөр бүлэгт Холбогдох", | ||||
| 	"Connected organizations": "Холбогдсон бүлгүүд", | ||||
| 	"Copy": "Хуулах", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Зураг хуулах", | ||||
| 	"Copy Image URL": "Зургийн холбоос хуулах", | ||||
| 	"Copy Link": "Холбоос хуулах", | ||||
| 	"Copy Zulip URL": "Оффис чатын холбоос хуулах", | ||||
| 	"Create a new organization": "Шинэ бүлэг үүсгэх", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Бүр мөсөн хуулах", | ||||
| 	"Default download location": "Үндсэн татах байршил", | ||||
| 	"Delete": "Устгах", | ||||
| 	"Desktop Notifications": "Desktop Мэдэгдэл", | ||||
| 	"Desktop Settings": "Desktop тохиргоо", | ||||
| 	"Disconnect": "Холболт салгах", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Лог", | ||||
| 	"Edit": "Засах", | ||||
| 	"Edit Shortcuts": "Холбоос засах", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Алдаа мэдэгдэгч идэвхижүүлэх (Унтрааж асаах шаарлагатай)", | ||||
| 	"Enable spellchecker (requires restart)": "Дүрэм шалгагч идэвхижүүлэх (Унтрааж асаах шаарлагатай)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Бүх датаг цэвэрлэж дахин эхлүүлэх", | ||||
| 	"Factory Reset Data": "Бүх датаг цэвэрлэж дахин эхлүүлэх", | ||||
| 	"File": "файл", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Үйлдэлүүд", | ||||
| 	"General": "Үндсэн", | ||||
| 	"Get beta updates": "Бэта шинэчлэлт авах", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Дахин ачааллуулах", | ||||
| 	"Help": "Тусламж", | ||||
| 	"Help Center": "Тусламжийн хэсэн", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "Ашиглалтийн түүх", | ||||
| 	"History Shortcuts": "Холбоосын түүх", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard холбоос", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Гарах", | ||||
| 	"Log Out of Organization": "Бүлгээс гарах", | ||||
| 	"Look Up": "Харах", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Бүх дууг хаах", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Сүлжээ", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Санал болголт олдсонгүй", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Мэдэгдэлийн тохиргоо", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": ".", | ||||
| 	"Organization URL": "Бүлгийн холбоос", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass дүрмүүд", | ||||
| 	"Proxy rules": "Proxy дүрмүүд", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Хаах", | ||||
| 	"Quit Zulip": "Чатыг хаах", | ||||
| 	"Quit when the window is closed": "Цонх хаагдахад гарах", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Хадгалах", | ||||
| 	"Select All": "Бүгдийн идэвхижүүлэх", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Үйлчилгээ", | ||||
| 	"Settings": "Тохиргоо", | ||||
| 	"Shortcuts": "Холбоос", | ||||
| 	"Show app icon in system tray": "Жижиг icon харуулах", | ||||
| 	"Show app unread badge": "Уншаагүй мэдэгдэл харуулах", | ||||
| 	"Show desktop notifications": "Мэдэгдэл харуулах", | ||||
| 	"Show sidebar": "Хажуугын цэсийг харуулах", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Дүрэм шалгах хэлүүд", | ||||
| 	"Start app at login": "Нэвтрэхэд ачааллуулах", | ||||
| 	"Switch to Next Organization": "Дараагийн бүлэг", | ||||
| 	"Switch to Previous Organization": "Өмнөх бүлэг", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Browser-оор холбогдох холбоос", | ||||
| 	"Tip": "зөвлөгөө", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Үйлдэлээ буцаах", | ||||
| 	"Unhide": "Нуухаа болих", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Файл хуулах", | ||||
| 	"Use system proxy settings (requires restart)": "Proxy систем ашиглах (Унтрааж асаах шаарлагатай)", | ||||
| 	"View": "Харах", | ||||
| 	"View Shortcuts": "Холбоос харах", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Хамгийн ихдээ 3 хэл дүрэм шалгахад ашиглана.", | ||||
| 	"Zoom In": "Сунгах", | ||||
| 	"Zoom Out": "Жижигрүүлэх", | ||||
|   | ||||
| @@ -1,134 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Custom Certificates": "Add Custom Certificates", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here": "All the connected organizations will appear here", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Certificate file": "Certificate file", | ||||
| 	"Change": "Change", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop App Settings": "Desktop App Settings", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"OR": "OR", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show App Logs": "Show App Logs", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show downloaded files in file manager": "Show downloaded files in file manager", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"This will delete all application data including all added accounts and preferences": "This will delete all application data including all added accounts and preferences", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"Zulip Help": "Zulip Help", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Services": "Services", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"Reset the application, thus deleting all the connected organizations, accounts, and certificates.": "Reset the application, thus deleting all the connected organizations, accounts, and certificates.", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Look Up": "Look Up" | ||||
| } | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "Over", | ||||
| 	"About Zulip": "Over Zulip", | ||||
| 	"Actual Size": "Ware grootte", | ||||
| 	"Add Organization": "Voeg organisatie toe", | ||||
| 	"Add a Zulip organization": "Voeg een Zulip-organisatie toe", | ||||
| 	"Add custom CSS": "Voeg aangepaste CSS toe", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "gevorderd", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "Alle verbonden organisaties verschijnen hier.", | ||||
| 	"Always start minimized": "Begin altijd geminimaliseerd", | ||||
| 	"App Updates": "App-updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Verschijning", | ||||
| 	"Application Shortcuts": "Applicatiesnelkoppelingen", | ||||
| 	"Are you sure you want to disconnect this organization?": "Weet je zeker dat je deze organisatie wilt ontkoppelen?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Menubalk automatisch verbergen", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Menubalk automatisch verbergen (druk op de Alt-toets om weer te geven)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Terug", | ||||
| 	"Bounce dock on new private message": "Bounce dock op nieuw privébericht", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Annuleren", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Verandering", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Controleer op updates", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "Maak verbinding met een andere organisatie", | ||||
| 	"Connected organizations": "Verbonden organisaties", | ||||
| 	"Copy": "Kopiëren", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Kopieer Zulip-URL", | ||||
| 	"Create a new organization": "Maak een nieuwe organisatie", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Besnoeiing", | ||||
| 	"Default download location": "Standaard downloadlocatie", | ||||
| 	"Delete": "Verwijder", | ||||
| 	"Desktop Notifications": "Bureaublad notificaties", | ||||
| 	"Desktop Settings": "Desktop-instellingen", | ||||
| 	"Disconnect": "Loskoppelen", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Applogs downloaden", | ||||
| 	"Edit": "Bewerk", | ||||
| 	"Edit Shortcuts": "Bewerk snelkoppelingen", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "Emoji's & Symbolen", | ||||
| 	"Enable auto updates": "Schakel automatische updates in", | ||||
| 	"Enable error reporting (requires restart)": "Foutrapportage inschakelen (opnieuw opstarten vereist)", | ||||
| 	"Enable spellchecker (requires restart)": "Spellingcontrole inschakelen (opnieuw opstarten vereist)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Volledig scherm gebruiken", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Fabrieksinstellingen", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "het dossier", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "functionaliteit", | ||||
| 	"General": "Algemeen", | ||||
| 	"Get beta updates": "Ontvang bèta-updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Harde herladen", | ||||
| 	"Help": "Helpen", | ||||
| 	"Help Center": "Helpcentrum", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Zulip": "Zulip verbergen", | ||||
| 	"History": "Geschiedenis", | ||||
| 	"History Shortcuts": "Geschiedenis Sneltoetsen", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Toetsenbord sneltoetsen", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Uitloggen", | ||||
| 	"Log Out of Organization": "Uitloggen van organisatie", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Handmatige proxyconfiguratie", | ||||
| 	"Minimize": "verkleinen", | ||||
| 	"Mute all sounds from Zulip": "Demp alle geluiden van Zulip", | ||||
| 	"NO": "NEE", | ||||
| 	"Network": "Netwerk", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Netwerk- en Proxyinstellingen", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "Nee", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "Oké", | ||||
| 	"OR": "OF", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organisatie-URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "volmacht", | ||||
| 	"Proxy bypass rules": "Proxy-bypassregels", | ||||
| 	"Proxy rules": "Proxy-regels", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "ophouden", | ||||
| 	"Quit Zulip": "Sluit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -85,21 +118,27 @@ | ||||
| 	"Release Notes": "Releaseopmerkingen", | ||||
| 	"Reload": "vernieuwen", | ||||
| 	"Report an Issue": "Een probleem melden", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset App Settings": "Instellingen resetten", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "De applicatie resetten en daarmee alle verbonden organisaties en accounts verwijderen.", | ||||
| 	"Save": "Opslaan", | ||||
| 	"Select All": "Selecteer alles", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "instellingen", | ||||
| 	"Shortcuts": "shortcuts", | ||||
| 	"Show app icon in system tray": "App-pictogram weergeven in systeemvak", | ||||
| 	"Show app unread badge": "App ongelezen badge weergeven", | ||||
| 	"Show desktop notifications": "Toon bureaubladmeldingen", | ||||
| 	"Show sidebar": "Toon zijbalk", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start de app bij inloggen", | ||||
| 	"Switch to Next Organization": "Schakel over naar volgende organisatie", | ||||
| 	"Switch to Previous Organization": "Schakel over naar vorige organisatie", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Deze sneltoetsen voor bureaubladapp breiden de Zulip-webapp's uit", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "DevTools voor actieve tabblad omschakelen", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Zijbalk verschuiven", | ||||
| 	"Toggle Tray Icon": "Pictogram Lade wisselen", | ||||
| 	"Tools": "Hulpmiddelen", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "ongedaan maken", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Uploaden", | ||||
| 	"Use system proxy settings (requires restart)": "Systeem proxy-instellingen gebruiken (opnieuw opstarten vereist)", | ||||
| 	"View": "Uitzicht", | ||||
| 	"View Shortcuts": "Bekijk snelkoppelingen", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Venster", | ||||
| 	"Window Shortcuts": "Venster snelkoppelingen", | ||||
| 	"YES": "JA", | ||||
| 	"Yes": "Ja", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "In zoomen", | ||||
| 	"Zoom Out": "Uitzoomen", | ||||
| 	"keyboard shortcuts": "Toetsenbord sneltoetsen", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} gebruikt een oude versie {{{version}}} van Zulip Server. Het kan zijn dat deze applicatie niet goed zal werken met deze server." | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,127 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| } | ||||
| @@ -1,127 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| } | ||||
| @@ -1,74 +1,106 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "Nowe wydanie {{{version}}} zostało pobrane.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "Nowe wydanie Zulip {{{version}}} jest dostępne.", | ||||
| 	"About": "Informacje", | ||||
| 	"About Zulip": "O Zulipie", | ||||
| 	"Actual Size": "Rzeczywisty rozmiar", | ||||
| 	"Add Organization": "Dodaj organizację", | ||||
| 	"Add a Zulip organization": "Dodaj organizację Zulip", | ||||
| 	"Add custom CSS": "Dodaj niestandardowy CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "zaawansowane", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Zaawansowane", | ||||
| 	"All the connected organizations will appear here.": "Wszystkie podłączone organizację pojawią się tutaj.", | ||||
| 	"Always start minimized": "Zawsze zaczynaj zminimalizowany", | ||||
| 	"App Updates": "Aktualizacje aplikacji", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"App language (requires restart)": "Język aplikacji (wymaga ponownego uruchomienia)", | ||||
| 	"Appearance": "Wygląd", | ||||
| 	"Application Shortcuts": "Skróty do aplikacji", | ||||
| 	"Are you sure you want to disconnect this organization?": "Czy na pewno chcesz odłączyć tę organizację?", | ||||
| 	"Are you sure?": "Czy na pewno?", | ||||
| 	"Ask where to save files before downloading": "Zapytaj przed pobraniem gdzie zachować pliki", | ||||
| 	"Auto hide Menu bar": "Automatyczne ukrywanie paska menu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Automatyczne ukrywanie paska menu (naciśnij klawisz Alt, aby wyświetlić)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Dostępne w ramach {{{link}}}licencji Apache 2.0{{{endLink}}}", | ||||
| 	"Back": "Wstecz", | ||||
| 	"Bounce dock on new private message": "Dok odbijania na nowej prywatnej wiadomości", | ||||
| 	"Bounce dock on new private message": "Dok odbijania na nową wiadomość bezpośrednią", | ||||
| 	"CSS file": "Plik CSS", | ||||
| 	"Cancel": "Anuluj", | ||||
| 	"Certificate error": "Błąd certyfikatu", | ||||
| 	"Change": "Zmiana", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Zmień język poprzez Ustawienia systemu → Klawiatura → Tekst → Pisownia.", | ||||
| 	"Check for Updates": "Sprawdź aktualizacje", | ||||
| 	"Close": "Zamknij", | ||||
| 	"Connect": "Połączyć", | ||||
| 	"Connect": "Połącz", | ||||
| 	"Connect to another organization": "Połącz się z inną organizacją", | ||||
| 	"Connected organizations": "Połączone organizacje", | ||||
| 	"Copy": "Kopiuj", | ||||
| 	"Copy Email Address": "Skopiuj adres email", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Skopiuj adres URL Zulip", | ||||
| 	"Create a new organization": "Utwórz nową organizację", | ||||
| 	"Custom CSS file deleted": "Skasowano plik z własnym CSS", | ||||
| 	"Cut": "Wytnij", | ||||
| 	"Default download location": "Domyślna lokalizacja pobierania", | ||||
| 	"Delete": "Usuń", | ||||
| 	"Desktop Notifications": "Powiadomienia na pulpicie", | ||||
| 	"Desktop Settings": "Ustawienia pulpitu", | ||||
| 	"Disconnect": "Rozłącz", | ||||
| 	"Disconnect organization": "Odłącz organizację", | ||||
| 	"Do Not Disturb": "Nie przeszkadzać", | ||||
| 	"Download App Logs": "Pobierz logi aplikacji", | ||||
| 	"Edit": "Edytuj", | ||||
| 	"Edit Shortcuts": "Edytuj skróty", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "Emotikonki i Symbole", | ||||
| 	"Enable auto updates": "Włącz automatyczne aktualizacje", | ||||
| 	"Enable error reporting (requires restart)": "Włącz raportowanie błędów (wymaga ponownego uruchomienia)", | ||||
| 	"Enable spellchecker (requires restart)": "Włącz sprawdzanie pisowni (wymaga ponownego uruchomienia)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Włącz pełny ekran", | ||||
| 	"Error saving new organization": "Błąd zapisu nowej organizacji", | ||||
| 	"Error saving update notifications": "Błąd zapisu powiadomień o aktualizacjach", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Błąd: {{{error}}}\n\nNajnowsze wydanie Zulip Desktop jest dostępne:\n{{{link}}}\nObecne wydanie: {{{version}}}", | ||||
| 	"Factory Reset": "przywrócenie ustawień fabrycznych", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "Plik", | ||||
| 	"Find accounts": "Znajdź konta", | ||||
| 	"Find accounts by email": "Znajdź konta po adresach email", | ||||
| 	"Flash taskbar on new message": "Błyskaj w pasku zadań przy nowej wiadomości", | ||||
| 	"Flash taskbar on new message": "Miganie w pasku zadań przy nowej wiadomości", | ||||
| 	"Forward": "Naprzód", | ||||
| 	"Functionality": "Funkcjonalność", | ||||
| 	"General": "Ogólne", | ||||
| 	"Get beta updates": "Pobierz aktualizacje beta", | ||||
| 	"Go Back": "Wstecz", | ||||
| 	"Hard Reload": "Twarde przeładowanie", | ||||
| 	"Help": "Pomoc", | ||||
| 	"Help Center": "Centrum pomocy", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Zulip": "Ukryj Zulip", | ||||
| 	"History": "Historia", | ||||
| 	"History Shortcuts": "Skróty historii", | ||||
| 	"Install Later": "Zainstaluj później", | ||||
| 	"Install and Relaunch": "Zainstaluj i zrestartuj", | ||||
| 	"It will be installed the next time you restart the application.": "Instalacja odbędzie się kiedy uruchomisz ponownie aplikację.", | ||||
| 	"Keyboard Shortcuts": "Skróty klawiszowe", | ||||
| 	"Later": "Później", | ||||
| 	"Loading": "Ładowanie", | ||||
| 	"Log Out": "Wyloguj", | ||||
| 	"Log Out of Organization": "Wyloguj się z organizacji", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Utrzymywane przez {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Pobierz ręcznie", | ||||
| 	"Manual proxy configuration": "Ręczna konfiguracja proxy", | ||||
| 	"Minimize": "Zminimalizuj", | ||||
| 	"Mute all sounds from Zulip": "Wycisz wszystkie dźwięki z Zulipa", | ||||
| 	"NO": "NIE", | ||||
| 	"Network": "Sieć", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Ustawienia sieci i proxy", | ||||
| 	"New servers added. Reload app now?": "Dodano nowe serwery. Przełądować aplikację?", | ||||
| 	"No": "Nie", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "Brak dostępnych aktualizacji.", | ||||
| 	"Notification settings": "Ustawienia powiadomień", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "LUB", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Adres URL organizacji", | ||||
| @@ -78,28 +110,35 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Zasady omijania proxy", | ||||
| 	"Proxy rules": "Reguły proxy", | ||||
| 	"Proxy settings saved.": "Zapisano ustawienia proxy.", | ||||
| 	"Quit": "Wyjdź", | ||||
| 	"Quit Zulip": "Wyjdź z Zulipa", | ||||
| 	"Quit Zulip": "Zakończ Zulipa", | ||||
| 	"Quit when the window is closed": "Wyłącz przy zamykaniu okna", | ||||
| 	"Redo": "Ponów", | ||||
| 	"Release Notes": "Informacje o wydaniu", | ||||
| 	"Reload": "Przeładuj", | ||||
| 	"Report an Issue": "Zgłoś problem", | ||||
| 	"Reset App Settings": "Resetuj ustawienia aplikacji", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset aplikacji, powodujący usunięcie połączonych organizacji oraz kont.", | ||||
| 	"Save": "Zapisz", | ||||
| 	"Select All": "Zaznacz wszystko", | ||||
| 	"Services": "Services", | ||||
| 	"Select Download Location": "Gdzie zapisać pliki", | ||||
| 	"Select file": "Wybierz plik", | ||||
| 	"Services": "Usługi", | ||||
| 	"Settings": "Ustawienia", | ||||
| 	"Shortcuts": "Skróty", | ||||
| 	"Show app icon in system tray": "Pokaż ikonę aplikacji w zasobniku systemowym", | ||||
| 	"Show app unread badge": "Pokaż nieprzeczytane na ikonie aplikacji", | ||||
| 	"Show desktop notifications": "Pokaż powiadomienia na pulpicie", | ||||
| 	"Show sidebar": "Pokaż pasek boczny", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Języki sprawdzania pisowni", | ||||
| 	"Start app at login": "Uruchom aplikację przy logowaniu", | ||||
| 	"Switch to Next Organization": "Przełącz na następną organizację", | ||||
| 	"Switch to Previous Organization": "Przełącz na poprzednią organizację", | ||||
| 	"The custom CSS previously set is deleted.": "Wcześniej ustawiony własny CSS jest skasowany.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "Certyfikat serwera okazał się wadliwy {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "Aktualizacja zostanie pobrana w tle. Zostaniesz powiadomiony, że można przejść do instalacji.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "Błąd przy zapisie nowej organizacji. Spróbuj dodać inne organizacje.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Poniższe skróty są dostępne tylko w kliencie Zulip", | ||||
| 	"Tip": "Wskazówka", | ||||
| 	"Toggle DevTools for Active Tab": "Włącz/wyłącz DevTools w aktywnej zakładce", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Przełącz pasek boczny", | ||||
| 	"Toggle Tray Icon": "Przełącz ikonę tacy", | ||||
| 	"Tools": "Narzędzia", | ||||
| 	"Unable to check for updates.": "Nie udało się sprawdzić aktualizacji.", | ||||
| 	"Unable to download the update.": "Nie udało się pobrać aktualizacji.", | ||||
| 	"Undo": "Cofnij", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Przekazać plik", | ||||
| 	"Use system proxy settings (requires restart)": "Użyj ustawień systemowych proxy (wymaga restartu aplikacji)", | ||||
| 	"Unhide": "Odkryj", | ||||
| 	"Unknown error": "Nieznany błąd", | ||||
| 	"Upload": "Prześlij plik", | ||||
| 	"Use system proxy settings (requires restart)": "Użyj ustawień systemowych proxy (wymaga ponownego uruchomienia)", | ||||
| 	"View": "Widok", | ||||
| 	"View Shortcuts": "Wyświetl skróty", | ||||
| 	"We encountered an error while saving the update notifications.": "Napotkano błąd przy zapisie powiadomień o aktualizacjach.", | ||||
| 	"Window": "Okno", | ||||
| 	"Window Shortcuts": "Skróty do okien", | ||||
| 	"YES": "TAK", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Yes": "Tak", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "Używasz najnowszego wydania Zulip Desktop.\nWydanie: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Możesz wybrać maksymalnie 3 języki do sprawdzania pisowni.", | ||||
| 	"Zoom In": "Powiększ", | ||||
| 	"Zoom Out": "Pomniejsz", | ||||
| 	"keyboard shortcuts": "Skróty klawiszowe", | ||||
| 	"script": "skrypt", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} działanie na nieaktualnej wersji serwera Zulip {{{version}}}. Możliwe nieprawidłowe działanie w tej aplikacji." | ||||
| } | ||||
|   | ||||
| @@ -1,74 +1,106 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "Sobre", | ||||
| 	"About Zulip": "Sobre o Zulip", | ||||
| 	"Actual Size": "Tamanho atual", | ||||
| 	"Add Organization": "Adicionar Organização", | ||||
| 	"Add a Zulip organization": "Adicione uma organização Zulip", | ||||
| 	"Add custom CSS": "Adicionar CSS personalizado", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Adicionar ao Dicionário", | ||||
| 	"Advanced": "Avançado", | ||||
| 	"All the connected organizations will appear here.": "Todas as organizações conectadas aparecerão aqui.", | ||||
| 	"Always start minimized": "Começar sempre minimizado", | ||||
| 	"Always start minimized": "Iniciar sempre minimizado", | ||||
| 	"App Updates": "Atualizações de aplicativos", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"App language (requires restart)": "Idioma do Aplicativo  (requer reinicialização)", | ||||
| 	"Appearance": "Aparência", | ||||
| 	"Application Shortcuts": "Atalhos de aplicativos", | ||||
| 	"Application Shortcuts": "Atalhos do Aplicativo", | ||||
| 	"Are you sure you want to disconnect this organization?": "Tem certeza de que deseja desconectar essa organização?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto ocultar barra de Menu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Ocultar barra de menu automaticamente (pressione a tecla Alt para exibir)", | ||||
| 	"Back": "De volta", | ||||
| 	"Bounce dock on new private message": "Bounce doca em nova mensagem privada", | ||||
| 	"Change": "mudança", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Verificar se há atualizações", | ||||
| 	"Are you sure?": "Você tem certeza?", | ||||
| 	"Ask where to save files before downloading": "Perguntar onde salvar arquivos antes de transferir", | ||||
| 	"Auto hide Menu bar": "Ocultar Automaticamente a barra de Menu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Ocultar Automaticamente a barra de Menu (pressione a tecla 'Alt' para exibir)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Voltar", | ||||
| 	"Bounce dock on new private message": "Balançar o Dock para uma nova mensagem privada", | ||||
| 	"CSS file": "Arquivo CSS", | ||||
| 	"Cancel": "Cancelar", | ||||
| 	"Certificate error": "Erro de Certificado", | ||||
| 	"Change": "Mudar", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Mude a linguagem do Sistema em Preferências do Sistema → Teclado → Texto → Ortografia.", | ||||
| 	"Check for Updates": "Procurar por atualizações", | ||||
| 	"Close": "Fechar", | ||||
| 	"Connect": "Conectar", | ||||
| 	"Connect to another organization": "Conecte-se a outra organização", | ||||
| 	"Connected organizations": "Organizações conectadas", | ||||
| 	"Copy": "Copiar", | ||||
| 	"Copy Email Address": "Copiar Endereço de E-Mail", | ||||
| 	"Copy Image": "Copiar Imagem", | ||||
| 	"Copy Image URL": "Copiar URL da Imagem", | ||||
| 	"Copy Link": "Copiar Link", | ||||
| 	"Copy Zulip URL": "Copiar URL do Zulip", | ||||
| 	"Create a new organization": "Crie uma nova organização", | ||||
| 	"Custom CSS file deleted": "Arquivo CSS personalizado excluído", | ||||
| 	"Cut": "Cortar", | ||||
| 	"Default download location": "Local de download padrão", | ||||
| 	"Default download location": "Local de Download padrão", | ||||
| 	"Delete": "Excluir", | ||||
| 	"Desktop Notifications": "Notificações da área de trabalho", | ||||
| 	"Desktop Settings": "Configurações da área de trabalho", | ||||
| 	"Disconnect": "desconectar", | ||||
| 	"Download App Logs": "Download de registros de aplicativos", | ||||
| 	"Disconnect": "Desconectar", | ||||
| 	"Disconnect organization": "Desconectar Organização", | ||||
| 	"Do Not Disturb": "Não Perturbe", | ||||
| 	"Download App Logs": "Download de Logs de Aplicativos", | ||||
| 	"Edit": "Editar", | ||||
| 	"Edit Shortcuts": "Editar atalhos", | ||||
| 	"Emoji & Symbols": "Emojis e Símbolos", | ||||
| 	"Emoji & Symbols": "Símbolos e Emojis", | ||||
| 	"Enable auto updates": "Ativar atualizações automáticas", | ||||
| 	"Enable error reporting (requires restart)": "Ativar relatório de erros (requer reinicialização)", | ||||
| 	"Enable spellchecker (requires restart)": "Ativar verificação ortográfica (requer reinicialização)", | ||||
| 	"Enter Full Screen": "Abrir em Tela Cheia", | ||||
| 	"Factory Reset": "Restauração de fábrica", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"Error saving new organization": "Erro ao salvar a nova organização", | ||||
| 	"Error saving update notifications": "Erro ao salvar as alterações de Notificações", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Restaurar Configurações de Fábrica", | ||||
| 	"Factory Reset Data": "Restaurar Dados de Fábrica", | ||||
| 	"File": "Arquivo", | ||||
| 	"Find accounts": "Encontrar contas", | ||||
| 	"Find accounts by email": "Encontre contas por email", | ||||
| 	"Find accounts by email": "Encontre contas por E-mail", | ||||
| 	"Flash taskbar on new message": "Barra de tarefas em Flash na nova mensagem", | ||||
| 	"Forward": "frente", | ||||
| 	"Forward": "Frente", | ||||
| 	"Functionality": "Funcionalidade", | ||||
| 	"General": "Geral", | ||||
| 	"Get beta updates": "Receba atualizações beta", | ||||
| 	"Go Back": "Voltar", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Socorro", | ||||
| 	"Help": "Ajuda", | ||||
| 	"Help Center": "Centro de ajuda", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Ocultar o Zulip", | ||||
| 	"History": "História", | ||||
| 	"History Shortcuts": "Atalhos da História", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Atalhos do teclado", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Sair", | ||||
| 	"Log Out of Organization": "Sair da organização", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Configuração manual de proxy", | ||||
| 	"Minimize": "Minimizar", | ||||
| 	"Mute all sounds from Zulip": "Silencie todos os sons de Zulip", | ||||
| 	"NO": "NÃO", | ||||
| 	"Network": "Rede", | ||||
| 	"Network and Proxy Settings": "Configurações de Rede e Proxy", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "Não", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Configurações de notificações", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OU", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "URL da organização", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Procuração", | ||||
| 	"Proxy bypass rules": "Regras de desvio de proxy", | ||||
| 	"Proxy rules": "Regras de proxy", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Sair", | ||||
| 	"Quit Zulip": "Saia de Zulip", | ||||
| 	"Quit when the window is closed": "Sair quando fechar a janela", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Restaurar a aplicação, dessa forma removendo todas as e organizações e contas conectadas.", | ||||
| 	"Save": "Salve ", | ||||
| 	"Select All": "Selecionar tudo", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Configurações", | ||||
| 	"Shortcuts": "Atalhos", | ||||
| 	"Show app icon in system tray": "Mostrar ícone do aplicativo na bandeja do sistema", | ||||
| 	"Show app unread badge": "Mostrar crachá não lido do aplicativo", | ||||
| 	"Show desktop notifications": "Mostrar notificações da área de trabalho", | ||||
| 	"Show sidebar": "Mostrar barra lateral", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Inicie o aplicativo no login", | ||||
| 	"Switch to Next Organization": "Mudar para a próxima organização", | ||||
| 	"Switch to Previous Organization": "Mudar para a organização anterior", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Esses atalhos para aplicativos de desktop estendem o aplicativo da web do Zulip", | ||||
| 	"Tip": "Gorjeta", | ||||
| 	"Toggle DevTools for Active Tab": "Alternar DevTools para a guia ativa", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Alternar Barra Lateral", | ||||
| 	"Toggle Tray Icon": "Alternar ícone da bandeja", | ||||
| 	"Tools": "Ferramentas", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Desfazer", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Envio", | ||||
| 	"Use system proxy settings (requires restart)": "Use as configurações de proxy do sistema (requer reinicialização)", | ||||
| 	"View": "Visão", | ||||
| 	"View Shortcuts": "Exibir atalhos", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Janela", | ||||
| 	"Window Shortcuts": "Atalhos de janela", | ||||
| 	"YES": "SIM", | ||||
| 	"Yes": "Sim", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Mais Zoom", | ||||
| 	"Zoom Out": "Reduzir o zoom", | ||||
|   | ||||
| @@ -1,127 +1,171 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Acerca do Zulip", | ||||
| 	"Actual Size": "Tamanho Original", | ||||
| 	"Add Organization": "Adicionar Organização", | ||||
| 	"Add a Zulip organization": "Adicionar uma organização Zulip", | ||||
| 	"Add custom CSS": "Adicionar CSS próprio", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Actual Size": "Tamanho original", | ||||
| 	"Add Organization": "Adicionar organização", | ||||
| 	"Add a Zulip organization": "Adicionar organização Zulip", | ||||
| 	"Add custom CSS": "Adicionar CSS personalizado", | ||||
| 	"Add to Dictionary": "Adicionar ao Dicionário", | ||||
| 	"Advanced": "Avançadas", | ||||
| 	"All the connected organizations will appear here.": "Todas as organizações conectadas aparecerão aqui.", | ||||
| 	"Always start minimized": "Iniciar minimizado", | ||||
| 	"App Updates": "Atualizações da App", | ||||
| 	"App language (requires restart)": "Idioma da App (requer reinício)", | ||||
| 	"App Updates": "Atualizações da Aplicação", | ||||
| 	"App language (requires restart)": "Idioma da Aplicação (requer reinício)", | ||||
| 	"Appearance": "Aspecto", | ||||
| 	"Application Shortcuts": "Atalhos da App", | ||||
| 	"Are you sure you want to disconnect this organization?": "Tem certeza de que quer desconectar esta organização?", | ||||
| 	"Ask where to save files before downloading": "Perguntar onde guardar ficheiros antes de transferir", | ||||
| 	"Application Shortcuts": "Atalhos da aplicação", | ||||
| 	"Are you sure you want to disconnect this organization?": "Tem a certeza que pretende desconectar esta organização?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Perguntar onde guardar os ficheiros antes de os transferir", | ||||
| 	"Auto hide Menu bar": "Auto-ocultar barra de Menu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto-ocultar barra de menu (Premir Alt para exibir)", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto-ocultar barra de menu (Premir Alt para mostrar)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Voltar", | ||||
| 	"Bounce dock on new private message": "Saltitar a dock em nova mensagem privada", | ||||
| 	"Bounce dock on new private message": "Mexer a dock ao receber uma nova mensagem privada", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancelar", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Alterar", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Alterar idioma de Preferências de Sistema → Teclado → Texto → Ortografia.", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Alterar idioma de Preferências do Sistema → Teclado → Texto → Ortografia.", | ||||
| 	"Check for Updates": "Procurar Atualizações", | ||||
| 	"Close": "Fechar", | ||||
| 	"Connect": "Conectar", | ||||
| 	"Connect to another organization": "Conectar a outra organização", | ||||
| 	"Connected organizations": "Organizações conectadas", | ||||
| 	"Copy": "Copiar", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copiar Imagem", | ||||
| 	"Copy Image URL": "Copiar URL da Imagem", | ||||
| 	"Copy Link": "Copiar Link", | ||||
| 	"Copy Zulip URL": "Copiar URL do Zulip", | ||||
| 	"Create a new organization": "Criar uma nova organização", | ||||
| 	"Create a new organization": "Criar uma organização", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cortar", | ||||
| 	"Default download location": "Pasta de transferências predefinida", | ||||
| 	"Delete": "Apagar", | ||||
| 	"Desktop Notifications": "Notificações de Desktop", | ||||
| 	"Desktop Settings": "Definições de Desktop", | ||||
| 	"Desktop Notifications": "Notificações de ambiente de trabalho", | ||||
| 	"Desktop Settings": "Definições de ambiente de trabalho", | ||||
| 	"Disconnect": "Desconectar", | ||||
| 	"Download App Logs": "Transferir Relatórios da App", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Transferir relatórios/registos da aplicação", | ||||
| 	"Edit": "Editar", | ||||
| 	"Edit Shortcuts": "Editar Atalhos", | ||||
| 	"Emoji & Symbols": "Emoji e Símbolos", | ||||
| 	"Edit Shortcuts": "Editar atalhos", | ||||
| 	"Emoji & Symbols": "Emoji e símbolos", | ||||
| 	"Enable auto updates": "Permitir atualizações automáticas", | ||||
| 	"Enable error reporting (requires restart)": "Ativar relato de erros (requer reinício)", | ||||
| 	"Enable error reporting (requires restart)": "Ativar comunicação de erros (requer reinício)", | ||||
| 	"Enable spellchecker (requires restart)": "Ativar corretor ortográfico (requer reinício)", | ||||
| 	"Enter Full Screen": "Entrar em Ecrã Inteiro", | ||||
| 	"Factory Reset": "Restauro de Fábrica", | ||||
| 	"Factory Reset Data": "Restauro de Dados", | ||||
| 	"Enter Full Screen": "Entrar em modo de ecrã completo", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Restauro de fábrica", | ||||
| 	"Factory Reset Data": "Restaurar dados de fábrica", | ||||
| 	"File": "Ficheiro", | ||||
| 	"Find accounts": "Encontrar contas", | ||||
| 	"Find accounts by email": "Encontrar contas por e-mail", | ||||
| 	"Find accounts by email": "Encontrar contas através do endereço de email", | ||||
| 	"Flash taskbar on new message": "Piscar a barra de tarefas ao receber nova mensagem", | ||||
| 	"Forward": "Avançar", | ||||
| 	"Functionality": "Funcionalidade", | ||||
| 	"General": "Geral", | ||||
| 	"Get beta updates": "Atualizações de Betas", | ||||
| 	"Hard Reload": "Recarregar Forçado", | ||||
| 	"Get beta updates": "Atualizações Beta", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Recarregamento forçado", | ||||
| 	"Help": "Ajuda", | ||||
| 	"Help Center": "Centro de Ajuda", | ||||
| 	"Hide": "Ocultar", | ||||
| 	"Hide Others": "Ocultar Outros", | ||||
| 	"Hide Zulip": "Ocultar o Zulip", | ||||
| 	"History": "Histórico", | ||||
| 	"History Shortcuts": "Atalhos de Histórico", | ||||
| 	"Keyboard Shortcuts": "Atalhos de Teclado", | ||||
| 	"Log Out": "Terminar Sessão", | ||||
| 	"Log Out of Organization": "Terminar Sessão na Organização", | ||||
| 	"Manual proxy configuration": "Configurar proxy manualmente", | ||||
| 	"History Shortcuts": "Atalhos de histórico", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Atalhos de teclado", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Terminar sessão", | ||||
| 	"Log Out of Organization": "Terminar sessão na organização", | ||||
| 	"Look Up": "Olhar para cima", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Configurar proxy manual", | ||||
| 	"Minimize": "Minimizar", | ||||
| 	"Mute all sounds from Zulip": "Silenciar Sons do Zulip", | ||||
| 	"NO": "NÃO", | ||||
| 	"Mute all sounds from Zulip": "Silenciar todos os sons do Zulip", | ||||
| 	"Network": "Rede", | ||||
| 	"Network and Proxy Settings": "Definições de Rede e Proxy", | ||||
| 	"Network and Proxy Settings": "Definições de rede e proxy", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Sem Sugestão encontrada", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Definições de notificação", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OU", | ||||
| 	"On macOS, the OS spellchecker is used.": "No macOS é usado o corretor ortográfico do sistema.", | ||||
| 	"Organization URL": "URL da Organização", | ||||
| 	"On macOS, the OS spellchecker is used.": "No macOS é utilizado o corretor ortográfico do sistema.", | ||||
| 	"Organization URL": "URL da organização", | ||||
| 	"Organizations": "Organizações", | ||||
| 	"Paste": "Colar", | ||||
| 	"Paste and Match Style": "Colar com formatação de destino", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Regras de bypass de proxy", | ||||
| 	"Proxy rules": "Regras de proxy", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Sair", | ||||
| 	"Quit Zulip": "Sair do Zulip", | ||||
| 	"Quit when the window is closed": "Sair quando a janela é fechada", | ||||
| 	"Redo": "Refazer", | ||||
| 	"Release Notes": "Notas de publicação", | ||||
| 	"Reload": "Recarregar", | ||||
| 	"Report an Issue": "Comunicar um Problema", | ||||
| 	"Reset App Settings": "Restaurar Definições da App", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Restaurar a aplicação, assim apagando todas as organizações e contas conectadas.", | ||||
| 	"Report an Issue": "Comunicar um problema", | ||||
| 	"Reset App Settings": "Reinicializar definições da aplicação", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reinicializar a aplicação, apagando assim todas as organizações e contas conectadas.", | ||||
| 	"Save": "Guardar", | ||||
| 	"Select All": "Seleccionar Tudo", | ||||
| 	"Select All": "Selecionar tudo", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Serviços", | ||||
| 	"Settings": "Definições", | ||||
| 	"Shortcuts": "Atalhos", | ||||
| 	"Show app icon in system tray": "Ver ícone da app na bandeja de sistema", | ||||
| 	"Show app unread badge": "Ver emblema de mensagens não lidas", | ||||
| 	"Show desktop notifications": "Ver notificações de desktop", | ||||
| 	"Show sidebar": "Ver barra lateral", | ||||
| 	"Spellchecker Languages": "Idiomas com Verificação Ortográfica", | ||||
| 	"Start app at login": "Iniciar App com o sistema", | ||||
| 	"Switch to Next Organization": "Trocar para Organização Seguinte", | ||||
| 	"Switch to Previous Organization": "Trocar para Organização Anterior", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Estes atalhos da app desktop expandem os da webapp do Zulip", | ||||
| 	"Show app icon in system tray": "Mostrar ícone da aplicação na bandeja do sistema", | ||||
| 	"Show desktop notifications": "Mostrar notificações de ambiente de trabalho", | ||||
| 	"Show sidebar": "Mostrar barra lateral", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Idiomas com verificação ortográfica", | ||||
| 	"Start app at login": "Iniciar aplicação com o arranque do sistema", | ||||
| 	"Switch to Next Organization": "Passar à organização seguinte", | ||||
| 	"Switch to Previous Organization": "Passar à organização anterior", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Estes atalhos da aplicação de ambiente de trabalho estendem os da aplicação de navegador do Zulip", | ||||
| 	"Tip": "Dica", | ||||
| 	"Toggle DevTools for Active Tab": "DevTools para o Separador Ativo", | ||||
| 	"Toggle DevTools for Zulip App": "DevTools para a App Zulip", | ||||
| 	"Toggle DevTools for Active Tab": "Ferramentas de programador para o separador ativo", | ||||
| 	"Toggle DevTools for Zulip App": "Ferramentas de programador para a aplicação Zulip", | ||||
| 	"Toggle Do Not Disturb": "Não Incomodar", | ||||
| 	"Toggle Full Screen": "Ecrã Completo", | ||||
| 	"Toggle Sidebar": "Barra Lateral", | ||||
| 	"Toggle Tray Icon": "Ícone da bandeja de sistema", | ||||
| 	"Toggle Full Screen": "Ecrã completo", | ||||
| 	"Toggle Sidebar": "Barra lateral", | ||||
| 	"Toggle Tray Icon": "Ícone da bandeja do sistema", | ||||
| 	"Tools": "Ferramentas", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Desfazer", | ||||
| 	"Unhide": "Revelar", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Carregar", | ||||
| 	"Use system proxy settings (requires restart)": "Usar definições de proxy do sistema (requer reinício)", | ||||
| 	"Use system proxy settings (requires restart)": "Usar as definições de proxy do sistema (requer reinício)", | ||||
| 	"View": "Ver", | ||||
| 	"View Shortcuts": "Atalhos de Visualização", | ||||
| 	"View Shortcuts": "Atalhos de visualização", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Janela", | ||||
| 	"Window Shortcuts": "Atalhos de Janela", | ||||
| 	"YES": "SIM", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Pode seleccionar um máximo de 3 idiomas para correção ortográfica.", | ||||
| 	"Window Shortcuts": "Atalhos da janela", | ||||
| 	"Yes": "Sim", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Pode selecionar até um máximo de 3 idiomas para correção ortográfica.", | ||||
| 	"Zoom In": "Ampliar", | ||||
| 	"Zoom Out": "Reduzir", | ||||
| 	"keyboard shortcuts": "atalhos de teclado", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} está a correr uma versão ultrapassada do Servidor Zulip {{{version}}}. Pode não funcionar completamente nesta app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} está a correr uma versão desatualizada do servidor Zulip {{{version}}}. Poderá não funcionar corretamente com esta aplicação." | ||||
| } | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Despre Zulip", | ||||
| 	"Actual Size": "Mărimea Actuală", | ||||
| 	"Add Organization": "Adaugă Organizație", | ||||
| 	"Add a Zulip organization": "Adaugă o organizație Zulip", | ||||
| 	"Add custom CSS": "Adaugă un CSS personalizat", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Adaugă la dicționar", | ||||
| 	"Advanced": "Avansat", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "Toate organizațiile conectate vor apărea aici.", | ||||
| 	"Always start minimized": "Pornește întotdeauna micșorat", | ||||
| 	"App Updates": "Actualizările aplicației", | ||||
| 	"App language (requires restart)": "Limba aplicației (necesită restart)", | ||||
| 	"Appearance": "Aspect", | ||||
| 	"Application Shortcuts": "Scurtăturile Aplicației", | ||||
| 	"Are you sure you want to disconnect this organization?": "Ești sigur că vrei să deconectezi această organizație?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Intreabă unde salvez fișierul înainte să descarci", | ||||
| 	"Auto hide Menu bar": "Ascunde automat bara Meniu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Ascunde automat bara meniu (Apasă cheia Alt să afișezi)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Inapoi", | ||||
| 	"Bounce dock on new private message": "Sări dock-ul la un mesaj privat nou", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Renunță", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Schimbă", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Schimbă limba din Preferințe Sistem  → Tastatruă → Text → Ortografie.", | ||||
| 	"Check for Updates": "Verifică pentru actualizări", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "Conectează la altă organizație", | ||||
| 	"Connected organizations": "Organizații conectate", | ||||
| 	"Copy": "Copiază", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copiază imaginea", | ||||
| 	"Copy Image URL": "Copiază URL-ul imaginii", | ||||
| 	"Copy Link": "Copiază linkul", | ||||
| 	"Copy Zulip URL": "Copiază link Zulip", | ||||
| 	"Create a new organization": "Creează o organizație nouă", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Taie", | ||||
| 	"Default download location": "Locația implicită pentru descărcare", | ||||
| 	"Delete": "Șterge", | ||||
| 	"Desktop Notifications": "Notificări descktop", | ||||
| 	"Desktop Settings": "Setări desktop", | ||||
| 	"Disconnect": "Deconectează", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Descarcă Log-urile Aplicației", | ||||
| 	"Edit": "Modifică", | ||||
| 	"Edit Shortcuts": "Modifică scurtăturile", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "Emoji și simboluri", | ||||
| 	"Enable auto updates": "Activează actualizări automate", | ||||
| 	"Enable error reporting (requires restart)": "Activează raportarea erorilor (necesită repornire)", | ||||
| 	"Enable spellchecker (requires restart)": "Activați verificatorul ortografic (necesită repornire)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Intră în ecran complet", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Resetare din fabrică", | ||||
| 	"Factory Reset Data": "Resetează la setările de bază", | ||||
| 	"File": "Fișier", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "Funcționalitate", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Obține actualizări beta", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Reîncărcare forțată", | ||||
| 	"Help": "Ajutor", | ||||
| 	"Help Center": "Centru de ajutor", | ||||
| 	"Hide": "Ascunde", | ||||
| 	"Hide Others": "Ascunde pe ceilalți", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Zulip": "Ascunde Zulip", | ||||
| 	"History": "Istorie", | ||||
| 	"History Shortcuts": "Scurtături istorie", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Scurtături tastatură", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Deconectare", | ||||
| 	"Log Out of Organization": "Deconectare din organizație", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Configurare manuala proxy", | ||||
| 	"Minimize": "Micșsorează", | ||||
| 	"Mute all sounds from Zulip": "Marchează totul din Zulip - fără alerte sonore", | ||||
| 	"NO": "NU", | ||||
| 	"Network": "Rețea", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Rețele și setări de proxy", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "Nu", | ||||
| 	"No Suggestion Found": "Nu am găsit sugestii", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Setări de notificare", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "SAU", | ||||
| 	"On macOS, the OS spellchecker is used.": "Pe macOS, este folosita verificarea ortografică OS. ", | ||||
| 	"Organization URL": "URL-ul organizației", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Reguli de ocolire proxy", | ||||
| 	"Proxy rules": "Reguli proxy", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Renunță", | ||||
| 	"Quit Zulip": "Renunță la Zulip", | ||||
| 	"Quit when the window is closed": "Ieșiți când fereastra este închisă", | ||||
| @@ -86,20 +119,26 @@ | ||||
| 	"Reload": "Reîncarcă", | ||||
| 	"Report an Issue": "Raportează o Problemă", | ||||
| 	"Reset App Settings": "Resetează Setările Aplicației", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Resetați aplicația, ștergând astfel toate organizațiile și conturile conectate.", | ||||
| 	"Save": "Salvează", | ||||
| 	"Select All": "Selectează Tot", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Servicii", | ||||
| 	"Settings": "Setări", | ||||
| 	"Shortcuts": "Scurtături", | ||||
| 	"Show app icon in system tray": "Arată iconița aplicației în zona de notificare", | ||||
| 	"Show app unread badge": "Afișează ecusonul necitit al aplicației", | ||||
| 	"Show desktop notifications": "Arată notificările desktop", | ||||
| 	"Show sidebar": "Arată bara laterală", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Ortografie limbi", | ||||
| 	"Start app at login": "Pornește aplicația la autentificare", | ||||
| 	"Switch to Next Organization": "Schimbă la Următoarea Organizație", | ||||
| 	"Switch to Previous Organization": "Schimbă la Precendenta Organizație", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Aceste scurtături din desktop extind webapp-urile Zulip", | ||||
| 	"Tip": "Sfat", | ||||
| 	"Toggle DevTools for Active Tab": "Comută la DevTools pentru Tabul Activ", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Comută Bara Laterală", | ||||
| 	"Toggle Tray Icon": "Comută Iconița din Tray", | ||||
| 	"Tools": "Unelte", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Anulează", | ||||
| 	"Unhide": "Arată", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Urcă", | ||||
| 	"Use system proxy settings (requires restart)": "Folosește setările proxy de sistem (necesită restart)", | ||||
| 	"View": "Vedere", | ||||
| 	"View Shortcuts": "Vezi Scurtăturile", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Fereastră", | ||||
| 	"Window Shortcuts": "Scurtăturile Ferestrei", | ||||
| 	"YES": "DA", | ||||
| 	"Yes": "da", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Poți selecta maxim 3 limbi pentru verificarea ortografiei", | ||||
| 	"Zoom In": "Marește", | ||||
| 	"Zoom Out": "Micșorează", | ||||
| 	"keyboard shortcuts": "scurtături tastatură", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} rulează o versiune învechită a serverului Zulip {{{version}}}. S-ar putea să nu funcționeze în întregime în această aplicație." | ||||
| } | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "Загружено свежее обновление {{{version}}}.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "Доступна новая версия {{{version}}} приложения Zulip для компьютеров.", | ||||
| 	"About": "О программе", | ||||
| 	"About Zulip": "О Zulip", | ||||
| 	"Actual Size": "Актуальный размер", | ||||
| 	"Actual Size": "Стандартный масштаб", | ||||
| 	"Add Organization": "Добавить организацию", | ||||
| 	"Add a Zulip organization": "Добавить организацию Zulip", | ||||
| 	"Add custom CSS": "Добавить собственный CSS", | ||||
| 	"AddServer": "Добавить Сервер", | ||||
| 	"Add to Dictionary": "Добавить в словарь", | ||||
| 	"Advanced": "Дополнительно", | ||||
| 	"All the connected organizations will appear here.": "Все связанные организации будут появляться здесь.", | ||||
| 	"All the connected organizations will appear here.": "Все связанные организации будут появляться тут.", | ||||
| 	"Always start minimized": "Запускать свернутым", | ||||
| 	"App Updates": "Обновления", | ||||
| 	"App language (requires restart)": "Язык приложения (требует перезапуска)", | ||||
| 	"App language (requires restart)": "Язык приложения (потребуется перезапуск)", | ||||
| 	"Appearance": "Вид", | ||||
| 	"Application Shortcuts": "Горячие клавиши", | ||||
| 	"Application Shortcuts": "Сочетания клавиш", | ||||
| 	"Are you sure you want to disconnect this organization?": "Вы уверены, что хотите отключить эту организацию?", | ||||
| 	"Are you sure?": "Вы уверены?", | ||||
| 	"Ask where to save files before downloading": "Спрашивать, где сохранять файлы перед скачиванием", | ||||
| 	"Auto hide Menu bar": "Скрывать меню", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Скрывать меню (для показа нажмите Alt)", | ||||
| 	"Auto hide Menu bar": "Автоматически скрывать меню", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Автоматически скрывать меню (для показа нажмите Alt)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Доступно под {{{link}}}лицензией Apache 2.0{{{endLink}}}", | ||||
| 	"Back": "Назад", | ||||
| 	"Bounce dock on new private message": "Показывать док при поступлении нового личного сообщения", | ||||
| 	"Bounce dock on new private message": "Анимировать dock при поступлении нового личного сообщения", | ||||
| 	"CSS file": "файл CSS", | ||||
| 	"Cancel": "Отмена", | ||||
| 	"Certificate error": "Ошибка сертификата", | ||||
| 	"Change": "Изменить", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Настройте язык, следуя меню Настройки системы → Клавиатура → Текст → Орфография.", | ||||
| 	"Check for Updates": "Проверить наличие обновлений", | ||||
| @@ -26,49 +34,73 @@ | ||||
| 	"Connect to another organization": "Подключиться к другой организации", | ||||
| 	"Connected organizations": "Подключенные организации", | ||||
| 	"Copy": "Копировать", | ||||
| 	"Copy Email Address": "Копировать адрес электронной почты", | ||||
| 	"Copy Image": "Скопировать изображение", | ||||
| 	"Copy Image URL": "Скопировать ссылку на изображение", | ||||
| 	"Copy Link": "Скопировать ссылку", | ||||
| 	"Copy Zulip URL": "Скопировать ссылку на сервер Zulip", | ||||
| 	"Create a new organization": "Создать новую организацию", | ||||
| 	"Custom CSS file deleted": "Пользовательский CSS-файл удален", | ||||
| 	"Cut": "Вырезать", | ||||
| 	"Default download location": "Папка для загрузки", | ||||
| 	"Delete": "Удалить", | ||||
| 	"Desktop Notifications": "Оповещения на рабочем столе", | ||||
| 	"Desktop Notifications": "Всплывающие оповещения", | ||||
| 	"Desktop Settings": "Настройки рабочего стола", | ||||
| 	"Disconnect": "Отключиться", | ||||
| 	"Disconnect organization": "Отключить организацию", | ||||
| 	"Do Not Disturb": "Не беспокоить", | ||||
| 	"Download App Logs": "Скачать логи приложения", | ||||
| 	"Edit": "Изменить", | ||||
| 	"Edit Shortcuts": "Редактировать горячие клавиши", | ||||
| 	"Edit Shortcuts": "Cочетания клавиш редактирования", | ||||
| 	"Emoji & Symbols": "Эмодзи и символы", | ||||
| 	"Enable auto updates": "Включить автообновление", | ||||
| 	"Enable error reporting (requires restart)": "Включить сообщения об ошибках (потребуется перезапуск)", | ||||
| 	"Enable spellchecker (requires restart)": "Включить проверку орфографии (потребуется перезапуск)", | ||||
| 	"Enter Full Screen": "Войти в полноэкранный режим", | ||||
| 	"Error saving new organization": "Ошибка сохранения новой организации", | ||||
| 	"Error saving update notifications": "Ошибка сохранения оповещений об обновлении", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Ошибка: {{{error}}}\n\nСамая свежая версия приложения Zulip доступна на:\n{{{link}}}\nТекущая версия: {{{version}}}", | ||||
| 	"Factory Reset": "Сброс настроек", | ||||
| 	"Factory Reset Data": "Сброс данных приложения", | ||||
| 	"File": "Файл", | ||||
| 	"Find accounts": "Найти учетные записи", | ||||
| 	"Find accounts by email": "Искать учетные записи по адресу электронной почты", | ||||
| 	"Flash taskbar on new message": "Высвечивать панель задач при новом сообщении", | ||||
| 	"Find accounts by email": "Поиск учетных записей по адресу электронной почты", | ||||
| 	"Flash taskbar on new message": "Мигать в панели задач при новом сообщении", | ||||
| 	"Forward": "Вперед", | ||||
| 	"Functionality": "Функциональность", | ||||
| 	"General": "Общее", | ||||
| 	"Get beta updates": "Получать бета-обновления", | ||||
| 	"Hard Reload": "Жесткая перезагрузка", | ||||
| 	"Go Back": "Назад", | ||||
| 	"Hard Reload": "Принудительная перезагрузка", | ||||
| 	"Help": "Помощь", | ||||
| 	"Help Center": "Центр поддержки", | ||||
| 	"Help Center": "Центр помощи", | ||||
| 	"Hide": "Скрыть", | ||||
| 	"Hide Others": "Скрыть другие", | ||||
| 	"Hide Zulip": "Скрыть Zulip", | ||||
| 	"History": "История", | ||||
| 	"History Shortcuts": "Горячие клавишы по истории", | ||||
| 	"Keyboard Shortcuts": "Горячие клавишы", | ||||
| 	"History Shortcuts": "Сочетания клавиш истории", | ||||
| 	"Install Later": "Установить позже", | ||||
| 	"Install and Relaunch": "Установить и перезапустить", | ||||
| 	"It will be installed the next time you restart the application.": "Установка будет выполнена при следующем запуске приложения.", | ||||
| 	"Keyboard Shortcuts": "Сочетания клавиш", | ||||
| 	"Later": "Позже", | ||||
| 	"Loading": "Загрузка", | ||||
| 	"Log Out": "Выйти из учетной записи", | ||||
| 	"Log Out of Organization": "Выйти из организации", | ||||
| 	"Look Up": "Искать", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Поддерживается {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Ручное скачивание", | ||||
| 	"Manual proxy configuration": "Ручная настройка прокси", | ||||
| 	"Minimize": "Свернуть", | ||||
| 	"Mute all sounds from Zulip": "Выключить все звуки Zulip", | ||||
| 	"NO": "НЕТ", | ||||
| 	"Network": "Сеть", | ||||
| 	"Network and Proxy Settings": "Настройки сети и прокси", | ||||
| 	"New servers added. Reload app now?": "Добавлены новые серверы. Перезапустить приложение?", | ||||
| 	"No": "Нет", | ||||
| 	"No Suggestion Found": "Предложений не найдено", | ||||
| 	"No updates available.": "Обновлений нет.", | ||||
| 	"Notification settings": "Настройки оповещений", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "ИЛИ", | ||||
| 	"On macOS, the OS spellchecker is used.": "На macOS используется орфографический корректор ОС.", | ||||
| 	"Organization URL": "URL организации", | ||||
| @@ -78,50 +110,62 @@ | ||||
| 	"Proxy": "Прокси", | ||||
| 	"Proxy bypass rules": "Правила обхода прокси", | ||||
| 	"Proxy rules": "Правила прокси", | ||||
| 	"Proxy settings saved.": "Настройки прокси сохранены", | ||||
| 	"Quit": "Выход", | ||||
| 	"Quit Zulip": "Выйти из Zulip", | ||||
| 	"Quit when the window is closed": "Выйти, когда окно будет закрыто", | ||||
| 	"Redo": "Исправить", | ||||
| 	"Quit when the window is closed": "Выходить при закрытии окна", | ||||
| 	"Redo": "Выполнить снова", | ||||
| 	"Release Notes": "Описание обновлений", | ||||
| 	"Reload": "Перезагрузить", | ||||
| 	"Report an Issue": "Сообщить об ошибке", | ||||
| 	"Reset App Settings": "Сбросить настройки приложения", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Сбросить все настройки приложения, и удалить все подключенные организации и учетные записи.", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Сбросить все настройки приложения и удалить все подключенные организации и учетные записи.", | ||||
| 	"Save": "Сохранить", | ||||
| 	"Select All": "Выделить все", | ||||
| 	"Select Download Location": "Укажите место скачивания", | ||||
| 	"Select file": "Выбор файла", | ||||
| 	"Services": "Сервисы", | ||||
| 	"Settings": "Настройки", | ||||
| 	"Shortcuts": "Горячие клавиши", | ||||
| 	"Shortcuts": "Сочетания клавиш", | ||||
| 	"Show app icon in system tray": "Показывать приложение в области уведомлений", | ||||
| 	"Show app unread badge": "Показывать значок о непрочитанных сообщениях", | ||||
| 	"Show desktop notifications": "Показывать оповещения рабочего стола", | ||||
| 	"Show desktop notifications": "Показывать всплывающие оповещения", | ||||
| 	"Show sidebar": "Показывать боковую панель", | ||||
| 	"Show unread count badge on app icon": "Показывать счетчик непрочитанного на значке приложения", | ||||
| 	"Spellchecker Languages": "Языки для проверки орфографии", | ||||
| 	"Start app at login": "Запускать приложение при входе в систему", | ||||
| 	"Switch to Next Organization": "Перейти к следующей организации", | ||||
| 	"Switch to Previous Organization": "Перейти к предыдущей организации", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Эти ярлыки приложения для рабочего стола дополняют функционал сетевого приложения Zulip", | ||||
| 	"Tip": "Совет", | ||||
| 	"The custom CSS previously set is deleted.": "Ранее заданный пользовательский CSS удален.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "Сервер предоставил недействительный сертификат для  {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "Обновление будет загружено в фоновом режиме. Вы получите уведомление, когда оно будет готово к установке.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "При сохранении новой организации произошла ошибка. Возможно, вам придется добавить предыдущие организации заново.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Эти сочетания клавиш настольного приложения расширяют возможности веб-приложения Zulip, см. ", | ||||
| 	"Tip": "Подсказка", | ||||
| 	"Toggle DevTools for Active Tab": "Переключить инструменты разработчика для активной вкладки", | ||||
| 	"Toggle DevTools for Zulip App": "Переключить инструменты разработчика для приложения Zulip", | ||||
| 	"Toggle Do Not Disturb": "Переключить режим \"не мешать\"", | ||||
| 	"Toggle Do Not Disturb": "Переключить режим \"не беспокоить\"", | ||||
| 	"Toggle Full Screen": "Переключить полный экран", | ||||
| 	"Toggle Sidebar": "Переключить боковую панель", | ||||
| 	"Toggle Tray Icon": "Переключить иконку в области уведомлений", | ||||
| 	"Tools": "Инструменты", | ||||
| 	"Unable to check for updates.": "Не удается проверить наличие обновлений.", | ||||
| 	"Unable to download the update.": "Не удается загрузить обновление.", | ||||
| 	"Undo": "Отменить", | ||||
| 	"Unhide": "Не скрывать", | ||||
| 	"Unknown error": "Неизвестная ошибка", | ||||
| 	"Upload": "Загрузить", | ||||
| 	"Use system proxy settings (requires restart)": "Использовать системные настройки прокси (необходима перезагрузка)", | ||||
| 	"Use system proxy settings (requires restart)": "Использовать системные настройки прокси (потребуется перезапуск)", | ||||
| 	"View": "Вид", | ||||
| 	"View Shortcuts": "Посмотреть горячие клавишы", | ||||
| 	"View Shortcuts": "Сочетания клавиш просмотра", | ||||
| 	"We encountered an error while saving the update notifications.": "При сохранении уведомлений об обновлении произошла ошибка.", | ||||
| 	"Window": "Окно", | ||||
| 	"Window Shortcuts": "Ярлыки окна", | ||||
| 	"YES": "ДА", | ||||
| 	"Window Shortcuts": "Сочетания клавиш окна", | ||||
| 	"Yes": "Да", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "Вы используете самую свежую версию приложения Zulip.\nВерсия: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Вы можете выбрать не более 3-х языков для проверки орфографии.", | ||||
| 	"Zoom In": "Увеличить масштаб", | ||||
| 	"Zoom Out": "Уменьшить масштаб", | ||||
| 	"keyboard shortcuts": "Горячие клавиши", | ||||
| 	"keyboard shortcuts": "сочетания клавиш", | ||||
| 	"script": "скрипт", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} использует устаревшую версию Zulip {{{version}}}. Приложение может работать не полностью." | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "සුලිප් පිළිබඳව", | ||||
| 	"Actual Size": "සැබෑ ප්රමාණය", | ||||
| 	"Add Organization": "සංවිධානය එක්කරන්න", | ||||
| 	"Add a Zulip organization": "සුලිප් සංවිධානයක් එක්කරන්න", | ||||
| 	"Add custom CSS": "අභිරුචි සීඑස්එස් යොදන්න", | ||||
| 	"AddServer": "සේවාදායකය එක්කරන්න", | ||||
| 	"Add to Dictionary": "ශබ්දකෝෂයට යොදන්න", | ||||
| 	"Advanced": "වැඩිදුර", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "හකුළුවා දියත් කරන්න", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "පෙනුම", | ||||
| 	"Application Shortcuts": "යෙදුමේ කෙටිමං", | ||||
| 	"Are you sure you want to disconnect this organization?": "ඔබට මෙම සංවිධානය විසන්ධි කිරීමට අවශ්ය බව විශ්වාසද?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "බාගැනීමට පෙර සුරැකිය යුතු ස්ථානය අසන්න", | ||||
| 	"Auto hide Menu bar": "වට්ටෝරු තීරුව ස්වයං සැඟවීම", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "වට්ටෝරු තීරුව ස්වයං සැඟවීම (දැකීමට Alt ඔබන්න)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "ආපසු", | ||||
| 	"Bounce dock on new private message": "නව පණිවිඩ ලැබෙන විට නිරූපකය සෙලවීම", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "අවලංගු", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "සංශෝධනය", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "යාවත්කාල බලන්න", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "වෙනත් සංවිධානයකට සබැඳින්න", | ||||
| 	"Connected organizations": "සම්බන්ධිත සංවිධාන", | ||||
| 	"Copy": "පිටපතක්", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "අනුරුවෙහි පිටපතක්", | ||||
| 	"Copy Image URL": "අනුරුවෙහි ඒ.ස.නි. පිටපතක්", | ||||
| 	"Copy Link": "සබැඳියේ පිටපතක්", | ||||
| 	"Copy Zulip URL": "සුලිප් ඒ.ස.නි. පිටපතක්", | ||||
| 	"Create a new organization": "නව සංවිධානයක් සාදන්න", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "කපන්න", | ||||
| 	"Default download location": "පෙරනිමි බාගැනීමේ ස්ථානය", | ||||
| 	"Delete": "මකන්න", | ||||
| 	"Desktop Notifications": "වැඩතල දැනුම්දීම්", | ||||
| 	"Desktop Settings": "වැඩතල සැකසුම්", | ||||
| 	"Disconnect": "විසන්ධි කරන්න", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "යෙදුමේ සටහන් බාගන්න", | ||||
| 	"Edit": "සංස්කරණය", | ||||
| 	"Edit Shortcuts": "කෙටිමං සංස්කරණය", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "දෝෂ වාර්තාව සබලකරන්න (යළි ඇරඹීම අවශ්යයි)", | ||||
| 	"Enable spellchecker (requires restart)": "අකුරු වින්යාසය පරීක්ෂාව (යළි අරඹන්න)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "ගොනුව", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "බීටා යාවත්කාල ගන්න", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "උදව්", | ||||
| 	"Help Center": "උදව් මධ්යස්ථානය", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "ඉතිහාසය", | ||||
| 	"History Shortcuts": "ඉතිහාස කෙටිමං", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "යතුරුපුවරුවේ කෙටිමං", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "නික්මෙන්න", | ||||
| 	"Log Out of Organization": "සංවිධානයෙන් නික්මෙන්න", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "අතින් ප්රතියුක්තය වින්යාසය", | ||||
| 	"Minimize": "හකුළන්න", | ||||
| 	"Mute all sounds from Zulip": "සියළුම සුලිප් ශබ්ද නිහඬකරන්න", | ||||
| 	"NO": "නැහැ", | ||||
| 	"Network": "ජාලය", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "යෝජනා හමු නොවිණි", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "හරි", | ||||
| 	"OR": "හෝ", | ||||
| 	"On macOS, the OS spellchecker is used.": "මැක්ඕඑස් හි, මෙ. පද්. අකුරු පරීක්ෂාව භාවිතයි.", | ||||
| 	"Organization URL": "සංවිධානයේ ඒ.ස.නි.", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "ප්රතියුක්තය", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "ප්රතියුක්තයේ නීති", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "ඉවත් වන්න", | ||||
| 	"Quit Zulip": "සුලිප් වෙතින් ඉවත්වන්න", | ||||
| 	"Quit when the window is closed": "කවුළුව වැසූ විට ඉවත් වන්න", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "සුරකින්න", | ||||
| 	"Select All": "සියල්ල තෝරන්න", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "සේවා", | ||||
| 	"Settings": "සැකසුම්", | ||||
| 	"Shortcuts": "කෙටිමං", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "වැඩතලයෙහි දැනුම්දීම් පෙන්වන්න", | ||||
| 	"Show sidebar": "පැති තීරුව පෙන්වන්න", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "අකුරු වින්යාසය පරීක්ෂාවට භාෂා", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "ඊළඟ සංවිධානයට මාරුවන්න", | ||||
| 	"Switch to Previous Organization": "කලින් සංවිධානයට මාරුවන්න", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "මෙවලම්", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "පෙරසේ", | ||||
| 	"Unhide": "නොසඟවන්න", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "උඩුගත කරන්න", | ||||
| 	"Use system proxy settings (requires restart)": "පද්ධතියේ ප්රතියුක්තය භාවිතය (යළි ඇරඹිය යුතුය)", | ||||
| 	"View": "බලන්න", | ||||
| 	"View Shortcuts": "කෙටිමං බලන්න", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "කවුළුව", | ||||
| 	"Window Shortcuts": "කවුළුවේ කෙටිමං", | ||||
| 	"YES": "ඔව්", | ||||
| 	"Yes": "ඔව්", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "අකුරු වින්යාසය පරීක්ෂාව සඳහා උපරිම භාෂා 3 ක් තේරීමට හැකිය.", | ||||
| 	"Zoom In": "විශාලනය", | ||||
| 	"Zoom Out": "කුඩාලනය", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "О нама", | ||||
| 	"About Zulip": "О Зулипу", | ||||
| 	"Actual Size": "Стварна величина", | ||||
| 	"Add Organization": "Додајте организацију", | ||||
| 	"Add a Zulip organization": "Додајте Зулип организацију", | ||||
| 	"Add custom CSS": "Додајте прилагођени ЦСС", | ||||
| 	"AddServer": "Додај сервер", | ||||
| 	"Add to Dictionary": "Додај у речник", | ||||
| 	"Advanced": "Напредно", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "Све повезане организације ће се појавити овде.", | ||||
| 	"Always start minimized": "Увек започните минимизирано", | ||||
| 	"App Updates": "Надоградње апликације", | ||||
| 	"App language (requires restart)": "Језик апликације (захтева поновно покретање)", | ||||
| 	"Appearance": "Изглед", | ||||
| 	"Application Shortcuts": "Пречице за апликацију", | ||||
| 	"Are you sure you want to disconnect this organization?": "Јесте ли сигурни да желите прекинути везу с овом организацијом?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Питај где сачувати датотеке пре преузимања", | ||||
| 	"Auto hide Menu bar": "Ауто хиде Мену бар", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Аутоматско скривање траке менија (притисните тастер Алт да бисте приказали)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Назад", | ||||
| 	"Bounce dock on new private message": "Одскочите у нову приватну поруку", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Откажи", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Цханге", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Промените језик кроз Системска подешавања → Тастатура → Текст → Правопис.", | ||||
| 	"Check for Updates": "Провери ажурирања", | ||||
| @@ -26,22 +34,32 @@ | ||||
| 	"Connect to another organization": "Повежите се са другом организацијом", | ||||
| 	"Connected organizations": "Повезане организације", | ||||
| 	"Copy": "Копирај", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Копирај слику", | ||||
| 	"Copy Image URL": "Копирај адресу слике", | ||||
| 	"Copy Link": "Копирај везу", | ||||
| 	"Copy Zulip URL": "Копирај Зулип адресу", | ||||
| 	"Create a new organization": "Направите нову организацију", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Исеци", | ||||
| 	"Default download location": "Предефинисана локација преузимања", | ||||
| 	"Delete": "Обриши", | ||||
| 	"Desktop Notifications": "Обавештења на рачунару", | ||||
| 	"Desktop Settings": "Подешавања рачунара", | ||||
| 	"Disconnect": "Прекини везу", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Преузмите записе апликације", | ||||
| 	"Edit": "Уреди", | ||||
| 	"Edit Shortcuts": "Уреди пречице", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Emoji & Symbols": "Емотикони и симболи", | ||||
| 	"Enable auto updates": "Омогући аутоматско ажурирање", | ||||
| 	"Enable error reporting (requires restart)": "Омогући извештавање о грешкама (захтева поновно покретање)", | ||||
| 	"Enable spellchecker (requires restart)": "Омогући провјеру правописа (захтијева поновно покретање)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Пређи у приказ преко целог екрана", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Фабричко ресетовање", | ||||
| 	"Factory Reset Data": "Фабрички ресетуј податке", | ||||
| 	"File": "Датотека", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "Функционалност", | ||||
| 	"General": "Опште", | ||||
| 	"Get beta updates": "Набавите бета ажурирања", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Поновно покретање", | ||||
| 	"Help": "Помоћ", | ||||
| 	"Help Center": "Центар за помоћ", | ||||
| 	"Hide": "Сакриј", | ||||
| 	"Hide Others": "Сакриј остале", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Zulip": "Сакриј Зулип", | ||||
| 	"History": "Историја", | ||||
| 	"History Shortcuts": "Пречице историје", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Пречице на тастатури", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Учитавам", | ||||
| 	"Log Out": "Одјавити се", | ||||
| 	"Log Out of Organization": "Одјавите се из организације", | ||||
| 	"Look Up": "Претражи", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Ручно подешавање проксија", | ||||
| 	"Minimize": "Минимизуј", | ||||
| 	"Mute all sounds from Zulip": "Искључите све звукове из Зулипа", | ||||
| 	"NO": "НЕ", | ||||
| 	"Network": "Мрежа", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Подешавања мреже и проксија", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "Није пронађен предлог", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Подешавања обавештења", | ||||
| 	"OK": "У реду", | ||||
| 	"OR": "ИЛИ", | ||||
| 	"On macOS, the OS spellchecker is used.": "На мекинтошу, користи се системска провера правописа.", | ||||
| 	"Organization URL": "Адреса организације", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Прокси", | ||||
| 	"Proxy bypass rules": "Правила прокси бајпаса", | ||||
| 	"Proxy rules": "Прокси правила", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Изађи", | ||||
| 	"Quit Zulip": "Изађи из Зулипа", | ||||
| 	"Quit when the window is closed": "Изађи када се затвори прозор", | ||||
| @@ -85,21 +118,27 @@ | ||||
| 	"Release Notes": "Белешке о издању", | ||||
| 	"Reload": "Освежи", | ||||
| 	"Report an Issue": "Пријавите проблем", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Reset App Settings": "Поништи подешавања апликације", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Поништавање апликације, чиме ће се обрисати све повезане организације и налози.", | ||||
| 	"Save": "Сачувај", | ||||
| 	"Select All": "Изабери све", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Сервиси", | ||||
| 	"Settings": "Подешавања", | ||||
| 	"Shortcuts": "Пречице", | ||||
| 	"Show app icon in system tray": "Покажи икону апликације у системској палети", | ||||
| 	"Show app unread badge": "Покажи непрочитану значку апликације", | ||||
| 	"Show desktop notifications": "Прикажи обавештења рачунара", | ||||
| 	"Show sidebar": "Прикажи бочну траку", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Језици за проверу правописа", | ||||
| 	"Start app at login": "Покрените апликацију приликом пријављивања", | ||||
| 	"Switch to Next Organization": "Пребаци се на следећу организацију", | ||||
| 	"Switch to Previous Organization": "Пребаци се на претходну организацију", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Пречице за десктоп апликације проширују Зулип вебаппове", | ||||
| 	"Tip": "Савет", | ||||
| 	"Toggle DevTools for Active Tab": "Прикажи развојне алате за активну картицу", | ||||
| @@ -109,19 +148,24 @@ | ||||
| 	"Toggle Sidebar": "Приказ бочне траке", | ||||
| 	"Toggle Tray Icon": "Приказ иконе у системској палети", | ||||
| 	"Tools": "Алати", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Поништи", | ||||
| 	"Unhide": "Откриј", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Отпреми", | ||||
| 	"Use system proxy settings (requires restart)": "Користи поставке проксија из система (потребно је поновно покретање)", | ||||
| 	"View": "Приказ", | ||||
| 	"View Shortcuts": "Прикажи пречице", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Прозор", | ||||
| 	"Window Shortcuts": "Пречице за прозор", | ||||
| 	"YES": "ДА", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Можете изабрати највише 3 језика за проверу правописа.", | ||||
| 	"Zoom In": "Увеличај", | ||||
| 	"Zoom Out": "Умањи", | ||||
| 	"keyboard shortcuts": "пречице на тастатури", | ||||
| 	"script": "скрипта", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} покреће застарелу Зулип сервер верзију{{{version}}}. Можда неће у потпуности радити са овом апликацијом." | ||||
| } | ||||
|   | ||||
| @@ -1,43 +1,52 @@ | ||||
| { | ||||
|     "ar": "عربى", | ||||
|     "bg": "български", | ||||
|     "ca": "català", | ||||
|     "cs": "česky", | ||||
|     "bqi": "Bakhtiari", | ||||
|     "ca": "Català", | ||||
|     "cs": "Čeština", | ||||
|     "cy": "Cymraeg", | ||||
|     "da": "Dansk", | ||||
|     "de": "Deutsch", | ||||
|     "el_GR": "Greek (Greece)", | ||||
|     "el": "Ελληνικά", | ||||
|     "en_GB": "English (UK)", | ||||
|     "en": "English (US)", | ||||
|     "en_GB": "English (United Kingdom)", | ||||
|     "en": "English (United States)", | ||||
|     "es": "Español", | ||||
|     "fa": "فارسی", | ||||
|     "fi": "suomi", | ||||
|     "fr": "français", | ||||
|     "eu": "Euskara", | ||||
|     "fr": "Français", | ||||
|     "gl": "Galego", | ||||
|     "hi": "हिन्दी", | ||||
|     "hr": "Croata", | ||||
|     "hu": "Magyar", | ||||
|     "id_ID": "Indonesian (Indonesia)", | ||||
|     "hr": "Hrvatski", | ||||
|     "id": "Indonesia", | ||||
|     "it": "Italiano", | ||||
|     "ja": "日本語", | ||||
|     "ko": "한국어" , | ||||
|     "lt": "Lietuvis" , | ||||
|     "ml": "മലയാളം", | ||||
|     "nb_NO": "norsk (Norge)", | ||||
|     "lv": "Latviešu", | ||||
|     "lt": "Lietuvių", | ||||
|     "hu": "Magyar", | ||||
|     "nl": "Nederlands", | ||||
|     "no": "Norsk", | ||||
|     "uz": "O‘zbek", | ||||
|     "pl": "Polski", | ||||
|     "pt": "Português", | ||||
|     "pt_PT": "Português (Portugal)", | ||||
|     "ro": "Română", | ||||
|     "ru": "Русский", | ||||
|     "sk": "Slovak", | ||||
|     "sr": "српски", | ||||
|     "sv": "svenska", | ||||
|     "ta": "தமிழ்", | ||||
|     "tr": "Türkçe", | ||||
|     "uk": "Українська", | ||||
|     "uz": "O'zbek", | ||||
|     "sk": "Slovenčina", | ||||
|     "fi": "Suomi", | ||||
|     "sv": "Svenska", | ||||
|     "vi": "Tiếng Việt", | ||||
|     "zh_TW": "中文 (傳統的)", | ||||
|     "zh-Hans": "简体中文", | ||||
|     "zh-Hant": "繁體中文" | ||||
| } | ||||
|     "tr": "Türkçe", | ||||
|     "el": "Ελληνικά", | ||||
|     "be": "Беларуская", | ||||
|     "bg": "Български", | ||||
|     "mn": "Монгол", | ||||
|     "ru": "Русский", | ||||
|     "sr": "Српски", | ||||
|     "uk": "Українська", | ||||
|     "ar": "العربية", | ||||
|     "fa": "فارسی", | ||||
|     "hi": "हिन्दी", | ||||
|     "bn": "বাংলা", | ||||
|     "gu": "ગુજરાતી", | ||||
|     "ta": "தமிழ்", | ||||
|     "te": "తెలుగు", | ||||
|     "ml": "മലയാളം", | ||||
|     "si": "සිංහල", | ||||
|     "ko": "한국어", | ||||
|     "zh_TW": "中文 (台灣)", | ||||
|     "zh-Hans": "中文 (简体)", | ||||
|     "ja": "日本語" | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Om Zulip", | ||||
| 	"Actual Size": "Faktisk storlek", | ||||
| 	"Add Organization": "Lägg till organisation", | ||||
| 	"Add a Zulip organization": "Lägg till en Zulip-organisation", | ||||
| 	"Add custom CSS": "Lägg till egen CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Avancerad", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Starta alltid minimerad", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Utseende", | ||||
| 	"Application Shortcuts": "Programgenvägar", | ||||
| 	"Are you sure you want to disconnect this organization?": "Är du säker på att du vill koppla ner organisationen?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Göm Menyraden automatiskt", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Göm menyraden automatiskt (Tryck Alt-tangentetn för att visa)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Tillbaka", | ||||
| 	"Bounce dock on new private message": "Animera dock för nytt privat meddelande", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Avbryt", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Ändra", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Leta efter uppdateringar", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Anslut till en annan organisation", | ||||
| 	"Connected organizations": "Anlutna organisationer", | ||||
| 	"Copy": "Kopiera", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Kopiera Zulip-URL", | ||||
| 	"Create a new organization": "Skapa en ny organisation", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Klipp ut", | ||||
| 	"Default download location": "Förvald plats för nedladdningar", | ||||
| 	"Delete": "Radera", | ||||
| 	"Desktop Notifications": "Datornotiser", | ||||
| 	"Desktop Settings": "Desktop-inställningar", | ||||
| 	"Disconnect": "Koppla från", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Ladda ner App-loggar", | ||||
| 	"Edit": "Ändra", | ||||
| 	"Edit Shortcuts": "Redigera Genvägar", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Aktivera felrapportering (kräver omstart)", | ||||
| 	"Enable spellchecker (requires restart)": "Aktivera stavningskontroll (kräver omstart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Fabriksåterställning", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "Fil", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Fuktionallitet", | ||||
| 	"General": "Allmän", | ||||
| 	"Get beta updates": "Hämta beta-uppdaeringar", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hård omstart", | ||||
| 	"Help": "Hjälp", | ||||
| 	"Help Center": "Hjälpcenter", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "Historia", | ||||
| 	"History Shortcuts": "Historiegenvägar", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Tangentbortskommandon", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Logga Ut", | ||||
| 	"Log Out of Organization": "Logga Ut alla Organisationer", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manuell proxy-konfigurering", | ||||
| 	"Minimize": "Minimera", | ||||
| 	"Mute all sounds from Zulip": "Tysta alla ljud från Zulip", | ||||
| 	"NO": "NEJ", | ||||
| 	"Network": "Nätverk", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "ELLER", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organisations-URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy by-pass-regler", | ||||
| 	"Proxy rules": "Proxy-regler", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Avsluta", | ||||
| 	"Quit Zulip": "Avsluta Zulip", | ||||
| 	"Quit when the window is closed": "Avsluta när föstret stängs", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Spara", | ||||
| 	"Select All": "Markera alla", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Inställningar", | ||||
| 	"Shortcuts": "Genvägar", | ||||
| 	"Show app icon in system tray": "Visa app-ikonen i systemfältet", | ||||
| 	"Show app unread badge": "Visa olästa meddelanden för app", | ||||
| 	"Show desktop notifications": "Visa skrivbordsnotiser", | ||||
| 	"Show sidebar": "Visa sidopanel", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Starta app vi inloggning", | ||||
| 	"Switch to Next Organization": "Växla till Nästa Organisation", | ||||
| 	"Switch to Previous Organization": "Växla till Tigare Organisation", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Dessa genvägar skrivbords-appen utökar Zulips webbapps", | ||||
| 	"Tip": "Tips", | ||||
| 	"Toggle DevTools for Active Tab": "Bläddra mellan Utvecklarverktyg för Aktiv flik", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Växla sidopanel", | ||||
| 	"Toggle Tray Icon": "Växla Fältikon", | ||||
| 	"Tools": "Verktyg", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Ångra", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Ladda upp", | ||||
| 	"Use system proxy settings (requires restart)": "Använd systemets proxy-inställningar (omstart krävs)", | ||||
| 	"View": "Vy", | ||||
| 	"View Shortcuts": "Visa Genvägar", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Fönster", | ||||
| 	"Window Shortcuts": "Fönstergenvägar", | ||||
| 	"YES": "JA", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zooma in", | ||||
| 	"Zoom Out": "Zooma Ut", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "ஜூலிப் பற்றி", | ||||
| 	"Actual Size": "உண்மையான அளவு", | ||||
| 	"Add Organization": "அமைப்பைச் சேர்", | ||||
| 	"Add a Zulip organization": "ஒரு ஜூலிப் அமைப்பைச் சேர்க்கவும்", | ||||
| 	"Add custom CSS": "தனிப்பயன் CSS ஐச் சேர்க்கவும்", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "மேம்பட்ட", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "எப்போதும் குறைக்கத் தொடங்குங்கள்", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "தோற்றம்", | ||||
| 	"Application Shortcuts": "பயன்பாட்டு குறுக்குவழிகள்", | ||||
| 	"Are you sure you want to disconnect this organization?": "இந்த அமைப்பைத் துண்டிக்க விரும்புகிறீர்களா?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "தானாக மறை பட்டி பட்டி", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "தானாக மறை மெனு பட்டியை (காண்பிக்க Alt விசையை அழுத்தவும்)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "மீண்டும்", | ||||
| 	"Bounce dock on new private message": "புதிய தனிப்பட்ட செய்தியில் கப்பல்துறை பவுன்ஸ்", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "இரத்து", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "மாற்றம்", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "புதுப்பிப்புகளைச் சரிபார்க்கவும்", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "வேறொரு நிறுவனத்துடன் இணைக்கவும்", | ||||
| 	"Connected organizations": "இணைக்கப்பட்ட நிறுவனங்கள்", | ||||
| 	"Copy": "நகல்", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "ஜூலிப் URL ஐ நகலெடுக்கவும்", | ||||
| 	"Create a new organization": "புதிய அமைப்பை உருவாக்கவும்", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "வெட்டு", | ||||
| 	"Default download location": "இயல்புநிலை பதிவிறக்க இடம்", | ||||
| 	"Delete": "அழி", | ||||
| 	"Desktop Notifications": "டெஸ்க்டாப் அறிவிப்புகள்", | ||||
| 	"Desktop Settings": "டெஸ்க்டாப் அமைப்புகள்", | ||||
| 	"Disconnect": "துண்டி", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "பயன்பாட்டு பதிவுகள் பதிவிறக்கவும்", | ||||
| 	"Edit": "தொகு", | ||||
| 	"Edit Shortcuts": "குறுக்குவழிகளைத் திருத்து", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "பிழை அறிக்கையை இயக்கு (மறுதொடக்கம் தேவை)", | ||||
| 	"Enable spellchecker (requires restart)": "எழுத்துப்பிழை சரிபார்ப்பை இயக்கு (மறுதொடக்கம் தேவை)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "தொழிற்சாலை மீட்டமைப்பு", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "கோப்பு", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "செயல்பாடு", | ||||
| 	"General": "பொது", | ||||
| 	"Get beta updates": "பீட்டா புதுப்பிப்புகளைப் பெறுங்கள்", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "கடின மறுஏற்றம்", | ||||
| 	"Help": "உதவி", | ||||
| 	"Help Center": "உதவி மையம்", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "வரலாறு", | ||||
| 	"History Shortcuts": "வரலாறு குறுக்குவழிகள்", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "விசைப்பலகை குறுக்குவழிகள்", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "வெளியேறு", | ||||
| 	"Log Out of Organization": "நிறுவனத்திலிருந்து வெளியேறு", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "கையேடு ப்ராக்ஸி உள்ளமைவு", | ||||
| 	"Minimize": "குறைத்தல்", | ||||
| 	"Mute all sounds from Zulip": "ஜூலிப்பிலிருந்து எல்லா ஒலிகளையும் முடக்கு", | ||||
| 	"NO": "இல்லை", | ||||
| 	"Network": "வலைப்பின்னல்", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "இல்லை", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "அல்லது", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "அமைப்பு URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "பதிலாள்", | ||||
| 	"Proxy bypass rules": "ப்ராக்ஸி பைபாஸ் விதிகள்", | ||||
| 	"Proxy rules": "ப்ராக்ஸி விதிகள்", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "விட்டுவிட", | ||||
| 	"Quit Zulip": "ஜூலிப்பை விட்டு வெளியேறு", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "சேமி", | ||||
| 	"Select All": "அனைத்தையும் தெரிவுசெய்", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "அமைப்புகள்", | ||||
| 	"Shortcuts": "குறுக்குவழிகள்", | ||||
| 	"Show app icon in system tray": "கணினி தட்டில் பயன்பாட்டு ஐகானைக் காட்டு", | ||||
| 	"Show app unread badge": "பயன்பாட்டை படிக்காத பேட்ஜைக் காட்டு", | ||||
| 	"Show desktop notifications": "டெஸ்க்டாப் அறிவிப்புகளைக் காண்பி", | ||||
| 	"Show sidebar": "பக்கப்பட்டியைக் காட்டு", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "உள்நுழைவில் பயன்பாட்டைத் தொடங்கவும்", | ||||
| 	"Switch to Next Organization": "அடுத்த அமைப்புக்கு மாறவும்", | ||||
| 	"Switch to Previous Organization": "முந்தைய அமைப்புக்கு மாறவும்", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "இந்த டெஸ்க்டாப் பயன்பாட்டு குறுக்குவழிகள் ஜூலிப் வெப்ஆப்பை நீட்டிக்கின்றன", | ||||
| 	"Tip": "குறிப்பு", | ||||
| 	"Toggle DevTools for Active Tab": "செயலில் தாவலுக்கு DevTools ஐ மாற்று", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "பக்கப்பட்டியை நிலைமாற்று", | ||||
| 	"Toggle Tray Icon": "தட்டு ஐகானை மாற்று", | ||||
| 	"Tools": "கருவிகள்", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "செயல்தவிர்", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "பதிவேற்றம்", | ||||
| 	"Use system proxy settings (requires restart)": "கணினி ப்ராக்ஸி அமைப்புகளைப் பயன்படுத்தவும் (மறுதொடக்கம் தேவை)", | ||||
| 	"View": "காண்க", | ||||
| 	"View Shortcuts": "குறுக்குவழிகளைக் காண்க", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "ஜன்னல்", | ||||
| 	"Window Shortcuts": "சாளர குறுக்குவழிகள்", | ||||
| 	"YES": "ஆம்", | ||||
| 	"Yes": "ஆம்", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "பெரிதாக்க", | ||||
| 	"Zoom Out": "பெரிதாக்கு", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "జులిప్ గురించి", | ||||
| 	"Actual Size": "వాస్తవ పరిమాణం", | ||||
| 	"Add Organization": "సంస్థను జోడించు", | ||||
| 	"Add a Zulip organization": "జులిప్ సంస్థను జోడించు", | ||||
| 	"Add custom CSS": "అనుకూల CSS ను  జోడించు", | ||||
| 	"AddServer": "సర్వర్ జోడించు", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "ఉన్నతస్థాయి", | ||||
| 	"All the connected organizations will appear here.": "కనెక్ట్ చేయబడిన అన్ని సంస్థలు ఇక్కడ కనిపిస్తాయి.", | ||||
| 	"Always start minimized": "ఎల్లప్పుడూ తగ్గించబడి ప్రారంభించండి", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "ప్రదర్శన", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,127 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Antas na Mataas", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Baguhin", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Mga Itinakda", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| } | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "Yeni bir güncelleme {{{version}}} indirildi.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "Zulip Masaüstü'nün yeni bir sürümü {{{version}}} mevcut.", | ||||
| 	"About": "Hakkında", | ||||
| 	"About Zulip": "Zulip hakkında", | ||||
| 	"Actual Size": "Gerçek Boyut", | ||||
| 	"Add Organization": "Organizasyon Ekle", | ||||
| 	"Add a Zulip organization": "Zulip Organizasyonu Ekle", | ||||
| 	"Add custom CSS": "Özel CSS Ekle", | ||||
| 	"AddServer": "SunucuEkle", | ||||
| 	"Add to Dictionary": "Sözlüğe Ekle", | ||||
| 	"Advanced": "İleri Düzey", | ||||
| 	"All the connected organizations will appear here.": "Eklenen organizasyonlar burada gözükücektir.", | ||||
| 	"Always start minimized": "Her zaman simge durumunda başla", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Görünüm", | ||||
| 	"Application Shortcuts": "Uygulama Kısa Yolları", | ||||
| 	"Are you sure you want to disconnect this organization?": "Bu organizasyonunun bağlantısını kesmek istediğinize emin misiniz?", | ||||
| 	"Are you sure?": "Emin misiniz?", | ||||
| 	"Ask where to save files before downloading": "İndirmeden önce dosyaların nereye yükleneceğini sor", | ||||
| 	"Auto hide Menu bar": "Menü çubuğunu otomatik olarak gizle", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Menü çubuğunu otomatik olarak gizle (ALT tuşuna basarak göster)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Geri", | ||||
| 	"Bounce dock on new private message": "Yeni özel mesajlarda simgeyi hareket ettir", | ||||
| 	"Bounce dock on new private message": "Yeni özel iletilerde simgeyi hareket ettir", | ||||
| 	"CSS file": "CSS dosyası", | ||||
| 	"Cancel": "İptal", | ||||
| 	"Certificate error": "Sertifika hatası", | ||||
| 	"Change": "Değiştir", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Sistem Seçenekleri → Klavye → Metin → Kelime Denetimi üzerinden dili değiştirin.", | ||||
| 	"Check for Updates": "Güncellemeleri Kontrol Et", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Başka bir organizasyona bağlan", | ||||
| 	"Connected organizations": "Bağlı organizasyonlar", | ||||
| 	"Copy": "Kopyala", | ||||
| 	"Copy Email Address": "E-posta adresini kopyala", | ||||
| 	"Copy Image": "Resmi Kopyala", | ||||
| 	"Copy Image URL": "Resim URL Kopyala", | ||||
| 	"Copy Link": "Linki Kopyala", | ||||
| 	"Copy Zulip URL": "Zulip URL Kopyala", | ||||
| 	"Create a new organization": "Yeni bir organizasyon oluştur", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Kes", | ||||
| 	"Default download location": "Varsayılan indirme yeri", | ||||
| 	"Delete": "Sil", | ||||
| 	"Desktop Notifications": "Masaüstü Bildirimleri", | ||||
| 	"Desktop Settings": "Masaüstü Ayarları", | ||||
| 	"Disconnect": "Bağlantıyı Kes", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Uygulama Kütüklerini İndir", | ||||
| 	"Edit": "Düzenle", | ||||
| 	"Edit Shortcuts": "Kestirmeleri Düzenle", | ||||
| @@ -42,16 +57,20 @@ | ||||
| 	"Enable error reporting (requires restart)": "Hata raporlamasını etkinleştir (yeniden başlatma gerekli)", | ||||
| 	"Enable spellchecker (requires restart)": "Sözcük denetimini etkinleştir (yeniden başlatma gerekir)", | ||||
| 	"Enter Full Screen": "Büyük Ekrana Geç", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Fabrika Ayarlarına Dön", | ||||
| 	"Factory Reset Data": "Fabrika Verilerine Sıfırla", | ||||
| 	"File": "Dosya", | ||||
| 	"Find accounts": "Hesapları bul", | ||||
| 	"Find accounts by email": "E-posta ile hesapları bul", | ||||
| 	"Flash taskbar on new message": "Yeni mesajlarda görev çubuğunu aydınlat", | ||||
| 	"Flash taskbar on new message": "Yeni iletilerde görev çubuğunu aydınlat", | ||||
| 	"Forward": "Yönlendir", | ||||
| 	"Functionality": "Fonksiyonellik", | ||||
| 	"General": "Genel", | ||||
| 	"Get beta updates": "Beta güncellemelerini al", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Zor Yeniden Yükleme", | ||||
| 	"Help": "Yardım", | ||||
| 	"Help Center": "Yardım Merkezi", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Zulip'i Sakla", | ||||
| 	"History": "Tarihçe", | ||||
| 	"History Shortcuts": "Tarihçe Kestirmeleri", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Klavye Kestirmeleri", | ||||
| 	"Later": "Sonra", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Çıkış Yap", | ||||
| 	"Log Out of Organization": "Organizasyondan Çıkış Yap", | ||||
| 	"Look Up": "Bak", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manuel Proxy Ayarları", | ||||
| 	"Minimize": "Simge Durumuna Düşür", | ||||
| 	"Mute all sounds from Zulip": "Tüm Zulip seslerini sessize al", | ||||
| 	"NO": "HAYIR", | ||||
| 	"Network": "Ağ", | ||||
| 	"Network and Proxy Settings": "Ağ ve Proxy Ayarları", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "Hayır", | ||||
| 	"No Suggestion Found": "Öneri Bulunamadı", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Bildirim ayarları", | ||||
| 	"OK": "Tamam", | ||||
| 	"OR": "VEYA", | ||||
| 	"On macOS, the OS spellchecker is used.": "macOS için, İşletim Sistemi kelime denetimi kullanılır.", | ||||
| 	"Organization URL": "Organizasyon URL'si", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy atlatma kuralları", | ||||
| 	"Proxy rules": "Proxy kuralları", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Çık", | ||||
| 	"Quit Zulip": "Zulip'ten Çık", | ||||
| 	"Quit when the window is closed": "Pencere kapanınca çık", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Uygulamayı sıfırla, bütün organizasyonlar ve hesaplar silinir.", | ||||
| 	"Save": "Kaydet", | ||||
| 	"Select All": "Hepsini Seç", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Servisler", | ||||
| 	"Settings": "Ayarlar", | ||||
| 	"Shortcuts": "Kestirmeler", | ||||
| 	"Show app icon in system tray": "Sistem çubuğunda uygulama ikonunu göster", | ||||
| 	"Show app unread badge": "Uygulama okunmamış etiketini göster", | ||||
| 	"Show desktop notifications": "Masaüstü bildirimlerini göster", | ||||
| 	"Show sidebar": "Yan barı göster", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Kelime Denetimi Dilleri", | ||||
| 	"Start app at login": "Giriş sırasında uygulamayı çalıştır", | ||||
| 	"Switch to Next Organization": "Bir sonraki organizasyona geç", | ||||
| 	"Switch to Previous Organization": "Bir önceki organizasyona geç", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Bu masaüstü uygulama kestirmeleri Zulip web uygulamasının devamıdır", | ||||
| 	"Tip": "İpucu", | ||||
| 	"Toggle DevTools for Active Tab": "Aktif Pencere için Geliştirici Araçlarını Aç", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Yan Barı Aç", | ||||
| 	"Toggle Tray Icon": "Sistem İkonunu Aç", | ||||
| 	"Tools": "Araçlar", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Geri Al", | ||||
| 	"Unhide": "Göster", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Gönder", | ||||
| 	"Use system proxy settings (requires restart)": "Sistem proxy ayarlarını kullan (yeniden başlatma gerekli)", | ||||
| 	"View": "Göster", | ||||
| 	"View Shortcuts": "Kestirmeleri Göster", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Pencere", | ||||
| 	"Window Shortcuts": "Pencere Kısa Yolları", | ||||
| 	"YES": "EVET", | ||||
| 	"Yes": "Evet", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "Zulip masaüstünün şu sürümünü kullanıyorsunuz.\nSürüm: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Kelime denetimi için en fazla 3 dil seçebilirsiniz.", | ||||
| 	"Zoom In": "Büyüt", | ||||
| 	"Zoom Out": "Küçült", | ||||
|   | ||||
| @@ -1,23 +1,31 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Про Zulip", | ||||
| 	"Actual Size": "Фактичний розмір", | ||||
| 	"Add Organization": "Додати організацію", | ||||
| 	"Add a Zulip organization": "Додати організацію Zulip", | ||||
| 	"Add custom CSS": "Додати власний CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Розширені", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"All the connected organizations will appear here.": "Усі підключені організації з’являться тут", | ||||
| 	"Always start minimized": "Запускати мінімізованим", | ||||
| 	"App Updates": "Оновлення додатку", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Зовнішній вигляд", | ||||
| 	"Application Shortcuts": "Клавіатурні скорочення програми", | ||||
| 	"Are you sure you want to disconnect this organization?": "Ви дійсно хочете відключити цю організацію?", | ||||
| 	"Are you sure?": "Ви впевнені?", | ||||
| 	"Ask where to save files before downloading": "Запитувати, куди зберігати файли перед завантаженням", | ||||
| 	"Auto hide Menu bar": "Автоматично приховувати рядок меню", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Автоматичне приховування панелі меню (клавіша Alt для відображення)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Доступно за ліцензією {{{link}}}Apache 2.0 License{{{endLink}}}.", | ||||
| 	"Back": "Назад", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS файл", | ||||
| 	"Cancel": "Скасувати", | ||||
| 	"Certificate error": "Помилка сертифіката", | ||||
| 	"Change": "Змінити", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Перевірити наявність оновлень", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Під'єднатися до іншої організації", | ||||
| 	"Connected organizations": "Під'єднані організації", | ||||
| 	"Copy": "Копіювати", | ||||
| 	"Copy Email Address": "Скопіювати адресу електронної пошти", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Скопіювати URL-адресу Zulip", | ||||
| 	"Create a new organization": "Створити нову організацію", | ||||
| 	"Custom CSS file deleted": "Власний CSS файл видалено", | ||||
| 	"Cut": "Вирізати", | ||||
| 	"Default download location": "Місце завантаження за замовчуванням", | ||||
| 	"Delete": "Видалити", | ||||
| 	"Desktop Notifications": "Сповіщення на робочому столі", | ||||
| 	"Desktop Settings": "Налаштування", | ||||
| 	"Disconnect": "Від'єднати", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Не турбувати", | ||||
| 	"Download App Logs": "Завантажити журнали додатку", | ||||
| 	"Edit": "Редагувати", | ||||
| 	"Edit Shortcuts": "Клавіатурні скорочення редагування", | ||||
| @@ -41,7 +56,10 @@ | ||||
| 	"Enable auto updates": "Увімкнути автоматичне оновлення", | ||||
| 	"Enable error reporting (requires restart)": "Увімкнути повідомлення про помилки (потрібен перезапуск)", | ||||
| 	"Enable spellchecker (requires restart)": "Увімкнути перевірку орфографії (потрібен перезапуск)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Enter Full Screen": "Увімкнути повноекранний режим", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Скинути до заводських", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "Файл", | ||||
| @@ -52,23 +70,37 @@ | ||||
| 	"Functionality": "Функціональність", | ||||
| 	"General": "Загальні", | ||||
| 	"Get beta updates": "Отримувати бета-оновлення", | ||||
| 	"Go Back": "Повернутися", | ||||
| 	"Hard Reload": "Жорстке перезавантаження", | ||||
| 	"Help": "Довідка", | ||||
| 	"Help Center": "Центр довідки", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Hide Others": "Приховати інших", | ||||
| 	"Hide Zulip": "Приховати Zulip", | ||||
| 	"History": "Історія", | ||||
| 	"History Shortcuts": "Клавіатурні скорочення історії", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Клавіатурні скорочення", | ||||
| 	"Later": "Пізніше", | ||||
| 	"Loading": "Завантаження", | ||||
| 	"Log Out": "Вийти", | ||||
| 	"Log Out of Organization": "Вийти з організації", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Ручні налаштування проксі-сервера", | ||||
| 	"Minimize": "Мінімізувати", | ||||
| 	"Mute all sounds from Zulip": "Заглушити всі звуки від Zulip", | ||||
| 	"NO": "НІ", | ||||
| 	"Network": "Мережа", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Network and Proxy Settings": "Налаштування мережі та проксі", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "Ні", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Налаштування сповіщень", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "АБО", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "URL-адреса організації", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Проксі", | ||||
| 	"Proxy bypass rules": "Правила обходу проксі", | ||||
| 	"Proxy rules": "Правила проксі", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Вийти", | ||||
| 	"Quit Zulip": "Вийти з Zulip", | ||||
| 	"Quit when the window is closed": "Виходити, коли вікно закрите", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Зберегти", | ||||
| 	"Select All": "Вибрати все", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Налаштування", | ||||
| 	"Shortcuts": "Клавіатурні скорочення", | ||||
| 	"Show app icon in system tray": "Показувати значок програми в системному треї", | ||||
| 	"Show app unread badge": "Показувати значок непрочитаних повідомлень", | ||||
| 	"Show desktop notifications": "Показувати сповіщення на робочому столі", | ||||
| 	"Show sidebar": "Показувати бічну панель", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Запускати програму при вході в систему", | ||||
| 	"Switch to Next Organization": "Перемкнутись до наступної організації", | ||||
| 	"Switch to Previous Organization": "Перемкнути на попередню організацію", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Порада", | ||||
| 	"Toggle DevTools for Active Tab": "Увімкнути DevTools для активної вкладки", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Перемкнути бічну панель", | ||||
| 	"Toggle Tray Icon": "Перемкнути значок в треї", | ||||
| 	"Tools": "Інструменти", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Назад", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Завантажити", | ||||
| 	"Use system proxy settings (requires restart)": "Використовувати системні налаштування проксі (потрібен перезапуск)", | ||||
| 	"View": "Вигляд", | ||||
| 	"View Shortcuts": "Клавіатурні скорочення вигляду", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Вікно", | ||||
| 	"Window Shortcuts": "Клавіатурні скороченн вікна", | ||||
| 	"YES": "ТАК", | ||||
| 	"Yes": "Так", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Збільшити", | ||||
| 	"Zoom Out": "Зменшити", | ||||
|   | ||||
| @@ -1,127 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "Close", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| } | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Cancel", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Notification settings", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Settings", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "A new update {{{version}}} has been downloaded.", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "A new version {{{version}}} of Zulip Desktop is available.", | ||||
| 	"About": "About", | ||||
| 	"About Zulip": "Về Zulip", | ||||
| 	"Actual Size": "Kích thước thực sự", | ||||
| 	"Add Organization": "Thêm tổ chức", | ||||
| 	"Add a Zulip organization": "Thêm một tổ chức Zulip", | ||||
| 	"Add custom CSS": "Thêm CSS tùy chỉnh", | ||||
| 	"AddServer": "Thêm máy chủ", | ||||
| 	"Add to Dictionary": "Add to Dictionary", | ||||
| 	"Advanced": "Nâng cao", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Luôn bắt đầu thu nhỏ", | ||||
| @@ -13,11 +16,16 @@ | ||||
| 	"Appearance": "Vẻ bề ngoài", | ||||
| 	"Application Shortcuts": "Phím tắt ứng dụng", | ||||
| 	"Are you sure you want to disconnect this organization?": "Bạn có chắc chắn muốn ngắt kết nối tổ chức này không?", | ||||
| 	"Are you sure?": "Are you sure?", | ||||
| 	"Ask where to save files before downloading": "Hỏi nơi lưu tệp trước khi tải xuống", | ||||
| 	"Auto hide Menu bar": "Tự động ẩn thanh Menu", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Tự động ẩn thanh menu (Nhấn phím Alt để hiển thị)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "Available under the {{{link}}}Apache 2.0 License{{{endLink}}}", | ||||
| 	"Back": "Quay lại", | ||||
| 	"Bounce dock on new private message": "Trả lại dock trên tin nhắn riêng tư mới", | ||||
| 	"CSS file": "CSS file", | ||||
| 	"Cancel": "Hủy", | ||||
| 	"Certificate error": "Certificate error", | ||||
| 	"Change": "Biến đổi", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Kiểm tra cập nhật", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "Kết nối với một tổ chức khác", | ||||
| 	"Connected organizations": "Các tổ chức được kết nối", | ||||
| 	"Copy": "Sao chép", | ||||
| 	"Copy Email Address": "Copy Email Address", | ||||
| 	"Copy Image": "Copy Image", | ||||
| 	"Copy Image URL": "Copy Image URL", | ||||
| 	"Copy Link": "Copy Link", | ||||
| 	"Copy Zulip URL": "Sao chép URL Zulip", | ||||
| 	"Create a new organization": "Tạo một tổ chức mới", | ||||
| 	"Custom CSS file deleted": "Custom CSS file deleted", | ||||
| 	"Cut": "Cắt", | ||||
| 	"Default download location": "Vị trí tải xuống mặc định", | ||||
| 	"Delete": "Xóa bỏ", | ||||
| 	"Desktop Notifications": "Thông báo trên màn hình", | ||||
| 	"Desktop Settings": "Cài đặt màn hình", | ||||
| 	"Disconnect": "Ngắt kết nối", | ||||
| 	"Disconnect organization": "Disconnect organization", | ||||
| 	"Do Not Disturb": "Do Not Disturb", | ||||
| 	"Download App Logs": "Tải xuống Nhật ký ứng dụng", | ||||
| 	"Edit": "Chỉnh sửa", | ||||
| 	"Edit Shortcuts": "Chỉnh sửa phím tắt", | ||||
| @@ -42,6 +57,9 @@ | ||||
| 	"Enable error reporting (requires restart)": "Bật báo cáo lỗi (yêu cầu khởi động lại)", | ||||
| 	"Enable spellchecker (requires restart)": "Bật trình kiểm tra chính tả (yêu cầu khởi động lại)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Error saving new organization": "Error saving new organization", | ||||
| 	"Error saving update notifications": "Error saving update notifications", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}", | ||||
| 	"Factory Reset": "Khôi phục cài đặt gốc", | ||||
| 	"Factory Reset Data": "Dữ liệu khôi phục cài đặt gốc", | ||||
| 	"File": "Tập tin", | ||||
| @@ -52,6 +70,7 @@ | ||||
| 	"Functionality": "Chức năng", | ||||
| 	"General": "Chung", | ||||
| 	"Get beta updates": "Nhận bản cập nhật beta", | ||||
| 	"Go Back": "Go Back", | ||||
| 	"Hard Reload": "Tải lại cứng", | ||||
| 	"Help": "Cứu giúp", | ||||
| 	"Help Center": "Trung tâm trợ giúp", | ||||
| @@ -60,15 +79,28 @@ | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "Lịch sử", | ||||
| 	"History Shortcuts": "Phím tắt lịch sử", | ||||
| 	"Install Later": "Install Later", | ||||
| 	"Install and Relaunch": "Install and Relaunch", | ||||
| 	"It will be installed the next time you restart the application.": "It will be installed the next time you restart the application.", | ||||
| 	"Keyboard Shortcuts": "Các phím tắt bàn phím", | ||||
| 	"Later": "Later", | ||||
| 	"Loading": "Loading", | ||||
| 	"Log Out": "Đăng xuất", | ||||
| 	"Log Out of Organization": "Đăng xuất khỏi Tổ chức", | ||||
| 	"Look Up": "Look Up", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "Maintained by {{{link}}}Zulip{{{endLink}}}", | ||||
| 	"Manual Download": "Manual Download", | ||||
| 	"Manual proxy configuration": "Cấu hình proxy thủ công", | ||||
| 	"Minimize": "Giảm thiểu", | ||||
| 	"Mute all sounds from Zulip": "Tắt tiếng tất cả âm thanh từ Zulip", | ||||
| 	"NO": "KHÔNG", | ||||
| 	"Network": "Mạng", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"New servers added. Reload app now?": "New servers added. Reload app now?", | ||||
| 	"No": "No", | ||||
| 	"No Suggestion Found": "No Suggestion Found", | ||||
| 	"No updates available.": "No updates available.", | ||||
| 	"Notification settings": "Thiết lập thông báo", | ||||
| 	"OK": "OK", | ||||
| 	"OR": "HOẶC", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "URL tổ chức", | ||||
| @@ -78,6 +110,7 @@ | ||||
| 	"Proxy": "Ủy quyền", | ||||
| 	"Proxy bypass rules": "Quy tắc bỏ qua proxy", | ||||
| 	"Proxy rules": "Quy tắc proxy", | ||||
| 	"Proxy settings saved.": "Proxy settings saved.", | ||||
| 	"Quit": "Từ bỏ", | ||||
| 	"Quit Zulip": "Thoát Zulip", | ||||
| 	"Quit when the window is closed": "Thoát khi đóng cửa sổ", | ||||
| @@ -89,17 +122,23 @@ | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Tiết kiệm", | ||||
| 	"Select All": "Chọn tất cả", | ||||
| 	"Select Download Location": "Select Download Location", | ||||
| 	"Select file": "Select file", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "Cài đặt", | ||||
| 	"Shortcuts": "Các phím tắt", | ||||
| 	"Show app icon in system tray": "Hiển thị biểu tượng ứng dụng trong khay hệ thống", | ||||
| 	"Show app unread badge": "Hiển thị huy hiệu ứng dụng chưa đọc", | ||||
| 	"Show desktop notifications": "Hiển thị thông báo trên màn hình", | ||||
| 	"Show sidebar": "Hiển thị thanh bên", | ||||
| 	"Show unread count badge on app icon": "Show unread count badge on app icon", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Khởi động ứng dụng khi đăng nhập", | ||||
| 	"Switch to Next Organization": "Chuyển sang tổ chức tiếp theo", | ||||
| 	"Switch to Previous Organization": "Chuyển sang tổ chức trước đó", | ||||
| 	"The custom CSS previously set is deleted.": "The custom CSS previously set is deleted.", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "The update will be downloaded in the background. You will be notified when it is ready to be installed.", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "There was an error while saving the new organization. You may have to add your previous organizations again.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Các phím tắt ứng dụng dành cho máy tính để bàn này mở rộng ứng dụng web của Zulip", | ||||
| 	"Tip": "Mẹo", | ||||
| 	"Toggle DevTools for Active Tab": "Chuyển đổi DevTools cho Tab Hoạt động", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "Chuyển đổi thanh bên", | ||||
| 	"Toggle Tray Icon": "Chuyển đổi biểu tượng khay", | ||||
| 	"Tools": "Công cụ", | ||||
| 	"Unable to check for updates.": "Unable to check for updates.", | ||||
| 	"Unable to download the update.": "Unable to download the update.", | ||||
| 	"Undo": "Hoàn tác", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Unknown error": "Unknown error", | ||||
| 	"Upload": "Tải lên", | ||||
| 	"Use system proxy settings (requires restart)": "Sử dụng cài đặt proxy hệ thống (yêu cầu khởi động lại)", | ||||
| 	"View": "Lượt xem", | ||||
| 	"View Shortcuts": "Xem các phím tắt", | ||||
| 	"We encountered an error while saving the update notifications.": "We encountered an error while saving the update notifications.", | ||||
| 	"Window": "Cửa sổ", | ||||
| 	"Window Shortcuts": "Phím tắt cửa sổ", | ||||
| 	"YES": "VÂNG", | ||||
| 	"Yes": "Yes", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "Bạn có thể chọn tối đa 3 ngôn ngữ để kiểm tra chính tả.", | ||||
| 	"Zoom In": "Phóng to", | ||||
| 	"Zoom Out": "Thu nhỏ", | ||||
|   | ||||
| @@ -1,10 +1,13 @@ | ||||
| { | ||||
| 	"A new update {{{version}}} has been downloaded.": "已下载 {{{version}}} 新版本", | ||||
| 	"A new version {{{version}}} of Zulip Desktop is available.": "Zulip Desktop {{{version}}}  新版本现已推出", | ||||
| 	"About": "关于Zulip", | ||||
| 	"About Zulip": "关于 Zulip", | ||||
| 	"Actual Size": "真实大小", | ||||
| 	"Add Organization": "添加组织", | ||||
| 	"Add a Zulip organization": "添加 Zulip 组织", | ||||
| 	"Add custom CSS": "添加自定义 CSS", | ||||
| 	"AddServer": "添加服务器", | ||||
| 	"Add to Dictionary": "添加到词典", | ||||
| 	"Advanced": "高级", | ||||
| 	"All the connected organizations will appear here.": "所有已连接的组织都会在此显示。", | ||||
| 	"Always start minimized": "总是最小化启动", | ||||
| @@ -12,12 +15,17 @@ | ||||
| 	"App language (requires restart)": "应用语言 (需要重启)", | ||||
| 	"Appearance": "外观", | ||||
| 	"Application Shortcuts": "快捷键", | ||||
| 	"Are you sure you want to disconnect this organization?": "您确定要与此组织断开连接吗?", | ||||
| 	"Are you sure you want to disconnect this organization?": "您确定要与此组织断开连接?", | ||||
| 	"Are you sure?": "你确定吗?", | ||||
| 	"Ask where to save files before downloading": "下载前询问保存文件位置", | ||||
| 	"Auto hide Menu bar": "自动隐藏菜单栏", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "自动隐藏菜单栏 (按Alt键显示)", | ||||
| 	"Available under the {{{link}}}Apache 2.0 License{{{endLink}}}": "受 {{{link}}}Apache 2.0 License{{{endLink}}} 约束", | ||||
| 	"Back": "后退", | ||||
| 	"Bounce dock on new private message": "收到新私信时弹出Dock", | ||||
| 	"CSS file": "CSS 文件", | ||||
| 	"Cancel": "取消", | ||||
| 	"Certificate error": "证书错误", | ||||
| 	"Change": "更改", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "从 \"系统偏好设置 → 键盘 → 文本 → 拼写\"  更改语言。", | ||||
| 	"Check for Updates": "检查更新...", | ||||
| @@ -26,14 +34,21 @@ | ||||
| 	"Connect to another organization": "连接到另一个组织", | ||||
| 	"Connected organizations": "连接的组织", | ||||
| 	"Copy": "复制", | ||||
| 	"Copy Zulip URL": "复制Zulip地址(URL)", | ||||
| 	"Copy Email Address": "复制电子邮箱地址", | ||||
| 	"Copy Image": "复制图片", | ||||
| 	"Copy Image URL": "复制图片链接", | ||||
| 	"Copy Link": "复制链接", | ||||
| 	"Copy Zulip URL": "复制Zulip地址", | ||||
| 	"Create a new organization": "创建新的组织", | ||||
| 	"Custom CSS file deleted": "自定义CSS文件已删除", | ||||
| 	"Cut": "剪切", | ||||
| 	"Default download location": "缺省下载位置", | ||||
| 	"Delete": "删除", | ||||
| 	"Desktop Notifications": "桌面通知", | ||||
| 	"Desktop Settings": "桌面设置", | ||||
| 	"Disconnect": "断开", | ||||
| 	"Disconnect organization": "断开组织", | ||||
| 	"Do Not Disturb": "请勿打扰", | ||||
| 	"Download App Logs": "下载应用日志", | ||||
| 	"Edit": "编辑", | ||||
| 	"Edit Shortcuts": "编辑快捷键", | ||||
| @@ -42,16 +57,20 @@ | ||||
| 	"Enable error reporting (requires restart)": "启用错误报告(需要重启)", | ||||
| 	"Enable spellchecker (requires restart)": "启用拼写检查(需要重启)", | ||||
| 	"Enter Full Screen": "进入全屏", | ||||
| 	"Error saving new organization": "保存新组织时出错", | ||||
| 	"Error saving update notifications": "保存更新通知时出错", | ||||
| 	"Error: {{{error}}}\n\nThe latest version of Zulip Desktop is available at:\n{{{link}}}\nCurrent version: {{{version}}}": "错误:{{{error}}}\n\n最新版 Zulip Desktop 已可用\n{{{link}}}\n当前版本:{{{version}}}", | ||||
| 	"Factory Reset": "恢复出厂设置", | ||||
| 	"Factory Reset Data": "恢复出厂设置与重置数据", | ||||
| 	"File": "文件", | ||||
| 	"Find accounts": "查找账户", | ||||
| 	"Find accounts by email": "通过电子邮件查找帐户", | ||||
| 	"Find accounts": "查找账号", | ||||
| 	"Find accounts by email": "通过电子邮件查找账号", | ||||
| 	"Flash taskbar on new message": "收到新消息时闪烁任务栏", | ||||
| 	"Forward": "前进", | ||||
| 	"Functionality": "功能性", | ||||
| 	"General": "通用", | ||||
| 	"Get beta updates": "获取测试版更新", | ||||
| 	"Go Back": "返回", | ||||
| 	"Hard Reload": "强制重新加载", | ||||
| 	"Help": "帮助", | ||||
| 	"Help Center": "帮助中心", | ||||
| @@ -60,24 +79,38 @@ | ||||
| 	"Hide Zulip": "隐藏Zulip", | ||||
| 	"History": "历史消息", | ||||
| 	"History Shortcuts": "历史快捷键", | ||||
| 	"Install Later": "稍后安装", | ||||
| 	"Install and Relaunch": "安装并重新打开应用", | ||||
| 	"It will be installed the next time you restart the application.": "将在您下次重新启动应用时安装", | ||||
| 	"Keyboard Shortcuts": "快捷键", | ||||
| 	"Later": "稍后", | ||||
| 	"Loading": "加载中", | ||||
| 	"Log Out": "退出", | ||||
| 	"Log Out of Organization": "登出此组织", | ||||
| 	"Look Up": "查询", | ||||
| 	"Maintained by {{{link}}}Zulip{{{endLink}}}": "由 {{{link}}}Zulip{{{endLink}}} 维护", | ||||
| 	"Manual Download": "手动下载", | ||||
| 	"Manual proxy configuration": "手动代理配置", | ||||
| 	"Minimize": "最小化", | ||||
| 	"Mute all sounds from Zulip": "将 Zulip 中的所有声音静音", | ||||
| 	"NO": "否", | ||||
| 	"Network": "网络", | ||||
| 	"Network and Proxy Settings": "网络和代理设置", | ||||
| 	"New servers added. Reload app now?": "已添加新服务器。现在重新加载应用程序吗?", | ||||
| 	"No": "否", | ||||
| 	"No Suggestion Found": "未找到建议", | ||||
| 	"No updates available.": "目前没有可用的更新", | ||||
| 	"Notification settings": "通知设置", | ||||
| 	"OK": "确定", | ||||
| 	"OR": "或", | ||||
| 	"On macOS, the OS spellchecker is used.": "在 macOS 上,使用操作系统的拼写检查器。", | ||||
| 	"Organization URL": "组织网址", | ||||
| 	"Organization URL": "组织 URL", | ||||
| 	"Organizations": "组织", | ||||
| 	"Paste": "粘贴", | ||||
| 	"Paste and Match Style": "粘贴并匹配格式", | ||||
| 	"Proxy": "代理", | ||||
| 	"Proxy bypass rules": "代理绕过规则", | ||||
| 	"Proxy rules": "代理规则", | ||||
| 	"Proxy settings saved.": "代理设置已保存。", | ||||
| 	"Quit": "退出", | ||||
| 	"Quit Zulip": "退出Zulip", | ||||
| 	"Quit when the window is closed": "窗口关闭时退出", | ||||
| @@ -86,20 +119,26 @@ | ||||
| 	"Reload": "重新加载", | ||||
| 	"Report an Issue": "反馈问题", | ||||
| 	"Reset App Settings": "重置应用设置", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "重置应用程序,将删除所有已连接的组织、帐户和证书。", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "重置应用程序,将删除所有已连接的组织、账号和证书。", | ||||
| 	"Save": "保存", | ||||
| 	"Select All": "全选", | ||||
| 	"Select Download Location": "选择下载位置", | ||||
| 	"Select file": "选择文件", | ||||
| 	"Services": "服务", | ||||
| 	"Settings": "设置", | ||||
| 	"Shortcuts": "快捷键", | ||||
| 	"Show app icon in system tray": "在系统托盘中显示应用图标", | ||||
| 	"Show app unread badge": "显示应用未读徽章", | ||||
| 	"Show desktop notifications": "显示桌面通知", | ||||
| 	"Show sidebar": "显示侧边栏", | ||||
| 	"Show unread count badge on app icon": "在应用程序图标上显示未读计数徽章", | ||||
| 	"Spellchecker Languages": "拼写检查语言", | ||||
| 	"Start app at login": "登录时启动应用", | ||||
| 	"Start app at login": "开机时自动启动", | ||||
| 	"Switch to Next Organization": "切换到下个组织", | ||||
| 	"Switch to Previous Organization": "切换到上个组织", | ||||
| 	"The custom CSS previously set is deleted.": "先前设置的自定义CSS已删除。", | ||||
| 	"The server presented an invalid certificate for {{{origin}}}:\n\n{{{error}}}": "服务器为 {{{origin}}} 提供了无效的证书:\n\n{{{error}}}", | ||||
| 	"The update will be downloaded in the background. You will be notified when it is ready to be installed.": "更新将在后台下载。当更新准备好安装时,您将收到通知。", | ||||
| 	"There was an error while saving the new organization. You may have to add your previous organizations again.": "保存新组织时出错。您可能需要重新添加以前的组织。", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "这些桌面版快捷键扩展自 Zulip 网页版", | ||||
| 	"Tip": "提示", | ||||
| 	"Toggle DevTools for Active Tab": "切换活动选项卡的开发者工具", | ||||
| @@ -109,15 +148,20 @@ | ||||
| 	"Toggle Sidebar": "切换侧边栏", | ||||
| 	"Toggle Tray Icon": "切换托盘图标", | ||||
| 	"Tools": "工具", | ||||
| 	"Unable to check for updates.": "无法检查更新", | ||||
| 	"Unable to download the update.": "无法下载更新", | ||||
| 	"Undo": "撤销", | ||||
| 	"Unhide": "取消隐藏", | ||||
| 	"Unknown error": "未知错误", | ||||
| 	"Upload": "上传", | ||||
| 	"Use system proxy settings (requires restart)": "使用系统代理设置(需要重启)", | ||||
| 	"Use system proxy settings (requires restart)": "使用系统代理设置(需要重启生效)", | ||||
| 	"View": "视图", | ||||
| 	"View Shortcuts": "查看快捷键", | ||||
| 	"We encountered an error while saving the update notifications.": "在保存更新通知的时候遇到一个问题", | ||||
| 	"Window": "窗口", | ||||
| 	"Window Shortcuts": "窗口快捷键", | ||||
| 	"YES": "确认", | ||||
| 	"Yes": "是", | ||||
| 	"You are running the latest version of Zulip Desktop.\nVersion: {{{version}}}": "您使用的是最新版的Zulip Desktop应用程序\n版本号:{{{version}}}", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "您最多可选择 3 种语言进行拼写检查。", | ||||
| 	"Zoom In": "放大", | ||||
| 	"Zoom Out": "缩小", | ||||
|   | ||||
| @@ -1,127 +0,0 @@ | ||||
| { | ||||
| 	"About Zulip": "關於 Zulip", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"All the connected organizations will appear here.": "All the connected organizations will appear here.", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"App language (requires restart)": "App language (requires restart)", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Back": "Back", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Change": "Change", | ||||
| 	"Change the language from System Preferences → Keyboard → Text → Spelling.": "Change the language from System Preferences → Keyboard → Text → Spelling.", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Close": "關閉", | ||||
| 	"Connect": "Connect", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"Copy": "Copy", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Cut": "Cut", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Delete": "Delete", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Edit": "Edit", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Factory Reset Data": "Factory Reset Data", | ||||
| 	"File": "File", | ||||
| 	"Find accounts": "尋找帳戶", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Forward": "Forward", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"General": "General", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Help": "Help", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"History": "History", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"NO": "NO", | ||||
| 	"Network": "Network", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"OR": "OR", | ||||
| 	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Quit": "Quit", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Redo": "Redo", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Reload": "Reload", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Reset the application, thus deleting all the connected organizations and accounts.": "Reset the application, thus deleting all the connected organizations and accounts.", | ||||
| 	"Save": "Save", | ||||
| 	"Select All": "Select All", | ||||
| 	"Services": "Services", | ||||
| 	"Settings": "設定", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Spellchecker Languages": "Spellchecker Languages", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"Tip": "Tip", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Tools": "Tools", | ||||
| 	"Undo": "Undo", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Upload": "Upload", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"View": "View", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Window": "Window", | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"YES": "YES", | ||||
| 	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script", | ||||
| 	"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app." | ||||
| } | ||||