mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-11-03 21:43:18 +00:00 
			
		
		
		
	Compare commits
	
		
			20 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					38c7695a99 | ||
| 
						 | 
					b268fe9478 | ||
| 
						 | 
					981a262836 | ||
| 
						 | 
					527bb5ab2f | ||
| 
						 | 
					e2947a0ce6 | ||
| 
						 | 
					3b2c758e09 | ||
| 
						 | 
					4867fc672a | ||
| 
						 | 
					f85f05d66b | ||
| 
						 | 
					39fd0e9877 | ||
| 
						 | 
					f6ff112f0e | ||
| 
						 | 
					6fcd1ef0d5 | ||
| 
						 | 
					92260b0f97 | ||
| 
						 | 
					c45c9537d1 | ||
| 
						 | 
					0eb4c9236e | ||
| 
						 | 
					47366b7617 | ||
| 
						 | 
					86e28f5b00 | ||
| 
						 | 
					7072a41e01 | ||
| 
						 | 
					79f6f13008 | ||
| 
						 | 
					70f0170f1d | ||
| 
						 | 
					bc75eba2bd | 
@@ -1,6 +1,6 @@
 | 
				
			|||||||
# Zulip Desktop Client
 | 
					# 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://ci.appveyor.com/project/zulip/zulip-desktop/branch/main)
 | 
				
			||||||
[](https://github.com/sindresorhus/xo)
 | 
					[](https://github.com/sindresorhus/xo)
 | 
				
			||||||
[](https://chat.zulip.org)
 | 
					[](https://chat.zulip.org)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,23 +19,23 @@ const logger = new Logger({
 | 
				
			|||||||
  file: "config-util.log",
 | 
					  file: "config-util.log",
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let db: JsonDB;
 | 
					let database: JsonDB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
reloadDb();
 | 
					reloadDatabase();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function getConfigItem<Key extends keyof Config>(
 | 
					export function getConfigItem<Key extends keyof Config>(
 | 
				
			||||||
  key: Key,
 | 
					  key: Key,
 | 
				
			||||||
  defaultValue: Config[Key],
 | 
					  defaultValue: Config[Key],
 | 
				
			||||||
): z.output<(typeof configSchemata)[Key]> {
 | 
					): z.output<(typeof configSchemata)[Key]> {
 | 
				
			||||||
  try {
 | 
					  try {
 | 
				
			||||||
    db.reload();
 | 
					    database.reload();
 | 
				
			||||||
  } catch (error: unknown) {
 | 
					  } catch (error: unknown) {
 | 
				
			||||||
    logger.error("Error while reloading settings.json: ");
 | 
					    logger.error("Error while reloading settings.json: ");
 | 
				
			||||||
    logger.error(error);
 | 
					    logger.error(error);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  try {
 | 
					  try {
 | 
				
			||||||
    return configSchemata[key].parse(db.getObject<unknown>(`/${key}`));
 | 
					    return configSchemata[key].parse(database.getObject<unknown>(`/${key}`));
 | 
				
			||||||
  } catch (error: unknown) {
 | 
					  } catch (error: unknown) {
 | 
				
			||||||
    if (!(error instanceof DataError)) throw error;
 | 
					    if (!(error instanceof DataError)) throw error;
 | 
				
			||||||
    setConfigItem(key, defaultValue);
 | 
					    setConfigItem(key, defaultValue);
 | 
				
			||||||
@@ -46,13 +46,13 @@ export function getConfigItem<Key extends keyof Config>(
 | 
				
			|||||||
// This function returns whether a key exists in the configuration file (settings.json)
 | 
					// This function returns whether a key exists in the configuration file (settings.json)
 | 
				
			||||||
export function isConfigItemExists(key: string): boolean {
 | 
					export function isConfigItemExists(key: string): boolean {
 | 
				
			||||||
  try {
 | 
					  try {
 | 
				
			||||||
    db.reload();
 | 
					    database.reload();
 | 
				
			||||||
  } catch (error: unknown) {
 | 
					  } catch (error: unknown) {
 | 
				
			||||||
    logger.error("Error while reloading settings.json: ");
 | 
					    logger.error("Error while reloading settings.json: ");
 | 
				
			||||||
    logger.error(error);
 | 
					    logger.error(error);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return db.exists(`/${key}`);
 | 
					  return database.exists(`/${key}`);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function setConfigItem<Key extends keyof Config>(
 | 
					export function setConfigItem<Key extends keyof Config>(
 | 
				
			||||||
@@ -66,16 +66,16 @@ export function setConfigItem<Key extends keyof Config>(
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  configSchemata[key].parse(value);
 | 
					  configSchemata[key].parse(value);
 | 
				
			||||||
  db.push(`/${key}`, value, true);
 | 
					  database.push(`/${key}`, value, true);
 | 
				
			||||||
  db.save();
 | 
					  database.save();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function removeConfigItem(key: string): void {
 | 
					export function removeConfigItem(key: string): void {
 | 
				
			||||||
  db.delete(`/${key}`);
 | 
					  database.delete(`/${key}`);
 | 
				
			||||||
  db.save();
 | 
					  database.save();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function reloadDb(): void {
 | 
					function reloadDatabase(): void {
 | 
				
			||||||
  const settingsJsonPath = path.join(
 | 
					  const settingsJsonPath = path.join(
 | 
				
			||||||
    app.getPath("userData"),
 | 
					    app.getPath("userData"),
 | 
				
			||||||
    "/config/settings.json",
 | 
					    "/config/settings.json",
 | 
				
			||||||
@@ -96,5 +96,5 @@ function reloadDb(): void {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  db = new JsonDB(settingsJsonPath, true, true);
 | 
					  database = new JsonDB(settingsJsonPath, true, true);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,30 +4,30 @@ import {app} from "zulip:remote";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
let setupCompleted = false;
 | 
					let setupCompleted = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const zulipDir = app.getPath("userData");
 | 
					const zulipDirectory = app.getPath("userData");
 | 
				
			||||||
const logDir = `${zulipDir}/Logs/`;
 | 
					const logDirectory = `${zulipDirectory}/Logs/`;
 | 
				
			||||||
const configDir = `${zulipDir}/config/`;
 | 
					const configDirectory = `${zulipDirectory}/config/`;
 | 
				
			||||||
export const initSetUp = (): void => {
 | 
					export const initSetUp = (): void => {
 | 
				
			||||||
  // If it is the first time the app is running
 | 
					  // If it is the first time the app is running
 | 
				
			||||||
  // create zulip dir in userData folder to
 | 
					  // create zulip dir in userData folder to
 | 
				
			||||||
  // avoid errors
 | 
					  // avoid errors
 | 
				
			||||||
  if (!setupCompleted) {
 | 
					  if (!setupCompleted) {
 | 
				
			||||||
    if (!fs.existsSync(zulipDir)) {
 | 
					    if (!fs.existsSync(zulipDirectory)) {
 | 
				
			||||||
      fs.mkdirSync(zulipDir);
 | 
					      fs.mkdirSync(zulipDirectory);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!fs.existsSync(logDir)) {
 | 
					    if (!fs.existsSync(logDirectory)) {
 | 
				
			||||||
      fs.mkdirSync(logDir);
 | 
					      fs.mkdirSync(logDirectory);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Migrate config files from app data folder to config folder inside app
 | 
					    // Migrate config files from app data folder to config folder inside app
 | 
				
			||||||
    // data folder. This will be done once when a user updates to the new version.
 | 
					    // data folder. This will be done once when a user updates to the new version.
 | 
				
			||||||
    if (!fs.existsSync(configDir)) {
 | 
					    if (!fs.existsSync(configDirectory)) {
 | 
				
			||||||
      fs.mkdirSync(configDir);
 | 
					      fs.mkdirSync(configDirectory);
 | 
				
			||||||
      const domainJson = `${zulipDir}/domain.json`;
 | 
					      const domainJson = `${zulipDirectory}/domain.json`;
 | 
				
			||||||
      const settingsJson = `${zulipDir}/settings.json`;
 | 
					      const settingsJson = `${zulipDirectory}/settings.json`;
 | 
				
			||||||
      const updatesJson = `${zulipDir}/updates.json`;
 | 
					      const updatesJson = `${zulipDirectory}/updates.json`;
 | 
				
			||||||
      const windowStateJson = `${zulipDir}/window-state.json`;
 | 
					      const windowStateJson = `${zulipDirectory}/window-state.json`;
 | 
				
			||||||
      const configData = [
 | 
					      const configData = [
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
          path: domainJson,
 | 
					          path: domainJson,
 | 
				
			||||||
@@ -44,7 +44,7 @@ export const initSetUp = (): void => {
 | 
				
			|||||||
      ];
 | 
					      ];
 | 
				
			||||||
      for (const data of configData) {
 | 
					      for (const data of configData) {
 | 
				
			||||||
        if (fs.existsSync(data.path)) {
 | 
					        if (fs.existsSync(data.path)) {
 | 
				
			||||||
          fs.copyFileSync(data.path, configDir + data.fileName);
 | 
					          fs.copyFileSync(data.path, configDirectory + data.fileName);
 | 
				
			||||||
          fs.unlinkSync(data.path);
 | 
					          fs.unlinkSync(data.path);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -20,9 +20,9 @@ const logger = new Logger({
 | 
				
			|||||||
let enterpriseSettings: Partial<EnterpriseConfig>;
 | 
					let enterpriseSettings: Partial<EnterpriseConfig>;
 | 
				
			||||||
let configFile: boolean;
 | 
					let configFile: boolean;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
reloadDb();
 | 
					reloadDatabase();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function reloadDb(): void {
 | 
					function reloadDatabase(): void {
 | 
				
			||||||
  let enterpriseFile = "/etc/zulip-desktop-config/global_config.json";
 | 
					  let enterpriseFile = "/etc/zulip-desktop-config/global_config.json";
 | 
				
			||||||
  if (process.platform === "win32") {
 | 
					  if (process.platform === "win32") {
 | 
				
			||||||
    enterpriseFile =
 | 
					    enterpriseFile =
 | 
				
			||||||
@@ -56,7 +56,7 @@ export function getConfigItem<Key extends keyof EnterpriseConfig>(
 | 
				
			|||||||
  key: Key,
 | 
					  key: Key,
 | 
				
			||||||
  defaultValue: EnterpriseConfig[Key],
 | 
					  defaultValue: EnterpriseConfig[Key],
 | 
				
			||||||
): EnterpriseConfig[Key] {
 | 
					): EnterpriseConfig[Key] {
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
  if (!configFile) {
 | 
					  if (!configFile) {
 | 
				
			||||||
    return defaultValue;
 | 
					    return defaultValue;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@@ -66,7 +66,7 @@ export function getConfigItem<Key extends keyof EnterpriseConfig>(
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function configItemExists(key: keyof EnterpriseConfig): boolean {
 | 
					export function configItemExists(key: keyof EnterpriseConfig): boolean {
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
  if (!configFile) {
 | 
					  if (!configFile) {
 | 
				
			||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,8 +11,8 @@ export async function openBrowser(url: URL): Promise<void> {
 | 
				
			|||||||
  } else {
 | 
					  } else {
 | 
				
			||||||
    // For security, indirect links to non-whitelisted protocols
 | 
					    // For security, indirect links to non-whitelisted protocols
 | 
				
			||||||
    // through a real web browser via a local HTML file.
 | 
					    // through a real web browser via a local HTML file.
 | 
				
			||||||
    const dir = fs.mkdtempSync(path.join(os.tmpdir(), "zulip-redirect-"));
 | 
					    const directory = fs.mkdtempSync(path.join(os.tmpdir(), "zulip-redirect-"));
 | 
				
			||||||
    const file = path.join(dir, "redirect.html");
 | 
					    const file = path.join(directory, "redirect.html");
 | 
				
			||||||
    fs.writeFileSync(
 | 
					    fs.writeFileSync(
 | 
				
			||||||
      file,
 | 
					      file,
 | 
				
			||||||
      html`
 | 
					      html`
 | 
				
			||||||
@@ -37,7 +37,7 @@ export async function openBrowser(url: URL): Promise<void> {
 | 
				
			|||||||
    await shell.openPath(file);
 | 
					    await shell.openPath(file);
 | 
				
			||||||
    setTimeout(() => {
 | 
					    setTimeout(() => {
 | 
				
			||||||
      fs.unlinkSync(file);
 | 
					      fs.unlinkSync(file);
 | 
				
			||||||
      fs.rmdirSync(dir);
 | 
					      fs.rmdirSync(directory);
 | 
				
			||||||
    }, 15_000);
 | 
					    }, 15_000);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,7 +13,7 @@ type LoggerOptions = {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
initSetUp();
 | 
					initSetUp();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const logDir = `${app.getPath("userData")}/Logs`;
 | 
					const logDirectory = `${app.getPath("userData")}/Logs`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type Level = "log" | "debug" | "info" | "warn" | "error";
 | 
					type Level = "log" | "debug" | "info" | "warn" | "error";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -23,7 +23,7 @@ export default class Logger {
 | 
				
			|||||||
  constructor(options: LoggerOptions = {}) {
 | 
					  constructor(options: LoggerOptions = {}) {
 | 
				
			||||||
    let {file = "console.log"} = options;
 | 
					    let {file = "console.log"} = options;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    file = `${logDir}/${file}`;
 | 
					    file = `${logDirectory}/${file}`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Trim log according to type of process
 | 
					    // Trim log according to type of process
 | 
				
			||||||
    if (process.type === "renderer") {
 | 
					    if (process.type === "renderer") {
 | 
				
			||||||
@@ -38,31 +38,31 @@ export default class Logger {
 | 
				
			|||||||
    this.nodeConsole = nodeConsole;
 | 
					    this.nodeConsole = nodeConsole;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  _log(type: Level, ...args: unknown[]): void {
 | 
					  _log(type: Level, ...arguments_: unknown[]): void {
 | 
				
			||||||
    args.unshift(this.getTimestamp() + " |\t");
 | 
					    arguments_.unshift(this.getTimestamp() + " |\t");
 | 
				
			||||||
    args.unshift(type.toUpperCase() + " |");
 | 
					    arguments_.unshift(type.toUpperCase() + " |");
 | 
				
			||||||
    this.nodeConsole[type](...args);
 | 
					    this.nodeConsole[type](...arguments_);
 | 
				
			||||||
    console[type](...args);
 | 
					    console[type](...arguments_);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  log(...args: unknown[]): void {
 | 
					  log(...arguments_: unknown[]): void {
 | 
				
			||||||
    this._log("log", ...args);
 | 
					    this._log("log", ...arguments_);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  debug(...args: unknown[]): void {
 | 
					  debug(...arguments_: unknown[]): void {
 | 
				
			||||||
    this._log("debug", ...args);
 | 
					    this._log("debug", ...arguments_);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  info(...args: unknown[]): void {
 | 
					  info(...arguments_: unknown[]): void {
 | 
				
			||||||
    this._log("info", ...args);
 | 
					    this._log("info", ...arguments_);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  warn(...args: unknown[]): void {
 | 
					  warn(...arguments_: unknown[]): void {
 | 
				
			||||||
    this._log("warn", ...args);
 | 
					    this._log("warn", ...arguments_);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  error(...args: unknown[]): void {
 | 
					  error(...arguments_: unknown[]): void {
 | 
				
			||||||
    this._log("error", ...args);
 | 
					    this._log("error", ...arguments_);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  getTimestamp(): string {
 | 
					  getTimestamp(): string {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
import type {DndSettings} from "./dnd-util.js";
 | 
					import type {DndSettings} from "./dnd-util.js";
 | 
				
			||||||
import type {MenuProps, ServerConf} from "./types.js";
 | 
					import type {MenuProperties, ServerConfig} from "./types.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type MainMessage = {
 | 
					export type MainMessage = {
 | 
				
			||||||
  "clear-app-settings": () => void;
 | 
					  "clear-app-settings": () => void;
 | 
				
			||||||
@@ -21,12 +21,12 @@ export type MainMessage = {
 | 
				
			|||||||
  toggleAutoLauncher: (AutoLaunchValue: boolean) => void;
 | 
					  toggleAutoLauncher: (AutoLaunchValue: boolean) => void;
 | 
				
			||||||
  "unread-count": (unreadCount: number) => void;
 | 
					  "unread-count": (unreadCount: number) => void;
 | 
				
			||||||
  "update-badge": (messageCount: number) => void;
 | 
					  "update-badge": (messageCount: number) => void;
 | 
				
			||||||
  "update-menu": (props: MenuProps) => void;
 | 
					  "update-menu": (properties: MenuProperties) => void;
 | 
				
			||||||
  "update-taskbar-icon": (data: string, text: string) => void;
 | 
					  "update-taskbar-icon": (data: string, text: string) => void;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type MainCall = {
 | 
					export type MainCall = {
 | 
				
			||||||
  "get-server-settings": (domain: string) => ServerConf;
 | 
					  "get-server-settings": (domain: string) => ServerConfig;
 | 
				
			||||||
  "is-online": (url: string) => boolean;
 | 
					  "is-online": (url: string) => boolean;
 | 
				
			||||||
  "poll-clipboard": (key: Uint8Array, sig: Uint8Array) => string | undefined;
 | 
					  "poll-clipboard": (key: Uint8Array, sig: Uint8Array) => string | undefined;
 | 
				
			||||||
  "save-server-icon": (iconURL: string) => string | null;
 | 
					  "save-server-icon": (iconURL: string) => string | null;
 | 
				
			||||||
@@ -74,7 +74,7 @@ export type RendererMessage = {
 | 
				
			|||||||
  "toggle-silent": (state: boolean) => void;
 | 
					  "toggle-silent": (state: boolean) => void;
 | 
				
			||||||
  "toggle-tray": (state: boolean) => void;
 | 
					  "toggle-tray": (state: boolean) => void;
 | 
				
			||||||
  toggletray: () => void;
 | 
					  toggletray: () => void;
 | 
				
			||||||
  tray: (arg: number) => void;
 | 
					  tray: (argument: number) => void;
 | 
				
			||||||
  "update-realm-icon": (serverURL: string, iconURL: string) => void;
 | 
					  "update-realm-icon": (serverURL: string, iconURL: string) => void;
 | 
				
			||||||
  "update-realm-name": (serverURL: string, realmName: string) => void;
 | 
					  "update-realm-name": (serverURL: string, realmName: string) => void;
 | 
				
			||||||
  "webview-reload": () => void;
 | 
					  "webview-reload": () => void;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,17 +1,17 @@
 | 
				
			|||||||
export type MenuProps = {
 | 
					export type MenuProperties = {
 | 
				
			||||||
  tabs: TabData[];
 | 
					  tabs: TabData[];
 | 
				
			||||||
  activeTabIndex?: number;
 | 
					  activeTabIndex?: number;
 | 
				
			||||||
  enableMenu?: boolean;
 | 
					  enableMenu?: boolean;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type NavItem =
 | 
					export type NavigationItem =
 | 
				
			||||||
  | "General"
 | 
					  | "General"
 | 
				
			||||||
  | "Network"
 | 
					  | "Network"
 | 
				
			||||||
  | "AddServer"
 | 
					  | "AddServer"
 | 
				
			||||||
  | "Organizations"
 | 
					  | "Organizations"
 | 
				
			||||||
  | "Shortcuts";
 | 
					  | "Shortcuts";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type ServerConf = {
 | 
					export type ServerConfig = {
 | 
				
			||||||
  url: string;
 | 
					  url: string;
 | 
				
			||||||
  alias: string;
 | 
					  alias: string;
 | 
				
			||||||
  icon: string;
 | 
					  icon: string;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,8 +3,11 @@ import {app, dialog, session} from "electron/main";
 | 
				
			|||||||
import process from "node:process";
 | 
					import process from "node:process";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import log from "electron-log/main";
 | 
					import log from "electron-log/main";
 | 
				
			||||||
import type {UpdateDownloadedEvent, UpdateInfo} from "electron-updater";
 | 
					import {
 | 
				
			||||||
import {autoUpdater} from "electron-updater";
 | 
					  type UpdateDownloadedEvent,
 | 
				
			||||||
 | 
					  type UpdateInfo,
 | 
				
			||||||
 | 
					  autoUpdater,
 | 
				
			||||||
 | 
					} from "electron-updater";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as ConfigUtil from "../common/config-util.js";
 | 
					import * as ConfigUtil from "../common/config-util.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,5 @@
 | 
				
			|||||||
import {nativeImage} from "electron/common";
 | 
					import {nativeImage} from "electron/common";
 | 
				
			||||||
import type {BrowserWindow} from "electron/main";
 | 
					import {type BrowserWindow, app} from "electron/main";
 | 
				
			||||||
import {app} from "electron/main";
 | 
					 | 
				
			||||||
import process from "node:process";
 | 
					import process from "node:process";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as ConfigUtil from "../common/config-util.js";
 | 
					import * as ConfigUtil from "../common/config-util.js";
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
import type {Event} from "electron/common";
 | 
					import {type Event, shell} from "electron/common";
 | 
				
			||||||
import {shell} from "electron/common";
 | 
					import {
 | 
				
			||||||
import type {
 | 
					  type HandlerDetails,
 | 
				
			||||||
  HandlerDetails,
 | 
					  Notification,
 | 
				
			||||||
  SaveDialogOptions,
 | 
					  type SaveDialogOptions,
 | 
				
			||||||
  WebContents,
 | 
					  type WebContents,
 | 
				
			||||||
 | 
					  app,
 | 
				
			||||||
} from "electron/main";
 | 
					} from "electron/main";
 | 
				
			||||||
import {Notification, app} from "electron/main";
 | 
					 | 
				
			||||||
import fs from "node:fs";
 | 
					import fs from "node:fs";
 | 
				
			||||||
import path from "node:path";
 | 
					import path from "node:path";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,8 +1,8 @@
 | 
				
			|||||||
import type {Event} from "electron/common";
 | 
					 | 
				
			||||||
import {clipboard} from "electron/common";
 | 
					import {clipboard} from "electron/common";
 | 
				
			||||||
import type {IpcMainEvent, WebContents} from "electron/main";
 | 
					 | 
				
			||||||
import {
 | 
					import {
 | 
				
			||||||
  BrowserWindow,
 | 
					  BrowserWindow,
 | 
				
			||||||
 | 
					  type IpcMainEvent,
 | 
				
			||||||
 | 
					  type WebContents,
 | 
				
			||||||
  app,
 | 
					  app,
 | 
				
			||||||
  dialog,
 | 
					  dialog,
 | 
				
			||||||
  powerMonitor,
 | 
					  powerMonitor,
 | 
				
			||||||
@@ -20,7 +20,7 @@ import windowStateKeeper from "electron-window-state";
 | 
				
			|||||||
import * as ConfigUtil from "../common/config-util.js";
 | 
					import * as ConfigUtil from "../common/config-util.js";
 | 
				
			||||||
import {bundlePath, bundleUrl, publicPath} from "../common/paths.js";
 | 
					import {bundlePath, bundleUrl, publicPath} from "../common/paths.js";
 | 
				
			||||||
import type {RendererMessage} from "../common/typed-ipc.js";
 | 
					import type {RendererMessage} from "../common/typed-ipc.js";
 | 
				
			||||||
import type {MenuProps} from "../common/types.js";
 | 
					import type {MenuProperties} from "../common/types.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import {appUpdater, shouldQuitForUpdate} from "./autoupdater.js";
 | 
					import {appUpdater, shouldQuitForUpdate} from "./autoupdater.js";
 | 
				
			||||||
import * as BadgeSettings from "./badge-settings.js";
 | 
					import * as BadgeSettings from "./badge-settings.js";
 | 
				
			||||||
@@ -110,7 +110,14 @@ function createMainWindow(): BrowserWindow {
 | 
				
			|||||||
      event.preventDefault();
 | 
					      event.preventDefault();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      if (process.platform === "darwin") {
 | 
					      if (process.platform === "darwin") {
 | 
				
			||||||
        app.hide();
 | 
					        if (win.isFullScreen()) {
 | 
				
			||||||
 | 
					          win.setFullScreen(false);
 | 
				
			||||||
 | 
					          win.once("leave-full-screen", () => {
 | 
				
			||||||
 | 
					            app.hide();
 | 
				
			||||||
 | 
					          });
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
 | 
					          app.hide();
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
      } else {
 | 
					      } else {
 | 
				
			||||||
        win.hide();
 | 
					        win.hide();
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
@@ -299,18 +306,24 @@ function createMainWindow(): BrowserWindow {
 | 
				
			|||||||
  app.on(
 | 
					  app.on(
 | 
				
			||||||
    "certificate-error",
 | 
					    "certificate-error",
 | 
				
			||||||
    (
 | 
					    (
 | 
				
			||||||
      event: Event,
 | 
					      event,
 | 
				
			||||||
      webContents: WebContents,
 | 
					      webContents,
 | 
				
			||||||
      urlString: string,
 | 
					      urlString,
 | 
				
			||||||
      error: string,
 | 
					      error,
 | 
				
			||||||
 | 
					      certificate,
 | 
				
			||||||
 | 
					      callback,
 | 
				
			||||||
 | 
					      isMainFrame,
 | 
				
			||||||
 | 
					      // eslint-disable-next-line max-params
 | 
				
			||||||
    ) => {
 | 
					    ) => {
 | 
				
			||||||
      const url = new URL(urlString);
 | 
					      if (isMainFrame) {
 | 
				
			||||||
      dialog.showErrorBox(
 | 
					        const url = new URL(urlString);
 | 
				
			||||||
        "Certificate error",
 | 
					        dialog.showErrorBox(
 | 
				
			||||||
        `The server presented an invalid certificate for ${url.origin}:
 | 
					          "Certificate error",
 | 
				
			||||||
 | 
					          `The server presented an invalid certificate for ${url.origin}:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
${error}`,
 | 
					${error}`,
 | 
				
			||||||
      );
 | 
					        );
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -411,10 +424,10 @@ ${error}`,
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  ipcMain.on("update-menu", (_event, props: MenuProps) => {
 | 
					  ipcMain.on("update-menu", (_event, properties: MenuProperties) => {
 | 
				
			||||||
    AppMenu.setMenu(props);
 | 
					    AppMenu.setMenu(properties);
 | 
				
			||||||
    if (props.activeTabIndex !== undefined) {
 | 
					    if (properties.activeTabIndex !== undefined) {
 | 
				
			||||||
      const activeTab = props.tabs[props.activeTabIndex];
 | 
					      const activeTab = properties.tabs[properties.activeTabIndex];
 | 
				
			||||||
      mainWindow.setTitle(`Zulip - ${activeTab.name}`);
 | 
					      mainWindow.setTitle(`Zulip - ${activeTab.name}`);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,18 +11,18 @@ const logger = new Logger({
 | 
				
			|||||||
  file: "linux-update-util.log",
 | 
					  file: "linux-update-util.log",
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let db: JsonDB;
 | 
					let database: JsonDB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
reloadDb();
 | 
					reloadDatabase();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function getUpdateItem(
 | 
					export function getUpdateItem(
 | 
				
			||||||
  key: string,
 | 
					  key: string,
 | 
				
			||||||
  defaultValue: true | null = null,
 | 
					  defaultValue: true | null = null,
 | 
				
			||||||
): true | null {
 | 
					): true | null {
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
  let value: unknown;
 | 
					  let value: unknown;
 | 
				
			||||||
  try {
 | 
					  try {
 | 
				
			||||||
    value = db.getObject<unknown>(`/${key}`);
 | 
					    value = database.getObject<unknown>(`/${key}`);
 | 
				
			||||||
  } catch (error: unknown) {
 | 
					  } catch (error: unknown) {
 | 
				
			||||||
    if (!(error instanceof DataError)) throw error;
 | 
					    if (!(error instanceof DataError)) throw error;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@@ -36,16 +36,16 @@ export function getUpdateItem(
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function setUpdateItem(key: string, value: true | null): void {
 | 
					export function setUpdateItem(key: string, value: true | null): void {
 | 
				
			||||||
  db.push(`/${key}`, value, true);
 | 
					  database.push(`/${key}`, value, true);
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function removeUpdateItem(key: string): void {
 | 
					export function removeUpdateItem(key: string): void {
 | 
				
			||||||
  db.delete(`/${key}`);
 | 
					  database.delete(`/${key}`);
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function reloadDb(): void {
 | 
					function reloadDatabase(): void {
 | 
				
			||||||
  const linuxUpdateJsonPath = path.join(
 | 
					  const linuxUpdateJsonPath = path.join(
 | 
				
			||||||
    app.getPath("userData"),
 | 
					    app.getPath("userData"),
 | 
				
			||||||
    "/config/updates.json",
 | 
					    "/config/updates.json",
 | 
				
			||||||
@@ -65,5 +65,5 @@ function reloadDb(): void {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  db = new JsonDB(linuxUpdateJsonPath, true, true);
 | 
					  database = new JsonDB(linuxUpdateJsonPath, true, true);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,4 @@
 | 
				
			|||||||
import type {Session} from "electron/main";
 | 
					import {Notification, type Session, app} from "electron/main";
 | 
				
			||||||
import {Notification, app} from "electron/main";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as semver from "semver";
 | 
					import * as semver from "semver";
 | 
				
			||||||
import {z} from "zod";
 | 
					import {z} from "zod";
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,10 @@
 | 
				
			|||||||
import {shell} from "electron/common";
 | 
					import {shell} from "electron/common";
 | 
				
			||||||
import type {MenuItemConstructorOptions} from "electron/main";
 | 
					import {
 | 
				
			||||||
import {BrowserWindow, Menu, app} from "electron/main";
 | 
					  BrowserWindow,
 | 
				
			||||||
 | 
					  Menu,
 | 
				
			||||||
 | 
					  type MenuItemConstructorOptions,
 | 
				
			||||||
 | 
					  app,
 | 
				
			||||||
 | 
					} from "electron/main";
 | 
				
			||||||
import process from "node:process";
 | 
					import process from "node:process";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import AdmZip from "adm-zip";
 | 
					import AdmZip from "adm-zip";
 | 
				
			||||||
@@ -9,7 +13,7 @@ import * as ConfigUtil from "../common/config-util.js";
 | 
				
			|||||||
import * as DNDUtil from "../common/dnd-util.js";
 | 
					import * as DNDUtil from "../common/dnd-util.js";
 | 
				
			||||||
import * as t from "../common/translation-util.js";
 | 
					import * as t from "../common/translation-util.js";
 | 
				
			||||||
import type {RendererMessage} from "../common/typed-ipc.js";
 | 
					import type {RendererMessage} from "../common/typed-ipc.js";
 | 
				
			||||||
import type {MenuProps, TabData} from "../common/types.js";
 | 
					import type {MenuProperties, TabData} from "../common/types.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import {appUpdater} from "./autoupdater.js";
 | 
					import {appUpdater} from "./autoupdater.js";
 | 
				
			||||||
import {send} from "./typed-ipc-main.js";
 | 
					import {send} from "./typed-ipc-main.js";
 | 
				
			||||||
@@ -368,8 +372,10 @@ function getWindowSubmenu(
 | 
				
			|||||||
  return initialSubmenu;
 | 
					  return initialSubmenu;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function getDarwinTpl(props: MenuProps): MenuItemConstructorOptions[] {
 | 
					function getDarwinTpl(
 | 
				
			||||||
  const {tabs, activeTabIndex, enableMenu = false} = props;
 | 
					  properties: MenuProperties,
 | 
				
			||||||
 | 
					): MenuItemConstructorOptions[] {
 | 
				
			||||||
 | 
					  const {tabs, activeTabIndex, enableMenu = false} = properties;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return [
 | 
					  return [
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@@ -533,8 +539,8 @@ function getDarwinTpl(props: MenuProps): MenuItemConstructorOptions[] {
 | 
				
			|||||||
  ];
 | 
					  ];
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function getOtherTpl(props: MenuProps): MenuItemConstructorOptions[] {
 | 
					function getOtherTpl(properties: MenuProperties): MenuItemConstructorOptions[] {
 | 
				
			||||||
  const {tabs, activeTabIndex, enableMenu = false} = props;
 | 
					  const {tabs, activeTabIndex, enableMenu = false} = properties;
 | 
				
			||||||
  return [
 | 
					  return [
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("File"),
 | 
					      label: t.__("File"),
 | 
				
			||||||
@@ -683,7 +689,7 @@ function getOtherTpl(props: MenuProps): MenuItemConstructorOptions[] {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
function sendAction<Channel extends keyof RendererMessage>(
 | 
					function sendAction<Channel extends keyof RendererMessage>(
 | 
				
			||||||
  channel: Channel,
 | 
					  channel: Channel,
 | 
				
			||||||
  ...args: Parameters<RendererMessage[Channel]>
 | 
					  ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
): void {
 | 
					): void {
 | 
				
			||||||
  const win = BrowserWindow.getAllWindows()[0];
 | 
					  const win = BrowserWindow.getAllWindows()[0];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -691,7 +697,7 @@ function sendAction<Channel extends keyof RendererMessage>(
 | 
				
			|||||||
    win.restore();
 | 
					    win.restore();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  send(win.webContents, channel, ...args);
 | 
					  send(win.webContents, channel, ...arguments_);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
async function checkForUpdate(): Promise<void> {
 | 
					async function checkForUpdate(): Promise<void> {
 | 
				
			||||||
@@ -714,9 +720,11 @@ function getPreviousServer(tabs: TabData[], activeTabIndex: number): number {
 | 
				
			|||||||
  return activeTabIndex;
 | 
					  return activeTabIndex;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function setMenu(props: MenuProps): void {
 | 
					export function setMenu(properties: MenuProperties): void {
 | 
				
			||||||
  const tpl =
 | 
					  const tpl =
 | 
				
			||||||
    process.platform === "darwin" ? getDarwinTpl(props) : getOtherTpl(props);
 | 
					    process.platform === "darwin"
 | 
				
			||||||
 | 
					      ? getDarwinTpl(properties)
 | 
				
			||||||
 | 
					      : getOtherTpl(properties);
 | 
				
			||||||
  const menu = Menu.buildFromTemplate(tpl);
 | 
					  const menu = Menu.buildFromTemplate(tpl);
 | 
				
			||||||
  Menu.setApplicationMenu(menu);
 | 
					  Menu.setApplicationMenu(menu);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,4 @@
 | 
				
			|||||||
import type {Session} from "electron/main";
 | 
					import {type Session, app} from "electron/main";
 | 
				
			||||||
import {app} from "electron/main";
 | 
					 | 
				
			||||||
import fs from "node:fs";
 | 
					import fs from "node:fs";
 | 
				
			||||||
import path from "node:path";
 | 
					import path from "node:path";
 | 
				
			||||||
import {Readable} from "node:stream";
 | 
					import {Readable} from "node:stream";
 | 
				
			||||||
@@ -11,7 +10,7 @@ import {z} from "zod";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import Logger from "../common/logger-util.js";
 | 
					import Logger from "../common/logger-util.js";
 | 
				
			||||||
import * as Messages from "../common/messages.js";
 | 
					import * as Messages from "../common/messages.js";
 | 
				
			||||||
import type {ServerConf} from "../common/types.js";
 | 
					import type {ServerConfig} from "../common/types.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Request: domain-util */
 | 
					/* Request: domain-util */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -20,7 +19,7 @@ const logger = new Logger({
 | 
				
			|||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const generateFilePath = (url: string): string => {
 | 
					const generateFilePath = (url: string): string => {
 | 
				
			||||||
  const dir = `${app.getPath("userData")}/server-icons`;
 | 
					  const directory = `${app.getPath("userData")}/server-icons`;
 | 
				
			||||||
  const extension = path.extname(url).split("?")[0];
 | 
					  const extension = path.extname(url).split("?")[0];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  let hash = 5381;
 | 
					  let hash = 5381;
 | 
				
			||||||
@@ -32,18 +31,18 @@ const generateFilePath = (url: string): string => {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Create 'server-icons' directory if not existed
 | 
					  // Create 'server-icons' directory if not existed
 | 
				
			||||||
  if (!fs.existsSync(dir)) {
 | 
					  if (!fs.existsSync(directory)) {
 | 
				
			||||||
    fs.mkdirSync(dir);
 | 
					    fs.mkdirSync(directory);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // eslint-disable-next-line no-bitwise
 | 
					  // eslint-disable-next-line no-bitwise
 | 
				
			||||||
  return `${dir}/${hash >>> 0}${extension}`;
 | 
					  return `${directory}/${hash >>> 0}${extension}`;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const _getServerSettings = async (
 | 
					export const _getServerSettings = async (
 | 
				
			||||||
  domain: string,
 | 
					  domain: string,
 | 
				
			||||||
  session: Session,
 | 
					  session: Session,
 | 
				
			||||||
): Promise<ServerConf> => {
 | 
					): Promise<ServerConfig> => {
 | 
				
			||||||
  const response = await session.fetch(domain + "/api/v1/server_settings");
 | 
					  const response = await session.fetch(domain + "/api/v1/server_settings");
 | 
				
			||||||
  if (!response.ok) {
 | 
					  if (!response.ok) {
 | 
				
			||||||
    throw new Error(Messages.invalidZulipServerError(domain));
 | 
					    throw new Error(Messages.invalidZulipServerError(domain));
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,9 +1,7 @@
 | 
				
			|||||||
import type {
 | 
					 | 
				
			||||||
  IpcMainEvent,
 | 
					 | 
				
			||||||
  IpcMainInvokeEvent,
 | 
					 | 
				
			||||||
  WebContents,
 | 
					 | 
				
			||||||
} from "electron/main";
 | 
					 | 
				
			||||||
import {
 | 
					import {
 | 
				
			||||||
 | 
					  type IpcMainEvent,
 | 
				
			||||||
 | 
					  type IpcMainInvokeEvent,
 | 
				
			||||||
 | 
					  type WebContents,
 | 
				
			||||||
  ipcMain as untypedIpcMain, // eslint-disable-line no-restricted-imports
 | 
					  ipcMain as untypedIpcMain, // eslint-disable-line no-restricted-imports
 | 
				
			||||||
} from "electron/main";
 | 
					} from "electron/main";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -14,14 +12,20 @@ import type {
 | 
				
			|||||||
} from "../common/typed-ipc.js";
 | 
					} from "../common/typed-ipc.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type MainListener<Channel extends keyof MainMessage> =
 | 
					type MainListener<Channel extends keyof MainMessage> =
 | 
				
			||||||
  MainMessage[Channel] extends (...args: infer Args) => infer Return
 | 
					  MainMessage[Channel] extends (...arguments_: infer Arguments) => infer Return
 | 
				
			||||||
    ? (event: IpcMainEvent & {returnValue: Return}, ...args: Args) => void
 | 
					    ? (
 | 
				
			||||||
 | 
					        event: IpcMainEvent & {returnValue: Return},
 | 
				
			||||||
 | 
					        ...arguments_: Arguments
 | 
				
			||||||
 | 
					      ) => void
 | 
				
			||||||
    : never;
 | 
					    : never;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type MainHandler<Channel extends keyof MainCall> = MainCall[Channel] extends (
 | 
					type MainHandler<Channel extends keyof MainCall> = MainCall[Channel] extends (
 | 
				
			||||||
  ...args: infer Args
 | 
					  ...arguments_: infer Arguments
 | 
				
			||||||
) => infer Return
 | 
					) => infer Return
 | 
				
			||||||
  ? (event: IpcMainInvokeEvent, ...args: Args) => Return | Promise<Return>
 | 
					  ? (
 | 
				
			||||||
 | 
					      event: IpcMainInvokeEvent,
 | 
				
			||||||
 | 
					      ...arguments_: Arguments
 | 
				
			||||||
 | 
					    ) => Return | Promise<Return>
 | 
				
			||||||
  : never;
 | 
					  : never;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const ipcMain: {
 | 
					export const ipcMain: {
 | 
				
			||||||
@@ -30,7 +34,7 @@ export const ipcMain: {
 | 
				
			|||||||
    listener: <Channel extends keyof RendererMessage>(
 | 
					    listener: <Channel extends keyof RendererMessage>(
 | 
				
			||||||
      event: IpcMainEvent,
 | 
					      event: IpcMainEvent,
 | 
				
			||||||
      channel: Channel,
 | 
					      channel: Channel,
 | 
				
			||||||
      ...args: Parameters<RendererMessage[Channel]>
 | 
					      ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
    ) => void,
 | 
					    ) => void,
 | 
				
			||||||
  ): void;
 | 
					  ): void;
 | 
				
			||||||
  on(
 | 
					  on(
 | 
				
			||||||
@@ -39,7 +43,7 @@ export const ipcMain: {
 | 
				
			|||||||
      event: IpcMainEvent,
 | 
					      event: IpcMainEvent,
 | 
				
			||||||
      webContentsId: number,
 | 
					      webContentsId: number,
 | 
				
			||||||
      channel: Channel,
 | 
					      channel: Channel,
 | 
				
			||||||
      ...args: Parameters<RendererMessage[Channel]>
 | 
					      ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
    ) => void,
 | 
					    ) => void,
 | 
				
			||||||
  ): void;
 | 
					  ): void;
 | 
				
			||||||
  on<Channel extends keyof MainMessage>(
 | 
					  on<Channel extends keyof MainMessage>(
 | 
				
			||||||
@@ -69,16 +73,16 @@ export const ipcMain: {
 | 
				
			|||||||
export function send<Channel extends keyof RendererMessage>(
 | 
					export function send<Channel extends keyof RendererMessage>(
 | 
				
			||||||
  contents: WebContents,
 | 
					  contents: WebContents,
 | 
				
			||||||
  channel: Channel,
 | 
					  channel: Channel,
 | 
				
			||||||
  ...args: Parameters<RendererMessage[Channel]>
 | 
					  ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
): void {
 | 
					): void {
 | 
				
			||||||
  contents.send(channel, ...args);
 | 
					  contents.send(channel, ...arguments_);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function sendToFrame<Channel extends keyof RendererMessage>(
 | 
					export function sendToFrame<Channel extends keyof RendererMessage>(
 | 
				
			||||||
  contents: WebContents,
 | 
					  contents: WebContents,
 | 
				
			||||||
  frameId: number | [number, number],
 | 
					  frameId: number | [number, number],
 | 
				
			||||||
  channel: Channel,
 | 
					  channel: Channel,
 | 
				
			||||||
  ...args: Parameters<RendererMessage[Channel]>
 | 
					  ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
): void {
 | 
					): void {
 | 
				
			||||||
  contents.sendToFrame(frameId, channel, ...args);
 | 
					  contents.sendToFrame(frameId, channel, ...arguments_);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -578,7 +578,6 @@ input.toggle-round:checked + label::after {
 | 
				
			|||||||
  text-align: center;
 | 
					  text-align: center;
 | 
				
			||||||
  color: rgb(255 255 255 / 100%);
 | 
					  color: rgb(255 255 255 / 100%);
 | 
				
			||||||
  background: rgb(78 191 172 / 100%);
 | 
					  background: rgb(78 191 172 / 100%);
 | 
				
			||||||
  border-color: none;
 | 
					 | 
				
			||||||
  border: none;
 | 
					  border: none;
 | 
				
			||||||
  width: 98%;
 | 
					  width: 98%;
 | 
				
			||||||
  height: 46px;
 | 
					  height: 46px;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -20,7 +20,7 @@ export type ClipboardDecrypter = {
 | 
				
			|||||||
  pasted: Promise<string>;
 | 
					  pasted: Promise<string>;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class ClipboardDecrypterImpl implements ClipboardDecrypter {
 | 
					export class ClipboardDecrypterImplementation implements ClipboardDecrypter {
 | 
				
			||||||
  version: number;
 | 
					  version: number;
 | 
				
			||||||
  key: Uint8Array;
 | 
					  key: Uint8Array;
 | 
				
			||||||
  pasted: Promise<string>;
 | 
					  pasted: Promise<string>;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,4 @@
 | 
				
			|||||||
import type {Event} from "electron/common";
 | 
					import {type Event, clipboard} from "electron/common";
 | 
				
			||||||
import {clipboard} from "electron/common";
 | 
					 | 
				
			||||||
import type {WebContents} from "electron/main";
 | 
					import type {WebContents} from "electron/main";
 | 
				
			||||||
import type {
 | 
					import type {
 | 
				
			||||||
  ContextMenuParams,
 | 
					  ContextMenuParams,
 | 
				
			||||||
@@ -14,11 +13,11 @@ import * as t from "../../../common/translation-util.js";
 | 
				
			|||||||
export const contextMenu = (
 | 
					export const contextMenu = (
 | 
				
			||||||
  webContents: WebContents,
 | 
					  webContents: WebContents,
 | 
				
			||||||
  event: Event,
 | 
					  event: Event,
 | 
				
			||||||
  props: ContextMenuParams,
 | 
					  properties: ContextMenuParams,
 | 
				
			||||||
) => {
 | 
					) => {
 | 
				
			||||||
  const isText = props.selectionText !== "";
 | 
					  const isText = properties.selectionText !== "";
 | 
				
			||||||
  const isLink = props.linkURL !== "";
 | 
					  const isLink = properties.linkURL !== "";
 | 
				
			||||||
  const linkUrl = isLink ? new URL(props.linkURL) : undefined;
 | 
					  const linkUrl = isLink ? new URL(properties.linkURL) : undefined;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const makeSuggestion = (suggestion: string) => ({
 | 
					  const makeSuggestion = (suggestion: string) => ({
 | 
				
			||||||
    label: suggestion,
 | 
					    label: suggestion,
 | 
				
			||||||
@@ -31,19 +30,21 @@ export const contextMenu = (
 | 
				
			|||||||
  let menuTemplate: MenuItemConstructorOptions[] = [
 | 
					  let menuTemplate: MenuItemConstructorOptions[] = [
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("Add to Dictionary"),
 | 
					      label: t.__("Add to Dictionary"),
 | 
				
			||||||
      visible: props.isEditable && isText && props.misspelledWord.length > 0,
 | 
					      visible:
 | 
				
			||||||
 | 
					        properties.isEditable && isText && properties.misspelledWord.length > 0,
 | 
				
			||||||
      click(_item) {
 | 
					      click(_item) {
 | 
				
			||||||
        webContents.session.addWordToSpellCheckerDictionary(
 | 
					        webContents.session.addWordToSpellCheckerDictionary(
 | 
				
			||||||
          props.misspelledWord,
 | 
					          properties.misspelledWord,
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      type: "separator",
 | 
					      type: "separator",
 | 
				
			||||||
      visible: props.isEditable && isText && props.misspelledWord.length > 0,
 | 
					      visible:
 | 
				
			||||||
 | 
					        properties.isEditable && isText && properties.misspelledWord.length > 0,
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      label: `${t.__("Look Up")} "${props.selectionText}"`,
 | 
					      label: `${t.__("Look Up")} "${properties.selectionText}"`,
 | 
				
			||||||
      visible: process.platform === "darwin" && isText,
 | 
					      visible: process.platform === "darwin" && isText,
 | 
				
			||||||
      click(_item) {
 | 
					      click(_item) {
 | 
				
			||||||
        webContents.showDefinitionForSelection();
 | 
					        webContents.showDefinitionForSelection();
 | 
				
			||||||
@@ -56,7 +57,7 @@ export const contextMenu = (
 | 
				
			|||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("Cut"),
 | 
					      label: t.__("Cut"),
 | 
				
			||||||
      visible: isText,
 | 
					      visible: isText,
 | 
				
			||||||
      enabled: props.isEditable,
 | 
					      enabled: properties.isEditable,
 | 
				
			||||||
      accelerator: "CommandOrControl+X",
 | 
					      accelerator: "CommandOrControl+X",
 | 
				
			||||||
      click(_item) {
 | 
					      click(_item) {
 | 
				
			||||||
        webContents.cut();
 | 
					        webContents.cut();
 | 
				
			||||||
@@ -65,7 +66,7 @@ export const contextMenu = (
 | 
				
			|||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("Copy"),
 | 
					      label: t.__("Copy"),
 | 
				
			||||||
      accelerator: "CommandOrControl+C",
 | 
					      accelerator: "CommandOrControl+C",
 | 
				
			||||||
      enabled: props.editFlags.canCopy,
 | 
					      enabled: properties.editFlags.canCopy,
 | 
				
			||||||
      click(_item) {
 | 
					      click(_item) {
 | 
				
			||||||
        webContents.copy();
 | 
					        webContents.copy();
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
@@ -73,7 +74,7 @@ export const contextMenu = (
 | 
				
			|||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("Paste"), // Bug: Paste replaces text
 | 
					      label: t.__("Paste"), // Bug: Paste replaces text
 | 
				
			||||||
      accelerator: "CommandOrControl+V",
 | 
					      accelerator: "CommandOrControl+V",
 | 
				
			||||||
      enabled: props.isEditable,
 | 
					      enabled: properties.isEditable,
 | 
				
			||||||
      click() {
 | 
					      click() {
 | 
				
			||||||
        webContents.paste();
 | 
					        webContents.paste();
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
@@ -89,32 +90,34 @@ export const contextMenu = (
 | 
				
			|||||||
      visible: isLink,
 | 
					      visible: isLink,
 | 
				
			||||||
      click(_item) {
 | 
					      click(_item) {
 | 
				
			||||||
        clipboard.write({
 | 
					        clipboard.write({
 | 
				
			||||||
          bookmark: props.linkText,
 | 
					          bookmark: properties.linkText,
 | 
				
			||||||
          text:
 | 
					          text:
 | 
				
			||||||
            linkUrl?.protocol === "mailto:" ? linkUrl.pathname : props.linkURL,
 | 
					            linkUrl?.protocol === "mailto:"
 | 
				
			||||||
 | 
					              ? linkUrl.pathname
 | 
				
			||||||
 | 
					              : properties.linkURL,
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("Copy Image"),
 | 
					      label: t.__("Copy Image"),
 | 
				
			||||||
      visible: props.mediaType === "image",
 | 
					      visible: properties.mediaType === "image",
 | 
				
			||||||
      click(_item) {
 | 
					      click(_item) {
 | 
				
			||||||
        webContents.copyImageAt(props.x, props.y);
 | 
					        webContents.copyImageAt(properties.x, properties.y);
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("Copy Image URL"),
 | 
					      label: t.__("Copy Image URL"),
 | 
				
			||||||
      visible: props.mediaType === "image",
 | 
					      visible: properties.mediaType === "image",
 | 
				
			||||||
      click(_item) {
 | 
					      click(_item) {
 | 
				
			||||||
        clipboard.write({
 | 
					        clipboard.write({
 | 
				
			||||||
          bookmark: props.srcURL,
 | 
					          bookmark: properties.srcURL,
 | 
				
			||||||
          text: props.srcURL,
 | 
					          text: properties.srcURL,
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      type: "separator",
 | 
					      type: "separator",
 | 
				
			||||||
      visible: isLink || props.mediaType === "image",
 | 
					      visible: isLink || properties.mediaType === "image",
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      label: t.__("Services"),
 | 
					      label: t.__("Services"),
 | 
				
			||||||
@@ -123,10 +126,10 @@ export const contextMenu = (
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
  ];
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (props.misspelledWord) {
 | 
					  if (properties.misspelledWord) {
 | 
				
			||||||
    if (props.dictionarySuggestions.length > 0) {
 | 
					    if (properties.dictionarySuggestions.length > 0) {
 | 
				
			||||||
      const suggestions: MenuItemConstructorOptions[] =
 | 
					      const suggestions: MenuItemConstructorOptions[] =
 | 
				
			||||||
        props.dictionarySuggestions.map((suggestion: string) =>
 | 
					        properties.dictionarySuggestions.map((suggestion: string) =>
 | 
				
			||||||
          makeSuggestion(suggestion),
 | 
					          makeSuggestion(suggestion),
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
      menuTemplate = [...suggestions, ...menuTemplate];
 | 
					      menuTemplate = [...suggestions, ...menuTemplate];
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,26 +1,24 @@
 | 
				
			|||||||
import type {Html} from "../../../common/html.js";
 | 
					import {type Html, html} from "../../../common/html.js";
 | 
				
			||||||
import {html} from "../../../common/html.js";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
import {generateNodeFromHtml} from "./base.js";
 | 
					import {generateNodeFromHtml} from "./base.js";
 | 
				
			||||||
import type {TabProps} from "./tab.js";
 | 
					import Tab, {type TabProperties} from "./tab.js";
 | 
				
			||||||
import Tab from "./tab.js";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type FunctionalTabProps = {
 | 
					export type FunctionalTabProperties = {
 | 
				
			||||||
  $view: Element;
 | 
					  $view: Element;
 | 
				
			||||||
} & TabProps;
 | 
					} & TabProperties;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class FunctionalTab extends Tab {
 | 
					export default class FunctionalTab extends Tab {
 | 
				
			||||||
  $view: Element;
 | 
					  $view: Element;
 | 
				
			||||||
  $el: Element;
 | 
					  $el: Element;
 | 
				
			||||||
  $closeButton?: Element;
 | 
					  $closeButton?: Element;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  constructor({$view, ...props}: FunctionalTabProps) {
 | 
					  constructor({$view, ...properties}: FunctionalTabProperties) {
 | 
				
			||||||
    super(props);
 | 
					    super(properties);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.$view = $view;
 | 
					    this.$view = $view;
 | 
				
			||||||
    this.$el = generateNodeFromHtml(this.templateHtml());
 | 
					    this.$el = generateNodeFromHtml(this.templateHtml());
 | 
				
			||||||
    if (this.props.name !== "Settings") {
 | 
					    if (this.properties.name !== "Settings") {
 | 
				
			||||||
      this.props.$root.append(this.$el);
 | 
					      this.properties.$root.append(this.$el);
 | 
				
			||||||
      this.$closeButton = this.$el.querySelector(".server-tab-badge")!;
 | 
					      this.$closeButton = this.$el.querySelector(".server-tab-badge")!;
 | 
				
			||||||
      this.registerListeners();
 | 
					      this.registerListeners();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -43,12 +41,12 @@ export default class FunctionalTab extends Tab {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  templateHtml(): Html {
 | 
					  templateHtml(): Html {
 | 
				
			||||||
    return html`
 | 
					    return html`
 | 
				
			||||||
      <div class="tab functional-tab" data-tab-id="${this.props.tabIndex}">
 | 
					      <div class="tab functional-tab" data-tab-id="${this.properties.tabIndex}">
 | 
				
			||||||
        <div class="server-tab-badge close-button">
 | 
					        <div class="server-tab-badge close-button">
 | 
				
			||||||
          <i class="material-icons">close</i>
 | 
					          <i class="material-icons">close</i>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <div class="server-tab">
 | 
					        <div class="server-tab">
 | 
				
			||||||
          <i class="material-icons">${this.props.materialIcon}</i>
 | 
					          <i class="material-icons">${this.properties.materialIcon}</i>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
    `;
 | 
					    `;
 | 
				
			||||||
@@ -66,7 +64,7 @@ export default class FunctionalTab extends Tab {
 | 
				
			|||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.$closeButton?.addEventListener("click", (event) => {
 | 
					    this.$closeButton?.addEventListener("click", (event) => {
 | 
				
			||||||
      this.props.onDestroy?.();
 | 
					      this.properties.onDestroy?.();
 | 
				
			||||||
      event.stopPropagation();
 | 
					      event.stopPropagation();
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,17 +1,15 @@
 | 
				
			|||||||
import process from "node:process";
 | 
					import process from "node:process";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import type {Html} from "../../../common/html.js";
 | 
					import {type Html, html} from "../../../common/html.js";
 | 
				
			||||||
import {html} from "../../../common/html.js";
 | 
					 | 
				
			||||||
import {ipcRenderer} from "../typed-ipc-renderer.js";
 | 
					import {ipcRenderer} from "../typed-ipc-renderer.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import {generateNodeFromHtml} from "./base.js";
 | 
					import {generateNodeFromHtml} from "./base.js";
 | 
				
			||||||
import type {TabProps} from "./tab.js";
 | 
					import Tab, {type TabProperties} from "./tab.js";
 | 
				
			||||||
import Tab from "./tab.js";
 | 
					 | 
				
			||||||
import type WebView from "./webview.js";
 | 
					import type WebView from "./webview.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type ServerTabProps = {
 | 
					export type ServerTabProperties = {
 | 
				
			||||||
  webview: Promise<WebView>;
 | 
					  webview: Promise<WebView>;
 | 
				
			||||||
} & TabProps;
 | 
					} & TabProperties;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class ServerTab extends Tab {
 | 
					export default class ServerTab extends Tab {
 | 
				
			||||||
  webview: Promise<WebView>;
 | 
					  webview: Promise<WebView>;
 | 
				
			||||||
@@ -20,12 +18,12 @@ export default class ServerTab extends Tab {
 | 
				
			|||||||
  $icon: HTMLImageElement;
 | 
					  $icon: HTMLImageElement;
 | 
				
			||||||
  $badge: Element;
 | 
					  $badge: Element;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  constructor({webview, ...props}: ServerTabProps) {
 | 
					  constructor({webview, ...properties}: ServerTabProperties) {
 | 
				
			||||||
    super(props);
 | 
					    super(properties);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.webview = webview;
 | 
					    this.webview = webview;
 | 
				
			||||||
    this.$el = generateNodeFromHtml(this.templateHtml());
 | 
					    this.$el = generateNodeFromHtml(this.templateHtml());
 | 
				
			||||||
    this.props.$root.append(this.$el);
 | 
					    this.properties.$root.append(this.$el);
 | 
				
			||||||
    this.registerListeners();
 | 
					    this.registerListeners();
 | 
				
			||||||
    this.$name = this.$el.querySelector(".server-tooltip")!;
 | 
					    this.$name = this.$el.querySelector(".server-tooltip")!;
 | 
				
			||||||
    this.$icon = this.$el.querySelector(".server-icons")!;
 | 
					    this.$icon = this.$el.querySelector(".server-icons")!;
 | 
				
			||||||
@@ -49,13 +47,13 @@ export default class ServerTab extends Tab {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  templateHtml(): Html {
 | 
					  templateHtml(): Html {
 | 
				
			||||||
    return html`
 | 
					    return html`
 | 
				
			||||||
      <div class="tab" data-tab-id="${this.props.tabIndex}">
 | 
					      <div class="tab" data-tab-id="${this.properties.tabIndex}">
 | 
				
			||||||
        <div class="server-tooltip" style="display:none">
 | 
					        <div class="server-tooltip" style="display:none">
 | 
				
			||||||
          ${this.props.name}
 | 
					          ${this.properties.name}
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <div class="server-tab-badge"></div>
 | 
					        <div class="server-tab-badge"></div>
 | 
				
			||||||
        <div class="server-tab">
 | 
					        <div class="server-tab">
 | 
				
			||||||
          <img class="server-icons" src="${this.props.icon}" />
 | 
					          <img class="server-icons" src="${this.properties.icon}" />
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <div class="server-tab-shortcut">${this.generateShortcutText()}</div>
 | 
					        <div class="server-tab-shortcut">${this.generateShortcutText()}</div>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
@@ -63,12 +61,12 @@ export default class ServerTab extends Tab {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  setName(name: string): void {
 | 
					  setName(name: string): void {
 | 
				
			||||||
    this.props.name = name;
 | 
					    this.properties.name = name;
 | 
				
			||||||
    this.$name.textContent = name;
 | 
					    this.$name.textContent = name;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  setIcon(icon: string): void {
 | 
					  setIcon(icon: string): void {
 | 
				
			||||||
    this.props.icon = icon;
 | 
					    this.properties.icon = icon;
 | 
				
			||||||
    this.$icon.src = icon;
 | 
					    this.$icon.src = icon;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -79,11 +77,11 @@ export default class ServerTab extends Tab {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  generateShortcutText(): string {
 | 
					  generateShortcutText(): string {
 | 
				
			||||||
    // Only provide shortcuts for server [0..9]
 | 
					    // Only provide shortcuts for server [0..9]
 | 
				
			||||||
    if (this.props.index >= 9) {
 | 
					    if (this.properties.index >= 9) {
 | 
				
			||||||
      return "";
 | 
					      return "";
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const shownIndex = this.props.index + 1;
 | 
					    const shownIndex = this.properties.index + 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Array index == Shown index - 1
 | 
					    // Array index == Shown index - 1
 | 
				
			||||||
    ipcRenderer.send("switch-server-tab", shownIndex - 1);
 | 
					    ipcRenderer.send("switch-server-tab", shownIndex - 1);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
import type {TabRole} from "../../../common/types.js";
 | 
					import type {TabRole} from "../../../common/types.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type TabProps = {
 | 
					export type TabProperties = {
 | 
				
			||||||
  role: TabRole;
 | 
					  role: TabRole;
 | 
				
			||||||
  icon?: string;
 | 
					  icon?: string;
 | 
				
			||||||
  name: string;
 | 
					  name: string;
 | 
				
			||||||
@@ -17,17 +17,17 @@ export type TabProps = {
 | 
				
			|||||||
export default abstract class Tab {
 | 
					export default abstract class Tab {
 | 
				
			||||||
  abstract $el: Element;
 | 
					  abstract $el: Element;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  constructor(readonly props: TabProps) {}
 | 
					  constructor(readonly properties: TabProperties) {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  registerListeners(): void {
 | 
					  registerListeners(): void {
 | 
				
			||||||
    this.$el.addEventListener("click", this.props.onClick);
 | 
					    this.$el.addEventListener("click", this.properties.onClick);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (this.props.onHover !== undefined) {
 | 
					    if (this.properties.onHover !== undefined) {
 | 
				
			||||||
      this.$el.addEventListener("mouseover", this.props.onHover);
 | 
					      this.$el.addEventListener("mouseover", this.properties.onHover);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (this.props.onHoverOut !== undefined) {
 | 
					    if (this.properties.onHoverOut !== undefined) {
 | 
				
			||||||
      this.$el.addEventListener("mouseout", this.props.onHoverOut);
 | 
					      this.$el.addEventListener("mouseout", this.properties.onHoverOut);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,8 +6,7 @@ import * as remote from "@electron/remote";
 | 
				
			|||||||
import {app, dialog} from "@electron/remote";
 | 
					import {app, dialog} from "@electron/remote";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as ConfigUtil from "../../../common/config-util.js";
 | 
					import * as ConfigUtil from "../../../common/config-util.js";
 | 
				
			||||||
import type {Html} from "../../../common/html.js";
 | 
					import {type Html, html} from "../../../common/html.js";
 | 
				
			||||||
import {html} from "../../../common/html.js";
 | 
					 | 
				
			||||||
import type {RendererMessage} from "../../../common/typed-ipc.js";
 | 
					import type {RendererMessage} from "../../../common/typed-ipc.js";
 | 
				
			||||||
import type {TabRole} from "../../../common/types.js";
 | 
					import type {TabRole} from "../../../common/types.js";
 | 
				
			||||||
import preloadCss from "../../css/preload.css?raw";
 | 
					import preloadCss from "../../css/preload.css?raw";
 | 
				
			||||||
@@ -19,7 +18,7 @@ import {contextMenu} from "./context-menu.js";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
const shouldSilentWebview = ConfigUtil.getConfigItem("silent", false);
 | 
					const shouldSilentWebview = ConfigUtil.getConfigItem("silent", false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type WebViewProps = {
 | 
					type WebViewProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
  rootWebContents: WebContents;
 | 
					  rootWebContents: WebContents;
 | 
				
			||||||
  index: number;
 | 
					  index: number;
 | 
				
			||||||
@@ -36,24 +35,24 @@ type WebViewProps = {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class WebView {
 | 
					export default class WebView {
 | 
				
			||||||
  static templateHtml(props: WebViewProps): Html {
 | 
					  static templateHtml(properties: WebViewProperties): Html {
 | 
				
			||||||
    return html`
 | 
					    return html`
 | 
				
			||||||
      <div class="webview-pane">
 | 
					      <div class="webview-pane">
 | 
				
			||||||
        <div
 | 
					        <div
 | 
				
			||||||
          class="webview-unsupported"
 | 
					          class="webview-unsupported"
 | 
				
			||||||
          ${props.unsupportedMessage === undefined ? html`hidden` : html``}
 | 
					          ${properties.unsupportedMessage === undefined ? html`hidden` : html``}
 | 
				
			||||||
        >
 | 
					        >
 | 
				
			||||||
          <span class="webview-unsupported-message"
 | 
					          <span class="webview-unsupported-message"
 | 
				
			||||||
            >${props.unsupportedMessage ?? ""}</span
 | 
					            >${properties.unsupportedMessage ?? ""}</span
 | 
				
			||||||
          >
 | 
					          >
 | 
				
			||||||
          <span class="webview-unsupported-dismiss">×</span>
 | 
					          <span class="webview-unsupported-dismiss">×</span>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <webview
 | 
					        <webview
 | 
				
			||||||
          data-tab-id="${props.tabIndex}"
 | 
					          data-tab-id="${properties.tabIndex}"
 | 
				
			||||||
          src="${props.url}"
 | 
					          src="${properties.url}"
 | 
				
			||||||
          ${props.preload === undefined
 | 
					          ${properties.preload === undefined
 | 
				
			||||||
            ? html``
 | 
					            ? html``
 | 
				
			||||||
            : html`preload="${props.preload}"`}
 | 
					            : html`preload="${properties.preload}"`}
 | 
				
			||||||
          partition="persist:webviewsession"
 | 
					          partition="persist:webviewsession"
 | 
				
			||||||
          allowpopups
 | 
					          allowpopups
 | 
				
			||||||
        >
 | 
					        >
 | 
				
			||||||
@@ -62,11 +61,11 @@ export default class WebView {
 | 
				
			|||||||
    `;
 | 
					    `;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  static async create(props: WebViewProps): Promise<WebView> {
 | 
					  static async create(properties: WebViewProperties): Promise<WebView> {
 | 
				
			||||||
    const $pane = generateNodeFromHtml(
 | 
					    const $pane = generateNodeFromHtml(
 | 
				
			||||||
      WebView.templateHtml(props),
 | 
					      WebView.templateHtml(properties),
 | 
				
			||||||
    ) as HTMLElement;
 | 
					    ) as HTMLElement;
 | 
				
			||||||
    props.$root.append($pane);
 | 
					    properties.$root.append($pane);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const $webview: HTMLElement = $pane.querySelector(":scope > webview")!;
 | 
					    const $webview: HTMLElement = $pane.querySelector(":scope > webview")!;
 | 
				
			||||||
    await new Promise<void>((resolve) => {
 | 
					    await new Promise<void>((resolve) => {
 | 
				
			||||||
@@ -90,22 +89,21 @@ export default class WebView {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const selector = `webview[data-tab-id="${CSS.escape(
 | 
					    const selector = `webview[data-tab-id="${CSS.escape(
 | 
				
			||||||
      `${props.tabIndex}`,
 | 
					      `${properties.tabIndex}`,
 | 
				
			||||||
    )}"]`;
 | 
					    )}"]`;
 | 
				
			||||||
    const webContentsId: unknown =
 | 
					    const webContentsId: unknown =
 | 
				
			||||||
      await props.rootWebContents.executeJavaScript(
 | 
					      await properties.rootWebContents.executeJavaScript(
 | 
				
			||||||
        `(${getWebContentsIdFunction.toString()})(${JSON.stringify(selector)})`,
 | 
					        `(${getWebContentsIdFunction.toString()})(${JSON.stringify(selector)})`,
 | 
				
			||||||
      );
 | 
					      );
 | 
				
			||||||
    if (typeof webContentsId !== "number") {
 | 
					    if (typeof webContentsId !== "number") {
 | 
				
			||||||
      throw new TypeError("Failed to get WebContents ID");
 | 
					      throw new TypeError("Failed to get WebContents ID");
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return new WebView(props, $pane, $webview, webContentsId);
 | 
					    return new WebView(properties, $pane, $webview, webContentsId);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  badgeCount = 0;
 | 
					  badgeCount = 0;
 | 
				
			||||||
  loading = true;
 | 
					  loading = true;
 | 
				
			||||||
  private zoomFactor = 1;
 | 
					 | 
				
			||||||
  private customCss: string | false | null;
 | 
					  private customCss: string | false | null;
 | 
				
			||||||
  private readonly $webviewsContainer: DOMTokenList;
 | 
					  private readonly $webviewsContainer: DOMTokenList;
 | 
				
			||||||
  private readonly $unsupported: HTMLElement;
 | 
					  private readonly $unsupported: HTMLElement;
 | 
				
			||||||
@@ -114,7 +112,7 @@ export default class WebView {
 | 
				
			|||||||
  private unsupportedDismissed = false;
 | 
					  private unsupportedDismissed = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  private constructor(
 | 
					  private constructor(
 | 
				
			||||||
    readonly props: WebViewProps,
 | 
					    readonly properties: WebViewProperties,
 | 
				
			||||||
    private readonly $pane: HTMLElement,
 | 
					    private readonly $pane: HTMLElement,
 | 
				
			||||||
    private readonly $webview: HTMLElement,
 | 
					    private readonly $webview: HTMLElement,
 | 
				
			||||||
    readonly webContentsId: number,
 | 
					    readonly webContentsId: number,
 | 
				
			||||||
@@ -161,18 +159,15 @@ export default class WebView {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  zoomIn(): void {
 | 
					  zoomIn(): void {
 | 
				
			||||||
    this.zoomFactor += 0.1;
 | 
					    this.getWebContents().zoomLevel += 0.5;
 | 
				
			||||||
    this.getWebContents().setZoomFactor(this.zoomFactor);
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  zoomOut(): void {
 | 
					  zoomOut(): void {
 | 
				
			||||||
    this.zoomFactor -= 0.1;
 | 
					    this.getWebContents().zoomLevel -= 0.5;
 | 
				
			||||||
    this.getWebContents().setZoomFactor(this.zoomFactor);
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  zoomActualSize(): void {
 | 
					  zoomActualSize(): void {
 | 
				
			||||||
    this.zoomFactor = 1;
 | 
					    this.getWebContents().zoomLevel = 0;
 | 
				
			||||||
    this.getWebContents().setZoomFactor(this.zoomFactor);
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  logOut(): void {
 | 
					  logOut(): void {
 | 
				
			||||||
@@ -212,7 +207,7 @@ export default class WebView {
 | 
				
			|||||||
    // Shows the loading indicator till the webview is reloaded
 | 
					    // Shows the loading indicator till the webview is reloaded
 | 
				
			||||||
    this.$webviewsContainer.remove("loaded");
 | 
					    this.$webviewsContainer.remove("loaded");
 | 
				
			||||||
    this.loading = true;
 | 
					    this.loading = true;
 | 
				
			||||||
    this.props.switchLoading(true, this.props.url);
 | 
					    this.properties.switchLoading(true, this.properties.url);
 | 
				
			||||||
    this.getWebContents().reload();
 | 
					    this.getWebContents().reload();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -224,9 +219,9 @@ export default class WebView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  send<Channel extends keyof RendererMessage>(
 | 
					  send<Channel extends keyof RendererMessage>(
 | 
				
			||||||
    channel: Channel,
 | 
					    channel: Channel,
 | 
				
			||||||
    ...args: Parameters<RendererMessage[Channel]>
 | 
					    ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
  ): void {
 | 
					  ): void {
 | 
				
			||||||
    ipcRenderer.send("forward-to", this.webContentsId, channel, ...args);
 | 
					    ipcRenderer.send("forward-to", this.webContentsId, channel, ...arguments_);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  private registerListeners(): void {
 | 
					  private registerListeners(): void {
 | 
				
			||||||
@@ -238,7 +233,7 @@ export default class WebView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    webContents.on("page-title-updated", (_event, title) => {
 | 
					    webContents.on("page-title-updated", (_event, title) => {
 | 
				
			||||||
      this.badgeCount = this.getBadgeCount(title);
 | 
					      this.badgeCount = this.getBadgeCount(title);
 | 
				
			||||||
      this.props.onTitleChange();
 | 
					      this.properties.onTitleChange();
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.$webview.addEventListener("did-navigate-in-page", () => {
 | 
					    this.$webview.addEventListener("did-navigate-in-page", () => {
 | 
				
			||||||
@@ -271,7 +266,7 @@ export default class WebView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    this.$webview.addEventListener("dom-ready", () => {
 | 
					    this.$webview.addEventListener("dom-ready", () => {
 | 
				
			||||||
      this.loading = false;
 | 
					      this.loading = false;
 | 
				
			||||||
      this.props.switchLoading(false, this.props.url);
 | 
					      this.properties.switchLoading(false, this.properties.url);
 | 
				
			||||||
      this.show();
 | 
					      this.show();
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -280,24 +275,29 @@ export default class WebView {
 | 
				
			|||||||
        SystemUtil.connectivityError.includes(errorDescription);
 | 
					        SystemUtil.connectivityError.includes(errorDescription);
 | 
				
			||||||
      if (hasConnectivityError) {
 | 
					      if (hasConnectivityError) {
 | 
				
			||||||
        console.error("error", errorDescription);
 | 
					        console.error("error", errorDescription);
 | 
				
			||||||
        if (!this.props.url.includes("network.html")) {
 | 
					        if (!this.properties.url.includes("network.html")) {
 | 
				
			||||||
          this.props.onNetworkError(this.props.index);
 | 
					          this.properties.onNetworkError(this.properties.index);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.$webview.addEventListener("did-start-loading", () => {
 | 
					    this.$webview.addEventListener("did-start-loading", () => {
 | 
				
			||||||
      this.props.switchLoading(true, this.props.url);
 | 
					      this.properties.switchLoading(true, this.properties.url);
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.$webview.addEventListener("did-stop-loading", () => {
 | 
					    this.$webview.addEventListener("did-stop-loading", () => {
 | 
				
			||||||
      this.props.switchLoading(false, this.props.url);
 | 
					      this.properties.switchLoading(false, this.properties.url);
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.$unsupportedDismiss.addEventListener("click", () => {
 | 
					    this.$unsupportedDismiss.addEventListener("click", () => {
 | 
				
			||||||
      this.unsupportedDismissed = true;
 | 
					      this.unsupportedDismissed = true;
 | 
				
			||||||
      this.$unsupported.hidden = true;
 | 
					      this.$unsupported.hidden = true;
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    webContents.on("zoom-changed", (event, zoomDirection) => {
 | 
				
			||||||
 | 
					      if (zoomDirection === "in") this.zoomIn();
 | 
				
			||||||
 | 
					      else if (zoomDirection === "out") this.zoomOut();
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  private getBadgeCount(title: string): number {
 | 
					  private getBadgeCount(title: string): number {
 | 
				
			||||||
@@ -307,7 +307,7 @@ export default class WebView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  private show(): void {
 | 
					  private show(): void {
 | 
				
			||||||
    // Do not show WebView if another tab was selected and this tab should be in background.
 | 
					    // Do not show WebView if another tab was selected and this tab should be in background.
 | 
				
			||||||
    if (!this.props.isActive()) {
 | 
					    if (!this.properties.isActive()) {
 | 
				
			||||||
      return;
 | 
					      return;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -316,7 +316,7 @@ export default class WebView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    this.$pane.classList.add("active");
 | 
					    this.$pane.classList.add("active");
 | 
				
			||||||
    this.focus();
 | 
					    this.focus();
 | 
				
			||||||
    this.props.onTitleChange();
 | 
					    this.properties.onTitleChange();
 | 
				
			||||||
    // Injecting preload css in webview to override some css rules
 | 
					    // Injecting preload css in webview to override some css rules
 | 
				
			||||||
    (async () => this.getWebContents().insertCSS(preloadCss))();
 | 
					    (async () => this.getWebContents().insertCSS(preloadCss))();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,16 +1,17 @@
 | 
				
			|||||||
import {EventEmitter} from "node:events";
 | 
					import {EventEmitter} from "node:events";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import type {ClipboardDecrypter} from "./clipboard-decrypter.js";
 | 
					import {
 | 
				
			||||||
import {ClipboardDecrypterImpl} from "./clipboard-decrypter.js";
 | 
					  type ClipboardDecrypter,
 | 
				
			||||||
import type {NotificationData} from "./notification/index.js";
 | 
					  ClipboardDecrypterImplementation,
 | 
				
			||||||
import {newNotification} from "./notification/index.js";
 | 
					} from "./clipboard-decrypter.js";
 | 
				
			||||||
 | 
					import {type NotificationData, newNotification} from "./notification/index.js";
 | 
				
			||||||
import {ipcRenderer} from "./typed-ipc-renderer.js";
 | 
					import {ipcRenderer} from "./typed-ipc-renderer.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ListenerType = (...args: any[]) => void;
 | 
					type ListenerType = (...arguments_: any[]) => void;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* eslint-disable @typescript-eslint/naming-convention */
 | 
					/* eslint-disable @typescript-eslint/naming-convention */
 | 
				
			||||||
export type ElectronBridge = {
 | 
					export type ElectronBridge = {
 | 
				
			||||||
  send_event: (eventName: string | symbol, ...args: unknown[]) => boolean;
 | 
					  send_event: (eventName: string | symbol, ...arguments_: unknown[]) => boolean;
 | 
				
			||||||
  on_event: (eventName: string, listener: ListenerType) => void;
 | 
					  on_event: (eventName: string, listener: ListenerType) => void;
 | 
				
			||||||
  new_notification: (
 | 
					  new_notification: (
 | 
				
			||||||
    title: string,
 | 
					    title: string,
 | 
				
			||||||
@@ -35,8 +36,8 @@ export const bridgeEvents = new EventEmitter(); // eslint-disable-line unicorn/p
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/* eslint-disable @typescript-eslint/naming-convention */
 | 
					/* eslint-disable @typescript-eslint/naming-convention */
 | 
				
			||||||
const electron_bridge: ElectronBridge = {
 | 
					const electron_bridge: ElectronBridge = {
 | 
				
			||||||
  send_event: (eventName: string | symbol, ...args: unknown[]): boolean =>
 | 
					  send_event: (eventName: string | symbol, ...arguments_: unknown[]): boolean =>
 | 
				
			||||||
    bridgeEvents.emit(eventName, ...args),
 | 
					    bridgeEvents.emit(eventName, ...arguments_),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  on_event(eventName: string, listener: ListenerType): void {
 | 
					  on_event(eventName: string, listener: ListenerType): void {
 | 
				
			||||||
    bridgeEvents.on(eventName, listener);
 | 
					    bridgeEvents.on(eventName, listener);
 | 
				
			||||||
@@ -60,7 +61,7 @@ const electron_bridge: ElectronBridge = {
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  decrypt_clipboard: (version: number): ClipboardDecrypter =>
 | 
					  decrypt_clipboard: (version: number): ClipboardDecrypter =>
 | 
				
			||||||
    new ClipboardDecrypterImpl(version),
 | 
					    new ClipboardDecrypterImplementation(version),
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
/* eslint-enable @typescript-eslint/naming-convention */
 | 
					/* eslint-enable @typescript-eslint/naming-convention */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -16,7 +16,11 @@ import * as LinkUtil from "../../common/link-util.js";
 | 
				
			|||||||
import Logger from "../../common/logger-util.js";
 | 
					import Logger from "../../common/logger-util.js";
 | 
				
			||||||
import * as Messages from "../../common/messages.js";
 | 
					import * as Messages from "../../common/messages.js";
 | 
				
			||||||
import {bundlePath, bundleUrl} from "../../common/paths.js";
 | 
					import {bundlePath, bundleUrl} from "../../common/paths.js";
 | 
				
			||||||
import type {NavItem, ServerConf, TabData} from "../../common/types.js";
 | 
					import type {
 | 
				
			||||||
 | 
					  NavigationItem,
 | 
				
			||||||
 | 
					  ServerConfig,
 | 
				
			||||||
 | 
					  TabData,
 | 
				
			||||||
 | 
					} from "../../common/types.js";
 | 
				
			||||||
import defaultIcon from "../img/icon.png";
 | 
					import defaultIcon from "../img/icon.png";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import FunctionalTab from "./components/functional-tab.js";
 | 
					import FunctionalTab from "./components/functional-tab.js";
 | 
				
			||||||
@@ -248,8 +252,8 @@ export class ServerManagerView {
 | 
				
			|||||||
    // promise of addition resolves in both cases, but we consider it rejected
 | 
					    // promise of addition resolves in both cases, but we consider it rejected
 | 
				
			||||||
    // if the resolved value is false
 | 
					    // if the resolved value is false
 | 
				
			||||||
    try {
 | 
					    try {
 | 
				
			||||||
      const serverConf = await DomainUtil.checkDomain(domain);
 | 
					      const serverConfig = await DomainUtil.checkDomain(domain);
 | 
				
			||||||
      await DomainUtil.addDomain(serverConf);
 | 
					      await DomainUtil.addDomain(serverConfig);
 | 
				
			||||||
      return true;
 | 
					      return true;
 | 
				
			||||||
    } catch (error: unknown) {
 | 
					    } catch (error: unknown) {
 | 
				
			||||||
      logger.error(error);
 | 
					      logger.error(error);
 | 
				
			||||||
@@ -325,11 +329,14 @@ export class ServerManagerView {
 | 
				
			|||||||
      for (const [i, server] of servers.entries()) {
 | 
					      for (const [i, server] of servers.entries()) {
 | 
				
			||||||
        const tab = this.initServer(server, i);
 | 
					        const tab = this.initServer(server, i);
 | 
				
			||||||
        (async () => {
 | 
					        (async () => {
 | 
				
			||||||
          const serverConf = await DomainUtil.updateSavedServer(server.url, i);
 | 
					          const serverConfig = await DomainUtil.updateSavedServer(
 | 
				
			||||||
          tab.setName(serverConf.alias);
 | 
					            server.url,
 | 
				
			||||||
          tab.setIcon(DomainUtil.iconAsUrl(serverConf.icon));
 | 
					            i,
 | 
				
			||||||
 | 
					          );
 | 
				
			||||||
 | 
					          tab.setName(serverConfig.alias);
 | 
				
			||||||
 | 
					          tab.setIcon(DomainUtil.iconAsUrl(serverConfig.icon));
 | 
				
			||||||
          (await tab.webview).setUnsupportedMessage(
 | 
					          (await tab.webview).setUnsupportedMessage(
 | 
				
			||||||
            DomainUtil.getUnsupportedMessage(serverConf),
 | 
					            DomainUtil.getUnsupportedMessage(serverConfig),
 | 
				
			||||||
          );
 | 
					          );
 | 
				
			||||||
        })();
 | 
					        })();
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
@@ -364,7 +371,7 @@ export class ServerManagerView {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  initServer(server: ServerConf, index: number): ServerTab {
 | 
					  initServer(server: ServerConfig, index: number): ServerTab {
 | 
				
			||||||
    const tabIndex = this.getTabIndex();
 | 
					    const tabIndex = this.getTabIndex();
 | 
				
			||||||
    const tab = new ServerTab({
 | 
					    const tab = new ServerTab({
 | 
				
			||||||
      role: "server",
 | 
					      role: "server",
 | 
				
			||||||
@@ -398,7 +405,7 @@ export class ServerManagerView {
 | 
				
			|||||||
          const tab = this.tabs[this.activeTabIndex];
 | 
					          const tab = this.tabs[this.activeTabIndex];
 | 
				
			||||||
          this.showLoading(
 | 
					          this.showLoading(
 | 
				
			||||||
            tab instanceof ServerTab &&
 | 
					            tab instanceof ServerTab &&
 | 
				
			||||||
              this.loading.has((await tab.webview).props.url),
 | 
					              this.loading.has((await tab.webview).properties.url),
 | 
				
			||||||
          );
 | 
					          );
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        onNetworkError: async (index: number) => {
 | 
					        onNetworkError: async (index: number) => {
 | 
				
			||||||
@@ -481,7 +488,7 @@ export class ServerManagerView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  async getCurrentActiveServer(): Promise<string> {
 | 
					  async getCurrentActiveServer(): Promise<string> {
 | 
				
			||||||
    const tab = this.tabs[this.activeTabIndex];
 | 
					    const tab = this.tabs[this.activeTabIndex];
 | 
				
			||||||
    return tab instanceof ServerTab ? (await tab.webview).props.url : "";
 | 
					    return tab instanceof ServerTab ? (await tab.webview).properties.url : "";
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  displayInitialCharLogo($img: HTMLImageElement, index: number): void {
 | 
					  displayInitialCharLogo($img: HTMLImageElement, index: number): void {
 | 
				
			||||||
@@ -550,36 +557,36 @@ export class ServerManagerView {
 | 
				
			|||||||
    this.$serverIconTooltip[index].style.display = "none";
 | 
					    this.$serverIconTooltip[index].style.display = "none";
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  async openFunctionalTab(tabProps: {
 | 
					  async openFunctionalTab(tabProperties: {
 | 
				
			||||||
    name: string;
 | 
					    name: string;
 | 
				
			||||||
    materialIcon: string;
 | 
					    materialIcon: string;
 | 
				
			||||||
    makeView: () => Promise<Element>;
 | 
					    makeView: () => Promise<Element>;
 | 
				
			||||||
    destroyView: () => void;
 | 
					    destroyView: () => void;
 | 
				
			||||||
  }): Promise<void> {
 | 
					  }): Promise<void> {
 | 
				
			||||||
    if (this.functionalTabs.has(tabProps.name)) {
 | 
					    if (this.functionalTabs.has(tabProperties.name)) {
 | 
				
			||||||
      await this.activateTab(this.functionalTabs.get(tabProps.name)!);
 | 
					      await this.activateTab(this.functionalTabs.get(tabProperties.name)!);
 | 
				
			||||||
      return;
 | 
					      return;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const index = this.tabs.length;
 | 
					    const index = this.tabs.length;
 | 
				
			||||||
    this.functionalTabs.set(tabProps.name, index);
 | 
					    this.functionalTabs.set(tabProperties.name, index);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const tabIndex = this.getTabIndex();
 | 
					    const tabIndex = this.getTabIndex();
 | 
				
			||||||
    const $view = await tabProps.makeView();
 | 
					    const $view = await tabProperties.makeView();
 | 
				
			||||||
    this.$webviewsContainer.append($view);
 | 
					    this.$webviewsContainer.append($view);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.tabs.push(
 | 
					    this.tabs.push(
 | 
				
			||||||
      new FunctionalTab({
 | 
					      new FunctionalTab({
 | 
				
			||||||
        role: "function",
 | 
					        role: "function",
 | 
				
			||||||
        materialIcon: tabProps.materialIcon,
 | 
					        materialIcon: tabProperties.materialIcon,
 | 
				
			||||||
        name: tabProps.name,
 | 
					        name: tabProperties.name,
 | 
				
			||||||
        $root: this.$tabsContainer,
 | 
					        $root: this.$tabsContainer,
 | 
				
			||||||
        index,
 | 
					        index,
 | 
				
			||||||
        tabIndex,
 | 
					        tabIndex,
 | 
				
			||||||
        onClick: this.activateTab.bind(this, index),
 | 
					        onClick: this.activateTab.bind(this, index),
 | 
				
			||||||
        onDestroy: async () => {
 | 
					        onDestroy: async () => {
 | 
				
			||||||
          await this.destroyTab(tabProps.name, index);
 | 
					          await this.destroyTab(tabProperties.name, index);
 | 
				
			||||||
          tabProps.destroyView();
 | 
					          tabProperties.destroyView();
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        $view,
 | 
					        $view,
 | 
				
			||||||
      }),
 | 
					      }),
 | 
				
			||||||
@@ -589,10 +596,12 @@ export class ServerManagerView {
 | 
				
			|||||||
    // closed when the functional tab DOM is ready, handled in webview.js
 | 
					    // closed when the functional tab DOM is ready, handled in webview.js
 | 
				
			||||||
    this.$webviewsContainer.classList.remove("loaded");
 | 
					    this.$webviewsContainer.classList.remove("loaded");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    await this.activateTab(this.functionalTabs.get(tabProps.name)!);
 | 
					    await this.activateTab(this.functionalTabs.get(tabProperties.name)!);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  async openSettings(nav: NavItem = "General"): Promise<void> {
 | 
					  async openSettings(
 | 
				
			||||||
 | 
					    navigationItem: NavigationItem = "General",
 | 
				
			||||||
 | 
					  ): Promise<void> {
 | 
				
			||||||
    await this.openFunctionalTab({
 | 
					    await this.openFunctionalTab({
 | 
				
			||||||
      name: "Settings",
 | 
					      name: "Settings",
 | 
				
			||||||
      materialIcon: "settings",
 | 
					      materialIcon: "settings",
 | 
				
			||||||
@@ -607,7 +616,7 @@ export class ServerManagerView {
 | 
				
			|||||||
      },
 | 
					      },
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
    this.$settingsButton.classList.add("active");
 | 
					    this.$settingsButton.classList.add("active");
 | 
				
			||||||
    this.preferenceView!.handleNavigation(nav);
 | 
					    this.preferenceView!.handleNavigation(navigationItem);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  async openAbout(): Promise<void> {
 | 
					  async openAbout(): Promise<void> {
 | 
				
			||||||
@@ -646,13 +655,13 @@ export class ServerManagerView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  // Returns this.tabs in an way that does
 | 
					  // Returns this.tabs in an way that does
 | 
				
			||||||
  // not crash app when this.tabs is passed into
 | 
					  // not crash app when this.tabs is passed into
 | 
				
			||||||
  // ipcRenderer. Something about webview, and props.webview
 | 
					  // ipcRenderer. Something about webview, and properties.webview
 | 
				
			||||||
  // properties in ServerTab causes the app to crash.
 | 
					  // properties in ServerTab causes the app to crash.
 | 
				
			||||||
  get tabsForIpc(): TabData[] {
 | 
					  get tabsForIpc(): TabData[] {
 | 
				
			||||||
    return this.tabs.map((tab) => ({
 | 
					    return this.tabs.map((tab) => ({
 | 
				
			||||||
      role: tab.props.role,
 | 
					      role: tab.properties.role,
 | 
				
			||||||
      name: tab.props.name,
 | 
					      name: tab.properties.name,
 | 
				
			||||||
      index: tab.props.index,
 | 
					      index: tab.properties.index,
 | 
				
			||||||
    }));
 | 
					    }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -670,8 +679,8 @@ export class ServerManagerView {
 | 
				
			|||||||
      if (hideOldTab) {
 | 
					      if (hideOldTab) {
 | 
				
			||||||
        // If old tab is functional tab Settings, remove focus from the settings icon at sidebar bottom
 | 
					        // If old tab is functional tab Settings, remove focus from the settings icon at sidebar bottom
 | 
				
			||||||
        if (
 | 
					        if (
 | 
				
			||||||
          this.tabs[this.activeTabIndex].props.role === "function" &&
 | 
					          this.tabs[this.activeTabIndex].properties.role === "function" &&
 | 
				
			||||||
          this.tabs[this.activeTabIndex].props.name === "Settings"
 | 
					          this.tabs[this.activeTabIndex].properties.name === "Settings"
 | 
				
			||||||
        ) {
 | 
					        ) {
 | 
				
			||||||
          this.$settingsButton.classList.remove("active");
 | 
					          this.$settingsButton.classList.remove("active");
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@@ -695,7 +704,7 @@ export class ServerManagerView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    this.showLoading(
 | 
					    this.showLoading(
 | 
				
			||||||
      tab instanceof ServerTab &&
 | 
					      tab instanceof ServerTab &&
 | 
				
			||||||
        this.loading.has((await tab.webview).props.url),
 | 
					        this.loading.has((await tab.webview).properties.url),
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ipcRenderer.send("update-menu", {
 | 
					    ipcRenderer.send("update-menu", {
 | 
				
			||||||
@@ -704,7 +713,7 @@ export class ServerManagerView {
 | 
				
			|||||||
      tabs: this.tabsForIpc,
 | 
					      tabs: this.tabsForIpc,
 | 
				
			||||||
      activeTabIndex: this.activeTabIndex,
 | 
					      activeTabIndex: this.activeTabIndex,
 | 
				
			||||||
      // Following flag controls whether a menu item should be enabled or not
 | 
					      // Following flag controls whether a menu item should be enabled or not
 | 
				
			||||||
      enableMenu: tab.props.role === "server",
 | 
					      enableMenu: tab.properties.role === "server",
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -721,7 +730,7 @@ export class ServerManagerView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    await tab.destroy();
 | 
					    await tab.destroy();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    delete this.tabs[index];
 | 
					    delete this.tabs[index]; // eslint-disable-line @typescript-eslint/no-array-delete
 | 
				
			||||||
    this.functionalTabs.delete(name);
 | 
					    this.functionalTabs.delete(name);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Issue #188: If the functional tab was not focused, do not activate another tab.
 | 
					    // Issue #188: If the functional tab was not focused, do not activate another tab.
 | 
				
			||||||
@@ -746,7 +755,7 @@ export class ServerManagerView {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  async reloadView(): Promise<void> {
 | 
					  async reloadView(): Promise<void> {
 | 
				
			||||||
    // Save and remember the index of last active tab so that we can use it later
 | 
					    // Save and remember the index of last active tab so that we can use it later
 | 
				
			||||||
    const lastActiveTab = this.tabs[this.activeTabIndex].props.index;
 | 
					    const lastActiveTab = this.tabs[this.activeTabIndex].properties.index;
 | 
				
			||||||
    ConfigUtil.setConfigItem("lastActiveTab", lastActiveTab);
 | 
					    ConfigUtil.setConfigItem("lastActiveTab", lastActiveTab);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Destroy the current view and re-initiate it
 | 
					    // Destroy the current view and re-initiate it
 | 
				
			||||||
@@ -946,7 +955,7 @@ export class ServerManagerView {
 | 
				
			|||||||
                    const webview = await tab.webview;
 | 
					                    const webview = await tab.webview;
 | 
				
			||||||
                    return (
 | 
					                    return (
 | 
				
			||||||
                      webview.webContentsId === webContentsId &&
 | 
					                      webview.webContentsId === webContentsId &&
 | 
				
			||||||
                      webview.props.hasPermission?.(origin, permission)
 | 
					                      webview.properties.hasPermission?.(origin, permission)
 | 
				
			||||||
                    );
 | 
					                    );
 | 
				
			||||||
                  }),
 | 
					                  }),
 | 
				
			||||||
                )
 | 
					                )
 | 
				
			||||||
@@ -1092,7 +1101,7 @@ export class ServerManagerView {
 | 
				
			|||||||
            (await tab.webview).webContentsId === webviewId
 | 
					            (await tab.webview).webContentsId === webviewId
 | 
				
			||||||
          ) {
 | 
					          ) {
 | 
				
			||||||
            const concurrentTab: HTMLButtonElement = document.querySelector(
 | 
					            const concurrentTab: HTMLButtonElement = document.querySelector(
 | 
				
			||||||
              `div[data-tab-id="${CSS.escape(`${tab.props.tabIndex}`)}"]`,
 | 
					              `div[data-tab-id="${CSS.escape(`${tab.properties.tabIndex}`)}"]`,
 | 
				
			||||||
            )!;
 | 
					            )!;
 | 
				
			||||||
            concurrentTab.click();
 | 
					            concurrentTab.click();
 | 
				
			||||||
          }
 | 
					          }
 | 
				
			||||||
@@ -1107,22 +1116,22 @@ export class ServerManagerView {
 | 
				
			|||||||
        canvas.height = 128;
 | 
					        canvas.height = 128;
 | 
				
			||||||
        canvas.width = 128;
 | 
					        canvas.width = 128;
 | 
				
			||||||
        canvas.style.letterSpacing = "-5px";
 | 
					        canvas.style.letterSpacing = "-5px";
 | 
				
			||||||
        const ctx = canvas.getContext("2d")!;
 | 
					        const context = canvas.getContext("2d")!;
 | 
				
			||||||
        ctx.fillStyle = "#f42020";
 | 
					        context.fillStyle = "#f42020";
 | 
				
			||||||
        ctx.beginPath();
 | 
					        context.beginPath();
 | 
				
			||||||
        ctx.ellipse(64, 64, 64, 64, 0, 0, 2 * Math.PI);
 | 
					        context.ellipse(64, 64, 64, 64, 0, 0, 2 * Math.PI);
 | 
				
			||||||
        ctx.fill();
 | 
					        context.fill();
 | 
				
			||||||
        ctx.textAlign = "center";
 | 
					        context.textAlign = "center";
 | 
				
			||||||
        ctx.fillStyle = "white";
 | 
					        context.fillStyle = "white";
 | 
				
			||||||
        if (messageCount > 99) {
 | 
					        if (messageCount > 99) {
 | 
				
			||||||
          ctx.font = "65px Helvetica";
 | 
					          context.font = "65px Helvetica";
 | 
				
			||||||
          ctx.fillText("99+", 64, 85);
 | 
					          context.fillText("99+", 64, 85);
 | 
				
			||||||
        } else if (messageCount < 10) {
 | 
					        } else if (messageCount < 10) {
 | 
				
			||||||
          ctx.font = "90px Helvetica";
 | 
					          context.font = "90px Helvetica";
 | 
				
			||||||
          ctx.fillText(String(Math.min(99, messageCount)), 64, 96);
 | 
					          context.fillText(String(Math.min(99, messageCount)), 64, 96);
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
          ctx.font = "85px Helvetica";
 | 
					          context.font = "85px Helvetica";
 | 
				
			||||||
          ctx.fillText(String(Math.min(99, messageCount)), 64, 90);
 | 
					          context.fillText(String(Math.min(99, messageCount)), 64, 90);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return canvas;
 | 
					        return canvas;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -18,10 +18,10 @@ export function newNotification(
 | 
				
			|||||||
): NotificationData {
 | 
					): NotificationData {
 | 
				
			||||||
  const notification = new Notification(title, {...options, silent: true});
 | 
					  const notification = new Notification(title, {...options, silent: true});
 | 
				
			||||||
  for (const type of ["click", "close", "error", "show"]) {
 | 
					  for (const type of ["click", "close", "error", "show"]) {
 | 
				
			||||||
    notification.addEventListener(type, (ev) => {
 | 
					    notification.addEventListener(type, (event) => {
 | 
				
			||||||
      if (type === "click") ipcRenderer.send("focus-this-webview");
 | 
					      if (type === "click") ipcRenderer.send("focus-this-webview");
 | 
				
			||||||
      if (!dispatch(type, ev)) {
 | 
					      if (!dispatch(type, event)) {
 | 
				
			||||||
        ev.preventDefault();
 | 
					        event.preventDefault();
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,17 +1,16 @@
 | 
				
			|||||||
import type {Html} from "../../../../common/html.js";
 | 
					import {type Html, html} from "../../../../common/html.js";
 | 
				
			||||||
import {html} from "../../../../common/html.js";
 | 
					 | 
				
			||||||
import {generateNodeFromHtml} from "../../components/base.js";
 | 
					import {generateNodeFromHtml} from "../../components/base.js";
 | 
				
			||||||
import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
					import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type BaseSectionProps = {
 | 
					type BaseSectionProperties = {
 | 
				
			||||||
  $element: HTMLElement;
 | 
					  $element: HTMLElement;
 | 
				
			||||||
  disabled?: boolean;
 | 
					  disabled?: boolean;
 | 
				
			||||||
  value: boolean;
 | 
					  value: boolean;
 | 
				
			||||||
  clickHandler: () => void;
 | 
					  clickHandler: () => void;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function generateSettingOption(props: BaseSectionProps): void {
 | 
					export function generateSettingOption(properties: BaseSectionProperties): void {
 | 
				
			||||||
  const {$element, disabled, value, clickHandler} = props;
 | 
					  const {$element, disabled, value, clickHandler} = properties;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  $element.textContent = "";
 | 
					  $element.textContent = "";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -30,8 +29,7 @@ export function generateOptionHtml(
 | 
				
			|||||||
  disabled?: boolean,
 | 
					  disabled?: boolean,
 | 
				
			||||||
): Html {
 | 
					): Html {
 | 
				
			||||||
  const labelHtml = disabled
 | 
					  const labelHtml = disabled
 | 
				
			||||||
    ? // eslint-disable-next-line unicorn/template-indent
 | 
					    ? html`<label
 | 
				
			||||||
      html`<label
 | 
					 | 
				
			||||||
        class="disallowed"
 | 
					        class="disallowed"
 | 
				
			||||||
        title="Setting locked by system administrator."
 | 
					        title="Setting locked by system administrator."
 | 
				
			||||||
      ></label>`
 | 
					      ></label>`
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,13 +7,13 @@ import {reloadApp} from "./base-section.js";
 | 
				
			|||||||
import {initFindAccounts} from "./find-accounts.js";
 | 
					import {initFindAccounts} from "./find-accounts.js";
 | 
				
			||||||
import {initServerInfoForm} from "./server-info-form.js";
 | 
					import {initServerInfoForm} from "./server-info-form.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ConnectedOrgSectionProps = {
 | 
					type ConnectedOrgSectionProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function initConnectedOrgSection({
 | 
					export function initConnectedOrgSection({
 | 
				
			||||||
  $root,
 | 
					  $root,
 | 
				
			||||||
}: ConnectedOrgSectionProps): void {
 | 
					}: ConnectedOrgSectionProperties): void {
 | 
				
			||||||
  $root.textContent = "";
 | 
					  $root.textContent = "";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const servers = DomainUtil.getDomains();
 | 
					  const servers = DomainUtil.getDomains();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,7 @@ import * as LinkUtil from "../../../../common/link-util.js";
 | 
				
			|||||||
import * as t from "../../../../common/translation-util.js";
 | 
					import * as t from "../../../../common/translation-util.js";
 | 
				
			||||||
import {generateNodeFromHtml} from "../../components/base.js";
 | 
					import {generateNodeFromHtml} from "../../components/base.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type FindAccountsProps = {
 | 
					type FindAccountsProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -19,7 +19,7 @@ async function findAccounts(url: string): Promise<void> {
 | 
				
			|||||||
  await LinkUtil.openBrowser(new URL("/accounts/find", url));
 | 
					  await LinkUtil.openBrowser(new URL("/accounts/find", url));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function initFindAccounts(props: FindAccountsProps): void {
 | 
					export function initFindAccounts(properties: FindAccountsProperties): void {
 | 
				
			||||||
  const $findAccounts = generateNodeFromHtml(html`
 | 
					  const $findAccounts = generateNodeFromHtml(html`
 | 
				
			||||||
    <div class="settings-card certificate-card">
 | 
					    <div class="settings-card certificate-card">
 | 
				
			||||||
      <div class="certificate-input">
 | 
					      <div class="certificate-input">
 | 
				
			||||||
@@ -33,7 +33,7 @@ export function initFindAccounts(props: FindAccountsProps): void {
 | 
				
			|||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  `);
 | 
					  `);
 | 
				
			||||||
  props.$root.append($findAccounts);
 | 
					  properties.$root.append($findAccounts);
 | 
				
			||||||
  const $findAccountsButton = $findAccounts.querySelector(
 | 
					  const $findAccountsButton = $findAccounts.querySelector(
 | 
				
			||||||
    "#find-accounts-button",
 | 
					    "#find-accounts-button",
 | 
				
			||||||
  )!;
 | 
					  )!;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,6 @@ import process from "node:process";
 | 
				
			|||||||
import * as remote from "@electron/remote";
 | 
					import * as remote from "@electron/remote";
 | 
				
			||||||
import {app, dialog, session} from "@electron/remote";
 | 
					import {app, dialog, session} from "@electron/remote";
 | 
				
			||||||
import Tagify from "@yaireo/tagify";
 | 
					import Tagify from "@yaireo/tagify";
 | 
				
			||||||
import ISO6391 from "iso-639-1";
 | 
					 | 
				
			||||||
import {z} from "zod";
 | 
					import {z} from "zod";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import supportedLocales from "../../../../../public/translations/supported-locales.json";
 | 
					import supportedLocales from "../../../../../public/translations/supported-locales.json";
 | 
				
			||||||
@@ -20,11 +19,11 @@ import {generateSelectHtml, generateSettingOption} from "./base-section.js";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
const currentBrowserWindow = remote.getCurrentWindow();
 | 
					const currentBrowserWindow = remote.getCurrentWindow();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type GeneralSectionProps = {
 | 
					type GeneralSectionProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function initGeneralSection({$root}: GeneralSectionProps): void {
 | 
					export function initGeneralSection({$root}: GeneralSectionProperties): void {
 | 
				
			||||||
  $root.innerHTML = html`
 | 
					  $root.innerHTML = html`
 | 
				
			||||||
    <div class="settings-pane">
 | 
					    <div class="settings-pane">
 | 
				
			||||||
      <div class="title">${t.__("Appearance")}</div>
 | 
					      <div class="title">${t.__("Appearance")}</div>
 | 
				
			||||||
@@ -619,26 +618,23 @@ export function initGeneralSection({$root}: GeneralSectionProps): void {
 | 
				
			|||||||
      ).availableSpellCheckerLanguages;
 | 
					      ).availableSpellCheckerLanguages;
 | 
				
			||||||
      let languagePairs = new Map<string, string>();
 | 
					      let languagePairs = new Map<string, string>();
 | 
				
			||||||
      for (const l of availableLanguages) {
 | 
					      for (const l of availableLanguages) {
 | 
				
			||||||
        if (ISO6391.validate(l)) {
 | 
					        const locale = new Intl.Locale(l.replaceAll("_", "-"));
 | 
				
			||||||
          languagePairs.set(ISO6391.getName(l), l);
 | 
					        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 = 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(
 | 
					      const tagField: HTMLInputElement = $root.querySelector(
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,19 +1,18 @@
 | 
				
			|||||||
import type {Html} from "../../../../common/html.js";
 | 
					import {type Html, html} from "../../../../common/html.js";
 | 
				
			||||||
import {html} from "../../../../common/html.js";
 | 
					 | 
				
			||||||
import * as t from "../../../../common/translation-util.js";
 | 
					import * as t from "../../../../common/translation-util.js";
 | 
				
			||||||
import type {NavItem} from "../../../../common/types.js";
 | 
					import type {NavigationItem} from "../../../../common/types.js";
 | 
				
			||||||
import {generateNodeFromHtml} from "../../components/base.js";
 | 
					import {generateNodeFromHtml} from "../../components/base.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type PreferenceNavProps = {
 | 
					type PreferenceNavigationProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
  onItemSelected: (navItem: NavItem) => void;
 | 
					  onItemSelected: (navigationItem: NavigationItem) => void;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class PreferenceNav {
 | 
					export default class PreferenceNavigation {
 | 
				
			||||||
  navItems: NavItem[];
 | 
					  navigationItems: NavigationItem[];
 | 
				
			||||||
  $el: Element;
 | 
					  $el: Element;
 | 
				
			||||||
  constructor(private readonly props: PreferenceNavProps) {
 | 
					  constructor(private readonly properties: PreferenceNavigationProperties) {
 | 
				
			||||||
    this.navItems = [
 | 
					    this.navigationItems = [
 | 
				
			||||||
      "General",
 | 
					      "General",
 | 
				
			||||||
      "Network",
 | 
					      "Network",
 | 
				
			||||||
      "AddServer",
 | 
					      "AddServer",
 | 
				
			||||||
@@ -22,15 +21,17 @@ export default class PreferenceNav {
 | 
				
			|||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.$el = generateNodeFromHtml(this.templateHtml());
 | 
					    this.$el = generateNodeFromHtml(this.templateHtml());
 | 
				
			||||||
    this.props.$root.append(this.$el);
 | 
					    this.properties.$root.append(this.$el);
 | 
				
			||||||
    this.registerListeners();
 | 
					    this.registerListeners();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  templateHtml(): Html {
 | 
					  templateHtml(): Html {
 | 
				
			||||||
    const navItemsHtml = html``.join(
 | 
					    const navigationItemsHtml = html``.join(
 | 
				
			||||||
      this.navItems.map(
 | 
					      this.navigationItems.map(
 | 
				
			||||||
        (navItem) => html`
 | 
					        (navigationItem) => html`
 | 
				
			||||||
          <div class="nav" id="nav-${navItem}">${t.__(navItem)}</div>
 | 
					          <div class="nav" id="nav-${navigationItem}">
 | 
				
			||||||
 | 
					            ${t.__(navigationItem)}
 | 
				
			||||||
 | 
					          </div>
 | 
				
			||||||
        `,
 | 
					        `,
 | 
				
			||||||
      ),
 | 
					      ),
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
@@ -38,37 +39,39 @@ export default class PreferenceNav {
 | 
				
			|||||||
    return html`
 | 
					    return html`
 | 
				
			||||||
      <div>
 | 
					      <div>
 | 
				
			||||||
        <div id="settings-header">${t.__("Settings")}</div>
 | 
					        <div id="settings-header">${t.__("Settings")}</div>
 | 
				
			||||||
        <div id="nav-container">${navItemsHtml}</div>
 | 
					        <div id="nav-container">${navigationItemsHtml}</div>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
    `;
 | 
					    `;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  registerListeners(): void {
 | 
					  registerListeners(): void {
 | 
				
			||||||
    for (const navItem of this.navItems) {
 | 
					    for (const navigationItem of this.navigationItems) {
 | 
				
			||||||
      const $item = this.$el.querySelector(`#nav-${CSS.escape(navItem)}`)!;
 | 
					      const $item = this.$el.querySelector(
 | 
				
			||||||
 | 
					        `#nav-${CSS.escape(navigationItem)}`,
 | 
				
			||||||
 | 
					      )!;
 | 
				
			||||||
      $item.addEventListener("click", () => {
 | 
					      $item.addEventListener("click", () => {
 | 
				
			||||||
        this.props.onItemSelected(navItem);
 | 
					        this.properties.onItemSelected(navigationItem);
 | 
				
			||||||
      });
 | 
					      });
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  select(navItemToSelect: NavItem): void {
 | 
					  select(navigationItemToSelect: NavigationItem): void {
 | 
				
			||||||
    for (const navItem of this.navItems) {
 | 
					    for (const navigationItem of this.navigationItems) {
 | 
				
			||||||
      if (navItem === navItemToSelect) {
 | 
					      if (navigationItem === navigationItemToSelect) {
 | 
				
			||||||
        this.activate(navItem);
 | 
					        this.activate(navigationItem);
 | 
				
			||||||
      } else {
 | 
					      } else {
 | 
				
			||||||
        this.deactivate(navItem);
 | 
					        this.deactivate(navigationItem);
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  activate(navItem: NavItem): void {
 | 
					  activate(navigationItem: NavigationItem): void {
 | 
				
			||||||
    const $item = this.$el.querySelector(`#nav-${CSS.escape(navItem)}`)!;
 | 
					    const $item = this.$el.querySelector(`#nav-${CSS.escape(navigationItem)}`)!;
 | 
				
			||||||
    $item.classList.add("active");
 | 
					    $item.classList.add("active");
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  deactivate(navItem: NavItem): void {
 | 
					  deactivate(navigationItem: NavigationItem): void {
 | 
				
			||||||
    const $item = this.$el.querySelector(`#nav-${CSS.escape(navItem)}`)!;
 | 
					    const $item = this.$el.querySelector(`#nav-${CSS.escape(navigationItem)}`)!;
 | 
				
			||||||
    $item.classList.remove("active");
 | 
					    $item.classList.remove("active");
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,11 +5,11 @@ import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import {generateSettingOption} from "./base-section.js";
 | 
					import {generateSettingOption} from "./base-section.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type NetworkSectionProps = {
 | 
					type NetworkSectionProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function initNetworkSection({$root}: NetworkSectionProps): void {
 | 
					export function initNetworkSection({$root}: NetworkSectionProperties): void {
 | 
				
			||||||
  $root.innerHTML = html`
 | 
					  $root.innerHTML = html`
 | 
				
			||||||
    <div class="settings-pane">
 | 
					    <div class="settings-pane">
 | 
				
			||||||
      <div class="title">${t.__("Proxy")}</div>
 | 
					      <div class="title">${t.__("Proxy")}</div>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,12 +7,15 @@ import {generateNodeFromHtml} from "../../components/base.js";
 | 
				
			|||||||
import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
					import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
				
			||||||
import * as DomainUtil from "../../utils/domain-util.js";
 | 
					import * as DomainUtil from "../../utils/domain-util.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type NewServerFormProps = {
 | 
					type NewServerFormProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
  onChange: () => void;
 | 
					  onChange: () => void;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function initNewServerForm({$root, onChange}: NewServerFormProps): void {
 | 
					export function initNewServerForm({
 | 
				
			||||||
 | 
					  $root,
 | 
				
			||||||
 | 
					  onChange,
 | 
				
			||||||
 | 
					}: NewServerFormProperties): void {
 | 
				
			||||||
  const $newServerForm = generateNodeFromHtml(html`
 | 
					  const $newServerForm = generateNodeFromHtml(html`
 | 
				
			||||||
    <div class="server-input-container">
 | 
					    <div class="server-input-container">
 | 
				
			||||||
      <div class="title">${t.__("Organization URL")}</div>
 | 
					      <div class="title">${t.__("Organization URL")}</div>
 | 
				
			||||||
@@ -58,9 +61,9 @@ export function initNewServerForm({$root, onChange}: NewServerFormProps): void {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  async function submitFormHandler(): Promise<void> {
 | 
					  async function submitFormHandler(): Promise<void> {
 | 
				
			||||||
    $saveServerButton.textContent = "Connecting...";
 | 
					    $saveServerButton.textContent = "Connecting...";
 | 
				
			||||||
    let serverConf;
 | 
					    let serverConfig;
 | 
				
			||||||
    try {
 | 
					    try {
 | 
				
			||||||
      serverConf = await DomainUtil.checkDomain($newServerUrl.value.trim());
 | 
					      serverConfig = await DomainUtil.checkDomain($newServerUrl.value.trim());
 | 
				
			||||||
    } catch (error: unknown) {
 | 
					    } catch (error: unknown) {
 | 
				
			||||||
      $saveServerButton.textContent = "Connect";
 | 
					      $saveServerButton.textContent = "Connect";
 | 
				
			||||||
      await dialog.showMessageBox({
 | 
					      await dialog.showMessageBox({
 | 
				
			||||||
@@ -74,7 +77,7 @@ export function initNewServerForm({$root, onChange}: NewServerFormProps): void {
 | 
				
			|||||||
      return;
 | 
					      return;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    await DomainUtil.addDomain(serverConf);
 | 
					    await DomainUtil.addDomain(serverConfig);
 | 
				
			||||||
    onChange();
 | 
					    onChange();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,7 @@ import process from "node:process";
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import type {DndSettings} from "../../../../common/dnd-util.js";
 | 
					import type {DndSettings} from "../../../../common/dnd-util.js";
 | 
				
			||||||
import {bundleUrl} from "../../../../common/paths.js";
 | 
					import {bundleUrl} from "../../../../common/paths.js";
 | 
				
			||||||
import type {NavItem} from "../../../../common/types.js";
 | 
					import type {NavigationItem} from "../../../../common/types.js";
 | 
				
			||||||
import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
					import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import {initConnectedOrgSection} from "./connected-org-section.js";
 | 
					import {initConnectedOrgSection} from "./connected-org-section.js";
 | 
				
			||||||
@@ -26,7 +26,7 @@ export class PreferenceView {
 | 
				
			|||||||
  private readonly $shadow: ShadowRoot;
 | 
					  private readonly $shadow: ShadowRoot;
 | 
				
			||||||
  private readonly $settingsContainer: Element;
 | 
					  private readonly $settingsContainer: Element;
 | 
				
			||||||
  private readonly nav: Nav;
 | 
					  private readonly nav: Nav;
 | 
				
			||||||
  private navItem: NavItem = "General";
 | 
					  private navigationItem: NavigationItem = "General";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  private constructor(templateHtml: string) {
 | 
					  private constructor(templateHtml: string) {
 | 
				
			||||||
    this.$view = document.createElement("div");
 | 
					    this.$view = document.createElement("div");
 | 
				
			||||||
@@ -47,13 +47,13 @@ export class PreferenceView {
 | 
				
			|||||||
    ipcRenderer.on("toggle-autohide-menubar", this.handleToggleMenubar);
 | 
					    ipcRenderer.on("toggle-autohide-menubar", this.handleToggleMenubar);
 | 
				
			||||||
    ipcRenderer.on("toggle-dnd", this.handleToggleDnd);
 | 
					    ipcRenderer.on("toggle-dnd", this.handleToggleDnd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    this.handleNavigation(this.navItem);
 | 
					    this.handleNavigation(this.navigationItem);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  handleNavigation = (navItem: NavItem): void => {
 | 
					  handleNavigation = (navigationItem: NavigationItem): void => {
 | 
				
			||||||
    this.navItem = navItem;
 | 
					    this.navigationItem = navigationItem;
 | 
				
			||||||
    this.nav.select(navItem);
 | 
					    this.nav.select(navigationItem);
 | 
				
			||||||
    switch (navItem) {
 | 
					    switch (navigationItem) {
 | 
				
			||||||
      case "AddServer": {
 | 
					      case "AddServer": {
 | 
				
			||||||
        initServersSection({
 | 
					        initServersSection({
 | 
				
			||||||
          $root: this.$settingsContainer,
 | 
					          $root: this.$settingsContainer,
 | 
				
			||||||
@@ -88,13 +88,9 @@ export class PreferenceView {
 | 
				
			|||||||
        });
 | 
					        });
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
 | 
					 | 
				
			||||||
      default: {
 | 
					 | 
				
			||||||
        ((n: never) => n)(navItem);
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    window.location.hash = `#${navItem}`;
 | 
					    window.location.hash = `#${navigationItem}`;
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  handleToggleTray(state: boolean) {
 | 
					  handleToggleTray(state: boolean) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,35 +3,35 @@ import {dialog} from "@electron/remote";
 | 
				
			|||||||
import {html} from "../../../../common/html.js";
 | 
					import {html} from "../../../../common/html.js";
 | 
				
			||||||
import * as Messages from "../../../../common/messages.js";
 | 
					import * as Messages from "../../../../common/messages.js";
 | 
				
			||||||
import * as t from "../../../../common/translation-util.js";
 | 
					import * as t from "../../../../common/translation-util.js";
 | 
				
			||||||
import type {ServerConf} from "../../../../common/types.js";
 | 
					import type {ServerConfig} from "../../../../common/types.js";
 | 
				
			||||||
import {generateNodeFromHtml} from "../../components/base.js";
 | 
					import {generateNodeFromHtml} from "../../components/base.js";
 | 
				
			||||||
import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
					import {ipcRenderer} from "../../typed-ipc-renderer.js";
 | 
				
			||||||
import * as DomainUtil from "../../utils/domain-util.js";
 | 
					import * as DomainUtil from "../../utils/domain-util.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ServerInfoFormProps = {
 | 
					type ServerInfoFormProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
  server: ServerConf;
 | 
					  server: ServerConfig;
 | 
				
			||||||
  index: number;
 | 
					  index: number;
 | 
				
			||||||
  onChange: () => void;
 | 
					  onChange: () => void;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function initServerInfoForm(props: ServerInfoFormProps): void {
 | 
					export function initServerInfoForm(properties: ServerInfoFormProperties): void {
 | 
				
			||||||
  const $serverInfoForm = generateNodeFromHtml(html`
 | 
					  const $serverInfoForm = generateNodeFromHtml(html`
 | 
				
			||||||
    <div class="settings-card">
 | 
					    <div class="settings-card">
 | 
				
			||||||
      <div class="server-info-left">
 | 
					      <div class="server-info-left">
 | 
				
			||||||
        <img
 | 
					        <img
 | 
				
			||||||
          class="server-info-icon"
 | 
					          class="server-info-icon"
 | 
				
			||||||
          src="${DomainUtil.iconAsUrl(props.server.icon)}"
 | 
					          src="${DomainUtil.iconAsUrl(properties.server.icon)}"
 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
        <div class="server-info-row">
 | 
					        <div class="server-info-row">
 | 
				
			||||||
          <span class="server-info-alias">${props.server.alias}</span>
 | 
					          <span class="server-info-alias">${properties.server.alias}</span>
 | 
				
			||||||
          <i class="material-icons open-tab-button">open_in_new</i>
 | 
					          <i class="material-icons open-tab-button">open_in_new</i>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
      <div class="server-info-right">
 | 
					      <div class="server-info-right">
 | 
				
			||||||
        <div class="server-info-row server-url">
 | 
					        <div class="server-info-row server-url">
 | 
				
			||||||
          <span class="server-url-info" title="${props.server.url}"
 | 
					          <span class="server-url-info" title="${properties.server.url}"
 | 
				
			||||||
            >${props.server.url}</span
 | 
					            >${properties.server.url}</span
 | 
				
			||||||
          >
 | 
					          >
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <div class="server-info-row">
 | 
					        <div class="server-info-row">
 | 
				
			||||||
@@ -48,7 +48,7 @@ export function initServerInfoForm(props: ServerInfoFormProps): void {
 | 
				
			|||||||
    ".server-delete-action",
 | 
					    ".server-delete-action",
 | 
				
			||||||
  )!;
 | 
					  )!;
 | 
				
			||||||
  const $openServerButton = $serverInfoForm.querySelector(".open-tab-button")!;
 | 
					  const $openServerButton = $serverInfoForm.querySelector(".open-tab-button")!;
 | 
				
			||||||
  props.$root.append($serverInfoForm);
 | 
					  properties.$root.append($serverInfoForm);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  $deleteServerButton.addEventListener("click", async () => {
 | 
					  $deleteServerButton.addEventListener("click", async () => {
 | 
				
			||||||
    const {response} = await dialog.showMessageBox({
 | 
					    const {response} = await dialog.showMessageBox({
 | 
				
			||||||
@@ -58,11 +58,11 @@ export function initServerInfoForm(props: ServerInfoFormProps): void {
 | 
				
			|||||||
      message: t.__("Are you sure you want to disconnect this organization?"),
 | 
					      message: t.__("Are you sure you want to disconnect this organization?"),
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
    if (response === 0) {
 | 
					    if (response === 0) {
 | 
				
			||||||
      if (DomainUtil.removeDomain(props.index)) {
 | 
					      if (DomainUtil.removeDomain(properties.index)) {
 | 
				
			||||||
        ipcRenderer.send("reload-full-app");
 | 
					        ipcRenderer.send("reload-full-app");
 | 
				
			||||||
      } else {
 | 
					      } else {
 | 
				
			||||||
        const {title, content} = Messages.orgRemovalError(
 | 
					        const {title, content} = Messages.orgRemovalError(
 | 
				
			||||||
          DomainUtil.getDomain(props.index).url,
 | 
					          DomainUtil.getDomain(properties.index).url,
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
        dialog.showErrorBox(title, content);
 | 
					        dialog.showErrorBox(title, content);
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
@@ -70,14 +70,14 @@ export function initServerInfoForm(props: ServerInfoFormProps): void {
 | 
				
			|||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  $openServerButton.addEventListener("click", () => {
 | 
					  $openServerButton.addEventListener("click", () => {
 | 
				
			||||||
    ipcRenderer.send("forward-message", "switch-server-tab", props.index);
 | 
					    ipcRenderer.send("forward-message", "switch-server-tab", properties.index);
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  $serverInfoAlias.addEventListener("click", () => {
 | 
					  $serverInfoAlias.addEventListener("click", () => {
 | 
				
			||||||
    ipcRenderer.send("forward-message", "switch-server-tab", props.index);
 | 
					    ipcRenderer.send("forward-message", "switch-server-tab", properties.index);
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  $serverIcon.addEventListener("click", () => {
 | 
					  $serverIcon.addEventListener("click", () => {
 | 
				
			||||||
    ipcRenderer.send("forward-message", "switch-server-tab", props.index);
 | 
					    ipcRenderer.send("forward-message", "switch-server-tab", properties.index);
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,11 +4,11 @@ import * as t from "../../../../common/translation-util.js";
 | 
				
			|||||||
import {reloadApp} from "./base-section.js";
 | 
					import {reloadApp} from "./base-section.js";
 | 
				
			||||||
import {initNewServerForm} from "./new-server-form.js";
 | 
					import {initNewServerForm} from "./new-server-form.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ServersSectionProps = {
 | 
					type ServersSectionProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function initServersSection({$root}: ServersSectionProps): void {
 | 
					export function initServersSection({$root}: ServersSectionProperties): void {
 | 
				
			||||||
  $root.innerHTML = html`
 | 
					  $root.innerHTML = html`
 | 
				
			||||||
    <div class="add-server-modal">
 | 
					    <div class="add-server-modal">
 | 
				
			||||||
      <div class="modal-container">
 | 
					      <div class="modal-container">
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,12 +4,14 @@ import {html} from "../../../../common/html.js";
 | 
				
			|||||||
import * as LinkUtil from "../../../../common/link-util.js";
 | 
					import * as LinkUtil from "../../../../common/link-util.js";
 | 
				
			||||||
import * as t from "../../../../common/translation-util.js";
 | 
					import * as t from "../../../../common/translation-util.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ShortcutsSectionProps = {
 | 
					type ShortcutsSectionProperties = {
 | 
				
			||||||
  $root: Element;
 | 
					  $root: Element;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// eslint-disable-next-line complexity
 | 
					// eslint-disable-next-line complexity
 | 
				
			||||||
export function initShortcutsSection({$root}: ShortcutsSectionProps): void {
 | 
					export function initShortcutsSection({
 | 
				
			||||||
 | 
					  $root,
 | 
				
			||||||
 | 
					}: ShortcutsSectionProperties): void {
 | 
				
			||||||
  const cmdOrCtrl = process.platform === "darwin" ? "⌘" : "Ctrl";
 | 
					  const cmdOrCtrl = process.platform === "darwin" ? "⌘" : "Ctrl";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  $root.innerHTML = html`
 | 
					  $root.innerHTML = html`
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,4 @@
 | 
				
			|||||||
import type {NativeImage} from "electron/common";
 | 
					import {type NativeImage, nativeImage} from "electron/common";
 | 
				
			||||||
import {nativeImage} from "electron/common";
 | 
					 | 
				
			||||||
import type {Tray as ElectronTray} from "electron/main";
 | 
					import type {Tray as ElectronTray} from "electron/main";
 | 
				
			||||||
import path from "node:path";
 | 
					import path from "node:path";
 | 
				
			||||||
import process from "node:process";
 | 
					import process from "node:process";
 | 
				
			||||||
@@ -64,8 +63,8 @@ const config = {
 | 
				
			|||||||
  thick: process.platform === "win32",
 | 
					  thick: process.platform === "win32",
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const renderCanvas = function (arg: number): HTMLCanvasElement {
 | 
					const renderCanvas = function (argument: number): HTMLCanvasElement {
 | 
				
			||||||
  config.unreadCount = arg;
 | 
					  config.unreadCount = argument;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const size = config.size * config.pixelRatio;
 | 
					  const size = config.size * config.pixelRatio;
 | 
				
			||||||
  const padding = size * 0.05;
 | 
					  const padding = size * 0.05;
 | 
				
			||||||
@@ -79,30 +78,34 @@ const renderCanvas = function (arg: number): HTMLCanvasElement {
 | 
				
			|||||||
  const canvas = document.createElement("canvas");
 | 
					  const canvas = document.createElement("canvas");
 | 
				
			||||||
  canvas.width = size;
 | 
					  canvas.width = size;
 | 
				
			||||||
  canvas.height = size;
 | 
					  canvas.height = size;
 | 
				
			||||||
  const ctx = canvas.getContext("2d")!;
 | 
					  const context = canvas.getContext("2d")!;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Circle
 | 
					  // Circle
 | 
				
			||||||
  // If (!config.thick || config.thick && hasCount) {
 | 
					  // If (!config.thick || config.thick && hasCount) {
 | 
				
			||||||
  ctx.beginPath();
 | 
					  context.beginPath();
 | 
				
			||||||
  ctx.arc(center, center, size / 2 - padding, 0, 2 * Math.PI, false);
 | 
					  context.arc(center, center, size / 2 - padding, 0, 2 * Math.PI, false);
 | 
				
			||||||
  ctx.fillStyle = backgroundColor;
 | 
					  context.fillStyle = backgroundColor;
 | 
				
			||||||
  ctx.fill();
 | 
					  context.fill();
 | 
				
			||||||
  ctx.lineWidth = size / (config.thick ? 10 : 20);
 | 
					  context.lineWidth = size / (config.thick ? 10 : 20);
 | 
				
			||||||
  ctx.strokeStyle = backgroundColor;
 | 
					  context.strokeStyle = backgroundColor;
 | 
				
			||||||
  ctx.stroke();
 | 
					  context.stroke();
 | 
				
			||||||
  // Count or Icon
 | 
					  // Count or Icon
 | 
				
			||||||
  if (hasCount) {
 | 
					  if (hasCount) {
 | 
				
			||||||
    ctx.fillStyle = color;
 | 
					    context.fillStyle = color;
 | 
				
			||||||
    ctx.textAlign = "center";
 | 
					    context.textAlign = "center";
 | 
				
			||||||
    if (config.unreadCount > 99) {
 | 
					    if (config.unreadCount > 99) {
 | 
				
			||||||
      ctx.font = `${config.thick ? "bold " : ""}${size * 0.4}px Helvetica`;
 | 
					      context.font = `${config.thick ? "bold " : ""}${size * 0.4}px Helvetica`;
 | 
				
			||||||
      ctx.fillText("99+", center, center + size * 0.15);
 | 
					      context.fillText("99+", center, center + size * 0.15);
 | 
				
			||||||
    } else if (config.unreadCount < 10) {
 | 
					    } else if (config.unreadCount < 10) {
 | 
				
			||||||
      ctx.font = `${config.thick ? "bold " : ""}${size * 0.5}px Helvetica`;
 | 
					      context.font = `${config.thick ? "bold " : ""}${size * 0.5}px Helvetica`;
 | 
				
			||||||
      ctx.fillText(String(config.unreadCount), center, center + size * 0.2);
 | 
					      context.fillText(String(config.unreadCount), center, center + size * 0.2);
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
      ctx.font = `${config.thick ? "bold " : ""}${size * 0.5}px Helvetica`;
 | 
					      context.font = `${config.thick ? "bold " : ""}${size * 0.5}px Helvetica`;
 | 
				
			||||||
      ctx.fillText(String(config.unreadCount), center, center + size * 0.15);
 | 
					      context.fillText(
 | 
				
			||||||
 | 
					        String(config.unreadCount),
 | 
				
			||||||
 | 
					        center,
 | 
				
			||||||
 | 
					        center + size * 0.15,
 | 
				
			||||||
 | 
					      );
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -114,12 +117,12 @@ const renderCanvas = function (arg: number): HTMLCanvasElement {
 | 
				
			|||||||
 * @param arg: Unread count
 | 
					 * @param arg: Unread count
 | 
				
			||||||
 * @return the native image
 | 
					 * @return the native image
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
const renderNativeImage = function (arg: number): NativeImage {
 | 
					const renderNativeImage = function (argument: number): NativeImage {
 | 
				
			||||||
  if (process.platform === "win32") {
 | 
					  if (process.platform === "win32") {
 | 
				
			||||||
    return nativeImage.createFromPath(winUnreadTrayIconPath());
 | 
					    return nativeImage.createFromPath(winUnreadTrayIconPath());
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const canvas = renderCanvas(arg);
 | 
					  const canvas = renderCanvas(argument);
 | 
				
			||||||
  const pngData = nativeImage
 | 
					  const pngData = nativeImage
 | 
				
			||||||
    .createFromDataURL(canvas.toDataURL("image/png"))
 | 
					    .createFromDataURL(canvas.toDataURL("image/png"))
 | 
				
			||||||
    .toPNG();
 | 
					    .toPNG();
 | 
				
			||||||
@@ -130,7 +133,7 @@ const renderNativeImage = function (arg: number): NativeImage {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
function sendAction<Channel extends keyof RendererMessage>(
 | 
					function sendAction<Channel extends keyof RendererMessage>(
 | 
				
			||||||
  channel: Channel,
 | 
					  channel: Channel,
 | 
				
			||||||
  ...args: Parameters<RendererMessage[Channel]>
 | 
					  ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
): void {
 | 
					): void {
 | 
				
			||||||
  const win = BrowserWindow.getAllWindows()[0];
 | 
					  const win = BrowserWindow.getAllWindows()[0];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -138,7 +141,7 @@ function sendAction<Channel extends keyof RendererMessage>(
 | 
				
			|||||||
    win.restore();
 | 
					    win.restore();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  ipcRenderer.send("forward-to", win.webContents.id, channel, ...args);
 | 
					  ipcRenderer.send("forward-to", win.webContents.id, channel, ...arguments_);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const createTray = function (): void {
 | 
					const createTray = function (): void {
 | 
				
			||||||
@@ -189,22 +192,22 @@ export function initializeTray(serverManagerView: ServerManagerView) {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  ipcRenderer.on("tray", (_event, arg: number): void => {
 | 
					  ipcRenderer.on("tray", (_event, argument: number): void => {
 | 
				
			||||||
    if (!tray) {
 | 
					    if (!tray) {
 | 
				
			||||||
      return;
 | 
					      return;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // We don't want to create tray from unread messages on macOS since it already has dock badges.
 | 
					    // We don't want to create tray from unread messages on macOS since it already has dock badges.
 | 
				
			||||||
    if (process.platform === "linux" || process.platform === "win32") {
 | 
					    if (process.platform === "linux" || process.platform === "win32") {
 | 
				
			||||||
      if (arg === 0) {
 | 
					      if (argument === 0) {
 | 
				
			||||||
        unread = arg;
 | 
					        unread = argument;
 | 
				
			||||||
        tray.setImage(iconPath());
 | 
					        tray.setImage(iconPath());
 | 
				
			||||||
        tray.setToolTip("No unread messages");
 | 
					        tray.setToolTip("No unread messages");
 | 
				
			||||||
      } else {
 | 
					      } else {
 | 
				
			||||||
        unread = arg;
 | 
					        unread = argument;
 | 
				
			||||||
        const image = renderNativeImage(arg);
 | 
					        const image = renderNativeImage(argument);
 | 
				
			||||||
        tray.setImage(image);
 | 
					        tray.setImage(image);
 | 
				
			||||||
        tray.setToolTip(`${arg} unread messages`);
 | 
					        tray.setToolTip(`${argument} unread messages`);
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
import type {IpcRendererEvent} from "electron/renderer";
 | 
					 | 
				
			||||||
import {
 | 
					import {
 | 
				
			||||||
 | 
					  type IpcRendererEvent,
 | 
				
			||||||
  ipcRenderer as untypedIpcRenderer, // eslint-disable-line no-restricted-imports
 | 
					  ipcRenderer as untypedIpcRenderer, // eslint-disable-line no-restricted-imports
 | 
				
			||||||
} from "electron/renderer";
 | 
					} from "electron/renderer";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -10,8 +10,8 @@ import type {
 | 
				
			|||||||
} from "../../common/typed-ipc.js";
 | 
					} from "../../common/typed-ipc.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type RendererListener<Channel extends keyof RendererMessage> =
 | 
					type RendererListener<Channel extends keyof RendererMessage> =
 | 
				
			||||||
  RendererMessage[Channel] extends (...args: infer Args) => void
 | 
					  RendererMessage[Channel] extends (...arguments_: infer Arguments) => void
 | 
				
			||||||
    ? (event: IpcRendererEvent, ...args: Args) => void
 | 
					    ? (event: IpcRendererEvent, ...arguments_: Arguments) => void
 | 
				
			||||||
    : never;
 | 
					    : never;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const ipcRenderer: {
 | 
					export const ipcRenderer: {
 | 
				
			||||||
@@ -35,25 +35,25 @@ export const ipcRenderer: {
 | 
				
			|||||||
  send<Channel extends keyof RendererMessage>(
 | 
					  send<Channel extends keyof RendererMessage>(
 | 
				
			||||||
    channel: "forward-message",
 | 
					    channel: "forward-message",
 | 
				
			||||||
    rendererChannel: Channel,
 | 
					    rendererChannel: Channel,
 | 
				
			||||||
    ...args: Parameters<RendererMessage[Channel]>
 | 
					    ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
  ): void;
 | 
					  ): void;
 | 
				
			||||||
  send<Channel extends keyof RendererMessage>(
 | 
					  send<Channel extends keyof RendererMessage>(
 | 
				
			||||||
    channel: "forward-to",
 | 
					    channel: "forward-to",
 | 
				
			||||||
    webContentsId: number,
 | 
					    webContentsId: number,
 | 
				
			||||||
    rendererChannel: Channel,
 | 
					    rendererChannel: Channel,
 | 
				
			||||||
    ...args: Parameters<RendererMessage[Channel]>
 | 
					    ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
  ): void;
 | 
					  ): void;
 | 
				
			||||||
  send<Channel extends keyof MainMessage>(
 | 
					  send<Channel extends keyof MainMessage>(
 | 
				
			||||||
    channel: Channel,
 | 
					    channel: Channel,
 | 
				
			||||||
    ...args: Parameters<MainMessage[Channel]>
 | 
					    ...arguments_: Parameters<MainMessage[Channel]>
 | 
				
			||||||
  ): void;
 | 
					  ): void;
 | 
				
			||||||
  invoke<Channel extends keyof MainCall>(
 | 
					  invoke<Channel extends keyof MainCall>(
 | 
				
			||||||
    channel: Channel,
 | 
					    channel: Channel,
 | 
				
			||||||
    ...args: Parameters<MainCall[Channel]>
 | 
					    ...arguments_: Parameters<MainCall[Channel]>
 | 
				
			||||||
  ): Promise<ReturnType<MainCall[Channel]>>;
 | 
					  ): Promise<ReturnType<MainCall[Channel]>>;
 | 
				
			||||||
  sendSync<Channel extends keyof MainMessage>(
 | 
					  sendSync<Channel extends keyof MainMessage>(
 | 
				
			||||||
    channel: Channel,
 | 
					    channel: Channel,
 | 
				
			||||||
    ...args: Parameters<MainMessage[Channel]>
 | 
					    ...arguments_: Parameters<MainMessage[Channel]>
 | 
				
			||||||
  ): ReturnType<MainMessage[Channel]>;
 | 
					  ): ReturnType<MainMessage[Channel]>;
 | 
				
			||||||
  postMessage<Channel extends keyof MainMessage>(
 | 
					  postMessage<Channel extends keyof MainMessage>(
 | 
				
			||||||
    channel: Channel,
 | 
					    channel: Channel,
 | 
				
			||||||
@@ -64,6 +64,6 @@ export const ipcRenderer: {
 | 
				
			|||||||
  ): void;
 | 
					  ): void;
 | 
				
			||||||
  sendToHost<Channel extends keyof RendererMessage>(
 | 
					  sendToHost<Channel extends keyof RendererMessage>(
 | 
				
			||||||
    channel: Channel,
 | 
					    channel: Channel,
 | 
				
			||||||
    ...args: Parameters<RendererMessage[Channel]>
 | 
					    ...arguments_: Parameters<RendererMessage[Channel]>
 | 
				
			||||||
  ): void;
 | 
					  ): void;
 | 
				
			||||||
} = untypedIpcRenderer;
 | 
					} = untypedIpcRenderer;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,7 +11,7 @@ import * as EnterpriseUtil from "../../../common/enterprise-util.js";
 | 
				
			|||||||
import Logger from "../../../common/logger-util.js";
 | 
					import Logger from "../../../common/logger-util.js";
 | 
				
			||||||
import * as Messages from "../../../common/messages.js";
 | 
					import * as Messages from "../../../common/messages.js";
 | 
				
			||||||
import * as t from "../../../common/translation-util.js";
 | 
					import * as t from "../../../common/translation-util.js";
 | 
				
			||||||
import type {ServerConf} from "../../../common/types.js";
 | 
					import type {ServerConfig} from "../../../common/types.js";
 | 
				
			||||||
import defaultIcon from "../../img/icon.png";
 | 
					import defaultIcon from "../../img/icon.png";
 | 
				
			||||||
import {ipcRenderer} from "../typed-ipc-renderer.js";
 | 
					import {ipcRenderer} from "../typed-ipc-renderer.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -23,7 +23,7 @@ const logger = new Logger({
 | 
				
			|||||||
// missing icon; it does not change with the actual icon location.
 | 
					// missing icon; it does not change with the actual icon location.
 | 
				
			||||||
export const defaultIconSentinel = "../renderer/img/icon.png";
 | 
					export const defaultIconSentinel = "../renderer/img/icon.png";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const serverConfSchema = z.object({
 | 
					const serverConfigSchema = z.object({
 | 
				
			||||||
  url: z.string().url(),
 | 
					  url: z.string().url(),
 | 
				
			||||||
  alias: z.string(),
 | 
					  alias: z.string(),
 | 
				
			||||||
  icon: z.string(),
 | 
					  icon: z.string(),
 | 
				
			||||||
@@ -31,45 +31,49 @@ const serverConfSchema = z.object({
 | 
				
			|||||||
  zulipFeatureLevel: z.number().default(0),
 | 
					  zulipFeatureLevel: z.number().default(0),
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let db!: JsonDB;
 | 
					let database!: JsonDB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
reloadDb();
 | 
					reloadDatabase();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Migrate from old schema
 | 
					// Migrate from old schema
 | 
				
			||||||
try {
 | 
					try {
 | 
				
			||||||
  const oldDomain = db.getObject<unknown>("/domain");
 | 
					  const oldDomain = database.getObject<unknown>("/domain");
 | 
				
			||||||
  if (typeof oldDomain === "string") {
 | 
					  if (typeof oldDomain === "string") {
 | 
				
			||||||
    (async () => {
 | 
					    (async () => {
 | 
				
			||||||
      await addDomain({
 | 
					      await addDomain({
 | 
				
			||||||
        alias: "Zulip",
 | 
					        alias: "Zulip",
 | 
				
			||||||
        url: oldDomain,
 | 
					        url: oldDomain,
 | 
				
			||||||
      });
 | 
					      });
 | 
				
			||||||
      db.delete("/domain");
 | 
					      database.delete("/domain");
 | 
				
			||||||
    })();
 | 
					    })();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
} catch (error: unknown) {
 | 
					} catch (error: unknown) {
 | 
				
			||||||
  if (!(error instanceof DataError)) throw error;
 | 
					  if (!(error instanceof DataError)) throw error;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function getDomains(): ServerConf[] {
 | 
					export function getDomains(): ServerConfig[] {
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
  try {
 | 
					  try {
 | 
				
			||||||
    return serverConfSchema.array().parse(db.getObject<unknown>("/domains"));
 | 
					    return serverConfigSchema
 | 
				
			||||||
 | 
					      .array()
 | 
				
			||||||
 | 
					      .parse(database.getObject<unknown>("/domains"));
 | 
				
			||||||
  } catch (error: unknown) {
 | 
					  } catch (error: unknown) {
 | 
				
			||||||
    if (!(error instanceof DataError)) throw error;
 | 
					    if (!(error instanceof DataError)) throw error;
 | 
				
			||||||
    return [];
 | 
					    return [];
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function getDomain(index: number): ServerConf {
 | 
					export function getDomain(index: number): ServerConfig {
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
  return serverConfSchema.parse(db.getObject<unknown>(`/domains[${index}]`));
 | 
					  return serverConfigSchema.parse(
 | 
				
			||||||
 | 
					    database.getObject<unknown>(`/domains[${index}]`),
 | 
				
			||||||
 | 
					  );
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function updateDomain(index: number, server: ServerConf): void {
 | 
					export function updateDomain(index: number, server: ServerConfig): void {
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
  serverConfSchema.parse(server);
 | 
					  serverConfigSchema.parse(server);
 | 
				
			||||||
  db.push(`/domains[${index}]`, server, true);
 | 
					  database.push(`/domains[${index}]`, server, true);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export async function addDomain(server: {
 | 
					export async function addDomain(server: {
 | 
				
			||||||
@@ -80,20 +84,20 @@ export async function addDomain(server: {
 | 
				
			|||||||
  if (server.icon) {
 | 
					  if (server.icon) {
 | 
				
			||||||
    const localIconUrl = await saveServerIcon(server.icon);
 | 
					    const localIconUrl = await saveServerIcon(server.icon);
 | 
				
			||||||
    server.icon = localIconUrl;
 | 
					    server.icon = localIconUrl;
 | 
				
			||||||
    serverConfSchema.parse(server);
 | 
					    serverConfigSchema.parse(server);
 | 
				
			||||||
    db.push("/domains[]", server, true);
 | 
					    database.push("/domains[]", server, true);
 | 
				
			||||||
    reloadDb();
 | 
					    reloadDatabase();
 | 
				
			||||||
  } else {
 | 
					  } else {
 | 
				
			||||||
    server.icon = defaultIconSentinel;
 | 
					    server.icon = defaultIconSentinel;
 | 
				
			||||||
    serverConfSchema.parse(server);
 | 
					    serverConfigSchema.parse(server);
 | 
				
			||||||
    db.push("/domains[]", server, true);
 | 
					    database.push("/domains[]", server, true);
 | 
				
			||||||
    reloadDb();
 | 
					    reloadDatabase();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function removeDomains(): void {
 | 
					export function removeDomains(): void {
 | 
				
			||||||
  db.delete("/domains");
 | 
					  database.delete("/domains");
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function removeDomain(index: number): boolean {
 | 
					export function removeDomain(index: number): boolean {
 | 
				
			||||||
@@ -101,8 +105,8 @@ export function removeDomain(index: number): boolean {
 | 
				
			|||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  db.delete(`/domains[${index}]`);
 | 
					  database.delete(`/domains[${index}]`);
 | 
				
			||||||
  reloadDb();
 | 
					  reloadDatabase();
 | 
				
			||||||
  return true;
 | 
					  return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -115,7 +119,7 @@ export function duplicateDomain(domain: string): boolean {
 | 
				
			|||||||
export async function checkDomain(
 | 
					export async function checkDomain(
 | 
				
			||||||
  domain: string,
 | 
					  domain: string,
 | 
				
			||||||
  silent = false,
 | 
					  silent = false,
 | 
				
			||||||
): Promise<ServerConf> {
 | 
					): Promise<ServerConfig> {
 | 
				
			||||||
  if (!silent && duplicateDomain(domain)) {
 | 
					  if (!silent && duplicateDomain(domain)) {
 | 
				
			||||||
    // Do not check duplicate in silent mode
 | 
					    // Do not check duplicate in silent mode
 | 
				
			||||||
    throw new Error("This server has been added.");
 | 
					    throw new Error("This server has been added.");
 | 
				
			||||||
@@ -130,7 +134,7 @@ export async function checkDomain(
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
async function getServerSettings(domain: string): Promise<ServerConf> {
 | 
					async function getServerSettings(domain: string): Promise<ServerConfig> {
 | 
				
			||||||
  return ipcRenderer.invoke("get-server-settings", domain);
 | 
					  return ipcRenderer.invoke("get-server-settings", domain);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -144,29 +148,29 @@ export async function saveServerIcon(iconURL: string): Promise<string> {
 | 
				
			|||||||
export async function updateSavedServer(
 | 
					export async function updateSavedServer(
 | 
				
			||||||
  url: string,
 | 
					  url: string,
 | 
				
			||||||
  index: number,
 | 
					  index: number,
 | 
				
			||||||
): Promise<ServerConf> {
 | 
					): Promise<ServerConfig> {
 | 
				
			||||||
  // Does not promise successful update
 | 
					  // Does not promise successful update
 | 
				
			||||||
  const serverConf = getDomain(index);
 | 
					  const serverConfig = getDomain(index);
 | 
				
			||||||
  const oldIcon = serverConf.icon;
 | 
					  const oldIcon = serverConfig.icon;
 | 
				
			||||||
  try {
 | 
					  try {
 | 
				
			||||||
    const newServerConf = await checkDomain(url, true);
 | 
					    const newServerConfig = await checkDomain(url, true);
 | 
				
			||||||
    const localIconUrl = await saveServerIcon(newServerConf.icon);
 | 
					    const localIconUrl = await saveServerIcon(newServerConfig.icon);
 | 
				
			||||||
    if (!oldIcon || localIconUrl !== defaultIconSentinel) {
 | 
					    if (!oldIcon || localIconUrl !== defaultIconSentinel) {
 | 
				
			||||||
      newServerConf.icon = localIconUrl;
 | 
					      newServerConfig.icon = localIconUrl;
 | 
				
			||||||
      updateDomain(index, newServerConf);
 | 
					      updateDomain(index, newServerConfig);
 | 
				
			||||||
      reloadDb();
 | 
					      reloadDatabase();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return newServerConf;
 | 
					    return newServerConfig;
 | 
				
			||||||
  } catch (error: unknown) {
 | 
					  } catch (error: unknown) {
 | 
				
			||||||
    logger.log("Could not update server icon.");
 | 
					    logger.log("Could not update server icon.");
 | 
				
			||||||
    logger.log(error);
 | 
					    logger.log(error);
 | 
				
			||||||
    Sentry.captureException(error);
 | 
					    Sentry.captureException(error);
 | 
				
			||||||
    return serverConf;
 | 
					    return serverConfig;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function reloadDb(): void {
 | 
					function reloadDatabase(): void {
 | 
				
			||||||
  const domainJsonPath = path.join(
 | 
					  const domainJsonPath = path.join(
 | 
				
			||||||
    app.getPath("userData"),
 | 
					    app.getPath("userData"),
 | 
				
			||||||
    "config/domain.json",
 | 
					    "config/domain.json",
 | 
				
			||||||
@@ -188,7 +192,7 @@ function reloadDb(): void {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  db = new JsonDB(domainJsonPath, true, true);
 | 
					  database = new JsonDB(domainJsonPath, true, true);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function formatUrl(domain: string): string {
 | 
					export function formatUrl(domain: string): string {
 | 
				
			||||||
@@ -203,7 +207,9 @@ export function formatUrl(domain: string): string {
 | 
				
			|||||||
  return `https://${domain}`;
 | 
					  return `https://${domain}`;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function getUnsupportedMessage(server: ServerConf): string | undefined {
 | 
					export function getUnsupportedMessage(
 | 
				
			||||||
 | 
					  server: ServerConfig,
 | 
				
			||||||
 | 
					): string | undefined {
 | 
				
			||||||
  if (server.zulipFeatureLevel < 65 /* Zulip Server 4.0 */) {
 | 
					  if (server.zulipFeatureLevel < 65 /* Zulip Server 4.0 */) {
 | 
				
			||||||
    const realm = new URL(server.url).hostname;
 | 
					    const realm = new URL(server.url).hostname;
 | 
				
			||||||
    return t.__(
 | 
					    return t.__(
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,7 +15,7 @@ export default class ReconnectUtil {
 | 
				
			|||||||
  fibonacciBackoff: backoff.Backoff;
 | 
					  fibonacciBackoff: backoff.Backoff;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  constructor(webview: WebView) {
 | 
					  constructor(webview: WebView) {
 | 
				
			||||||
    this.url = webview.props.url;
 | 
					    this.url = webview.properties.url;
 | 
				
			||||||
    this.alreadyReloaded = false;
 | 
					    this.alreadyReloaded = false;
 | 
				
			||||||
    this.fibonacciBackoff = backoff.fibonacci({
 | 
					    this.fibonacciBackoff = backoff.fibonacci({
 | 
				
			||||||
      initialDelay: 5000,
 | 
					      initialDelay: 5000,
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										25
									
								
								changelog.md
									
									
									
									
									
								
							
							
						
						
									
										25
									
								
								changelog.md
									
									
									
									
									
								
							@@ -2,6 +2,31 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
All notable changes to the Zulip desktop app are documented in this file.
 | 
					All notable changes to the Zulip desktop app are documented in this file.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### 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**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Removed the popup dialog for certificate errors when loading subresources such as images.
 | 
				
			||||||
 | 
					- Allowed hiding the window from full screen mode on macOS.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					**Enhancements**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Enabled zooming with Ctrl+mouse wheel on Linux and Windows.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					**Dependencies**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Upgraded all dependencies, including Electron 29.1.5.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### v5.10.5 --2024-01-25
 | 
					### v5.10.5 --2024-01-25
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**Dependencies**:
 | 
					**Dependencies**:
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										5541
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										5541
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										27
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								package.json
									
									
									
									
									
								
							@@ -1,7 +1,7 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "name": "zulip",
 | 
					  "name": "zulip",
 | 
				
			||||||
  "productName": "Zulip",
 | 
					  "productName": "Zulip",
 | 
				
			||||||
  "version": "5.10.5",
 | 
					  "version": "5.11.1",
 | 
				
			||||||
  "main": "./dist-electron",
 | 
					  "main": "./dist-electron",
 | 
				
			||||||
  "description": "Zulip Desktop App",
 | 
					  "description": "Zulip Desktop App",
 | 
				
			||||||
  "license": "Apache-2.0",
 | 
					  "license": "Apache-2.0",
 | 
				
			||||||
@@ -18,7 +18,7 @@
 | 
				
			|||||||
    "url": "https://github.com/zulip/zulip-desktop/issues"
 | 
					    "url": "https://github.com/zulip/zulip-desktop/issues"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "engines": {
 | 
					  "engines": {
 | 
				
			||||||
    "node": ">=16.13.2"
 | 
					    "node": ">=18"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "scripts": {
 | 
					  "scripts": {
 | 
				
			||||||
    "start": "vite",
 | 
					    "start": "vite",
 | 
				
			||||||
@@ -120,7 +120,11 @@
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
      ],
 | 
					      ],
 | 
				
			||||||
      "icon": "build/icon.ico",
 | 
					      "icon": "build/icon.ico",
 | 
				
			||||||
      "publisherName": "Kandra Labs, Inc."
 | 
					      "publisherName": "Kandra Labs, Inc.",
 | 
				
			||||||
 | 
					      "sign": "./scripts/win-sign.js",
 | 
				
			||||||
 | 
					      "signingHashAlgorithms": [
 | 
				
			||||||
 | 
					        "sha256"
 | 
				
			||||||
 | 
					      ]
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "msi": {
 | 
					    "msi": {
 | 
				
			||||||
      "artifactName": "${productName}-${version}-${arch}.${ext}"
 | 
					      "artifactName": "${productName}-${version}-${arch}.${ext}"
 | 
				
			||||||
@@ -147,34 +151,33 @@
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  "devDependencies": {
 | 
					  "devDependencies": {
 | 
				
			||||||
    "@electron/remote": "^2.0.8",
 | 
					    "@electron/remote": "^2.0.8",
 | 
				
			||||||
    "@sentry/core": "^7.94.1",
 | 
					    "@sentry/core": "^8.26.0",
 | 
				
			||||||
    "@sentry/electron": "^4.1.2",
 | 
					    "@sentry/electron": "^5.3.0",
 | 
				
			||||||
    "@types/adm-zip": "^0.5.0",
 | 
					    "@types/adm-zip": "^0.5.0",
 | 
				
			||||||
    "@types/auto-launch": "^5.0.2",
 | 
					    "@types/auto-launch": "^5.0.2",
 | 
				
			||||||
    "@types/backoff": "^2.5.2",
 | 
					    "@types/backoff": "^2.5.2",
 | 
				
			||||||
    "@types/i18n": "^0.13.1",
 | 
					    "@types/i18n": "^0.13.1",
 | 
				
			||||||
    "@types/node": "~18.17.19",
 | 
					    "@types/node": "^20.11.30",
 | 
				
			||||||
    "@types/requestidlecallback": "^0.3.4",
 | 
					    "@types/requestidlecallback": "^0.3.4",
 | 
				
			||||||
 | 
					    "@types/semver": "^7.5.8",
 | 
				
			||||||
    "@types/yaireo__tagify": "^4.3.2",
 | 
					    "@types/yaireo__tagify": "^4.3.2",
 | 
				
			||||||
    "@yaireo/tagify": "^4.5.0",
 | 
					    "@yaireo/tagify": "^4.5.0",
 | 
				
			||||||
    "adm-zip": "^0.5.5",
 | 
					    "adm-zip": "^0.5.5",
 | 
				
			||||||
    "auto-launch": "^5.0.5",
 | 
					    "auto-launch": "^5.0.5",
 | 
				
			||||||
    "backoff": "^2.5.0",
 | 
					    "backoff": "^2.5.0",
 | 
				
			||||||
    "electron": "^28.1.1",
 | 
					    "electron": "^32.0.1",
 | 
				
			||||||
    "electron-builder": "^24.6.4",
 | 
					    "electron-builder": "^24.6.4",
 | 
				
			||||||
    "electron-log": "^5.0.3",
 | 
					    "electron-log": "^5.0.3",
 | 
				
			||||||
    "electron-updater": "^6.1.4",
 | 
					    "electron-updater": "^6.3.4",
 | 
				
			||||||
    "electron-window-state": "^5.0.3",
 | 
					    "electron-window-state": "^5.0.3",
 | 
				
			||||||
    "escape-goat": "^4.0.0",
 | 
					    "escape-goat": "^4.0.0",
 | 
				
			||||||
    "htmlhint": "^1.1.2",
 | 
					    "htmlhint": "^1.1.2",
 | 
				
			||||||
    "i18n": "^0.15.1",
 | 
					    "i18n": "^0.15.1",
 | 
				
			||||||
    "iso-639-1": "^3.1.0",
 | 
					 | 
				
			||||||
    "medium": "^1.2.0",
 | 
					    "medium": "^1.2.0",
 | 
				
			||||||
    "node-json-db": "^1.3.0",
 | 
					    "node-json-db": "^1.3.0",
 | 
				
			||||||
    "playwright-core": "^1.41.0-alpha-jan-9-2024",
 | 
					    "playwright-core": "^1.41.0-alpha-jan-9-2024",
 | 
				
			||||||
    "pre-commit": "^1.2.2",
 | 
					    "pre-commit": "^1.2.2",
 | 
				
			||||||
    "prettier": "^3.0.3",
 | 
					    "prettier": "^3.0.3",
 | 
				
			||||||
    "rimraf": "^5.0.0",
 | 
					 | 
				
			||||||
    "semver": "^7.3.5",
 | 
					    "semver": "^7.3.5",
 | 
				
			||||||
    "stylelint": "^16.1.0",
 | 
					    "stylelint": "^16.1.0",
 | 
				
			||||||
    "stylelint-config-standard": "^36.0.0",
 | 
					    "stylelint-config-standard": "^36.0.0",
 | 
				
			||||||
@@ -182,7 +185,7 @@
 | 
				
			|||||||
    "typescript": "^5.0.4",
 | 
					    "typescript": "^5.0.4",
 | 
				
			||||||
    "vite": "^5.0.11",
 | 
					    "vite": "^5.0.11",
 | 
				
			||||||
    "vite-plugin-electron": "^0.28.0",
 | 
					    "vite-plugin-electron": "^0.28.0",
 | 
				
			||||||
    "xo": "^0.56.0",
 | 
					    "xo": "^0.59.3",
 | 
				
			||||||
    "zod": "^3.5.1"
 | 
					    "zod": "^3.5.1"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "prettier": {
 | 
					  "prettier": {
 | 
				
			||||||
@@ -309,7 +312,7 @@
 | 
				
			|||||||
      },
 | 
					      },
 | 
				
			||||||
      {
 | 
					      {
 | 
				
			||||||
        "files": [
 | 
					        "files": [
 | 
				
			||||||
          "scripts/notarize.js",
 | 
					          "scripts/win-sign.js",
 | 
				
			||||||
          "tests/**/*.js"
 | 
					          "tests/**/*.js"
 | 
				
			||||||
        ],
 | 
					        ],
 | 
				
			||||||
        "parserOptions": {
 | 
					        "parserOptions": {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "إضافة CSS معدلة",
 | 
						"Add custom CSS": "إضافة CSS معدلة",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "متقدم",
 | 
						"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": "دائماً إبدأ بالقليل",
 | 
						"Always start minimized": "دائماً إبدأ بالقليل",
 | 
				
			||||||
	"App Updates": "تحديثات التطبيق",
 | 
						"App Updates": "تحديثات التطبيق",
 | 
				
			||||||
	"App language (requires restart)": "App language (requires restart)",
 | 
						"App language (requires restart)": "App language (requires restart)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "تنزيل سجلات التطبيق",
 | 
						"Download App Logs": "تنزيل سجلات التطبيق",
 | 
				
			||||||
	"Edit": "تعديل",
 | 
						"Edit": "تعديل",
 | 
				
			||||||
	"Edit Shortcuts": "تعديل الاختصارات",
 | 
						"Edit Shortcuts": "تعديل الاختصارات",
 | 
				
			||||||
	"Emoji & Symbols": "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)",
 | 
						"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)",
 | 
				
			||||||
	"Enter Full Screen": "Enter Full Screen",
 | 
						"Enter Full Screen": "اعرض الشاشة كاملة",
 | 
				
			||||||
	"Factory Reset": "إعادة ضبط المصنع",
 | 
						"Factory Reset": "إعادة ضبط المصنع",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "Factory Reset Data",
 | 
				
			||||||
	"File": "ملف",
 | 
						"File": "ملف",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Help Center",
 | 
						"Help Center": "Help Center",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Hide",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Hide Others",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "أخفي زوليب",
 | 
				
			||||||
	"History": "History",
 | 
						"History": "History",
 | 
				
			||||||
	"History Shortcuts": "History Shortcuts",
 | 
						"History Shortcuts": "History Shortcuts",
 | 
				
			||||||
	"Keyboard Shortcuts": "Keyboard Shortcuts",
 | 
						"Keyboard Shortcuts": "Keyboard Shortcuts",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Mute all sounds from Zulip",
 | 
						"Mute all sounds from Zulip": "Mute all sounds from Zulip",
 | 
				
			||||||
	"NO": "NO",
 | 
						"NO": "NO",
 | 
				
			||||||
	"Network": "Network",
 | 
						"Network": "Network",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "الشبكة و إعدادات البروكسي",
 | 
				
			||||||
	"OR": "OR",
 | 
						"OR": "OR",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "Organization URL",
 | 
						"Organization URL": "Organization URL",
 | 
				
			||||||
@@ -85,8 +85,8 @@
 | 
				
			|||||||
	"Release Notes": "Release Notes",
 | 
						"Release Notes": "Release Notes",
 | 
				
			||||||
	"Reload": "Reload",
 | 
						"Reload": "Reload",
 | 
				
			||||||
	"Report an Issue": "Report an Issue",
 | 
						"Report an Issue": "Report an Issue",
 | 
				
			||||||
	"Reset App Settings": "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 the application, thus deleting all the connected organizations and accounts.": "إعادة ضبط التطبيق, و بالتالي مسح جميع المنظمات المتصلة و الحسابات",
 | 
				
			||||||
	"Save": "Save",
 | 
						"Save": "Save",
 | 
				
			||||||
	"Select All": "Select All",
 | 
						"Select All": "Select All",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "Services",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Zoom Out",
 | 
						"Zoom Out": "Zoom Out",
 | 
				
			||||||
	"keyboard shortcuts": "keyboard shortcuts",
 | 
						"keyboard shortcuts": "keyboard shortcuts",
 | 
				
			||||||
	"script": "script",
 | 
						"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}}}. قد لا يعمل بشكل كامل مع هذا التطبيق "
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,8 +4,8 @@
 | 
				
			|||||||
	"Add Organization": "Add Organization",
 | 
						"Add Organization": "Add Organization",
 | 
				
			||||||
	"Add a Zulip organization": "Add a Zulip organization",
 | 
						"Add a Zulip organization": "Add a Zulip organization",
 | 
				
			||||||
	"Add custom CSS": "Add custom CSS",
 | 
						"Add custom CSS": "Add custom CSS",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AfegirServidor",
 | 
				
			||||||
	"Advanced": "Advanced",
 | 
						"Advanced": "Avançat",
 | 
				
			||||||
	"All the connected organizations will appear here.": "All the connected organizations will appear here.",
 | 
						"All the connected organizations will appear here.": "All the connected organizations will appear here.",
 | 
				
			||||||
	"Always start minimized": "Always start minimized",
 | 
						"Always start minimized": "Always start minimized",
 | 
				
			||||||
	"App Updates": "App Updates",
 | 
						"App Updates": "App Updates",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "Ychwanegwch CSS wedi'i ddylunio'n benodol",
 | 
						"Add custom CSS": "Ychwanegwch CSS wedi'i ddylunio'n benodol",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "Uwch",
 | 
						"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",
 | 
						"Always start minimized": "Dechreuwch gyn lleied â phosibl bob amser",
 | 
				
			||||||
	"App Updates": "Diweddariadau Ap",
 | 
						"App Updates": "Diweddariadau Ap",
 | 
				
			||||||
	"App language (requires restart)": "Iaith ap (angen ailgychwyn)",
 | 
						"App language (requires restart)": "Iaith ap (angen ailgychwyn)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "Lawrlwythwch Logiau Ap",
 | 
						"Download App Logs": "Lawrlwythwch Logiau Ap",
 | 
				
			||||||
	"Edit": "Golygu",
 | 
						"Edit": "Golygu",
 | 
				
			||||||
	"Edit Shortcuts": "Golygu Llwybrau Byr",
 | 
						"Edit Shortcuts": "Golygu Llwybrau Byr",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emoji a Symbolau",
 | 
				
			||||||
	"Enable auto updates": "Galluogi diweddariadau yn awtomatig",
 | 
						"Enable auto updates": "Galluogi diweddariadau yn awtomatig",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Galluogi adrodd am wallau (angen ailgychwyn)",
 | 
						"Enable error reporting (requires restart)": "Galluogi adrodd am wallau (angen ailgychwyn)",
 | 
				
			||||||
	"Enable spellchecker (requires restart)": "Galluogi gwiriwr sillafu (angen ailgychwyn)",
 | 
						"Enable spellchecker (requires restart)": "Galluogi gwiriwr sillafu (angen ailgychwyn)",
 | 
				
			||||||
	"Enter Full Screen": "Enter Full Screen",
 | 
						"Enter Full Screen": "Rhowch sgrin lawn",
 | 
				
			||||||
	"Factory Reset": "Ailosod Ffatri",
 | 
						"Factory Reset": "Ailosod Ffatri",
 | 
				
			||||||
	"Factory Reset Data": "Ailosod Data Ffatri",
 | 
						"Factory Reset Data": "Ailosod Data Ffatri",
 | 
				
			||||||
	"File": "Ffeil",
 | 
						"File": "Ffeil",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Canolfan Gymorth",
 | 
						"Help Center": "Canolfan Gymorth",
 | 
				
			||||||
	"Hide": "Cuddio",
 | 
						"Hide": "Cuddio",
 | 
				
			||||||
	"Hide Others": "Cuddio Eraill",
 | 
						"Hide Others": "Cuddio Eraill",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Cuddiwch Zulip",
 | 
				
			||||||
	"History": "Hanes",
 | 
						"History": "Hanes",
 | 
				
			||||||
	"History Shortcuts": "Hanes Llwybrau Byr ",
 | 
						"History Shortcuts": "Hanes Llwybrau Byr ",
 | 
				
			||||||
	"Keyboard Shortcuts": "Llwybrau Byr Bysellfwrdd",
 | 
						"Keyboard Shortcuts": "Llwybrau Byr Bysellfwrdd",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Tawelwch pob sain o Zulip",
 | 
						"Mute all sounds from Zulip": "Tawelwch pob sain o Zulip",
 | 
				
			||||||
	"NO": "NA",
 | 
						"NO": "NA",
 | 
				
			||||||
	"Network": "Rhwydwaith",
 | 
						"Network": "Rhwydwaith",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Gosodiadau Rhwydwaith a Dirprwy",
 | 
				
			||||||
	"OR": "NEU",
 | 
						"OR": "NEU",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "Ar macOS, defnyddir gwiriwr sillafu OS.",
 | 
						"On macOS, the OS spellchecker is used.": "Ar macOS, defnyddir gwiriwr sillafu OS.",
 | 
				
			||||||
	"Organization URL": "URL y sefydliad",
 | 
						"Organization URL": "URL y sefydliad",
 | 
				
			||||||
@@ -85,8 +85,8 @@
 | 
				
			|||||||
	"Release Notes": "Nodiadau ar y datganiad hwn",
 | 
						"Release Notes": "Nodiadau ar y datganiad hwn",
 | 
				
			||||||
	"Reload": "Ail-lwytho",
 | 
						"Reload": "Ail-lwytho",
 | 
				
			||||||
	"Report an Issue": "Adroddiwch mater",
 | 
						"Report an Issue": "Adroddiwch mater",
 | 
				
			||||||
	"Reset App Settings": "Reset App Settings",
 | 
						"Reset App Settings": "Ailosod Gosodiadau Ap",
 | 
				
			||||||
	"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.": "Ailosod y cais, gan ddileu'r holl sefydliadau a chyfrifon cysylltiedig.",
 | 
				
			||||||
	"Save": "Cadw",
 | 
						"Save": "Cadw",
 | 
				
			||||||
	"Select All": "Dewiswch Bobeth",
 | 
						"Select All": "Dewiswch Bobeth",
 | 
				
			||||||
	"Services": "Gwasanaethau",
 | 
						"Services": "Gwasanaethau",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Chwyddo allan",
 | 
						"Zoom Out": "Chwyddo allan",
 | 
				
			||||||
	"keyboard shortcuts": "llwybrau byr bysellfwrdd",
 | 
						"keyboard shortcuts": "llwybrau byr bysellfwrdd",
 | 
				
			||||||
	"script": "sgript",
 | 
						"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,12 +1,12 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	"About Zulip": "Om Zulip",
 | 
						"About Zulip": "Om Zulip",
 | 
				
			||||||
	"Actual Size": "Faktisk størrelse",
 | 
						"Actual Size": "Faktisk størrelse",
 | 
				
			||||||
	"Add Organization": "Opret organisation",
 | 
						"Add Organization": "Tilføj organisation",
 | 
				
			||||||
	"Add a Zulip organization": "Opret en Zulip organisation",
 | 
						"Add a Zulip organization": "Tilføj en Zulip organisation",
 | 
				
			||||||
	"Add custom CSS": "Tilføj egen CSS",
 | 
						"Add custom CSS": "Tilføj egen CSS",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "Avanceret",
 | 
						"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",
 | 
						"Always start minimized": "Start altid minimeret",
 | 
				
			||||||
	"App Updates": "App-opdateringer",
 | 
						"App Updates": "App-opdateringer",
 | 
				
			||||||
	"App language (requires restart)": "App language (requires restart)",
 | 
						"App language (requires restart)": "App language (requires restart)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "Download app-logfiler",
 | 
						"Download App Logs": "Download app-logfiler",
 | 
				
			||||||
	"Edit": "Redigér",
 | 
						"Edit": "Redigér",
 | 
				
			||||||
	"Edit Shortcuts": "Redigér genveje",
 | 
						"Edit Shortcuts": "Redigér genveje",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emoji og symboler",
 | 
				
			||||||
	"Enable auto updates": "Aktivér auto-opdateringer",
 | 
						"Enable auto updates": "Aktivér auto-opdateringer",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Aktivér fejlrapportering (kræver genstart)",
 | 
						"Enable error reporting (requires restart)": "Aktivér fejlrapportering (kræver genstart)",
 | 
				
			||||||
	"Enable spellchecker (requires restart)": "Aktivér stavekontrol (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",
 | 
				
			||||||
	"Factory Reset": "Nulstil til fabriksindstillinger",
 | 
						"Factory Reset": "Nulstil til fabriksindstillinger",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "Factory Reset Data",
 | 
				
			||||||
	"File": "Fil",
 | 
						"File": "Fil",
 | 
				
			||||||
@@ -55,20 +55,20 @@
 | 
				
			|||||||
	"Hard Reload": "Hård reload",
 | 
						"Hard Reload": "Hård reload",
 | 
				
			||||||
	"Help": "Hjælp",
 | 
						"Help": "Hjælp",
 | 
				
			||||||
	"Help Center": "Hjælpecenter",
 | 
						"Help Center": "Hjælpecenter",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Skjul",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Skjul andre",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Skjul Zulip",
 | 
				
			||||||
	"History": "Historik",
 | 
						"History": "Historik",
 | 
				
			||||||
	"History Shortcuts": "Historik genveje",
 | 
						"History Shortcuts": "Historikgenveje",
 | 
				
			||||||
	"Keyboard Shortcuts": "Tastatur genveje",
 | 
						"Keyboard Shortcuts": "Tastaturgenveje",
 | 
				
			||||||
	"Log Out": "Log ud",
 | 
						"Log Out": "Log ud",
 | 
				
			||||||
	"Log Out of Organization": "Log ud af organisation",
 | 
						"Log Out of Organization": "Log ud af organisation",
 | 
				
			||||||
	"Manual proxy configuration": "Manuel proxy opsætning",
 | 
						"Manual proxy configuration": "Manuel proxy opsætning",
 | 
				
			||||||
	"Minimize": "Minimér",
 | 
						"Minimize": "Minimer",
 | 
				
			||||||
	"Mute all sounds from Zulip": "Dæmp alle lyde fra Zulip",
 | 
						"Mute all sounds from Zulip": "Dæmp alle lyde fra Zulip",
 | 
				
			||||||
	"NO": "NEJ",
 | 
						"NO": "NEJ",
 | 
				
			||||||
	"Network": "Netværk",
 | 
						"Network": "Netværk",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Netværk og proxy indstillinger",
 | 
				
			||||||
	"OR": "ELLER",
 | 
						"OR": "ELLER",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "Organisation URL",
 | 
						"Organization URL": "Organisation URL",
 | 
				
			||||||
@@ -85,12 +85,12 @@
 | 
				
			|||||||
	"Release Notes": "Release Notes",
 | 
						"Release Notes": "Release Notes",
 | 
				
			||||||
	"Reload": "Reload",
 | 
						"Reload": "Reload",
 | 
				
			||||||
	"Report an Issue": "Report an Issue",
 | 
						"Report an Issue": "Report an Issue",
 | 
				
			||||||
	"Reset App Settings": "Reset App Settings",
 | 
						"Reset App Settings": "Nulstil App-indstillinger",
 | 
				
			||||||
	"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.": "Nulstil applikationen, dvs: slet alle forbundne organisationer og konti.",
 | 
				
			||||||
	"Save": "Save",
 | 
						"Save": "Gem",
 | 
				
			||||||
	"Select All": "Select All",
 | 
						"Select All": "Vælg alle",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "Tjenester",
 | 
				
			||||||
	"Settings": "Settings",
 | 
						"Settings": "Indstillinger",
 | 
				
			||||||
	"Shortcuts": "Shortcuts",
 | 
						"Shortcuts": "Shortcuts",
 | 
				
			||||||
	"Show app icon in system tray": "Show app icon in system tray",
 | 
						"Show app icon in system tray": "Show app icon in system tray",
 | 
				
			||||||
	"Show app unread badge": "Show app unread badge",
 | 
						"Show app unread badge": "Show app unread badge",
 | 
				
			||||||
@@ -104,7 +104,7 @@
 | 
				
			|||||||
	"Tip": "Tip",
 | 
						"Tip": "Tip",
 | 
				
			||||||
	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab",
 | 
						"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab",
 | 
				
			||||||
	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App",
 | 
						"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 Full Screen": "Toggle Full Screen",
 | 
				
			||||||
	"Toggle Sidebar": "Toggle Sidebar",
 | 
						"Toggle Sidebar": "Toggle Sidebar",
 | 
				
			||||||
	"Toggle Tray Icon": "Toggle Tray Icon",
 | 
						"Toggle Tray Icon": "Toggle Tray Icon",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Zoom Out",
 | 
						"Zoom Out": "Zoom Out",
 | 
				
			||||||
	"keyboard shortcuts": "keyboard shortcuts",
 | 
						"keyboard shortcuts": "keyboard shortcuts",
 | 
				
			||||||
	"script": "script",
 | 
						"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."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,8 +14,8 @@
 | 
				
			|||||||
	"Application Shortcuts": "App-Verknüpfungen",
 | 
						"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 you want to disconnect this organization?": "Bist du dir sicher, dass du die Verbindung zur Organisation trennen möchtest?",
 | 
				
			||||||
	"Ask where to save files before downloading": "Fragen, wo heruntergeladene Dateien gespeichert werden sollen",
 | 
						"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": "Menü automatisch verbergen",
 | 
				
			||||||
	"Auto hide menu bar (Press Alt key to display)": "Menü automatisch verstecken (zum Anzeigen die Alt-Taste drücken)",
 | 
						"Auto hide menu bar (Press Alt key to display)": "Menü automatisch verbergen (zum Anzeigen die Alt-Taste drücken)",
 | 
				
			||||||
	"Back": "Zurück",
 | 
						"Back": "Zurück",
 | 
				
			||||||
	"Bounce dock on new private message": "Im Dock hüpfen, wenn neue private Nachrichten eingehen",
 | 
						"Bounce dock on new private message": "Im Dock hüpfen, wenn neue private Nachrichten eingehen",
 | 
				
			||||||
	"Change": "Ändern",
 | 
						"Change": "Ändern",
 | 
				
			||||||
@@ -54,7 +54,7 @@
 | 
				
			|||||||
	"Get beta updates": "Auf Betaversionen aktualisieren",
 | 
						"Get beta updates": "Auf Betaversionen aktualisieren",
 | 
				
			||||||
	"Hard Reload": "Komplett neu laden",
 | 
						"Hard Reload": "Komplett neu laden",
 | 
				
			||||||
	"Help": "Hilfe",
 | 
						"Help": "Hilfe",
 | 
				
			||||||
	"Help Center": "Hilfe-Zentrum",
 | 
						"Help Center": "Hilfecenter",
 | 
				
			||||||
	"Hide": "Verbergen",
 | 
						"Hide": "Verbergen",
 | 
				
			||||||
	"Hide Others": "Andere verbergen",
 | 
						"Hide Others": "Andere verbergen",
 | 
				
			||||||
	"Hide Zulip": "Zulip verbergen",
 | 
						"Hide Zulip": "Zulip verbergen",
 | 
				
			||||||
@@ -71,7 +71,7 @@
 | 
				
			|||||||
	"Network and Proxy Settings": "Netzwerk- und Proxy-Einstellungen",
 | 
						"Network and Proxy Settings": "Netzwerk- und Proxy-Einstellungen",
 | 
				
			||||||
	"OR": "ODER",
 | 
						"OR": "ODER",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "In macOS wird die OS Rechtschreibprüfung verwendet.",
 | 
						"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",
 | 
						"Organizations": "Organisationen",
 | 
				
			||||||
	"Paste": "Einfügen",
 | 
						"Paste": "Einfügen",
 | 
				
			||||||
	"Paste and Match Style": "Ohne Formatierung einfügen",
 | 
						"Paste and Match Style": "Ohne Formatierung einfügen",
 | 
				
			||||||
@@ -85,7 +85,7 @@
 | 
				
			|||||||
	"Release Notes": "Hinweise zur Versionsfreigabe",
 | 
						"Release Notes": "Hinweise zur Versionsfreigabe",
 | 
				
			||||||
	"Reload": "Neu laden",
 | 
						"Reload": "Neu laden",
 | 
				
			||||||
	"Report an Issue": "Ein Problem melden",
 | 
						"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.",
 | 
						"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",
 | 
						"Save": "Speichern",
 | 
				
			||||||
	"Select All": "Alles auswählen",
 | 
						"Select All": "Alles auswählen",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Ζουμ μακρύτερα",
 | 
						"Zoom Out": "Ζουμ μακρύτερα",
 | 
				
			||||||
	"keyboard shortcuts": "συντομεύσεις πληκτρολογίου",
 | 
						"keyboard shortcuts": "συντομεύσεις πληκτρολογίου",
 | 
				
			||||||
	"script": "script",
 | 
						"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}}}. Ενδεχομένως να μη λειτουργεί πλήρως σε αυτή την εφαρμογή."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "Añadir CSS personalizado",
 | 
						"Add custom CSS": "Añadir CSS personalizado",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "Avanzado",
 | 
						"Advanced": "Avanzado",
 | 
				
			||||||
	"All the connected organizations will appear here.": "All the connected organizations will appear here.",
 | 
						"All the connected organizations will appear here.": "Todas las organizaciones conectadas aparecerán aquí",
 | 
				
			||||||
	"Always start minimized": "Iniciar siempre minimizado",
 | 
						"Always start minimized": "Iniciar siempre minimizado",
 | 
				
			||||||
	"App Updates": "Actualizaciones de la aplicación",
 | 
						"App Updates": "Actualizaciones de la aplicación",
 | 
				
			||||||
	"App language (requires restart)": "Idioma de la aplicación (requiere reinicio)",
 | 
						"App language (requires restart)": "Idioma de la aplicación (requiere reinicio)",
 | 
				
			||||||
@@ -37,16 +37,16 @@
 | 
				
			|||||||
	"Download App Logs": "Descargar registros de la aplicación",
 | 
						"Download App Logs": "Descargar registros de la aplicación",
 | 
				
			||||||
	"Edit": "Editar",
 | 
						"Edit": "Editar",
 | 
				
			||||||
	"Edit Shortcuts": "Editar atajos",
 | 
						"Edit Shortcuts": "Editar atajos",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emojis y símbolos",
 | 
				
			||||||
	"Enable auto updates": "Activar actualizaciones automáticas",
 | 
						"Enable auto updates": "Activar actualizaciones automáticas",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Activar reporte de fallos (necesita reinicio)",
 | 
						"Enable error reporting (requires restart)": "Activar reporte de fallos (necesita reinicio)",
 | 
				
			||||||
	"Enable spellchecker (requires restart)": "Activar corrector ortográfico (necesita reinicio)",
 | 
						"Enable spellchecker (requires restart)": "Activar corrector ortográfico (necesita reinicio)",
 | 
				
			||||||
	"Enter Full Screen": "Enter Full Screen",
 | 
						"Enter Full Screen": "Activar pantalla completa",
 | 
				
			||||||
	"Factory Reset": "Reinicio de fábrica",
 | 
						"Factory Reset": "Reinicio de fábrica",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "Factory Reset Data",
 | 
				
			||||||
	"File": "Archivo",
 | 
						"File": "Archivo",
 | 
				
			||||||
	"Find accounts": "Encontrar cuentas",
 | 
						"Find accounts": "Encontrar cuentas",
 | 
				
			||||||
	"Find accounts by email": "Encontrar cuentas por correo electrónico",
 | 
						"Find accounts by email": "Encontrar cuentas con email",
 | 
				
			||||||
	"Flash taskbar on new message": "Hacer que la barra de tareas parpadee cuando se reciba un mensaje nuevo",
 | 
						"Flash taskbar on new message": "Hacer que la barra de tareas parpadee cuando se reciba un mensaje nuevo",
 | 
				
			||||||
	"Forward": "Reenviar",
 | 
						"Forward": "Reenviar",
 | 
				
			||||||
	"Functionality": "Funcionalidad",
 | 
						"Functionality": "Funcionalidad",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Centro de ayuda",
 | 
						"Help Center": "Centro de ayuda",
 | 
				
			||||||
	"Hide": "Ocultar",
 | 
						"Hide": "Ocultar",
 | 
				
			||||||
	"Hide Others": "Ocultar otros",
 | 
						"Hide Others": "Ocultar otros",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "No mostrar Zulip",
 | 
				
			||||||
	"History": "Historial",
 | 
						"History": "Historial",
 | 
				
			||||||
	"History Shortcuts": "Atajos del historial",
 | 
						"History Shortcuts": "Atajos del historial",
 | 
				
			||||||
	"Keyboard Shortcuts": "Atajos de teclado",
 | 
						"Keyboard Shortcuts": "Atajos de teclado",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Silenciar todos los sonidos de Zulip",
 | 
						"Mute all sounds from Zulip": "Silenciar todos los sonidos de Zulip",
 | 
				
			||||||
	"NO": "NO",
 | 
						"NO": "NO",
 | 
				
			||||||
	"Network": "Red",
 | 
						"Network": "Red",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Configuración de red y proxy",
 | 
				
			||||||
	"OR": "O",
 | 
						"OR": "O",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "En macOS se utiliza la verificación ortográfica del sistema operativo.",
 | 
						"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",
 | 
						"Organization URL": "URL de la organización",
 | 
				
			||||||
@@ -86,7 +86,7 @@
 | 
				
			|||||||
	"Reload": "Recargar",
 | 
						"Reload": "Recargar",
 | 
				
			||||||
	"Report an Issue": "Informar de un error",
 | 
						"Report an Issue": "Informar de un error",
 | 
				
			||||||
	"Reset App Settings": "Reiniciar ajustes de la aplicación",
 | 
						"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.",
 | 
						"Reset the application, thus deleting all the connected organizations and accounts.": "Reinicia la aplicación, borrando todas las organizaciones conectadas y cuentas.",
 | 
				
			||||||
	"Save": "Guardar",
 | 
						"Save": "Guardar",
 | 
				
			||||||
	"Select All": "Seleccionar todo",
 | 
						"Select All": "Seleccionar todo",
 | 
				
			||||||
	"Services": "Servicios",
 | 
						"Services": "Servicios",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Reducir zoom",
 | 
						"Zoom Out": "Reducir zoom",
 | 
				
			||||||
	"keyboard shortcuts": "atajos de teclado",
 | 
						"keyboard shortcuts": "atajos de teclado",
 | 
				
			||||||
	"script": "script",
 | 
						"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 está ejecutando en una versión desactualizada de Zulip Server {{{version}}}. Es posible que el servidor no funcione correctamente."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,41 +1,41 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	"About Zulip": "About Zulip",
 | 
						"About Zulip": "Zulip-i buruz",
 | 
				
			||||||
	"Actual Size": "Actual Size",
 | 
						"Actual Size": "Egungo tamaina",
 | 
				
			||||||
	"Add Organization": "Add Organization",
 | 
						"Add Organization": "Gehitu erakundea",
 | 
				
			||||||
	"Add a Zulip organization": "Add a Zulip organization",
 | 
						"Add a Zulip organization": "Gehitu Zulip erakunde bat",
 | 
				
			||||||
	"Add custom CSS": "Add custom CSS",
 | 
						"Add custom CSS": "Add custom CSS",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "Advanced",
 | 
						"Advanced": "Aurreratua",
 | 
				
			||||||
	"All the connected organizations will appear here.": "All the connected organizations will appear here.",
 | 
						"All the connected organizations will appear here.": "All the connected organizations will appear here.",
 | 
				
			||||||
	"Always start minimized": "Always start minimized",
 | 
						"Always start minimized": "Always start minimized",
 | 
				
			||||||
	"App Updates": "App Updates",
 | 
						"App Updates": "App Updates",
 | 
				
			||||||
	"App language (requires restart)": "App language (requires restart)",
 | 
						"App language (requires restart)": "App language (requires restart)",
 | 
				
			||||||
	"Appearance": "Appearance",
 | 
						"Appearance": "Itxura",
 | 
				
			||||||
	"Application Shortcuts": "Application Shortcuts",
 | 
						"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 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",
 | 
						"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": "Auto hide Menu bar",
 | 
				
			||||||
	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)",
 | 
						"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)",
 | 
				
			||||||
	"Back": "Back",
 | 
						"Back": "Itzuli",
 | 
				
			||||||
	"Bounce dock on new private message": "Bounce dock on new private message",
 | 
						"Bounce dock on new private message": "Bounce dock on new private message",
 | 
				
			||||||
	"Change": "Change",
 | 
						"Change": "Aldatu",
 | 
				
			||||||
	"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.": "Change the language from System Preferences → Keyboard → Text → Spelling.",
 | 
				
			||||||
	"Check for Updates": "Check for Updates",
 | 
						"Check for Updates": "Check for Updates",
 | 
				
			||||||
	"Close": "Close",
 | 
						"Close": "Itxi",
 | 
				
			||||||
	"Connect": "Connect",
 | 
						"Connect": "Konektatu",
 | 
				
			||||||
	"Connect to another organization": "Connect to another organization",
 | 
						"Connect to another organization": "Connect to another organization",
 | 
				
			||||||
	"Connected organizations": "Connected organizations",
 | 
						"Connected organizations": "Connected organizations",
 | 
				
			||||||
	"Copy": "Copy",
 | 
						"Copy": "Kopiatu",
 | 
				
			||||||
	"Copy Zulip URL": "Copy Zulip URL",
 | 
						"Copy Zulip URL": "Kopiatu Zulip URL-a",
 | 
				
			||||||
	"Create a new organization": "Create a new organization",
 | 
						"Create a new organization": "Sortu erakunde berriia",
 | 
				
			||||||
	"Cut": "Cut",
 | 
						"Cut": "Moztu",
 | 
				
			||||||
	"Default download location": "Default download location",
 | 
						"Default download location": "Default download location",
 | 
				
			||||||
	"Delete": "Delete",
 | 
						"Delete": "Desegin",
 | 
				
			||||||
	"Desktop Notifications": "Desktop Notifications",
 | 
						"Desktop Notifications": "Mahaigaineko jakinarazpenak",
 | 
				
			||||||
	"Desktop Settings": "Desktop Settings",
 | 
						"Desktop Settings": "Desktop Settings",
 | 
				
			||||||
	"Disconnect": "Disconnect",
 | 
						"Disconnect": "Deskonektatu",
 | 
				
			||||||
	"Download App Logs": "Download App Logs",
 | 
						"Download App Logs": "Download App Logs",
 | 
				
			||||||
	"Edit": "Edit",
 | 
						"Edit": "Editatu",
 | 
				
			||||||
	"Edit Shortcuts": "Edit Shortcuts",
 | 
						"Edit Shortcuts": "Edit Shortcuts",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emoji & Symbols",
 | 
				
			||||||
	"Enable auto updates": "Enable auto updates",
 | 
						"Enable auto updates": "Enable auto updates",
 | 
				
			||||||
@@ -50,15 +50,15 @@
 | 
				
			|||||||
	"Flash taskbar on new message": "Flash taskbar on new message",
 | 
						"Flash taskbar on new message": "Flash taskbar on new message",
 | 
				
			||||||
	"Forward": "Forward",
 | 
						"Forward": "Forward",
 | 
				
			||||||
	"Functionality": "Functionality",
 | 
						"Functionality": "Functionality",
 | 
				
			||||||
	"General": "General",
 | 
						"General": "Orokorra",
 | 
				
			||||||
	"Get beta updates": "Get beta updates",
 | 
						"Get beta updates": "Get beta updates",
 | 
				
			||||||
	"Hard Reload": "Hard Reload",
 | 
						"Hard Reload": "Hard Reload",
 | 
				
			||||||
	"Help": "Help",
 | 
						"Help": "Laguntza",
 | 
				
			||||||
	"Help Center": "Help Center",
 | 
						"Help Center": "Laguntza gunea\n",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Hide",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Hide Others",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Hide Zulip",
 | 
				
			||||||
	"History": "History",
 | 
						"History": "Historia",
 | 
				
			||||||
	"History Shortcuts": "History Shortcuts",
 | 
						"History Shortcuts": "History Shortcuts",
 | 
				
			||||||
	"Keyboard Shortcuts": "Keyboard Shortcuts",
 | 
						"Keyboard Shortcuts": "Keyboard Shortcuts",
 | 
				
			||||||
	"Log Out": "Log Out",
 | 
						"Log Out": "Log Out",
 | 
				
			||||||
@@ -66,19 +66,19 @@
 | 
				
			|||||||
	"Manual proxy configuration": "Manual proxy configuration",
 | 
						"Manual proxy configuration": "Manual proxy configuration",
 | 
				
			||||||
	"Minimize": "Minimize",
 | 
						"Minimize": "Minimize",
 | 
				
			||||||
	"Mute all sounds from Zulip": "Mute all sounds from Zulip",
 | 
						"Mute all sounds from Zulip": "Mute all sounds from Zulip",
 | 
				
			||||||
	"NO": "NO",
 | 
						"NO": "EZ",
 | 
				
			||||||
	"Network": "Network",
 | 
						"Network": "Sarea",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Network and Proxy Settings",
 | 
				
			||||||
	"OR": "OR",
 | 
						"OR": "EDO",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "Organization URL",
 | 
						"Organization URL": "Erakundearen URL-a",
 | 
				
			||||||
	"Organizations": "Organizations",
 | 
						"Organizations": "Erakundeak",
 | 
				
			||||||
	"Paste": "Paste",
 | 
						"Paste": "Itsatsi",
 | 
				
			||||||
	"Paste and Match Style": "Paste and Match Style",
 | 
						"Paste and Match Style": "Paste and Match Style",
 | 
				
			||||||
	"Proxy": "Proxy",
 | 
						"Proxy": "Proxy",
 | 
				
			||||||
	"Proxy bypass rules": "Proxy bypass rules",
 | 
						"Proxy bypass rules": "Proxy bypass rules",
 | 
				
			||||||
	"Proxy rules": "Proxy rules",
 | 
						"Proxy rules": "Proxy rules",
 | 
				
			||||||
	"Quit": "Quit",
 | 
						"Quit": "Irten",
 | 
				
			||||||
	"Quit Zulip": "Quit Zulip",
 | 
						"Quit Zulip": "Quit Zulip",
 | 
				
			||||||
	"Quit when the window is closed": "Quit when the window is closed",
 | 
						"Quit when the window is closed": "Quit when the window is closed",
 | 
				
			||||||
	"Redo": "Redo",
 | 
						"Redo": "Redo",
 | 
				
			||||||
@@ -87,7 +87,7 @@
 | 
				
			|||||||
	"Report an Issue": "Report an Issue",
 | 
						"Report an Issue": "Report an Issue",
 | 
				
			||||||
	"Reset App Settings": "Reset App Settings",
 | 
						"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 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 All": "Select All",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "Services",
 | 
				
			||||||
	"Settings": "Settings",
 | 
						"Settings": "Settings",
 | 
				
			||||||
@@ -109,15 +109,15 @@
 | 
				
			|||||||
	"Toggle Sidebar": "Toggle Sidebar",
 | 
						"Toggle Sidebar": "Toggle Sidebar",
 | 
				
			||||||
	"Toggle Tray Icon": "Toggle Tray Icon",
 | 
						"Toggle Tray Icon": "Toggle Tray Icon",
 | 
				
			||||||
	"Tools": "Tools",
 | 
						"Tools": "Tools",
 | 
				
			||||||
	"Undo": "Undo",
 | 
						"Undo": "Desegin",
 | 
				
			||||||
	"Unhide": "Unhide",
 | 
						"Unhide": "Unhide",
 | 
				
			||||||
	"Upload": "Upload",
 | 
						"Upload": "Igo",
 | 
				
			||||||
	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)",
 | 
						"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)",
 | 
				
			||||||
	"View": "View",
 | 
						"View": "Ikusi",
 | 
				
			||||||
	"View Shortcuts": "View Shortcuts",
 | 
						"View Shortcuts": "View Shortcuts",
 | 
				
			||||||
	"Window": "Window",
 | 
						"Window": "Window",
 | 
				
			||||||
	"Window Shortcuts": "Window Shortcuts",
 | 
						"Window Shortcuts": "Window Shortcuts",
 | 
				
			||||||
	"YES": "YES",
 | 
						"YES": "BAI",
 | 
				
			||||||
	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.",
 | 
						"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 In": "Zoom In",
 | 
				
			||||||
	"Zoom Out": "Zoom Out",
 | 
						"Zoom Out": "Zoom Out",
 | 
				
			||||||
@@ -1,8 +1,8 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	"About Zulip": "درباره Zulip ",
 | 
						"About Zulip": "درباره زولیپ",
 | 
				
			||||||
	"Actual Size": "اندازه واقعی",
 | 
						"Actual Size": "اندازه واقعی",
 | 
				
			||||||
	"Add Organization": "اضافه کردن سازمان",
 | 
						"Add Organization": "اضافه کردن سازمان",
 | 
				
			||||||
	"Add a Zulip organization": "اضافه کردن سازمان Zulip",
 | 
						"Add a Zulip organization": "اضافه کردن سازمان زولیپ",
 | 
				
			||||||
	"Add custom CSS": "اضافه کردن CSS دلخواه",
 | 
						"Add custom CSS": "اضافه کردن CSS دلخواه",
 | 
				
			||||||
	"AddServer": "افزودن سرور",
 | 
						"AddServer": "افزودن سرور",
 | 
				
			||||||
	"Advanced": "پیشرفته",
 | 
						"Advanced": "پیشرفته",
 | 
				
			||||||
@@ -19,14 +19,14 @@
 | 
				
			|||||||
	"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": "کپی از Zulip URL",
 | 
						"Copy Zulip URL": "کپی از URL زولیپ",
 | 
				
			||||||
	"Create a new organization": "ایجاد سازمان جدید",
 | 
						"Create a new organization": "ایجاد سازمان جدید",
 | 
				
			||||||
	"Cut": "بریدن",
 | 
						"Cut": "بریدن",
 | 
				
			||||||
	"Default download location": "محل پیشفرض دانلود",
 | 
						"Default download location": "محل پیشفرض دانلود",
 | 
				
			||||||
@@ -45,16 +45,16 @@
 | 
				
			|||||||
	"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": "پنهان کردن زولیپ",
 | 
				
			||||||
@@ -72,7 +72,7 @@
 | 
				
			|||||||
	"OR": "یا",
 | 
						"OR": "یا",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "در macOS از غلطگیر املای سیستمعامل استفاده میشود.",
 | 
						"On macOS, the OS spellchecker is used.": "در macOS از غلطگیر املای سیستمعامل استفاده میشود.",
 | 
				
			||||||
	"Organization URL": "URL سازمان",
 | 
						"Organization URL": "URL سازمان",
 | 
				
			||||||
	"Organizations": "سازمان ها",
 | 
						"Organizations": "سازمانها",
 | 
				
			||||||
	"Paste": "جایگذاری",
 | 
						"Paste": "جایگذاری",
 | 
				
			||||||
	"Paste and Match Style": "جایگذاری و تطابق استایل",
 | 
						"Paste and Match Style": "جایگذاری و تطابق استایل",
 | 
				
			||||||
	"Proxy": "پروکسی",
 | 
						"Proxy": "پروکسی",
 | 
				
			||||||
@@ -81,8 +81,8 @@
 | 
				
			|||||||
	"Quit": "خروج",
 | 
						"Quit": "خروج",
 | 
				
			||||||
	"Quit Zulip": "خروج از زولیپ",
 | 
						"Quit Zulip": "خروج از زولیپ",
 | 
				
			||||||
	"Quit when the window is closed": "وقتی پنجره بسته است از آن خارج شوید",
 | 
						"Quit when the window is closed": "وقتی پنجره بسته است از آن خارج شوید",
 | 
				
			||||||
	"Redo": "Redo",
 | 
						"Redo": "اجرای دوباره",
 | 
				
			||||||
	"Release Notes": "یادداشت های انتشار",
 | 
						"Release Notes": "یادداشتهای انتشار",
 | 
				
			||||||
	"Reload": "بارگذاری مجدد",
 | 
						"Reload": "بارگذاری مجدد",
 | 
				
			||||||
	"Report an Issue": "گزارش یک مشکل",
 | 
						"Report an Issue": "گزارش یک مشکل",
 | 
				
			||||||
	"Reset App Settings": "بازنشانی تنظیمات برنامه",
 | 
						"Reset App Settings": "بازنشانی تنظیمات برنامه",
 | 
				
			||||||
@@ -93,24 +93,24 @@
 | 
				
			|||||||
	"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": "این میانبرهای برنامه دسکتاپ، برنامه وب Zulip را گسترش می دهند",
 | 
						"These desktop app shortcuts extend the Zulip webapp's": "این میانبرهای برنامه دسکتاپ، برنامه وب زولیپ را گسترش می دهند",
 | 
				
			||||||
	"Tip": "نکته",
 | 
						"Tip": "نکته",
 | 
				
			||||||
	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab",
 | 
						"Toggle DevTools for Active Tab": "تغییر ابزارهای توسعه برای تب فعال",
 | 
				
			||||||
	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App",
 | 
						"Toggle DevTools for Zulip App": "تغییر ابزارهای توسعه برای اپلیکیشن زولیپ",
 | 
				
			||||||
	"Toggle Do Not Disturb": "Toggle Do Not Disturb",
 | 
						"Toggle Do Not Disturb": "تغییر حالت مزاحم نشو",
 | 
				
			||||||
	"Toggle Full Screen": "Toggle Full Screen",
 | 
						"Toggle Full Screen": "تغییر حالت تمام صفحه",
 | 
				
			||||||
	"Toggle Sidebar": "تغییر نوار کناری",
 | 
						"Toggle Sidebar": "تغییر نوار کناری",
 | 
				
			||||||
	"Toggle Tray Icon": "Toggle Tray Icon",
 | 
						"Toggle Tray Icon": "تغییر آیکون کازیه",
 | 
				
			||||||
	"Tools": "ابزارها",
 | 
						"Tools": "ابزارها",
 | 
				
			||||||
	"Undo": "بازگشت به عقب",
 | 
						"Undo": "بازگشت به عقب",
 | 
				
			||||||
	"Unhide": "Unhide",
 | 
						"Unhide": "ظاهر کردن",
 | 
				
			||||||
	"Upload": "آپلود",
 | 
						"Upload": "آپلود",
 | 
				
			||||||
	"Use system proxy settings (requires restart)": "استفاده از تنظیمات پراکسی سیستم (نیاز به راه اندازی مجدد)",
 | 
						"Use system proxy settings (requires restart)": "استفاده از تنظیمات پراکسی سیستم (نیاز به راه اندازی مجدد)",
 | 
				
			||||||
	"View": "مشاهده",
 | 
						"View": "مشاهده",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "کوچک نمایی",
 | 
						"Zoom Out": "کوچک نمایی",
 | 
				
			||||||
	"keyboard shortcuts": "میانبرهای صفحه کلید",
 | 
						"keyboard shortcuts": "میانبرهای صفحه کلید",
 | 
				
			||||||
	"script": "script",
 | 
						"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}}} سرور زولیپ قدیمی را اجرا میکند. ممکن است به طور کامل در این برنامه کار نکند."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "Lisää oma CSS",
 | 
						"Add custom CSS": "Lisää oma CSS",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "Lisäasetukset",
 | 
						"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ä",
 | 
						"Always start minimized": "Aloita aina pienennettynä",
 | 
				
			||||||
	"App Updates": "Sovelluspäivitykset",
 | 
						"App Updates": "Sovelluspäivitykset",
 | 
				
			||||||
	"App language (requires restart)": "Sovelluksen kieli (uudelleenkäynnistys tarvitaan)",
 | 
						"App language (requires restart)": "Sovelluksen kieli (uudelleenkäynnistys tarvitaan)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "Lataushistoria",
 | 
						"Download App Logs": "Lataushistoria",
 | 
				
			||||||
	"Edit": "Muokkaa",
 | 
						"Edit": "Muokkaa",
 | 
				
			||||||
	"Edit Shortcuts": "Muokkauksen pikanäppäimet",
 | 
						"Edit Shortcuts": "Muokkauksen pikanäppäimet",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emojit ja symbolit",
 | 
				
			||||||
	"Enable auto updates": "Salli automaattiset päivitykset",
 | 
						"Enable auto updates": "Salli automaattiset päivitykset",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Ota virheraportointi käyttöön (uudelleenkäynnistys tarvitaan) ",
 | 
						"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)",
 | 
						"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",
 | 
				
			||||||
	"Factory Reset": "Tehdasasetusten palautus",
 | 
						"Factory Reset": "Tehdasasetusten palautus",
 | 
				
			||||||
	"Factory Reset Data": "Tehdasasetusten palautustiedot",
 | 
						"Factory Reset Data": "Tehdasasetusten palautustiedot",
 | 
				
			||||||
	"File": "Tiedosto",
 | 
						"File": "Tiedosto",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Tukikeskus",
 | 
						"Help Center": "Tukikeskus",
 | 
				
			||||||
	"Hide": "Piilota",
 | 
						"Hide": "Piilota",
 | 
				
			||||||
	"Hide Others": "Piilota muut",
 | 
						"Hide Others": "Piilota muut",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Piilota Zulip",
 | 
				
			||||||
	"History": "Historia",
 | 
						"History": "Historia",
 | 
				
			||||||
	"History Shortcuts": "Historian pikanäppäimet",
 | 
						"History Shortcuts": "Historian pikanäppäimet",
 | 
				
			||||||
	"Keyboard Shortcuts": "Pikanäppäimet",
 | 
						"Keyboard Shortcuts": "Pikanäppäimet",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Mykistä kaikki Zulip-äänet",
 | 
						"Mute all sounds from Zulip": "Mykistä kaikki Zulip-äänet",
 | 
				
			||||||
	"NO": "EI",
 | 
						"NO": "EI",
 | 
				
			||||||
	"Network": "Verkko",
 | 
						"Network": "Verkko",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Verkon ja välipalvelimen asetukset",
 | 
				
			||||||
	"OR": "TAI",
 | 
						"OR": "TAI",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "Organisaation URL",
 | 
						"Organization URL": "Organisaation URL",
 | 
				
			||||||
@@ -85,8 +85,8 @@
 | 
				
			|||||||
	"Release Notes": "Julkaisutiedot",
 | 
						"Release Notes": "Julkaisutiedot",
 | 
				
			||||||
	"Reload": "Lataa uudelleen",
 | 
						"Reload": "Lataa uudelleen",
 | 
				
			||||||
	"Report an Issue": "Raportoi ongelmasta",
 | 
						"Report an Issue": "Raportoi ongelmasta",
 | 
				
			||||||
	"Reset App Settings": "Reset App Settings",
 | 
						"Reset App Settings": "Nollaa asetukset",
 | 
				
			||||||
	"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.": "Nollaa sovelluksen, ja poistaa kaikki liitetyt organisaatiot ja tilit.",
 | 
				
			||||||
	"Save": "Tallenna",
 | 
						"Save": "Tallenna",
 | 
				
			||||||
	"Select All": "Valitse kaikki",
 | 
						"Select All": "Valitse kaikki",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "Services",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Loitonna",
 | 
						"Zoom Out": "Loitonna",
 | 
				
			||||||
	"keyboard shortcuts": "Pikanäppäimet",
 | 
						"keyboard shortcuts": "Pikanäppäimet",
 | 
				
			||||||
	"script": "script",
 | 
						"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."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Zoom arrière",
 | 
						"Zoom Out": "Zoom arrière",
 | 
				
			||||||
	"keyboard shortcuts": "Raccourcis clavier",
 | 
						"keyboard shortcuts": "Raccourcis clavier",
 | 
				
			||||||
	"script": "scénario",
 | 
						"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,127 +1,127 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	"About Zulip": "About Zulip",
 | 
						"About Zulip": "જુલિપ વિશે",
 | 
				
			||||||
	"Actual Size": "Actual Size",
 | 
						"Actual Size": "વાસ્તવિક માપ",
 | 
				
			||||||
	"Add Organization": "Add Organization",
 | 
						"Add Organization": "સંસ્થા ઉમેરો",
 | 
				
			||||||
	"Add a Zulip organization": "Add a Zulip organization",
 | 
						"Add a Zulip organization": "એક જુલિપ સંસ્થા ઉમેરો",
 | 
				
			||||||
	"Add custom CSS": "Add custom CSS",
 | 
						"Add custom CSS": "વૈયક્તિક CSS ઉમેરો",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "સર્વર ઉમેરો",
 | 
				
			||||||
	"Advanced": "Advanced",
 | 
						"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": "Always start minimized",
 | 
						"Always start minimized": "હંમેશા નીચેની આરંભ કરો",
 | 
				
			||||||
	"App Updates": "App Updates",
 | 
						"App Updates": "એપ્લિકેશન અપડેટ્સ",
 | 
				
			||||||
	"App language (requires restart)": "App language (requires restart)",
 | 
						"App language (requires restart)": "એપ્લિકેશન ભાષા (પુનઃઆરંભ કરવાની જરૂર છે)",
 | 
				
			||||||
	"Appearance": "Appearance",
 | 
						"Appearance": "દેખાવ",
 | 
				
			||||||
	"Application Shortcuts": "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 you want to disconnect this organization?": "શું તમે ખાતરી છે કે તમે આ સંસ્થાનો ડિસ્કનેક્ટ કરવા માંગો છો?",
 | 
				
			||||||
	"Ask where to save files before downloading": "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": "આટો મેન્યુ બાર છુપાવો",
 | 
				
			||||||
	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)",
 | 
						"Auto hide menu bar (Press Alt key to display)": "આટો મેન્યુ બાર છુપાવો (ડિસ્પ્લે કરવા માટે Alt કી દબાવો)",
 | 
				
			||||||
	"Back": "Back",
 | 
						"Back": "પાછળ",
 | 
				
			||||||
	"Bounce dock on new private message": "Bounce dock on new private message",
 | 
						"Bounce dock on new private message": "નવો ખાનગી સંદેશ પર ડૉક બાઉન્સ કરો",
 | 
				
			||||||
	"Change": "Change",
 | 
						"Change": "બદલો",
 | 
				
			||||||
	"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.": "ભાષા બદલો સિસ્ટમ પ્રાથમિકતાઓ → કીબોર્ડ → ટેક્સટ → સ્પેલિંગમાંથી.",
 | 
				
			||||||
	"Check for Updates": "Check for Updates",
 | 
						"Check for Updates": "અપડેટ્સ માટે તપાસ કરો",
 | 
				
			||||||
	"Close": "Close",
 | 
						"Close": "બંધ",
 | 
				
			||||||
	"Connect": "Connect",
 | 
						"Connect": "જોડો",
 | 
				
			||||||
	"Connect to another organization": "Connect to another organization",
 | 
						"Connect to another organization": "અન્ય સંસ્થાને જોડો",
 | 
				
			||||||
	"Connected organizations": "Connected organizations",
 | 
						"Connected organizations": "જોડાયેલ સંસ્થાઓ",
 | 
				
			||||||
	"Copy": "Copy",
 | 
						"Copy": "કૉપી",
 | 
				
			||||||
	"Copy Zulip URL": "Copy Zulip URL",
 | 
						"Copy Zulip URL": "જુલિપ URL કૉપી કરો",
 | 
				
			||||||
	"Create a new organization": "Create a new organization",
 | 
						"Create a new organization": "નવી સંસ્થા બનાવો",
 | 
				
			||||||
	"Cut": "Cut",
 | 
						"Cut": "કટ કરો",
 | 
				
			||||||
	"Default download location": "Default download location",
 | 
						"Default download location": "મૂળભૂત ડાઉનલોડ સ્થળ",
 | 
				
			||||||
	"Delete": "Delete",
 | 
						"Delete": "કાઢો",
 | 
				
			||||||
	"Desktop Notifications": "Desktop Notifications",
 | 
						"Desktop Notifications": "ડેસ્કટોપ સૂચનાઓ",
 | 
				
			||||||
	"Desktop Settings": "Desktop Settings",
 | 
						"Desktop Settings": "ડેસ્કટોપ સેટિંગ્સ",
 | 
				
			||||||
	"Disconnect": "Disconnect",
 | 
						"Disconnect": "ડિસ્કનેક્ટ",
 | 
				
			||||||
	"Download App Logs": "Download App Logs",
 | 
						"Download App Logs": "એપ્લિકેશન લોગ્સ ડાઉનલોડ કરો",
 | 
				
			||||||
	"Edit": "Edit",
 | 
						"Edit": "સંપાદિત કરો",
 | 
				
			||||||
	"Edit Shortcuts": "Edit Shortcuts",
 | 
						"Edit Shortcuts": "શોર્ટકટ્સ સંપાદિત કરો",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "ઇમોજી અને પ્રતીકો",
 | 
				
			||||||
	"Enable auto updates": "Enable auto updates",
 | 
						"Enable auto updates": "ઓટો અપડેટ્સ સક્ષમ કરો",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)",
 | 
						"Enable error reporting (requires restart)": "ત્રુટિ રિપોર્ટિંગ સક્ષમ કરો (પુનઃઆરંભ કરવાની જરૂર છે)",
 | 
				
			||||||
	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)",
 | 
						"Enable spellchecker (requires restart)": "સ્પેલચેકર સક્ષમ કરો (પુનઃઆરંભ કરવાની જરૂર છે)",
 | 
				
			||||||
	"Enter Full Screen": "Enter Full Screen",
 | 
						"Enter Full Screen": "ફુલ સ્ક્રીનમાં દાખલ કરો",
 | 
				
			||||||
	"Factory Reset": "Factory Reset",
 | 
						"Factory Reset": "ફેક્ટરી રીસેટ",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "ફેક્ટરી રીસેટ ડેટા",
 | 
				
			||||||
	"File": "File",
 | 
						"File": "ફાઈલ",
 | 
				
			||||||
	"Find accounts": "Find accounts",
 | 
						"Find accounts": "એકાઉન્ટ્સ શોધો",
 | 
				
			||||||
	"Find accounts by email": "Find accounts by email",
 | 
						"Find accounts by email": "ઇમેઇલ દ્વારા એકાઉન્ટ્સ શોધો",
 | 
				
			||||||
	"Flash taskbar on new message": "Flash taskbar on new message",
 | 
						"Flash taskbar on new message": "નવો સંદેશ પર ટાસ્કબાર ફ્લેશ કરો",
 | 
				
			||||||
	"Forward": "Forward",
 | 
						"Forward": "ફોરવર્ડ",
 | 
				
			||||||
	"Functionality": "Functionality",
 | 
						"Functionality": "કાર્યક્ષમતા",
 | 
				
			||||||
	"General": "General",
 | 
						"General": "સામાન્ય",
 | 
				
			||||||
	"Get beta updates": "Get beta updates",
 | 
						"Get beta updates": "બીટા અપડેટ્સ મેળવો",
 | 
				
			||||||
	"Hard Reload": "Hard Reload",
 | 
						"Hard Reload": "હાર્ડ રિલોડ",
 | 
				
			||||||
	"Help": "Help",
 | 
						"Help": "મદદ",
 | 
				
			||||||
	"Help Center": "Help Center",
 | 
						"Help Center": "મદદ કેન્દ્ર",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "છુપાવો",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "અન્યો છુપાવો",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "જુલિપ છુપાવો",
 | 
				
			||||||
	"History": "History",
 | 
						"History": "ઇતિહાસ",
 | 
				
			||||||
	"History Shortcuts": "History Shortcuts",
 | 
						"History Shortcuts": "ઇતિહાસ શોર્ટકટ્સ",
 | 
				
			||||||
	"Keyboard Shortcuts": "Keyboard Shortcuts",
 | 
						"Keyboard Shortcuts": "કીબોર્ડ શોર્ટકટ્સ",
 | 
				
			||||||
	"Log Out": "Log Out",
 | 
						"Log Out": "લૉગ આઉટ",
 | 
				
			||||||
	"Log Out of Organization": "Log Out of Organization",
 | 
						"Log Out of Organization": "સંસ્થામાં લૉગ આઉટ કરો",
 | 
				
			||||||
	"Manual proxy configuration": "Manual proxy configuration",
 | 
						"Manual proxy configuration": "મેન્યુઅલ પ્રોક્સી રૂપરેખાંકન",
 | 
				
			||||||
	"Minimize": "Minimize",
 | 
						"Minimize": "નીચેનું કરો",
 | 
				
			||||||
	"Mute all sounds from Zulip": "Mute all sounds from Zulip",
 | 
						"Mute all sounds from Zulip": "જુલિપમાંથી બધા ધ્વનિઓ મ્યુટ કરો",
 | 
				
			||||||
	"NO": "NO",
 | 
						"NO": "નહીં",
 | 
				
			||||||
	"Network": "Network",
 | 
						"Network": "નેટવર્ક",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "નેટવર્ક અને પ્રોક્સી સેટિંગ્સ",
 | 
				
			||||||
	"OR": "OR",
 | 
						"OR": "અથવા",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "macOS પર, OS સ્પેલચેકરનો ઉપયોગ થાય છે.",
 | 
				
			||||||
	"Organization URL": "Organization URL",
 | 
						"Organization URL": "સંસ્થા URL",
 | 
				
			||||||
	"Organizations": "Organizations",
 | 
						"Organizations": "સંસ્થાઓ",
 | 
				
			||||||
	"Paste": "Paste",
 | 
						"Paste": "પેસ્ટ",
 | 
				
			||||||
	"Paste and Match Style": "Paste and Match Style",
 | 
						"Paste and Match Style": "પેસ્ટ અને સ્ટાઇલ મેચ",
 | 
				
			||||||
	"Proxy": "Proxy",
 | 
						"Proxy": "પ્રોક્સી",
 | 
				
			||||||
	"Proxy bypass rules": "Proxy bypass rules",
 | 
						"Proxy bypass rules": "પ્રોક્સી બાયપાસ નિયમો",
 | 
				
			||||||
	"Proxy rules": "Proxy rules",
 | 
						"Proxy rules": "પ્રોક્સી નિયમો",
 | 
				
			||||||
	"Quit": "Quit",
 | 
						"Quit": "છોડો",
 | 
				
			||||||
	"Quit Zulip": "Quit Zulip",
 | 
						"Quit Zulip": "જુલિપ છોડો",
 | 
				
			||||||
	"Quit when the window is closed": "Quit when the window is closed",
 | 
						"Quit when the window is closed": "જ્યારે વિન્ડો બંધ થાય ત્યારે છોડો",
 | 
				
			||||||
	"Redo": "Redo",
 | 
						"Redo": "ફરીથી કરો",
 | 
				
			||||||
	"Release Notes": "Release Notes",
 | 
						"Release Notes": "રિલીઝ નોંધો",
 | 
				
			||||||
	"Reload": "Reload",
 | 
						"Reload": "રીલોડ",
 | 
				
			||||||
	"Report an Issue": "Report an Issue",
 | 
						"Report an Issue": "એક મુદ્દો રિપોર્ટ કરો",
 | 
				
			||||||
	"Reset App Settings": "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 the application, thus deleting all the connected organizations and accounts.": "એપ્લિકેશન રીસેટ કરો, તેથી બંધ થેલેલી બધી સંસ્થાઓ અને એકાઉન્ટ્સ ડિલીટ કરો.",
 | 
				
			||||||
	"Save": "Save",
 | 
						"Save": "સાચવો",
 | 
				
			||||||
	"Select All": "Select All",
 | 
						"Select All": "બધું પસંદ કરો",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "સેવાઓ",
 | 
				
			||||||
	"Settings": "Settings",
 | 
						"Settings": "સેટિંગ્સ",
 | 
				
			||||||
	"Shortcuts": "Shortcuts",
 | 
						"Shortcuts": "શોર્ટકટ્સ",
 | 
				
			||||||
	"Show app icon in system tray": "Show app icon in system tray",
 | 
						"Show app icon in system tray": "સિસ્ટમ ટ્રેમાં એપ આઇકોન બતાવો",
 | 
				
			||||||
	"Show app unread badge": "Show app unread badge",
 | 
						"Show app unread badge": "એપ અન્પડ બેડ્જ બતાવો",
 | 
				
			||||||
	"Show desktop notifications": "Show desktop notifications",
 | 
						"Show desktop notifications": "ડેસ્કટોપ નોટિફિકેશન્સ બતાવો",
 | 
				
			||||||
	"Show sidebar": "Show sidebar",
 | 
						"Show sidebar": "સાઇડબાર બતાવો",
 | 
				
			||||||
	"Spellchecker Languages": "Spellchecker Languages",
 | 
						"Spellchecker Languages": "સ્પેલચેકર ભાષાઓ",
 | 
				
			||||||
	"Start app at login": "Start app at login",
 | 
						"Start app at login": "લૉગિન પર એપ શરૂ કરો",
 | 
				
			||||||
	"Switch to Next Organization": "Switch to Next Organization",
 | 
						"Switch to Next Organization": "આગામી સંસ્થા પર સ્વિચ કરો",
 | 
				
			||||||
	"Switch to Previous 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",
 | 
						"These desktop app shortcuts extend the Zulip webapp's": "આ ડેસ્કટોપ એપ શોર્ટકટ્સ જુલિપ વેબએપને વધારાવે છે",
 | 
				
			||||||
	"Tip": "Tip",
 | 
						"Tip": "ટીપ",
 | 
				
			||||||
	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab",
 | 
						"Toggle DevTools for Active Tab": "એક્ટિવ ટેબ માટે ડેવટૂલ્સ ટોગલ કરો",
 | 
				
			||||||
	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App",
 | 
						"Toggle DevTools for Zulip App": "જુલિપ એપ માટે ડેવટૂલ્સ ટોગલ કરો",
 | 
				
			||||||
	"Toggle Do Not Disturb": "Toggle Do Not Disturb",
 | 
						"Toggle Do Not Disturb": "ચિંતાનો સમય ટોગલ કરો",
 | 
				
			||||||
	"Toggle Full Screen": "Toggle Full Screen",
 | 
						"Toggle Full Screen": "પૂર્ણ સ્ક્રીન ટોગલ કરો",
 | 
				
			||||||
	"Toggle Sidebar": "Toggle Sidebar",
 | 
						"Toggle Sidebar": "સાઇડબાર ટોગલ કરો",
 | 
				
			||||||
	"Toggle Tray Icon": "Toggle Tray Icon",
 | 
						"Toggle Tray Icon": "ટ્રે આઇકોન ટોગલ કરો",
 | 
				
			||||||
	"Tools": "Tools",
 | 
						"Tools": "ટૂલ્સ",
 | 
				
			||||||
	"Undo": "Undo",
 | 
						"Undo": "અનકરવું",
 | 
				
			||||||
	"Unhide": "Unhide",
 | 
						"Unhide": "અદૃશ્ય કરો",
 | 
				
			||||||
	"Upload": "Upload",
 | 
						"Upload": "અપલોડ કરો",
 | 
				
			||||||
	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)",
 | 
						"Use system proxy settings (requires restart)": "સિસ્ટમ પ્રોક્સી સેટિંગ્સનો ઉપયોગ કરો (પુનઃઆરંભ કરવાની જરૂર છે)",
 | 
				
			||||||
	"View": "View",
 | 
						"View": "જુઓ",
 | 
				
			||||||
	"View Shortcuts": "View Shortcuts",
 | 
						"View Shortcuts": "શોર્ટકટ્સ જુઓ",
 | 
				
			||||||
	"Window": "Window",
 | 
						"Window": "વિન્ડો",
 | 
				
			||||||
	"Window Shortcuts": "Window Shortcuts",
 | 
						"Window Shortcuts": "વિન્ડો શોર્ટકટ્સ",
 | 
				
			||||||
	"YES": "YES",
 | 
						"YES": "હા",
 | 
				
			||||||
	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.",
 | 
						"You can select a maximum of 3 languages for spellchecking.": "તમે સ્પેલચેક માટે મહત્તમ 3 ભાષાઓ પસંદ કરી શકો છો.",
 | 
				
			||||||
	"Zoom In": "Zoom In",
 | 
						"Zoom In": "ઝૂમ ઇન",
 | 
				
			||||||
	"Zoom Out": "Zoom Out",
 | 
						"Zoom Out": "ઝૂમ આઉટ",
 | 
				
			||||||
	"keyboard shortcuts": "keyboard shortcuts",
 | 
						"keyboard shortcuts": "કીબોર્ડ શોર્ટકટ્સ",
 | 
				
			||||||
	"script": "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,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"
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -11,7 +11,7 @@
 | 
				
			|||||||
	"App Updates": "Aggiornamenti App",
 | 
						"App Updates": "Aggiornamenti App",
 | 
				
			||||||
	"App language (requires restart)": "Lingua applicazione (richiede riavvio)",
 | 
						"App language (requires restart)": "Lingua applicazione (richiede riavvio)",
 | 
				
			||||||
	"Appearance": "Aspetto",
 | 
						"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 you want to disconnect this organization?": "Sei sicuro di volerti scollegare da questa organizzazione?",
 | 
				
			||||||
	"Ask where to save files before downloading": "Chiedi dove salvare i file prima di scaricarli",
 | 
						"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": "Nascondi automaticamente la barra del Menù",
 | 
				
			||||||
@@ -60,7 +60,7 @@
 | 
				
			|||||||
	"Hide Zulip": "Nascondi Zulip",
 | 
						"Hide Zulip": "Nascondi Zulip",
 | 
				
			||||||
	"History": "Storico",
 | 
						"History": "Storico",
 | 
				
			||||||
	"History Shortcuts": "Cronologia Scorciatoie",
 | 
						"History Shortcuts": "Cronologia Scorciatoie",
 | 
				
			||||||
	"Keyboard Shortcuts": "Scorciatoie Tastiera",
 | 
						"Keyboard Shortcuts": "Scorciatoie tastiera",
 | 
				
			||||||
	"Log Out": "Esci",
 | 
						"Log Out": "Esci",
 | 
				
			||||||
	"Log Out of Organization": "Esci dall'organizzazione",
 | 
						"Log Out of Organization": "Esci dall'organizzazione",
 | 
				
			||||||
	"Manual proxy configuration": "Configurazione proxy manuale",
 | 
						"Manual proxy configuration": "Configurazione proxy manuale",
 | 
				
			||||||
@@ -116,8 +116,8 @@
 | 
				
			|||||||
	"View": "Visualizza",
 | 
						"View": "Visualizza",
 | 
				
			||||||
	"View Shortcuts": "Visualizza Scorciatoie",
 | 
						"View Shortcuts": "Visualizza Scorciatoie",
 | 
				
			||||||
	"Window": "Finestra",
 | 
						"Window": "Finestra",
 | 
				
			||||||
	"Window Shortcuts": "Scorciatoie Finestra",
 | 
						"Window Shortcuts": "Scorciatoie finestra",
 | 
				
			||||||
	"YES": "SI",
 | 
						"YES": "SÌ",
 | 
				
			||||||
	"You can select a maximum of 3 languages for spellchecking.": "Puoi selezionare fino ad un massimo di 3 lingue per il correttore ortografico",
 | 
						"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 In": "Ingrandisci",
 | 
				
			||||||
	"Zoom Out": "Riduci",
 | 
						"Zoom Out": "Riduci",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Zulip からのすべてのサウンドをミュート",
 | 
						"Mute all sounds from Zulip": "Zulip からのすべてのサウンドをミュート",
 | 
				
			||||||
	"NO": "いいえ",
 | 
						"NO": "いいえ",
 | 
				
			||||||
	"Network": "ネットワーク",
 | 
						"Network": "ネットワーク",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "ネットワークとプロキシ",
 | 
				
			||||||
	"OR": "または",
 | 
						"OR": "または",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "macOSでは、OSのスペルチェックが使用されます。",
 | 
						"On macOS, the OS spellchecker is used.": "macOSでは、OSのスペルチェックが使用されます。",
 | 
				
			||||||
	"Organization URL": "組織のURL",
 | 
						"Organization URL": "組織のURL",
 | 
				
			||||||
@@ -86,7 +86,7 @@
 | 
				
			|||||||
	"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 the application, thus deleting all the connected organizations and accounts.": "アプリケーションをリセットし、接続されたすべての組織とアカウントを削除します。",
 | 
				
			||||||
	"Save": "保存",
 | 
						"Save": "保存",
 | 
				
			||||||
	"Select All": "すべて選択",
 | 
						"Select All": "すべて選択",
 | 
				
			||||||
	"Services": "サービス",
 | 
						"Services": "サービス",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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,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"
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "Voeg aangepaste CSS toe",
 | 
						"Add custom CSS": "Voeg aangepaste CSS toe",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "gevorderd",
 | 
						"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",
 | 
						"Always start minimized": "Begin altijd geminimaliseerd",
 | 
				
			||||||
	"App Updates": "App-updates",
 | 
						"App Updates": "App-updates",
 | 
				
			||||||
	"App language (requires restart)": "App language (requires restart)",
 | 
						"App language (requires restart)": "App language (requires restart)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "Applogs downloaden",
 | 
						"Download App Logs": "Applogs downloaden",
 | 
				
			||||||
	"Edit": "Bewerk",
 | 
						"Edit": "Bewerk",
 | 
				
			||||||
	"Edit Shortcuts": "Bewerk snelkoppelingen",
 | 
						"Edit Shortcuts": "Bewerk snelkoppelingen",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emoji's & Symbolen",
 | 
				
			||||||
	"Enable auto updates": "Schakel automatische updates in",
 | 
						"Enable auto updates": "Schakel automatische updates in",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Foutrapportage inschakelen (opnieuw opstarten vereist)",
 | 
						"Enable error reporting (requires restart)": "Foutrapportage inschakelen (opnieuw opstarten vereist)",
 | 
				
			||||||
	"Enable spellchecker (requires restart)": "Spellingcontrole 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",
 | 
				
			||||||
	"Factory Reset": "Fabrieksinstellingen",
 | 
						"Factory Reset": "Fabrieksinstellingen",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "Factory Reset Data",
 | 
				
			||||||
	"File": "het dossier",
 | 
						"File": "het dossier",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Helpcentrum",
 | 
						"Help Center": "Helpcentrum",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Hide",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Hide Others",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Zulip verbergen",
 | 
				
			||||||
	"History": "Geschiedenis",
 | 
						"History": "Geschiedenis",
 | 
				
			||||||
	"History Shortcuts": "Geschiedenis Sneltoetsen",
 | 
						"History Shortcuts": "Geschiedenis Sneltoetsen",
 | 
				
			||||||
	"Keyboard Shortcuts": "Toetsenbord sneltoetsen",
 | 
						"Keyboard Shortcuts": "Toetsenbord sneltoetsen",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Demp alle geluiden van Zulip",
 | 
						"Mute all sounds from Zulip": "Demp alle geluiden van Zulip",
 | 
				
			||||||
	"NO": "NEE",
 | 
						"NO": "NEE",
 | 
				
			||||||
	"Network": "Netwerk",
 | 
						"Network": "Netwerk",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Netwerk- en Proxyinstellingen",
 | 
				
			||||||
	"OR": "OF",
 | 
						"OR": "OF",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "Organisatie-URL",
 | 
						"Organization URL": "Organisatie-URL",
 | 
				
			||||||
@@ -85,8 +85,8 @@
 | 
				
			|||||||
	"Release Notes": "Releaseopmerkingen",
 | 
						"Release Notes": "Releaseopmerkingen",
 | 
				
			||||||
	"Reload": "vernieuwen",
 | 
						"Reload": "vernieuwen",
 | 
				
			||||||
	"Report an Issue": "Een probleem melden",
 | 
						"Report an Issue": "Een probleem melden",
 | 
				
			||||||
	"Reset App Settings": "Reset App Settings",
 | 
						"Reset App Settings": "Instellingen resetten",
 | 
				
			||||||
	"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.": "De applicatie resetten en daarmee alle verbonden organisaties en accounts verwijderen.",
 | 
				
			||||||
	"Save": "Opslaan",
 | 
						"Save": "Opslaan",
 | 
				
			||||||
	"Select All": "Selecteer alles",
 | 
						"Select All": "Selecteer alles",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "Services",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Uitzoomen",
 | 
						"Zoom Out": "Uitzoomen",
 | 
				
			||||||
	"keyboard shortcuts": "Toetsenbord sneltoetsen",
 | 
						"keyboard shortcuts": "Toetsenbord sneltoetsen",
 | 
				
			||||||
	"script": "script",
 | 
						"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,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."
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -4,12 +4,12 @@
 | 
				
			|||||||
	"Add Organization": "Dodaj organizację",
 | 
						"Add Organization": "Dodaj organizację",
 | 
				
			||||||
	"Add a Zulip organization": "Dodaj organizację Zulip",
 | 
						"Add a Zulip organization": "Dodaj organizację Zulip",
 | 
				
			||||||
	"Add custom CSS": "Dodaj niestandardowy CSS",
 | 
						"Add custom CSS": "Dodaj niestandardowy CSS",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "Dodaj serwer",
 | 
				
			||||||
	"Advanced": "zaawansowane",
 | 
						"Advanced": "zaawansowane",
 | 
				
			||||||
	"All the connected organizations will appear here.": "All the connected organizations will appear here.",
 | 
						"All the connected organizations will appear here.": "Wszystkie podłączone organizację pojawią się tutaj.",
 | 
				
			||||||
	"Always start minimized": "Zawsze zaczynaj zminimalizowany",
 | 
						"Always start minimized": "Zawsze zaczynaj zminimalizowany",
 | 
				
			||||||
	"App Updates": "Aktualizacje aplikacji",
 | 
						"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",
 | 
						"Appearance": "Wygląd",
 | 
				
			||||||
	"Application Shortcuts": "Skróty do aplikacji",
 | 
						"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 you want to disconnect this organization?": "Czy na pewno chcesz odłączyć tę organizację?",
 | 
				
			||||||
@@ -19,10 +19,10 @@
 | 
				
			|||||||
	"Back": "Wstecz",
 | 
						"Back": "Wstecz",
 | 
				
			||||||
	"Bounce dock on new private message": "Dok odbijania na nowej prywatnej wiadomości",
 | 
						"Bounce dock on new private message": "Dok odbijania na nowej prywatnej wiadomości",
 | 
				
			||||||
	"Change": "Zmiana",
 | 
						"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",
 | 
						"Check for Updates": "Sprawdź aktualizacje",
 | 
				
			||||||
	"Close": "Zamknij",
 | 
						"Close": "Zamknij",
 | 
				
			||||||
	"Connect": "Połączyć",
 | 
						"Connect": "Połącz",
 | 
				
			||||||
	"Connect to another organization": "Połącz się z inną organizacją",
 | 
						"Connect to another organization": "Połącz się z inną organizacją",
 | 
				
			||||||
	"Connected organizations": "Połączone organizacje",
 | 
						"Connected organizations": "Połączone organizacje",
 | 
				
			||||||
	"Copy": "Kopiuj",
 | 
						"Copy": "Kopiuj",
 | 
				
			||||||
@@ -37,17 +37,17 @@
 | 
				
			|||||||
	"Download App Logs": "Pobierz logi aplikacji",
 | 
						"Download App Logs": "Pobierz logi aplikacji",
 | 
				
			||||||
	"Edit": "Edytuj",
 | 
						"Edit": "Edytuj",
 | 
				
			||||||
	"Edit Shortcuts": "Edytuj skróty",
 | 
						"Edit Shortcuts": "Edytuj skróty",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emotikonki i Symbole",
 | 
				
			||||||
	"Enable auto updates": "Włącz automatyczne aktualizacje",
 | 
						"Enable auto updates": "Włącz automatyczne aktualizacje",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Włącz raportowanie błędów (wymaga ponownego uruchomienia)",
 | 
						"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)",
 | 
						"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",
 | 
				
			||||||
	"Factory Reset": "przywrócenie ustawień fabrycznych",
 | 
						"Factory Reset": "przywrócenie ustawień fabrycznych",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "Factory Reset Data",
 | 
				
			||||||
	"File": "Plik",
 | 
						"File": "Plik",
 | 
				
			||||||
	"Find accounts": "Znajdź konta",
 | 
						"Find accounts": "Znajdź konta",
 | 
				
			||||||
	"Find accounts by email": "Znajdź konta po adresach email",
 | 
						"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",
 | 
						"Forward": "Naprzód",
 | 
				
			||||||
	"Functionality": "Funkcjonalność",
 | 
						"Functionality": "Funkcjonalność",
 | 
				
			||||||
	"General": "Ogólne",
 | 
						"General": "Ogólne",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Centrum pomocy",
 | 
						"Help Center": "Centrum pomocy",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Hide",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Hide Others",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Ukryj Zulip",
 | 
				
			||||||
	"History": "Historia",
 | 
						"History": "Historia",
 | 
				
			||||||
	"History Shortcuts": "Skróty historii",
 | 
						"History Shortcuts": "Skróty historii",
 | 
				
			||||||
	"Keyboard Shortcuts": "Skróty klawiszowe",
 | 
						"Keyboard Shortcuts": "Skróty klawiszowe",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Wycisz wszystkie dźwięki z Zulipa",
 | 
						"Mute all sounds from Zulip": "Wycisz wszystkie dźwięki z Zulipa",
 | 
				
			||||||
	"NO": "NIE",
 | 
						"NO": "NIE",
 | 
				
			||||||
	"Network": "Sieć",
 | 
						"Network": "Sieć",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Ustawienia sieci i proxy",
 | 
				
			||||||
	"OR": "LUB",
 | 
						"OR": "LUB",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "Adres URL organizacji",
 | 
						"Organization URL": "Adres URL organizacji",
 | 
				
			||||||
@@ -79,24 +79,24 @@
 | 
				
			|||||||
	"Proxy bypass rules": "Zasady omijania proxy",
 | 
						"Proxy bypass rules": "Zasady omijania proxy",
 | 
				
			||||||
	"Proxy rules": "Reguły proxy",
 | 
						"Proxy rules": "Reguły proxy",
 | 
				
			||||||
	"Quit": "Wyjdź",
 | 
						"Quit": "Wyjdź",
 | 
				
			||||||
	"Quit Zulip": "Wyjdź z Zulipa",
 | 
						"Quit Zulip": "Zakończ Zulipa",
 | 
				
			||||||
	"Quit when the window is closed": "Wyłącz przy zamykaniu okna",
 | 
						"Quit when the window is closed": "Wyłącz przy zamykaniu okna",
 | 
				
			||||||
	"Redo": "Ponów",
 | 
						"Redo": "Ponów",
 | 
				
			||||||
	"Release Notes": "Informacje o wydaniu",
 | 
						"Release Notes": "Informacje o wydaniu",
 | 
				
			||||||
	"Reload": "Przeładuj",
 | 
						"Reload": "Przeładuj",
 | 
				
			||||||
	"Report an Issue": "Zgłoś problem",
 | 
						"Report an Issue": "Zgłoś problem",
 | 
				
			||||||
	"Reset App Settings": "Resetuj ustawienia aplikacji",
 | 
						"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",
 | 
						"Save": "Zapisz",
 | 
				
			||||||
	"Select All": "Zaznacz wszystko",
 | 
						"Select All": "Zaznacz wszystko",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "Usługi",
 | 
				
			||||||
	"Settings": "Ustawienia",
 | 
						"Settings": "Ustawienia",
 | 
				
			||||||
	"Shortcuts": "Skróty",
 | 
						"Shortcuts": "Skróty",
 | 
				
			||||||
	"Show app icon in system tray": "Pokaż ikonę aplikacji w zasobniku systemowym",
 | 
						"Show app icon in system tray": "Pokaż ikonę aplikacji w zasobniku systemowym",
 | 
				
			||||||
	"Show app unread badge": "Pokaż nieprzeczytane na ikonie aplikacji",
 | 
						"Show app unread badge": "Pokaż nieprzeczytane na ikonie aplikacji",
 | 
				
			||||||
	"Show desktop notifications": "Pokaż powiadomienia na pulpicie",
 | 
						"Show desktop notifications": "Pokaż powiadomienia na pulpicie",
 | 
				
			||||||
	"Show sidebar": "Pokaż pasek boczny",
 | 
						"Show sidebar": "Pokaż pasek boczny",
 | 
				
			||||||
	"Spellchecker Languages": "Spellchecker Languages",
 | 
						"Spellchecker Languages": "Języki sprawdzania pisowni",
 | 
				
			||||||
	"Start app at login": "Uruchom aplikację przy logowaniu",
 | 
						"Start app at login": "Uruchom aplikację przy logowaniu",
 | 
				
			||||||
	"Switch to Next Organization": "Przełącz na następną organizację",
 | 
						"Switch to Next Organization": "Przełącz na następną organizację",
 | 
				
			||||||
	"Switch to Previous Organization": "Przełącz na poprzednią organizację",
 | 
						"Switch to Previous Organization": "Przełącz na poprzednią organizację",
 | 
				
			||||||
@@ -110,18 +110,18 @@
 | 
				
			|||||||
	"Toggle Tray Icon": "Przełącz ikonę tacy",
 | 
						"Toggle Tray Icon": "Przełącz ikonę tacy",
 | 
				
			||||||
	"Tools": "Narzędzia",
 | 
						"Tools": "Narzędzia",
 | 
				
			||||||
	"Undo": "Cofnij",
 | 
						"Undo": "Cofnij",
 | 
				
			||||||
	"Unhide": "Unhide",
 | 
						"Unhide": "Odkryj",
 | 
				
			||||||
	"Upload": "Przekazać plik",
 | 
						"Upload": "Prześlij plik",
 | 
				
			||||||
	"Use system proxy settings (requires restart)": "Użyj ustawień systemowych proxy (wymaga restartu aplikacji)",
 | 
						"Use system proxy settings (requires restart)": "Użyj ustawień systemowych proxy (wymaga ponownego uruchomienia)",
 | 
				
			||||||
	"View": "Widok",
 | 
						"View": "Widok",
 | 
				
			||||||
	"View Shortcuts": "Wyświetl skróty",
 | 
						"View Shortcuts": "Wyświetl skróty",
 | 
				
			||||||
	"Window": "Okno",
 | 
						"Window": "Okno",
 | 
				
			||||||
	"Window Shortcuts": "Skróty do okien",
 | 
						"Window Shortcuts": "Skróty do okien",
 | 
				
			||||||
	"YES": "TAK",
 | 
						"YES": "TAK",
 | 
				
			||||||
	"You can select a maximum of 3 languages for spellchecking.": "You can select a maximum of 3 languages for spellchecking.",
 | 
						"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 In": "Powiększ",
 | 
				
			||||||
	"Zoom Out": "Pomniejsz",
 | 
						"Zoom Out": "Pomniejsz",
 | 
				
			||||||
	"keyboard shortcuts": "Skróty klawiszowe",
 | 
						"keyboard shortcuts": "Skróty klawiszowe",
 | 
				
			||||||
	"script": "skrypt",
 | 
						"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."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,19 +4,19 @@
 | 
				
			|||||||
	"Add Organization": "Adicionar Organização",
 | 
						"Add Organization": "Adicionar Organização",
 | 
				
			||||||
	"Add a Zulip organization": "Adicione uma organização Zulip",
 | 
						"Add a Zulip organization": "Adicione uma organização Zulip",
 | 
				
			||||||
	"Add custom CSS": "Adicionar CSS personalizado",
 | 
						"Add custom CSS": "Adicionar CSS personalizado",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "Adicionar Servidor",
 | 
				
			||||||
	"Advanced": "Avançado",
 | 
						"Advanced": "Avançado",
 | 
				
			||||||
	"All the connected organizations will appear here.": "Todas as organizações conectadas aparecerão aqui.",
 | 
						"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 Updates": "Atualizações de aplicativos",
 | 
				
			||||||
	"App language (requires restart)": "App language (requires restart)",
 | 
						"App language (requires restart)": "Idioma da Aplicação (requer reinício)",
 | 
				
			||||||
	"Appearance": "Aparência",
 | 
						"Appearance": "Aparência",
 | 
				
			||||||
	"Application Shortcuts": "Atalhos de aplicativos",
 | 
						"Application Shortcuts": "Atalhos de aplicativos",
 | 
				
			||||||
	"Are you sure you want to disconnect this organization?": "Tem certeza de que deseja desconectar essa organização?",
 | 
						"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",
 | 
						"Ask where to save files before downloading": "Perguntar onde salvar arquivos antes de transferir",
 | 
				
			||||||
	"Auto hide Menu bar": "Auto ocultar barra de Menu",
 | 
						"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)",
 | 
						"Auto hide menu bar (Press Alt key to display)": "Ocultar barra de menu automaticamente (pressione a tecla Alt para exibir)",
 | 
				
			||||||
	"Back": "De volta",
 | 
						"Back": "Voltar",
 | 
				
			||||||
	"Bounce dock on new private message": "Bounce doca em nova mensagem privada",
 | 
						"Bounce dock on new private message": "Bounce doca em nova mensagem privada",
 | 
				
			||||||
	"Change": "mudança",
 | 
						"Change": "mudança",
 | 
				
			||||||
	"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.": "Change the language from System Preferences → Keyboard → Text → Spelling.",
 | 
				
			||||||
@@ -53,7 +53,7 @@
 | 
				
			|||||||
	"General": "Geral",
 | 
						"General": "Geral",
 | 
				
			||||||
	"Get beta updates": "Receba atualizações beta",
 | 
						"Get beta updates": "Receba atualizações beta",
 | 
				
			||||||
	"Hard Reload": "Hard Reload",
 | 
						"Hard Reload": "Hard Reload",
 | 
				
			||||||
	"Help": "Socorro",
 | 
						"Help": "Ajuda",
 | 
				
			||||||
	"Help Center": "Centro de ajuda",
 | 
						"Help Center": "Centro de ajuda",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Hide",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Hide Others",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,22 +4,22 @@
 | 
				
			|||||||
	"Add Organization": "Adicionar Organização",
 | 
						"Add Organization": "Adicionar Organização",
 | 
				
			||||||
	"Add a Zulip organization": "Adicionar uma organização Zulip",
 | 
						"Add a Zulip organization": "Adicionar uma organização Zulip",
 | 
				
			||||||
	"Add custom CSS": "Adicionar CSS próprio",
 | 
						"Add custom CSS": "Adicionar CSS próprio",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "Adicionar servidor",
 | 
				
			||||||
	"Advanced": "Avançadas",
 | 
						"Advanced": "Avançadas",
 | 
				
			||||||
	"All the connected organizations will appear here.": "Todas as organizações conectadas aparecerão aqui.",
 | 
						"All the connected organizations will appear here.": "Todas as organizações conectadas aparecerão aqui.",
 | 
				
			||||||
	"Always start minimized": "Iniciar minimizado",
 | 
						"Always start minimized": "Iniciar minimizado",
 | 
				
			||||||
	"App Updates": "Atualizações da App",
 | 
						"App Updates": "Atualizações da Aplicação",
 | 
				
			||||||
	"App language (requires restart)": "Idioma da App (requer reinício)",
 | 
						"App language (requires restart)": "Idioma da Aplicação (requer reinício)",
 | 
				
			||||||
	"Appearance": "Aspecto",
 | 
						"Appearance": "Aspecto",
 | 
				
			||||||
	"Application Shortcuts": "Atalhos da App",
 | 
						"Application Shortcuts": "Atalhos da Aplicação",
 | 
				
			||||||
	"Are you sure you want to disconnect this organization?": "Tem certeza de que quer desconectar esta organização?",
 | 
						"Are you sure you want to disconnect this organization?": "Tem a certeza que quer desconectar esta organização?",
 | 
				
			||||||
	"Ask where to save files before downloading": "Perguntar onde guardar ficheiros antes de transferir",
 | 
						"Ask where to save files before downloading": "Perguntar onde guardar ficheiros antes de transferir",
 | 
				
			||||||
	"Auto hide Menu bar": "Auto-ocultar barra de Menu",
 | 
						"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 exibir)",
 | 
				
			||||||
	"Back": "Voltar",
 | 
						"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",
 | 
				
			||||||
	"Change": "Alterar",
 | 
						"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",
 | 
						"Check for Updates": "Procurar Atualizações",
 | 
				
			||||||
	"Close": "Fechar",
 | 
						"Close": "Fechar",
 | 
				
			||||||
	"Connect": "Conectar",
 | 
						"Connect": "Conectar",
 | 
				
			||||||
@@ -31,28 +31,28 @@
 | 
				
			|||||||
	"Cut": "Cortar",
 | 
						"Cut": "Cortar",
 | 
				
			||||||
	"Default download location": "Pasta de transferências predefinida",
 | 
						"Default download location": "Pasta de transferências predefinida",
 | 
				
			||||||
	"Delete": "Apagar",
 | 
						"Delete": "Apagar",
 | 
				
			||||||
	"Desktop Notifications": "Notificações de Desktop",
 | 
						"Desktop Notifications": "Notificações de ambiente de trabalho",
 | 
				
			||||||
	"Desktop Settings": "Definições de Desktop",
 | 
						"Desktop Settings": "Definições de ambiente de trabalho",
 | 
				
			||||||
	"Disconnect": "Desconectar",
 | 
						"Disconnect": "Desconectar",
 | 
				
			||||||
	"Download App Logs": "Transferir Relatórios da App",
 | 
						"Download App Logs": "Transferir relatórios da aplicação",
 | 
				
			||||||
	"Edit": "Editar",
 | 
						"Edit": "Editar",
 | 
				
			||||||
	"Edit Shortcuts": "Editar Atalhos",
 | 
						"Edit Shortcuts": "Editar atalhos",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji e Símbolos",
 | 
						"Emoji & Symbols": "Emoji e Símbolos",
 | 
				
			||||||
	"Enable auto updates": "Permitir atualizações automáticas",
 | 
						"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)",
 | 
						"Enable spellchecker (requires restart)": "Ativar corretor ortográfico (requer reinício)",
 | 
				
			||||||
	"Enter Full Screen": "Entrar em Ecrã Inteiro",
 | 
						"Enter Full Screen": "Entrar em modo de Ecrã Completo",
 | 
				
			||||||
	"Factory Reset": "Restauro de Fábrica",
 | 
						"Factory Reset": "Restauro de fábrica",
 | 
				
			||||||
	"Factory Reset Data": "Restauro de Dados",
 | 
						"Factory Reset Data": "Restaurar dados de fábrica",
 | 
				
			||||||
	"File": "Ficheiro",
 | 
						"File": "Ficheiro",
 | 
				
			||||||
	"Find accounts": "Encontrar contas",
 | 
						"Find accounts": "Encontrar contas",
 | 
				
			||||||
	"Find accounts by email": "Encontrar contas por e-mail",
 | 
						"Find accounts by email": "Encontrar contas através de e-mail",
 | 
				
			||||||
	"Flash taskbar on new message": "Piscar a barra de tarefas ao receber nova mensagem",
 | 
						"Flash taskbar on new message": "Piscar a barra de tarefas ao receber nova mensagem",
 | 
				
			||||||
	"Forward": "Avançar",
 | 
						"Forward": "Avançar",
 | 
				
			||||||
	"Functionality": "Funcionalidade",
 | 
						"Functionality": "Funcionalidade",
 | 
				
			||||||
	"General": "Geral",
 | 
						"General": "Geral",
 | 
				
			||||||
	"Get beta updates": "Atualizações de Betas",
 | 
						"Get beta updates": "Atualizações Beta",
 | 
				
			||||||
	"Hard Reload": "Recarregar Forçado",
 | 
						"Hard Reload": "Forçar recarregamento",
 | 
				
			||||||
	"Help": "Ajuda",
 | 
						"Help": "Ajuda",
 | 
				
			||||||
	"Help Center": "Centro de Ajuda",
 | 
						"Help Center": "Centro de Ajuda",
 | 
				
			||||||
	"Hide": "Ocultar",
 | 
						"Hide": "Ocultar",
 | 
				
			||||||
@@ -63,9 +63,9 @@
 | 
				
			|||||||
	"Keyboard Shortcuts": "Atalhos de Teclado",
 | 
						"Keyboard Shortcuts": "Atalhos de Teclado",
 | 
				
			||||||
	"Log Out": "Terminar Sessão",
 | 
						"Log Out": "Terminar Sessão",
 | 
				
			||||||
	"Log Out of Organization": "Terminar Sessão na Organização",
 | 
						"Log Out of Organization": "Terminar Sessão na Organização",
 | 
				
			||||||
	"Manual proxy configuration": "Configurar proxy manualmente",
 | 
						"Manual proxy configuration": "Configurar proxy manual",
 | 
				
			||||||
	"Minimize": "Minimizar",
 | 
						"Minimize": "Minimizar",
 | 
				
			||||||
	"Mute all sounds from Zulip": "Silenciar Sons do Zulip",
 | 
						"Mute all sounds from Zulip": "Silenciar todos os sons do Zulip",
 | 
				
			||||||
	"NO": "NÃO",
 | 
						"NO": "NÃO",
 | 
				
			||||||
	"Network": "Rede",
 | 
						"Network": "Rede",
 | 
				
			||||||
	"Network and Proxy Settings": "Definições de Rede e Proxy",
 | 
						"Network and Proxy Settings": "Definições de Rede e Proxy",
 | 
				
			||||||
@@ -85,25 +85,25 @@
 | 
				
			|||||||
	"Release Notes": "Notas de publicação",
 | 
						"Release Notes": "Notas de publicação",
 | 
				
			||||||
	"Reload": "Recarregar",
 | 
						"Reload": "Recarregar",
 | 
				
			||||||
	"Report an Issue": "Comunicar um Problema",
 | 
						"Report an Issue": "Comunicar um Problema",
 | 
				
			||||||
	"Reset App Settings": "Restaurar Definições da App",
 | 
						"Reset App Settings": "Reinicializar definições da aplicação",
 | 
				
			||||||
	"Reset the application, thus deleting all the connected organizations and accounts.": "Restaurar a aplicação, assim apagando todas as organizações e contas conectadas.",
 | 
						"Reset the application, thus deleting all the connected organizations and accounts.": "Reinicializar a aplicação, assim apagando todas as organizações e contas conectadas.",
 | 
				
			||||||
	"Save": "Guardar",
 | 
						"Save": "Guardar",
 | 
				
			||||||
	"Select All": "Seleccionar Tudo",
 | 
						"Select All": "Selecionar tudo",
 | 
				
			||||||
	"Services": "Serviços",
 | 
						"Services": "Serviços",
 | 
				
			||||||
	"Settings": "Definições",
 | 
						"Settings": "Definições",
 | 
				
			||||||
	"Shortcuts": "Atalhos",
 | 
						"Shortcuts": "Atalhos",
 | 
				
			||||||
	"Show app icon in system tray": "Ver ícone da app na bandeja de sistema",
 | 
						"Show app icon in system tray": "Ver ícone da aplicação na bandeja de sistema",
 | 
				
			||||||
	"Show app unread badge": "Ver emblema de mensagens não lidas",
 | 
						"Show app unread badge": "Ver emblema de mensagens não lidas",
 | 
				
			||||||
	"Show desktop notifications": "Ver notificações de desktop",
 | 
						"Show desktop notifications": "Ver notificações de ambiente de trabalho",
 | 
				
			||||||
	"Show sidebar": "Ver barra lateral",
 | 
						"Show sidebar": "Ver barra lateral",
 | 
				
			||||||
	"Spellchecker Languages": "Idiomas com Verificação Ortográfica",
 | 
						"Spellchecker Languages": "Idiomas com verificação ortográfica",
 | 
				
			||||||
	"Start app at login": "Iniciar App com o sistema",
 | 
						"Start app at login": "Iniciar aplicação no arranque do sistema",
 | 
				
			||||||
	"Switch to Next Organization": "Trocar para Organização Seguinte",
 | 
						"Switch to Next Organization": "Passar à organização seguinte",
 | 
				
			||||||
	"Switch to Previous Organization": "Trocar para Organização Anterior",
 | 
						"Switch to Previous Organization": "Passar à organização anterior",
 | 
				
			||||||
	"These desktop app shortcuts extend the Zulip webapp's": "Estes atalhos da app desktop expandem os da webapp do Zulip",
 | 
						"These desktop app shortcuts extend the Zulip webapp's": "Estes atalhos da aplicação de ambiente de trabalho expandem os da aplicação web do Zulip",
 | 
				
			||||||
	"Tip": "Dica",
 | 
						"Tip": "Dica",
 | 
				
			||||||
	"Toggle DevTools for Active Tab": "DevTools para o Separador Ativo",
 | 
						"Toggle DevTools for Active Tab": "Ferramentas de programador para o separador ativo",
 | 
				
			||||||
	"Toggle DevTools for Zulip App": "DevTools para a App Zulip",
 | 
						"Toggle DevTools for Zulip App": "Ferramentas de programador para a aplicação Zulip",
 | 
				
			||||||
	"Toggle Do Not Disturb": "Não Incomodar",
 | 
						"Toggle Do Not Disturb": "Não Incomodar",
 | 
				
			||||||
	"Toggle Full Screen": "Ecrã Completo",
 | 
						"Toggle Full Screen": "Ecrã Completo",
 | 
				
			||||||
	"Toggle Sidebar": "Barra Lateral",
 | 
						"Toggle Sidebar": "Barra Lateral",
 | 
				
			||||||
@@ -114,14 +114,14 @@
 | 
				
			|||||||
	"Upload": "Carregar",
 | 
						"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 definições de proxy do sistema (requer reinício)",
 | 
				
			||||||
	"View": "Ver",
 | 
						"View": "Ver",
 | 
				
			||||||
	"View Shortcuts": "Atalhos de Visualização",
 | 
						"View Shortcuts": "Atalhos de visualização",
 | 
				
			||||||
	"Window": "Janela",
 | 
						"Window": "Janela",
 | 
				
			||||||
	"Window Shortcuts": "Atalhos de Janela",
 | 
						"Window Shortcuts": "Atalhos de janela",
 | 
				
			||||||
	"YES": "SIM",
 | 
						"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.",
 | 
						"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 In": "Ampliar",
 | 
				
			||||||
	"Zoom Out": "Reduzir",
 | 
						"Zoom Out": "Reduzir",
 | 
				
			||||||
	"keyboard shortcuts": "atalhos de teclado",
 | 
						"keyboard shortcuts": "atalhos de teclado",
 | 
				
			||||||
	"script": "script",
 | 
						"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 corretamante com esta aplicação."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "Adaugă un CSS personalizat",
 | 
						"Add custom CSS": "Adaugă un CSS personalizat",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "Avansat",
 | 
						"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",
 | 
						"Always start minimized": "Pornește întotdeauna micșorat",
 | 
				
			||||||
	"App Updates": "Actualizările aplicației",
 | 
						"App Updates": "Actualizările aplicației",
 | 
				
			||||||
	"App language (requires restart)": "Limba aplicației (necesită restart)",
 | 
						"App language (requires restart)": "Limba aplicației (necesită restart)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "Descarcă Log-urile Aplicației",
 | 
						"Download App Logs": "Descarcă Log-urile Aplicației",
 | 
				
			||||||
	"Edit": "Modifică",
 | 
						"Edit": "Modifică",
 | 
				
			||||||
	"Edit Shortcuts": "Modifică scurtăturile",
 | 
						"Edit Shortcuts": "Modifică scurtăturile",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "Emoji și simboluri",
 | 
				
			||||||
	"Enable auto updates": "Activează actualizări automate",
 | 
						"Enable auto updates": "Activează actualizări automate",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Activează raportarea erorilor (necesită repornire)",
 | 
						"Enable error reporting (requires restart)": "Activează raportarea erorilor (necesită repornire)",
 | 
				
			||||||
	"Enable spellchecker (requires restart)": "Activați verificatorul ortografic (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",
 | 
				
			||||||
	"Factory Reset": "Resetare din fabrică",
 | 
						"Factory Reset": "Resetare din fabrică",
 | 
				
			||||||
	"Factory Reset Data": "Resetează la setările de bază",
 | 
						"Factory Reset Data": "Resetează la setările de bază",
 | 
				
			||||||
	"File": "Fișier",
 | 
						"File": "Fișier",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Centru de ajutor",
 | 
						"Help Center": "Centru de ajutor",
 | 
				
			||||||
	"Hide": "Ascunde",
 | 
						"Hide": "Ascunde",
 | 
				
			||||||
	"Hide Others": "Ascunde pe ceilalți",
 | 
						"Hide Others": "Ascunde pe ceilalți",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Ascunde Zulip",
 | 
				
			||||||
	"History": "Istorie",
 | 
						"History": "Istorie",
 | 
				
			||||||
	"History Shortcuts": "Scurtături istorie",
 | 
						"History Shortcuts": "Scurtături istorie",
 | 
				
			||||||
	"Keyboard Shortcuts": "Scurtături tastatură",
 | 
						"Keyboard Shortcuts": "Scurtături tastatură",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Marchează totul din Zulip - fără alerte sonore",
 | 
						"Mute all sounds from Zulip": "Marchează totul din Zulip - fără alerte sonore",
 | 
				
			||||||
	"NO": "NU",
 | 
						"NO": "NU",
 | 
				
			||||||
	"Network": "Rețea",
 | 
						"Network": "Rețea",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Rețele și setări de proxy",
 | 
				
			||||||
	"OR": "SAU",
 | 
						"OR": "SAU",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "Pe macOS, este folosita verificarea ortografică OS. ",
 | 
						"On macOS, the OS spellchecker is used.": "Pe macOS, este folosita verificarea ortografică OS. ",
 | 
				
			||||||
	"Organization URL": "URL-ul organizației",
 | 
						"Organization URL": "URL-ul organizației",
 | 
				
			||||||
@@ -86,7 +86,7 @@
 | 
				
			|||||||
	"Reload": "Reîncarcă",
 | 
						"Reload": "Reîncarcă",
 | 
				
			||||||
	"Report an Issue": "Raportează o Problemă",
 | 
						"Report an Issue": "Raportează o Problemă",
 | 
				
			||||||
	"Reset App Settings": "Resetează Setările Aplicației",
 | 
						"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ă",
 | 
						"Save": "Salvează",
 | 
				
			||||||
	"Select All": "Selectează Tot",
 | 
						"Select All": "Selectează Tot",
 | 
				
			||||||
	"Services": "Servicii",
 | 
						"Services": "Servicii",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Micșorează",
 | 
						"Zoom Out": "Micșorează",
 | 
				
			||||||
	"keyboard shortcuts": "scurtături tastatură",
 | 
						"keyboard shortcuts": "scurtături tastatură",
 | 
				
			||||||
	"script": "script",
 | 
						"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,21 +1,21 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	"About Zulip": "О Zulip",
 | 
						"About Zulip": "О Zulip",
 | 
				
			||||||
	"Actual Size": "Актуальный размер",
 | 
						"Actual Size": "Стандартный масштаб",
 | 
				
			||||||
	"Add Organization": "Добавить организацию",
 | 
						"Add Organization": "Добавить организацию",
 | 
				
			||||||
	"Add a Zulip organization": "Добавить организацию Zulip",
 | 
						"Add a Zulip organization": "Добавить организацию Zulip",
 | 
				
			||||||
	"Add custom CSS": "Добавить собственный CSS",
 | 
						"Add custom CSS": "Добавить собственный 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)": "Скрывать меню (для показа нажмите Alt)",
 | 
						"Auto hide menu bar (Press Alt key to display)": "Автоматически скрывать меню (для показа нажмите Alt)",
 | 
				
			||||||
	"Back": "Назад",
 | 
						"Back": "Назад",
 | 
				
			||||||
	"Bounce dock on new private message": "Показывать док при поступлении нового личного сообщения",
 | 
						"Bounce dock on new private message": "Показывать док при поступлении нового личного сообщения",
 | 
				
			||||||
	"Change": "Изменить",
 | 
						"Change": "Изменить",
 | 
				
			||||||
@@ -36,7 +36,7 @@
 | 
				
			|||||||
	"Disconnect": "Отключиться",
 | 
						"Disconnect": "Отключиться",
 | 
				
			||||||
	"Download App Logs": "Скачать логи приложения",
 | 
						"Download App Logs": "Скачать логи приложения",
 | 
				
			||||||
	"Edit": "Изменить",
 | 
						"Edit": "Изменить",
 | 
				
			||||||
	"Edit Shortcuts": "Редактировать горячие клавиши",
 | 
						"Edit Shortcuts": "Cочетания клавиш редактирования",
 | 
				
			||||||
	"Emoji & Symbols": "Эмодзи и символы",
 | 
						"Emoji & Symbols": "Эмодзи и символы",
 | 
				
			||||||
	"Enable auto updates": "Включить автообновление",
 | 
						"Enable auto updates": "Включить автообновление",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Включить сообщения об ошибках (потребуется перезапуск)",
 | 
						"Enable error reporting (requires restart)": "Включить сообщения об ошибках (потребуется перезапуск)",
 | 
				
			||||||
@@ -46,21 +46,21 @@
 | 
				
			|||||||
	"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": "Скрыть Zulip",
 | 
						"Hide Zulip": "Скрыть 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": "Ручная настройка прокси",
 | 
				
			||||||
@@ -80,28 +80,28 @@
 | 
				
			|||||||
	"Proxy rules": "Правила прокси",
 | 
						"Proxy rules": "Правила прокси",
 | 
				
			||||||
	"Quit": "Выход",
 | 
						"Quit": "Выход",
 | 
				
			||||||
	"Quit Zulip": "Выйти из Zulip",
 | 
						"Quit Zulip": "Выйти из 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": "Эти ярлыки приложения для рабочего стола дополняют функционал сетевого приложения Zulip",
 | 
						"These desktop app shortcuts extend the Zulip webapp's": "Эти сочетания клавиш для настольных приложений расширяют возможности веб-приложения Zulip",
 | 
				
			||||||
	"Tip": "Совет",
 | 
						"Tip": "Подсказка",
 | 
				
			||||||
	"Toggle DevTools for Active Tab": "Переключить инструменты разработчика для активной вкладки",
 | 
						"Toggle DevTools for Active Tab": "Переключить инструменты разработчика для активной вкладки",
 | 
				
			||||||
	"Toggle DevTools for Zulip App": "Переключить инструменты разработчика для приложения Zulip",
 | 
						"Toggle DevTools for Zulip App": "Переключить инструменты разработчика для приложения Zulip",
 | 
				
			||||||
	"Toggle Do Not Disturb": "Переключить режим \"не мешать\"",
 | 
						"Toggle Do Not Disturb": "Переключить режим \"не мешать\"",
 | 
				
			||||||
@@ -112,16 +112,16 @@
 | 
				
			|||||||
	"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.": "Вы можете выбрать не более 3-х языков для проверки орфографии.",
 | 
						"You can select a maximum of 3 languages for spellchecking.": "Вы можете выбрать не более 3-х языков для проверки орфографии.",
 | 
				
			||||||
	"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}}} использует устаревшую версию Zulip {{{version}}}. Приложение может работать не полностью."
 | 
						"{{{server}}} runs an outdated Zulip Server version {{{version}}}. It may not fully work in this app.": "{{{server}}} использует устаревшую версию Zulip {{{version}}}. Приложение может работать не полностью."
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "Додајте прилагођени ЦСС",
 | 
						"Add custom CSS": "Додајте прилагођени ЦСС",
 | 
				
			||||||
	"AddServer": "Додај сервер",
 | 
						"AddServer": "Додај сервер",
 | 
				
			||||||
	"Advanced": "Напредно",
 | 
						"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": "Увек започните минимизирано",
 | 
						"Always start minimized": "Увек започните минимизирано",
 | 
				
			||||||
	"App Updates": "Надоградње апликације",
 | 
						"App Updates": "Надоградње апликације",
 | 
				
			||||||
	"App language (requires restart)": "Језик апликације (захтева поновно покретање)",
 | 
						"App language (requires restart)": "Језик апликације (захтева поновно покретање)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "Преузмите записе апликације",
 | 
						"Download App Logs": "Преузмите записе апликације",
 | 
				
			||||||
	"Edit": "Уреди",
 | 
						"Edit": "Уреди",
 | 
				
			||||||
	"Edit Shortcuts": "Уреди пречице",
 | 
						"Edit Shortcuts": "Уреди пречице",
 | 
				
			||||||
	"Emoji & Symbols": "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",
 | 
						"Enter Full Screen": "Пређи у приказ преко целог екрана",
 | 
				
			||||||
	"Factory Reset": "Фабричко ресетовање",
 | 
						"Factory Reset": "Фабричко ресетовање",
 | 
				
			||||||
	"Factory Reset Data": "Фабрички ресетуј податке",
 | 
						"Factory Reset Data": "Фабрички ресетуј податке",
 | 
				
			||||||
	"File": "Датотека",
 | 
						"File": "Датотека",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Центар за помоћ",
 | 
						"Help Center": "Центар за помоћ",
 | 
				
			||||||
	"Hide": "Сакриј",
 | 
						"Hide": "Сакриј",
 | 
				
			||||||
	"Hide Others": "Сакриј остале",
 | 
						"Hide Others": "Сакриј остале",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Сакриј Зулип",
 | 
				
			||||||
	"History": "Историја",
 | 
						"History": "Историја",
 | 
				
			||||||
	"History Shortcuts": "Пречице историје",
 | 
						"History Shortcuts": "Пречице историје",
 | 
				
			||||||
	"Keyboard Shortcuts": "Пречице на тастатури",
 | 
						"Keyboard Shortcuts": "Пречице на тастатури",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"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": "Подешавања мреже и проксија",
 | 
				
			||||||
	"OR": "ИЛИ",
 | 
						"OR": "ИЛИ",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "На мекинтошу, користи се системска провера правописа.",
 | 
						"On macOS, the OS spellchecker is used.": "На мекинтошу, користи се системска провера правописа.",
 | 
				
			||||||
	"Organization URL": "Адреса организације",
 | 
						"Organization URL": "Адреса организације",
 | 
				
			||||||
@@ -85,8 +85,8 @@
 | 
				
			|||||||
	"Release Notes": "Белешке о издању",
 | 
						"Release Notes": "Белешке о издању",
 | 
				
			||||||
	"Reload": "Освежи",
 | 
						"Reload": "Освежи",
 | 
				
			||||||
	"Report an Issue": "Пријавите проблем",
 | 
						"Report an Issue": "Пријавите проблем",
 | 
				
			||||||
	"Reset App Settings": "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 the application, thus deleting all the connected organizations and accounts.": "Поништавање апликације, чиме ће се обрисати све повезане организације и налози.",
 | 
				
			||||||
	"Save": "Сачувај",
 | 
						"Save": "Сачувај",
 | 
				
			||||||
	"Select All": "Изабери све",
 | 
						"Select All": "Изабери све",
 | 
				
			||||||
	"Services": "Сервиси",
 | 
						"Services": "Сервиси",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"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,43 +1,54 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    "ar": "عربى",
 | 
					    "bqi": "Bakhtiari",
 | 
				
			||||||
    "bg": "български",
 | 
					    "ca": "Català",
 | 
				
			||||||
    "ca": "català",
 | 
					    "cs": "Čeština",
 | 
				
			||||||
    "cs": "česky",
 | 
					    "cy": "Cymraeg",
 | 
				
			||||||
    "da": "Dansk",
 | 
					    "da": "Dansk",
 | 
				
			||||||
    "de": "Deutsch",
 | 
					    "de": "Deutsch",
 | 
				
			||||||
    "el_GR": "Greek (Greece)",
 | 
					    "en_GB": "English (United Kingdom)",
 | 
				
			||||||
    "el": "Ελληνικά",
 | 
					    "en": "English (United States)",
 | 
				
			||||||
    "en_GB": "English (UK)",
 | 
					 | 
				
			||||||
    "en": "English (US)",
 | 
					 | 
				
			||||||
    "es": "Español",
 | 
					    "es": "Español",
 | 
				
			||||||
    "fa": "فارسی",
 | 
					    "eu": "Euskara",
 | 
				
			||||||
    "fi": "suomi",
 | 
					    "fr": "Français",
 | 
				
			||||||
    "fr": "français",
 | 
					 | 
				
			||||||
    "gl": "Galego",
 | 
					    "gl": "Galego",
 | 
				
			||||||
    "hi": "हिन्दी",
 | 
					    "hr": "Hrvatski",
 | 
				
			||||||
    "hr": "Croata",
 | 
					    "id": "Indonesia",
 | 
				
			||||||
    "hu": "Magyar",
 | 
					 | 
				
			||||||
    "id_ID": "Indonesian (Indonesia)",
 | 
					 | 
				
			||||||
    "it": "Italiano",
 | 
					    "it": "Italiano",
 | 
				
			||||||
    "ja": "日本語",
 | 
					    "lv": "Latviešu",
 | 
				
			||||||
    "ko": "한국어" ,
 | 
					    "lt": "Lietuvių",
 | 
				
			||||||
    "lt": "Lietuvis" ,
 | 
					    "hu": "Magyar",
 | 
				
			||||||
    "ml": "മലയാളം",
 | 
					 | 
				
			||||||
    "nb_NO": "norsk (Norge)",
 | 
					 | 
				
			||||||
    "nl": "Nederlands",
 | 
					    "nl": "Nederlands",
 | 
				
			||||||
 | 
					    "no": "Norsk",
 | 
				
			||||||
 | 
					    "uz": "O‘zbek",
 | 
				
			||||||
    "pl": "Polski",
 | 
					    "pl": "Polski",
 | 
				
			||||||
    "pt": "Português",
 | 
					    "pt": "Português",
 | 
				
			||||||
 | 
					    "pt_PT": "Português (Portugal)",
 | 
				
			||||||
    "ro": "Română",
 | 
					    "ro": "Română",
 | 
				
			||||||
    "ru": "Русский",
 | 
					    "sk": "Slovenčina",
 | 
				
			||||||
    "sk": "Slovak",
 | 
					    "fi": "Suomi",
 | 
				
			||||||
    "sr": "српски",
 | 
					    "sv": "Svenska",
 | 
				
			||||||
    "sv": "svenska",
 | 
					 | 
				
			||||||
    "ta": "தமிழ்",
 | 
					 | 
				
			||||||
    "tr": "Türkçe",
 | 
					 | 
				
			||||||
    "uk": "Українська",
 | 
					 | 
				
			||||||
    "uz": "O'zbek",
 | 
					 | 
				
			||||||
    "vi": "Tiếng Việt",
 | 
					    "vi": "Tiếng Việt",
 | 
				
			||||||
    "zh_TW": "中文 (傳統的)",
 | 
					    "tr": "Türkçe",
 | 
				
			||||||
    "zh-Hans": "简体中文",
 | 
					    "el": "Ελληνικά",
 | 
				
			||||||
    "zh-Hant": "繁體中文"
 | 
					    "el_GR": "Ελληνικά (Ελλάδα)",
 | 
				
			||||||
}
 | 
					    "be": "Беларуская",
 | 
				
			||||||
 | 
					    "bg": "Български",
 | 
				
			||||||
 | 
					    "mn": "Монгол",
 | 
				
			||||||
 | 
					    "ru": "Русский",
 | 
				
			||||||
 | 
					    "sr": "Српски",
 | 
				
			||||||
 | 
					    "uk": "Українська",
 | 
				
			||||||
 | 
					    "ar": "العربية",
 | 
				
			||||||
 | 
					    "fa": "فارسی",
 | 
				
			||||||
 | 
					    "hi": "हिन्दी",
 | 
				
			||||||
 | 
					    "bn": "বাংলা",
 | 
				
			||||||
 | 
					    "gu": "ગુજરાતી",
 | 
				
			||||||
 | 
					    "ta": "தமிழ்",
 | 
				
			||||||
 | 
					    "te": "తెలుగు",
 | 
				
			||||||
 | 
					    "ml": "മലയാളം",
 | 
				
			||||||
 | 
					    "si": "සිංහල",
 | 
				
			||||||
 | 
					    "ko": "한국어",
 | 
				
			||||||
 | 
					    "zh_TW": "中文 (台灣)",
 | 
				
			||||||
 | 
					    "zh-Hans": "中文 (简体)",
 | 
				
			||||||
 | 
					    "zh-Hant": "中文 (繁體)",
 | 
				
			||||||
 | 
					    "ja": "日本語"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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."
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -17,7 +17,7 @@
 | 
				
			|||||||
	"Auto hide Menu bar": "Menü çubuğunu otomatik olarak gizle",
 | 
						"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)",
 | 
						"Auto hide menu bar (Press Alt key to display)": "Menü çubuğunu otomatik olarak gizle (ALT tuşuna basarak göster)",
 | 
				
			||||||
	"Back": "Geri",
 | 
						"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",
 | 
				
			||||||
	"Change": "Değiştir",
 | 
						"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.",
 | 
						"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",
 | 
						"Check for Updates": "Güncellemeleri Kontrol Et",
 | 
				
			||||||
@@ -47,7 +47,7 @@
 | 
				
			|||||||
	"File": "Dosya",
 | 
						"File": "Dosya",
 | 
				
			||||||
	"Find accounts": "Hesapları bul",
 | 
						"Find accounts": "Hesapları bul",
 | 
				
			||||||
	"Find accounts by email": "E-posta ile 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",
 | 
						"Forward": "Yönlendir",
 | 
				
			||||||
	"Functionality": "Fonksiyonellik",
 | 
						"Functionality": "Fonksiyonellik",
 | 
				
			||||||
	"General": "Genel",
 | 
						"General": "Genel",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -41,7 +41,7 @@
 | 
				
			|||||||
	"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",
 | 
						"Enter Full Screen": "Увімкнути повноекранний режим",
 | 
				
			||||||
	"Factory Reset": "Скинути до заводських",
 | 
						"Factory Reset": "Скинути до заводських",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "Factory Reset Data",
 | 
				
			||||||
	"File": "Файл",
 | 
						"File": "Файл",
 | 
				
			||||||
@@ -56,8 +56,8 @@
 | 
				
			|||||||
	"Help": "Довідка",
 | 
						"Help": "Довідка",
 | 
				
			||||||
	"Help Center": "Центр довідки",
 | 
						"Help Center": "Центр довідки",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Hide",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Приховати інших",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "Приховати Zulip",
 | 
				
			||||||
	"History": "Історія",
 | 
						"History": "Історія",
 | 
				
			||||||
	"History Shortcuts": "Клавіатурні скорочення історії",
 | 
						"History Shortcuts": "Клавіатурні скорочення історії",
 | 
				
			||||||
	"Keyboard Shortcuts": "Клавіатурні скорочення",
 | 
						"Keyboard Shortcuts": "Клавіатурні скорочення",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Заглушити всі звуки від Zulip",
 | 
						"Mute all sounds from Zulip": "Заглушити всі звуки від Zulip",
 | 
				
			||||||
	"NO": "НІ",
 | 
						"NO": "НІ",
 | 
				
			||||||
	"Network": "Мережа",
 | 
						"Network": "Мережа",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "Налаштування мережі та проксі",
 | 
				
			||||||
	"OR": "АБО",
 | 
						"OR": "АБО",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "URL-адреса організації",
 | 
						"Organization URL": "URL-адреса організації",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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."
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "Add custom CSS",
 | 
						"Add custom CSS": "Add custom CSS",
 | 
				
			||||||
	"AddServer": "AddServer",
 | 
						"AddServer": "AddServer",
 | 
				
			||||||
	"Advanced": "Advanced",
 | 
						"Advanced": "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": "Always start minimized",
 | 
						"Always start minimized": "Always start minimized",
 | 
				
			||||||
	"App Updates": "App Updates",
 | 
						"App Updates": "App Updates",
 | 
				
			||||||
	"App language (requires restart)": "App language (requires restart)",
 | 
						"App language (requires restart)": "App language (requires restart)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "Download App Logs",
 | 
						"Download App Logs": "Download App Logs",
 | 
				
			||||||
	"Edit": "Edit",
 | 
						"Edit": "Edit",
 | 
				
			||||||
	"Edit Shortcuts": "Edit Shortcuts",
 | 
						"Edit Shortcuts": "Edit Shortcuts",
 | 
				
			||||||
	"Emoji & Symbols": "Emoji & Symbols",
 | 
						"Emoji & Symbols": "表情符號",
 | 
				
			||||||
	"Enable auto updates": "Enable auto updates",
 | 
						"Enable auto updates": "Enable auto updates",
 | 
				
			||||||
	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)",
 | 
						"Enable error reporting (requires restart)": "Enable error reporting (requires restart)",
 | 
				
			||||||
	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)",
 | 
						"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)",
 | 
				
			||||||
	"Enter Full Screen": "Enter Full Screen",
 | 
						"Enter Full Screen": "進入全螢幕",
 | 
				
			||||||
	"Factory Reset": "Factory Reset",
 | 
						"Factory Reset": "Factory Reset",
 | 
				
			||||||
	"Factory Reset Data": "Factory Reset Data",
 | 
						"Factory Reset Data": "Factory Reset Data",
 | 
				
			||||||
	"File": "File",
 | 
						"File": "File",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "Help Center",
 | 
						"Help Center": "Help Center",
 | 
				
			||||||
	"Hide": "Hide",
 | 
						"Hide": "Hide",
 | 
				
			||||||
	"Hide Others": "Hide Others",
 | 
						"Hide Others": "Hide Others",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "隱藏 Zuilp",
 | 
				
			||||||
	"History": "History",
 | 
						"History": "History",
 | 
				
			||||||
	"History Shortcuts": "History Shortcuts",
 | 
						"History Shortcuts": "History Shortcuts",
 | 
				
			||||||
	"Keyboard Shortcuts": "Keyboard Shortcuts",
 | 
						"Keyboard Shortcuts": "Keyboard Shortcuts",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "Mute all sounds from Zulip",
 | 
						"Mute all sounds from Zulip": "Mute all sounds from Zulip",
 | 
				
			||||||
	"NO": "NO",
 | 
						"NO": "NO",
 | 
				
			||||||
	"Network": "Network",
 | 
						"Network": "Network",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "網路與代理設定",
 | 
				
			||||||
	"OR": "OR",
 | 
						"OR": "OR",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
						"On macOS, the OS spellchecker is used.": "On macOS, the OS spellchecker is used.",
 | 
				
			||||||
	"Organization URL": "Organization URL",
 | 
						"Organization URL": "Organization URL",
 | 
				
			||||||
@@ -85,8 +85,8 @@
 | 
				
			|||||||
	"Release Notes": "Release Notes",
 | 
						"Release Notes": "Release Notes",
 | 
				
			||||||
	"Reload": "Reload",
 | 
						"Reload": "Reload",
 | 
				
			||||||
	"Report an Issue": "Report an Issue",
 | 
						"Report an Issue": "Report an Issue",
 | 
				
			||||||
	"Reset App Settings": "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 the application, thus deleting all the connected organizations and accounts.": "重置應用並刪除所有資料",
 | 
				
			||||||
	"Save": "Save",
 | 
						"Save": "Save",
 | 
				
			||||||
	"Select All": "Select All",
 | 
						"Select All": "Select All",
 | 
				
			||||||
	"Services": "Services",
 | 
						"Services": "Services",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "Zoom Out",
 | 
						"Zoom Out": "Zoom Out",
 | 
				
			||||||
	"keyboard shortcuts": "keyboard shortcuts",
 | 
						"keyboard shortcuts": "keyboard shortcuts",
 | 
				
			||||||
	"script": "script",
 | 
						"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 伺服器版本過時 {{{version}}}. 服務可能無法正常運作"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
	"Add custom CSS": "新增自定義 CSS",
 | 
						"Add custom CSS": "新增自定義 CSS",
 | 
				
			||||||
	"AddServer": "新增伺服器",
 | 
						"AddServer": "新增伺服器",
 | 
				
			||||||
	"Advanced": "\b\b進階",
 | 
						"Advanced": "\b\b進階",
 | 
				
			||||||
	"All the connected organizations will appear here.": "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)": "應用程式語言(需要重新啟動)",
 | 
				
			||||||
@@ -37,11 +37,11 @@
 | 
				
			|||||||
	"Download App Logs": "下載應用程式紀錄",
 | 
						"Download App Logs": "下載應用程式紀錄",
 | 
				
			||||||
	"Edit": "編輯",
 | 
						"Edit": "編輯",
 | 
				
			||||||
	"Edit Shortcuts": "編輯快捷鍵",
 | 
						"Edit Shortcuts": "編輯快捷鍵",
 | 
				
			||||||
	"Emoji & Symbols": "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",
 | 
						"Enter Full Screen": "全螢幕",
 | 
				
			||||||
	"Factory Reset": "初始化",
 | 
						"Factory Reset": "初始化",
 | 
				
			||||||
	"Factory Reset Data": "設定初始化",
 | 
						"Factory Reset Data": "設定初始化",
 | 
				
			||||||
	"File": "檔案",
 | 
						"File": "檔案",
 | 
				
			||||||
@@ -57,7 +57,7 @@
 | 
				
			|||||||
	"Help Center": "幫助中心",
 | 
						"Help Center": "幫助中心",
 | 
				
			||||||
	"Hide": "隱藏",
 | 
						"Hide": "隱藏",
 | 
				
			||||||
	"Hide Others": "隱藏其他",
 | 
						"Hide Others": "隱藏其他",
 | 
				
			||||||
	"Hide Zulip": "Hide Zulip",
 | 
						"Hide Zulip": "隱藏 Zulip",
 | 
				
			||||||
	"History": "歷史",
 | 
						"History": "歷史",
 | 
				
			||||||
	"History Shortcuts": "歷史快捷鍵",
 | 
						"History Shortcuts": "歷史快捷鍵",
 | 
				
			||||||
	"Keyboard Shortcuts": "鍵盤快捷鍵",
 | 
						"Keyboard Shortcuts": "鍵盤快捷鍵",
 | 
				
			||||||
@@ -68,7 +68,7 @@
 | 
				
			|||||||
	"Mute all sounds from Zulip": "將所有 Zulip 音效靜音",
 | 
						"Mute all sounds from Zulip": "將所有 Zulip 音效靜音",
 | 
				
			||||||
	"NO": "否",
 | 
						"NO": "否",
 | 
				
			||||||
	"Network": "網路",
 | 
						"Network": "網路",
 | 
				
			||||||
	"Network and Proxy Settings": "Network and Proxy Settings",
 | 
						"Network and Proxy Settings": "網路與代理設定",
 | 
				
			||||||
	"OR": "或",
 | 
						"OR": "或",
 | 
				
			||||||
	"On macOS, the OS spellchecker is used.": "在 macOS 下使用作業系統的拼字檢查",
 | 
						"On macOS, the OS spellchecker is used.": "在 macOS 下使用作業系統的拼字檢查",
 | 
				
			||||||
	"Organization URL": "組織網址",
 | 
						"Organization URL": "組織網址",
 | 
				
			||||||
@@ -85,8 +85,8 @@
 | 
				
			|||||||
	"Release Notes": "版本更新公告",
 | 
						"Release Notes": "版本更新公告",
 | 
				
			||||||
	"Reload": "重新載入",
 | 
						"Reload": "重新載入",
 | 
				
			||||||
	"Report an Issue": "回報問題",
 | 
						"Report an Issue": "回報問題",
 | 
				
			||||||
	"Reset App Settings": "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 the application, thus deleting all the connected organizations and accounts.": "重置應用並刪除所有資料",
 | 
				
			||||||
	"Save": "儲存",
 | 
						"Save": "儲存",
 | 
				
			||||||
	"Select All": "選擇全部",
 | 
						"Select All": "選擇全部",
 | 
				
			||||||
	"Services": "服務",
 | 
						"Services": "服務",
 | 
				
			||||||
@@ -123,5 +123,5 @@
 | 
				
			|||||||
	"Zoom Out": "縮小",
 | 
						"Zoom Out": "縮小",
 | 
				
			||||||
	"keyboard shortcuts": "鍵盤快捷鍵",
 | 
						"keyboard shortcuts": "鍵盤快捷鍵",
 | 
				
			||||||
	"script": "script",
 | 
						"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 伺服器版本過時 {{{version}}}. 服務可能無法正常運作"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										20
									
								
								scripts/win-sign.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								scripts/win-sign.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,20 @@
 | 
				
			|||||||
 | 
					"use strict";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const childProcess = require("node:child_process");
 | 
				
			||||||
 | 
					const {promisify} = require("node:util");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const exec = promisify(childProcess.exec);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					exports.default = async ({path, hash}) => {
 | 
				
			||||||
 | 
					  await exec(
 | 
				
			||||||
 | 
					    `powershell.exe Invoke-TrustedSigning \
 | 
				
			||||||
 | 
					-Endpoint https://eus.codesigning.azure.net/ \
 | 
				
			||||||
 | 
					-CodeSigningAccountName kandralabs \
 | 
				
			||||||
 | 
					-CertificateProfileName kandralabs \
 | 
				
			||||||
 | 
					-Files '${path}' \
 | 
				
			||||||
 | 
					-FileDigest '${hash}' \
 | 
				
			||||||
 | 
					-TimestampRfc3161 http://timestamp.acs.microsoft.com \
 | 
				
			||||||
 | 
					-TimestampDigest '${hash}'`,
 | 
				
			||||||
 | 
					    {stdio: "inherit"},
 | 
				
			||||||
 | 
					  );
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
@@ -1,16 +1,16 @@
 | 
				
			|||||||
"use strict";
 | 
					"use strict";
 | 
				
			||||||
 | 
					const fs = require("node:fs");
 | 
				
			||||||
const path = require("node:path");
 | 
					const path = require("node:path");
 | 
				
			||||||
const process = require("node:process");
 | 
					const process = require("node:process");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const {_electron} = require("playwright-core");
 | 
					const {_electron} = require("playwright-core");
 | 
				
			||||||
const rimraf = require("rimraf");
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
const testsPkg = require("./package.json");
 | 
					const testsPkg = require("./package.json");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
module.exports = {
 | 
					module.exports = {
 | 
				
			||||||
  createApp,
 | 
					  createApp,
 | 
				
			||||||
  endTest,
 | 
					  endTest,
 | 
				
			||||||
  resetTestDataDir,
 | 
					  resetTestDataDir: resetTestDataDirectory,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Runs Zulip Desktop.
 | 
					// Runs Zulip Desktop.
 | 
				
			||||||
@@ -26,7 +26,7 @@ async function endTest(app) {
 | 
				
			|||||||
  await app.close();
 | 
					  await app.close();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function getAppDataDir() {
 | 
					function getAppDataDirectory() {
 | 
				
			||||||
  let base;
 | 
					  let base;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  switch (process.platform) {
 | 
					  switch (process.platform) {
 | 
				
			||||||
@@ -56,7 +56,7 @@ function getAppDataDir() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Resets the test directory, containing domain.json, window-state.json, etc
 | 
					// Resets the test directory, containing domain.json, window-state.json, etc
 | 
				
			||||||
function resetTestDataDir() {
 | 
					function resetTestDataDirectory() {
 | 
				
			||||||
  const appDataDir = getAppDataDir();
 | 
					  const appDataDirectory = getAppDataDirectory();
 | 
				
			||||||
  rimraf.sync(appDataDir);
 | 
					  fs.rmSync(appDataDirectory, {force: true, recursive: true});
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,3 @@
 | 
				
			|||||||
#!/bin/bash
 | 
					#!/bin/bash
 | 
				
			||||||
set -ex
 | 
					set -eux
 | 
				
			||||||
exec tx pull -a -f --parallel
 | 
					exec tx pull -a -f --minimum-perc=5
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,9 +5,15 @@
 | 
				
			|||||||
    "module": "esnext",
 | 
					    "module": "esnext",
 | 
				
			||||||
    "moduleResolution": "bundler",
 | 
					    "moduleResolution": "bundler",
 | 
				
			||||||
    "esModuleInterop": true,
 | 
					    "esModuleInterop": true,
 | 
				
			||||||
 | 
					    "paths": {
 | 
				
			||||||
 | 
					      // https://github.com/getsentry/sentry-electron/issues/957
 | 
				
			||||||
 | 
					      "@sentry/node/build/types/integrations/anr/common": [
 | 
				
			||||||
 | 
					        "./node_modules/@sentry/node/build/types/integrations/anr/common"
 | 
				
			||||||
 | 
					      ]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
    "resolveJsonModule": true,
 | 
					    "resolveJsonModule": true,
 | 
				
			||||||
    "strict": true,
 | 
					    "strict": true,
 | 
				
			||||||
    "noImplicitOverride": true,
 | 
					    "noImplicitOverride": true,
 | 
				
			||||||
    "types": ["vite/client"],
 | 
					    "types": ["vite/client"]
 | 
				
			||||||
  },
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user