| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148 |
- /*
- * This file is part of Moeditor.
- *
- * Copyright (c) 2016 Menci <huanghaorui301@gmail.com>
- * Copyright (c) 2016 lucaschimweg
- * Copyright (c) 2016 douglaseccker
- * Copyright (c) 2016 PifyZ
- * Copyright (c) 2016 Hyuchia
- * Copyright (c) 2016 welksonramos
- * Copyright (c) 2016 caiocdasilva
- * Copyright (c) 2016 lawgsy <lawgsy@gmail.com>
- *
- * Moeditor is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Moeditor is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Moeditor. If not, see <http://www.gnu.org/licenses/>.
- *
- * The translation providers:
- * - en: Menci
- * - zh_CN: Menci
- * - de: lucaschimweg
- * - pt: douglaseccker & welksonramos & caiocdasilva
- * - fr: PifyZ
- * - es: Hyuchia
- * - nl: lawgsy
- * - it: iamsisar
- *
- * If you want to help translate this app, please copy the `en` items of the
- * `strings` constant as the template, and fill each item with the translated
- * string. The `_name` item in a language is the language's name.
- *
- * You can translate for a language (e.g. en) or a language with specified
- * region (e.g. zh_CN). The app will choose the language with specified region
- * first, fallback to only language when the former is unavailable, and fallback
- * to English when they are all unavailable.
- *
- * Send a PR to us after translating.
- *
- */
- 'use strict'
- const osLocale = require('os-locale');
- class MoeditorLocale {
- constructor() {
- if (moeApp.config.get('locale') !== 'default') {
- this.locale = moeApp.config.get('locale');
- } else {
- this.locale = 'default';
- }
- this.sysLocale = osLocale.sync();
- if (typeof strings[this.sysLocale] === 'undefined') {
- this.sysLocale = this.sysLocale.substr(0, this.sysLocale.indexOf('_'));
- if (typeof strings[this.sysLocale] === 'undefined') {
- this.sysLocale = '';
- }
- }
- if (this.locale === 'default') {
- this.locale = this.sysLocale;
- }
- }
- setLocale(locale) {
- this.locale = locale;
- if (this.locale === 'default') {
- this.locale = this.sysLocale;
- }
- }
- get(str) {
- let res;
- if (typeof strings[this.locale] == 'undefined' || typeof strings[this.locale][str] == 'undefined') {
- res = strings['en'][str];
- if (!res || res == undefined )
- res = str;
- // console.log('Localization of "' + str + '" in "' + this.locale + '" failed, falling back to English.');
- } else {
- res = strings[this.locale][str];
- if (!res || res == undefined )
- res = str;
- }
- return res;
- }
- getLanguages() {
- let languages = {};
- for (let lang in strings) languages[lang] = strings[lang]._name;
- return languages;
- }
- }
- module.exports = MoeditorLocale;
- const strings = {
- "en": {
- "_name": "English",
- "New": "New",
- "New Post": "New Post",
- "Open": "Open",
- "Save": "Save",
- "Save as": "Save as",
- "Export as HTML": "Export as HTML",
- "Export as PDF": "Export as PDF",
- "Settings": "Settings",
- "About": "About",
- "Menu": "Menu",
- "Directory": "Directory",
- "Toggle focus mode": "Toggle focus mode",
- "Edit mode": "Edit mode",
- "Refresh": "Refresh",
- "Restart Script": "Restart script",
- "Write Mode": "Write Mode",
- "Read Mode": "Read Mode",
- "Preview Mode": "Preview Mode",
- "Wide": "Wide",
- "Medium": "Medium",
- "Narrow": "Narrow",
- "Yes": "Yes",
- "No": "No",
- "Cancel": "Cancel",
- "Confirm": "Confirm",
- "Save changes to file?": "Save changes to file?",
- "File changed by another program, reload?": "File changed by another program, reload?",
- "Markdown Documents": "Markdown Documents",
- "HTML Documents": "HTML Documents",
- "PDF Documents": "PDF Documents",
- "CSS Files": "CSS Files",
- "All Files": "All Files",
- "Saved successfully.": "Saved successfully.",
- "Can't save file": "Can't save file",
- "Exporting as HTML, please wait ...": "Exporting as HTML, please wait ...",
- "Exporting as PDF, please wait ...": "Exporting as PDF, please wait ...",
- "Can't export as HTML": "Can't export as HTML",
- "Can't export as PDF": "Can't export as PDF",
- "General": "General",
- "Edit": "Edit",
- "Appearance": "Appearance",
- "Render": "Render",
- "Breaks": "Breaks",
- "Language": "Language",
- "Reload when file changed": "Reload when file changed",
- "Font": "Editor Font",
- "Font Size": "Font Size",
- "Line Height": "Line Height",
- "Tab Size": "Tab Size",
- "Zoom factor": "Zoom Factor",
- "Color Theme": "Color Theme",
- "TeX Math Expressions":"TeX Math Expressions",
- "UML Diagrams": "UML Diagrams",
- "Brakes": "Brakes",
- "Highlight Theme": "Highlight Theme",
- "Render Theme": "Render Theme",
- "Custom CSSs": "Custom CSSs",
- "Def Show Number": "Default Show Line Number",
- "Show Number": "Show Line Number",
- "Scroll Sync": "Scroll Sync",
- "File Rename": "File Rename",
- "Hexo Auto": "Auto Hexo Setting",
- "Hexo": "Hexo",
- "Hexo Mode": "Hexo Mode",
- "Extend Highlight": "Extend Highlight",
- "Hexo Config": "Hexo Config",
- "Hexo tags": "Tag Templates",
- "HEXOQuickPublish": "Quick Deploy",
- "HEXOServer": "Start Server",
- "HEXOClean": "Clean Cache",
- "HEXOGenerate": "Generate file",
- "HEXODeploy": "Deploy web",
- "HEXOKillPort": "Kill Port Thread",
- "ban": "Cancle",
- "stop": "Stop",
- "close": "Close",
- "check": "Confirm",
- "ServerStart": "Service Started And Continue... ",
- "Executing": "Operation Executing...",
- "Operation Execution Timeout": "Operation Execution Timeout !",
- "Operation Finished": "Operation Finished !",
- "Operation Canceled": "Operation Canceled !",
- "PortOccupied": "[ %s:%s ] Port is occupied, please change other IP or Port.",
- "Waring": "Waring",
- "WaringNoFile": "No CSS files found !",
- "WaringNoFileDetail1": 'Please check the directory: \n"',
- "WaringNoFileDetail2": '"\n\nIf you were used Hexo,\nyou can try open Hexo\'s directory and execute command \n"hexo -g" to solve.',
- "Default": "Default",
- "System Default": "System Default",
- "version": "version",
- "Auto save": "Auto save",
- "Auto": "Auto",
- "Prompt": "Prompt",
- "Never": "Never",
- "Image": "Image",
- "Source Center": "Source Center",
- "Web Type": "Web Type",
- "WebSM": "SM.MS",
- "QiNiu": "QiNiu",
- "BackImage": "Back Image To Cloud",
- "WebCOS": "Tencent",
- "AccessKey": "Access Key",
- "SecretKey": "Secret Key",
- "Bucket": "Bucket",
- "BaseWeb": "Base Web",
- "Customize": "Customize origin",
- "Undo": "Undo",
- "Redo": "Redo",
- "Cut": "Cut",
- "Copy": "Copy",
- "Paste": "Paste",
- "Delete": "Delete",
- "Select All": "Select All",
- "UploadToCOS": "Upload To COS",
- "UploadToSMMS": "Upload To SM.MS",
- "UploadToQiNiu": "Upload To QiNiu",
- "UndoUpload": "Undo Uploaded",
- "Quick Open":"Quick Open",
- "OpenPathPost":"Open Post Path",
- "OpenPathPostSrc":"Open Post Src Path",
- "OpenPathSrcCenter":"Open All Src Path",
- "OpenPathHEXO":"Open Hexo Path",
- "WebIndex":"Open Your Index",
- "WebLocalIndex":"Open Local Index",
- "WebCOSSource":"Open COS Src Index",
- "WebQiNiuSource":"Open QiNiu Src Index",
- "WebSMMS":"Open SM.MS Index",
- "Services": "Services",
- "Hide": "Hide",
- "Hide Others": "Hide Others",
- "Show All": "Show All",
- "Quit": "Quit",
- "Close": "Close",
- "Minimize": "Minimize",
- "Zoom": "Zoom",
- "Bring All to Front": "Bring All to Front",
- "File": "File",
- "Export": "Export",
- "Mode": "Mode",
- "View": "View",
- "Window": "Window",
- "Help": "Help",
- "Toggle Developer Tools": "Toggle Developer Tools",
- "Preference": "Preference",
- "No Find File.": "No Find File.",
- "Upload Finished": "Upload Finished.",
- "Access Denied.": "Access Denied.",
- "Upload file count limit.": "Upload file count limit.",
- "Upload file frequency limit.": "Upload file frequency limit.",
- "Server error. Upload directory isn't writable.": "Server error. Upload directory isn't writable.",
- "No files were uploaded.": "No files were uploaded.",
- "File is empty.": "File is empty.",
- "File is too large.": "File is too large.(Max: 5M)",
- "File has an invalid extension.": "File has an invalid extension.",
- "Could not save uploaded file.": "Could not save uploaded file."
- },
- "zh_CN": {
- "_name": "简体中文",
- "New": "新建",
- "New Post": "新建Post",
- "Open": "打开",
- "Save": "保存",
- "Save as": "另存为",
- "Export as HTML": "导出为 HTML",
- "Export as PDF": "导出为 PDF",
- "Settings": "设置",
- "About": "关于",
- "Menu": "菜单",
- "Directory": "目录",
- "Toggle focus mode": "切换专注模式",
- "Edit mode": "编辑模式",
- "Restart Script": "重启脚本",
- "Write Mode": "写作模式",
- "Read Mode": "阅读模式",
- "Preview Mode": "预览模式",
- "Wide": "宽",
- "Medium": "中等",
- "Narrow": "窄",
- "Yes": "是",
- "No": "否",
- "Cancel": "取消",
- "Confirm": "询问",
- "Save changes to file?": "将修改保存到文件?",
- "File changed by another program, reload?": "文件被另一程序修改,是否重新加载?",
- "Markdown Documents": "Markdown 文档",
- "HTML Documents": "HTML 文档",
- "PDF Documents": "PDF 文档",
- "CSS Files": "CSS 文件",
- "All Files": "所有文件",
- "Saved successfully.": "保存成功。",
- "Can't save file": "无法保存文件",
- "Exporting as HTML, please wait ...": "正在导出为 HTML,请稍候 ...",
- "Exporting as PDF, please wait ...": "正在导出为 PDF,请稍候 ...",
- "Can't export as HTML": "无法导出为 HTML",
- "Can't export as PDF": "无法导出为 PDF",
- "General": "通用",
- "Edit": "编辑",
- "Appearance": "外观",
- "Render": "渲染",
- "Breaks": "换行",
- "Language": "语言",
- "Reload when file changed": "当文件被修改时,重新加载",
- "Font": "字体",
- "Font Size": "字体大小",
- "Line Height": "行高",
- "Tab Size": "Tab 大小",
- "Zoom factor": "缩放比例",
- "Color Theme": "颜色主题",
- "TeX Math Expressions": "TeX 数学表达式",
- "UML Diagrams": "UML 图表",
- "Brakes": "Brakes",
- "Highlight Theme": "高亮主题",
- "Render Theme": "渲染主题",
- "Custom CSSs": "自定义 CSS",
- "Def Show Number": "默认显示行号",
- "Show Number": "显示行号",
- "Scroll Sync": "同步滚动",
- "File Rename": "同步文件名",
- "Hexo Auto": "Hexo自动设置",
- "Hexo": "Hexo",
- "Hexo Mode": "Hexo模式",
- "Extend Highlight": "自定义代码块",
- "Hexo Config": "Hexo配置文件",
- "Hexo tags": "Tag模板目录",
- "HEXOQuickPublish": "一键部署",
- "HEXOServer": "启动服务器",
- "HEXOClean": "清除缓存文件",
- "HEXOGenerate": "生成静态文件",
- "HEXODeploy": "部署网站",
- "HEXOKillPort": "结束占用进程",
- "ban": "取消",
- "stop": "停止",
- "close": "关闭",
- "check": "确认",
- "ServerStart": "服务已启动...",
- "Executing": "操作执行中...",
- "Operation Execution Timeout": "操作执行超时!",
- "Operation Finished": "操作完成!",
- "Operation Canceled": "取消操作!",
- "PortOccupied": "[ %s:%s ] 端口占用, 请更换IP地址或端口。",
- "Waring": "警告",
- "WaringNoFile": "没有发现CSS文件!",
- "WaringNoFileDetail1": '请检查如下路径: \n"',
- "WaringNoFileDetail2": '"\n\n如果你使用Hexo框架,\n可尝试在Hexo项目目录下运行命令"hexo -g"来解决。',
- "Default": "默认",
- "System Default": "系统默认",
- "version": "版本",
- "Refresh": "刷新界面",
- "Auto save": "自动保存",
- "Auto": "自动",
- "Prompt": "询问",
- "Never": "从不",
- "Image": "图片",
- "Source Center": "默认资源库",
- "Web Type": "云图类型",
- "WebSM": "SM.MS 图床",
- "QiNiu": "七牛云",
- "WebCOS": "腾讯云",
- "BackImage": "备份到云",
- "AccessKey": "Access Key",
- "SecretKey": "Secret Key",
- "Bucket": "存储空间",
- "BaseWeb": "域名",
- "Customize": "自定义域名",
- "Undo": "撤销",
- "Redo": "重做",
- "Cut": "剪切",
- "Copy": "复制",
- "Paste": "粘贴",
- "Delete": "删除",
- "Select All": "全选",
- "UploadToCOS": "上传 腾讯云",
- "UploadToSMMS": "上传 SM.MS",
- "UploadToQiNiu": "上传 七牛",
- "UndoUpload": "撤销上传",
- "Quick Open":"快速打开",
- "OpenPathPost":"本文所在路径",
- "OpenPathPostSrc":"本文图片路径",
- "OpenPathSrcCenter":"全部图片路径",
- "OpenPathHEXO":"Hexo项目路径",
- "WebIndex":"主页",
- "WebLocalIndex":"本地主页",
- "WebCOSSource":"腾讯云主页",
- "WebQiNiuSource":"七牛云主页",
- "WebSMMS":"SM.MS主页",
- "Services": "服务",
- "Hide": "隐藏",
- "Hide Others": "隐藏其他",
- "Show All": "显示全部",
- "Quit": "退出",
- "Close": "关闭",
- "Minimize": "最小化",
- "Zoom": "缩放",
- "Bring All to Front": "前置全部窗口",
- "File": "文件",
- "Export": "导出",
- "Mode": "模式",
- "View": "查看",
- "Window": "窗口",
- "Help": "帮助",
- "Toggle Developer Tools": "切换开发者工具",
- "Preference": "偏好设置",
- "No Find File.": "未找到文件.",
- "Upload Finished": "上传完成.",
- "Access Denied.": "服务器拒绝访问.",
- "Upload file count limit.": "超出上传文件数量.",
- "Upload file frequency limit.": "上传文件频率限制.",
- "Server error. Upload directory isn't writable.": "服务器错误。上传目录不可写.",
- "No files were uploaded.": "没有文件上传.",
- "File is empty.": "文件是空的.",
- "File is too large.": "文件太大.(最大支持5M)",
- "File has an invalid extension.": "文件扩展名无效.",
- "Could not save uploaded file.": "无法保存上传的文件."
- },
- "de": {
- "_name": "Deutsch",
- "New": "Neu",
- "Open": "Öffnen",
- "Save": "Speichern",
- "Save as": "Speichern als...",
- "Export as HTML": "Als HTML exportieren",
- "Export as PDF": "Als PDF exportieren",
- "Settings": "Einstellungen",
- "About": "Über",
- "Menu": "Menü",
- "Directory": "Ordner",
- "Toggle focus mode": "Fokusmodus umschalten",
- "Edit mode": "Bearbeitungsmodus",
- "Restart Script": "Restart script",
- "Write Mode": "Schreibmodus",
- "Read Mode": "Lesemodus",
- "Preview Mode": "Vorschaumodus",
- "Wide": "Breit",
- "Medium": "Normal",
- "Narrow": "Schmal",
- "Yes": "Ja",
- "No": "Nein",
- "Cancel": "Abbrechen",
- "Confirm": "Bestätigen",
- "Save changes to file?": "Änderungen in Datei speichern?",
- "File changed by another program, reload?": "Dateien von anderem Programm geändert, neu laden?",
- "Markdown Documents": "Markdown Dokumente",
- "HTML Documents": "HTML Dokumente",
- "PDF Documents": "PDF Dokumente",
- "CSS Files": "CSS Dateien",
- "All Files": "Alle Dateien",
- "Saved successfully.": "Speichern erfolgreich.",
- "Can't save file": "Datei kann nicht gespeichert werden.",
- "Exporting as HTML, please wait ...": "Wird als HTML exportiert, bitte warten ...",
- "Exporting as PDF, please wait ...": "Wird als HTML exportiert, bitte warten ...",
- "Can't export as HTML": "Kann nicht als HTML exporiert werden.",
- "Can't export as PDF": "Kann nicht als PDF exporiert werden.",
- "General": "Allgemein",
- "Edit": "Bearbeiten",
- "Appearance": "Aussehen",
- "Render": "Rendern",
- "Language": "Sprache",
- "Reload when file changed": "Neu laden wenn Datei geändert",
- "Font": "Editor Schriftart",
- "Font Size": "Schriftgröße",
- "Line Height": "Zeilenhöhe",
- "Tab Size": "Tabgröße",
- "Color Theme": "Farbthema",
- "TeX Math Expressions":"TeX Mathematikausdrücke",
- "UML Diagrams": "UML Diagramme",
- "Brakes": "Brakes",
- "Highlight Theme": "Highlight-Thema",
- "Render Theme": "Renderthema",
- "Custom CSSs": "Benutzerdefiniertes CSS",
- "Default": "Standart",
- "System Default": "Systemstandart",
- "version": "Version",
- "Auto": "Automatisch",
- "Prompt": "Fragen",
- "Never": "Nie",
- "Undo": "Rückgängig machen",
- "Redo": "Wiederholen",
- "Cut": "Ausscheiden",
- "Copy": "Kopieren",
- "Paste": "Einfügen",
- "Delete": "Löschen",
- "Select All": "Alles auswählen",
- "Services": "Services",
- "Hide": "Verstecken",
- "Hide Others": "Andere Verstecken",
- "Show All": "Alle zeigen",
- "Quit": "Beenden",
- "Close": "Schließen",
- "Minimize": "Minimieren",
- "Zoom": "Zoom",
- "Bring All to Front": "Alle anzeigen",
- "File": "Datei",
- "Export": "Exportieren",
- "Mode": "Modus",
- "View": "Ansicht",
- "Window": "Fenster",
- "Help": "Hilfe",
- "Toggle Developer Tools": "Entwicklereinstellungen umschalten",
- "Preference": "Einstellung"
- },
- "pt": {
- "_name": "Português",
- "New": "Novo",
- "Open": "Abrir",
- "Save": "Salvar",
- "Save as": "Salvar como",
- "Export as HTML": "Exportar como HTML",
- "Export as PDF": "Exportar como PDF",
- "Settings": "Configurações",
- "About": "Sobre",
- "Menu": "Menu",
- "Directory": "Diretório",
- "Toggle focus mode": "Alternar para o modo foco",
- "Edit mode": "Editar modo",
- "Restart Script": "Inicie o script",
- "Write Mode": "Modo Escrita",
- "Read Mode": "Modo Leitura",
- "Preview Mode": "Mode de Pré-visualização",
- "Wide": "Largo",
- "Medium": "Médio",
- "Narrow": "Estreito",
- "Yes": "Sim",
- "No": "Não",
- "Cancel": "Cancelar",
- "Confirm": "Confirmar",
- "Save changes to file?": "Salvar as alterações no arquivo?",
- "File changed by another program, reload?": "Arquivo modificado por outro programa, recarregar?",
- "Markdown Documents": "Documentos Markdown",
- "HTML Documents": "Documentos HTML",
- "PDF Documents": "Documentos PDF",
- "CSS Files": "Arquivos CSS",
- "All Files": "Todos os Arquivos",
- "Saved successfully.": "Salvo com sucesso",
- "Can't save file": "Não é possível salvar o arquivo",
- "Exporting as HTML, please wait ...": "Exportando como HTML, aguarde ...",
- "Exporting as PDF, please wait ...": "Exportando como PDF, aguarde...",
- "Can't export as HTML": "Não é possível exportar como HTML",
- "Can't export as PDF": "Não é possível exportar como PDF",
- "General": "Geral",
- "Edit": "Editar",
- "Appearance": "Aparência",
- "Render": "Renderização",
- "Language": "Idioma",
- "Reload when file changed": "Recarregar quando o arquivo for alterado",
- "Font": "Fonte",
- "Font Size": "Tamanho da Fonte",
- "Line Height": "Altura da Linha",
- "Tab Size": "Tamanho da Tabulação",
- "Color Theme": "Tema",
- "TeX Math Expressions":"Expressões TeX Math",
- "UML Diagrams": "Diagramas UML",
- "Brakes": "Brakes",
- "Highlight Theme": "Tema de Sintaxe",
- "Render Theme": "Tema de Renderização",
- "Custom CSSs": "CSSs Personalizados",
- "Default": "Padrão",
- "System Default": "Padrão do Sistema",
- "version": "versão",
- "Auto": "Automático",
- "Prompt": "Perguntar",
- "Never": "Nunca",
- "Undo": "Desfazer",
- "Redo": "Refazer",
- "Cut": "Cortar",
- "Copy": "Copiar",
- "Paste": "Colar",
- "Delete": "Excluir",
- "Select All": "Selecionar Tudo",
- "Services": "Serviços",
- "Hide": "Ocultar",
- "Hide Others": "Ocultar Outros",
- "Show All": "Exibir Tudo",
- "Quit": "Sair",
- "Close": "Fechar",
- "Minimize": "Minimizar",
- "Zoom": "Zoom",
- "Bring All to Front": "Trazer todas para frente",
- "File": "Arquivo",
- "Export": "Exportar",
- "Mode": "Modo",
- "View": "Visualizar",
- "Window": "Janela",
- "Help": "Ajuda",
- "Toggle Developer Tools": "Alternar Ferramentas de Desenvolvimento",
- "Preference": "Preferências"
- },
- "fr": {
- "_name": "Français",
- "New": "Nouveau",
- "Open": "Ouvrir",
- "Save": "Enregistrer",
- "Save as": "Enregistrer sous",
- "Export as HTML": "Exporter comme HTML",
- "Export as PDF": "Exporter comme PDF",
- "Settings": "Paramètres",
- "About": "À propos",
- "Menu": "Menu",
- "Directory": "Répertoire",
- "Toggle focus mode": "Basculer en mode focus",
- "Edit mode": "Mode édition",
- "Restart Script": "Démarrer le script",
- "Write Mode": "Mode écriture",
- "Read Mode": "Mode lecture",
- "Preview Mode": "Mode prévisualisation",
- "Wide": "Large",
- "Medium": "Moyen",
- "Narrow": "Étroit",
- "Yes": "Oui",
- "No": "Non",
- "Cancel": "Annuler",
- "Confirm": "Confirmer",
- "Save changes to file?": "Enregistrer les changements?",
- "File changed by another program, reload?": "Fichier modifié par un autre programme, recharger?",
- "Markdown Documents": "Documents Markdown",
- "HTML Documents": "Documents HTML",
- "PDF Documents": "Documents PDF",
- "CSS Files": "Fichiers CSS",
- "All Files": "Tous les fichiers",
- "Saved successfully.": "Enregistrement réussi.",
- "Can't save file": "Impossible d'enregistrer le fichier",
- "Exporting as HTML, please wait ...": "Exportation au format HTML, veuillez patienter...",
- "Exporting as PDF, please wait ...": "Exportation au format PDF, veuillez patienter...",
- "Can't export as HTML": "Ne peut pas être exporté au format HTML",
- "Can't export as PDF": "Ne peut pas être exporté au format PDF",
- "General": "Général",
- "Edit": "Édition",
- "Appearance": "Apparence",
- "Render": "Rendu",
- "Language": "Langue",
- "Reload when file changed": "Recharger quand le fichier est modifié",
- "Font": "Police",
- "Font Size": "Taille de la police",
- "Line Height": "Hauteur de ligne",
- "Tab Size": "Taille de tabulation",
- "Color Theme": "Couleur du thème",
- "TeX Math Expressions": "Expressions TeX Math",
- "UML Diagrams": "Diagrammes UML",
- "Brakes": "Brakes",
- "Highlight Theme": "Thème de coloration syntaxique",
- "Render Theme": "Thème de rendu",
- "Custom CSSs": "CSS personnalisés",
- "Default": "Par défaut",
- "System Default": "Par défaut du système",
- "version": "version",
- "Auto": "Automatique",
- "Prompt": "Demander",
- "Never": "Jamais",
- "Undo": "Annuler",
- "Redo": "Refaire",
- "Cut": "Couper",
- "Copy": "Copier",
- "Paste": "Coller",
- "Delete": "Supprimer",
- "Select All": "Tout sélectionner",
- "Services": "Services",
- "Hide": "Cacher",
- "Hide Others": "Cacher les autres",
- "Show All": "Afficher tout",
- "Quit": "Quitter",
- "Close": "Fermer",
- "Minimize": "Minimiser",
- "Zoom": "Zoom",
- "Bring All to Front": "Mettre tout à l'avant",
- "File": "Fichier",
- "Export": "Exportation",
- "Mode": "Mode",
- "View": "Voir",
- "Window": "Fenêtre",
- "Help": "Aide",
- "Toggle Developer Tools": "Basculer vers les outils développeurs",
- "Preference": "Préférence"
- },
- "es": {
- "_name": "Español",
- "New": "Nuevo",
- "Open": "Abrir",
- "Save": "Guardar",
- "Save as": "Guardar como",
- "Export as HTML": "Exportar como HTML",
- "Export as PDF": "Exportar como PDF",
- "Settings": "Configuración",
- "About": "Acerca de",
- "Menu": "Menú",
- "Directory": "Directorio",
- "Toggle focus mode": "Activar modo de concentración",
- "Edit mode": "Modo de edición",
- "Restart Script": "Comience la secuencia de comandos",
- "Write Mode": "Modo de Escritura",
- "Read Mode": "Modo de Lectura",
- "Preview Mode": "Modo de Previsualización",
- "Wide": "Amplio",
- "Medium": "Medio",
- "Narrow": "Estrecho",
- "Yes": "Sí",
- "No": "No",
- "Cancel": "Cancelar",
- "Confirm": "Confirmar",
- "Save changes to file?": "¿Guardar cambios?",
- "File changed by another program, reload?": "El Archivo ha sido modificado por otro programa, ¿desea recargarlo?",
- "Markdown Documents": "Documentos Markdown",
- "HTML Documents": "Documentos HTML",
- "PDF Documents": "Documentos PDF",
- "CSS Files": "Archivos CSS",
- "All Files": "Todos los Archivos",
- "Saved successfully.": "Guardado Exitosamente.",
- "Can't save file": "El archivo no pudo ser guardado",
- "Exporting as HTML, please wait ...": "Exportando como HTML, por favor espere...",
- "Exporting as PDF, please wait ...": "Exportando como PDF, por favor espere...",
- "Can't export as HTML": "No se puede exportar como HTML",
- "Can't export as PDF": "No se puede exportar como PDF",
- "General": "General",
- "Edit": "Editar",
- "Appearance": "Apariencia",
- "Render": "Renderización",
- "Language": "Lenguaje",
- "Reload when file changed": "Recargar cuando el archivo haya sido modificado",
- "Font": "Tipografía del Editor",
- "Font Size": "Tamaño de la Letra",
- "Line Height": "Interlineado",
- "Tab Size": "Tamaño de Tabulación",
- "Color Theme": "Tema de Color",
- "TeX Math Expressions":"Expresiones de TeX Math",
- "UML Diagrams": "Diagramas UML",
- "Brakes": "Brakes",
- "Highlight Theme": "Tema de Syntaxis",
- "Render Theme": "Tema de Renderización",
- "Custom CSSs": "CSSs Personalizados",
- "Default": "Predeterminado",
- "System Default": "Predeterminado del Sistema",
- "version": "versión",
- "Auto": "Auto",
- "Prompt": "Mensaje",
- "Never": "Nunca",
- "Undo": "Deshacer",
- "Redo": "Rehacer",
- "Cut": "Cortar",
- "Copy": "Copiar",
- "Paste": "Pegar",
- "Delete": "Borrar",
- "Select All": "Seleccionar Todo",
- "Services": "Servicios",
- "Hide": "Esconder",
- "Hide Others": "Esconder Otros",
- "Show All": "Mostrar Todo",
- "Quit": "Salir",
- "Close": "Cerrar",
- "Minimize": "Minimizar",
- "Zoom": "Zoom",
- "Bring All to Front": "Traer Todo al Frente",
- "File": "Archivo",
- "Export": "Exportar",
- "Mode": "Modo",
- "View": "Ver",
- "Window": "Ventana",
- "Help": "Ayuda",
- "Toggle Developer Tools": "Activar Herramientas de Desarrollador",
- "Preference": "Preferencias"
- },
- "nl": {
- "_name": "Nederlands",
- "New": "Nieuw",
- "Open": "Open",
- "Save": "Opslaan",
- "Save as": "Opslaan als",
- "Export as HTML": "Exporteren als HTML",
- "Export as PDF": "Exporteren als PDF",
- "Settings": "Instellingen",
- "About": "Over",
- "Menu": "Menu",
- "Directory": "Map",
- "Toggle focus mode": "Focus modus aan-/uitzetten",
- "Edit mode": "Bewerk modus",
- "Restart Script": "Start scriptet",
- "Write Mode": "Schrijf Modus",
- "Read Mode": "Lees Modus",
- "Preview Mode": "Voorbeeld Modus",
- "Wide": "Breed",
- "Medium": "Gemiddeld",
- "Narrow": "Smal",
- "Yes": "Ja",
- "No": "Nee",
- "Cancel": "Annuleren",
- "Confirm": "Bevestigen",
- "Save changes to file?": "Wijzigingen aan bestand opslaan?",
- "File changed by another program, reload?": "Bestand is gewijzigd door een ander programma, herladen?",
- "Markdown Documents": "Markdown Documenten",
- "HTML Documents": "HTML Documenten",
- "PDF Documents": "PDF Documenten",
- "CSS Files": "CSS Bestanden",
- "All Files": "Alle Bestanden",
- "Saved successfully.": "Succesvol opgeslagen.",
- "Can't save file": "Kan bestand niet opslaan",
- "Exporting as HTML, please wait ...": "Exporteren als HTML, even geduld alstublieft ...",
- "Exporting as PDF, please wait ...": "Exporteren als PDF, even geduld alstublieft ...",
- "Can't export as HTML": "Kan niet exporteren als HTML",
- "Can't export as PDF": "Kan niet exporteren als PDF",
- "General": "Algemeen",
- "Edit": "Bewerken",
- "Appearance": "Uiterlijk",
- "Render": "Renderen",
- "Language": "Taal",
- "Reload when file changed": "Herladen wanneer het bestand is gewijzigd",
- "Font": "Lettertype",
- "Font Size": "Lettertypegrootte",
- "Line Height": "Regelhoogte",
- "Tab Size": "Tabbreedte",
- "Color Theme": "Kleurthema",
- "TeX Math Expressions":"TeX Math Expressies",
- "UML Diagrams": "UML Diagrammen",
- "Brakes": "Brakes",
- "Highlight Theme": "Highlight Thema",
- "Render Theme": "Render Thema",
- "Custom CSSs": "Aangepaste CSSen",
- "Default": "Standaard",
- "System Default": "Systeemstandaard",
- "version": "versie",
- "Auto": "Automatisch",
- "Prompt": "Vragen",
- "Never": "Nooit",
- "Undo": "Ongedaan maken",
- "Redo": "Herhalen",
- "Cut": "Knippen",
- "Copy": "Kopiëren",
- "Paste": "Plakken",
- "Delete": "Verwijderen",
- "Select All": "Alles Selecteren",
- "Services": "Diensten",
- "Hide": "Verstoppen",
- "Hide Others": "Verstop Anderen",
- "Show All": "Alles tonen",
- "Quit": "Afsluiten",
- "Close": "Sluiten",
- "Minimize": "Minimaliseren",
- "Zoom": "Zoom",
- "Bring All to Front": "Alles naar Voren Brengen",
- "File": "Bestand",
- "Export": "Exporteer",
- "Mode": "Modus",
- "View": "Beeld",
- "Window": "Venster",
- "Help": "Help",
- "Toggle Developer Tools": "Developer Tools aan-/uitzetten",
- "Preference": "Voorkeur"
- },
- "it": {
- "_name": "Italian",
- "New": "Nuovo",
- "Open": "Apri",
- "Save": "Salva",
- "Save as": "Save con nome",
- "Export as HTML": "Esporta come HTML",
- "Export as PDF": "Esporta come PDF",
- "Settings": "Impostazioni",
- "About": "About",
- "Menu": "Menu",
- "Directory": "Directory",
- "Toggle focus mode": "Attiva modalità concentrazione",
- "Edit mode": "Modalità modifica",
- "Restart Script": "Byrjaðu handritið",
- "Write Mode": "Modalità scrittura",
- "Read Mode": "Modalità lettura",
- "Preview Mode": "Modalità anteprima",
- "Wide": "Largo",
- "Medium": "Medio",
- "Narrow": "Stretto",
- "Yes": "Sì",
- "No": "No",
- "Cancel": "Annulla",
- "Confirm": "Conferma",
- "Save changes to file?": "Salvare le modifiche apportate al file?",
- "File changed by another program, reload?": "Il file è stato modificato da un altro programma, vuoi caricare le nuove modifiche",
- "Markdown Documents": "Documenti Markdown",
- "HTML Documents": "Documenti HTML",
- "PDF Documents": "Documenti PDF",
- "CSS Files": "File CSS",
- "All Files": "Tutti i file",
- "Saved successfully.": "Salvataggio eseguito",
- "Can't save file": "Impossibile salvare il file",
- "Exporting as HTML, please wait ...": "Esportazione HTML in corso, attendere...",
- "Exporting as PDF, please wait ...": "Esportazione PDF in corso, attendere...",
- "Can't export as HTML": "Impossibile esportare in HTML",
- "Can't export as PDF": "Impossibile esportare in PDF",
- "General": "Generale",
- "Edit": "Modifica",
- "Appearance": "Aspetto",
- "Render": "Render",
- "Language": "Lingua",
- "Reload when file changed": "Ricarica quando il file cambia",
- "Font": "Carattere dell'editor",
- "Font Size": "Dimensione carattere",
- "Line Height": "Interlinea",
- "Tab Size": "Tabulazione",
- "Color Theme": "Tema colori",
- "TeX Math Expressions":"Espressioni Tex Math",
- "UML Diagrams": "Diagrammi UML",
- "Brakes": "Brakes",
- "Highlight Theme": "Highlight Theme",
- "Render Theme": "Tema di render",
- "Custom CSSs": "CSS personalizzato",
- "Default": "Predefinito",
- "System Default": "Predefinito dal Sistema",
- "version": "versione",
- "Auto": "Automatico",
- "Prompt": "Chiedi",
- "Never": "Mai",
- "Undo": "Undo",
- "Redo": "Redo",
- "Cut": "Taglia",
- "Copy": "Copia",
- "Paste": "Incolla",
- "Delete": "Cancella",
- "Select All": "Seleziona tutto",
- "Services": "Servizi",
- "Hide": "Nascondi",
- "Hide Others": "Nascondi altri",
- "Show All": "Visualizza tutti",
- "Quit": "Esci",
- "Close": "Chiudi",
- "Minimize": "Riduci",
- "Zoom": "Zoom",
- "Bring All to Front": "Porta tutti in cima",
- "File": "File",
- "Export": "Esporta",
- "Mode": "Modalità",
- "View": "Vedi",
- "Window": "Finestra",
- "Help": "Aiuto",
- "Toggle Developer Tools": "Attiva strumenti per sviluppatori",
- "Preference": "Preferenza"
- },
- "ru": {
- "_name": "Русский",
- "New": "Создать",
- "Open": "Открыть",
- "Save": "Сохранить",
- "Save as": "Сохранить как",
- "Export as HTML": "Экспорт в HTML",
- "Export as PDF": "Экспорт в PDF",
- "Settings": "Настройки",
- "About": "О программе",
- "Menu": "Меню",
- "Directory": "Папка",
- "Toggle focus mode": "Переключить режим фокусировки",
- "Edit mode": "Выбрать режим",
- "Restart Script": "Запустить скрипт",
- "Write Mode": "Правка",
- "Read Mode": "Чтение",
- "Preview Mode": "Предпросмотр",
- "Wide": "Широкий",
- "Medium": "Средний",
- "Narrow": "Компактный",
- "Yes": "Да",
- "No": "Нет",
- "Cancel": "Отмена",
- "Confirm": "Подтверждение",
- "Save changes to file?": "Сохранить изменения?",
- "File changed by another program, reload?": "Файл был изменен в другой программе, обновить содержимое?",
- "Markdown Documents": "Markdown-документы",
- "HTML Documents": "HTML-документы",
- "PDF Documents": "PDF-документы",
- "CSS Files": "CSS-файлы",
- "All Files": "Все файлы",
- "Saved successfully.": "Файл сохранен.",
- "Can't save file": "Не удалось сохранить файл",
- "Exporting as HTML, please wait ...": "Идет экспорт в HTML, пожалуйста, подождите...",
- "Exporting as PDF, please wait ...": "Идет экспорт в PDF, пожалуйста, подождите...",
- "Can't export as HTML": "Не удалось выполнить экспорт в HTML",
- "Can't export as PDF": "Не удалось выполнить экспорт в PDF",
- "General": "Основные",
- "Edit": "Правка",
- "Appearance": "Внешний вид",
- "Render": "Визуализация",
- "Language": "Язык",
- "Reload when file changed": "Обновление содержимого при изменении файла",
- "Font": "Шрифт редактора",
- "Font Size": "Размер шрифта",
- "Line Height": "Высота строк",
- "Tab Size": "Размер табуляции",
- "Color Theme": "Цветовая тема",
- "TeX Math Expressions": "Выражения TeX",
- "UML Diagrams": "Диаграммы UML",
- "Brakes": "Brakes",
- "Highlight Theme": "Тема подсветки кода",
- "Render Theme": "Тема визуализации",
- "Custom CSSs": "Пользовательский CSS",
- "Default": "По умолчанию",
- "System Default": "Системный",
- "version": "версия",
- "Auto": "Всегда",
- "Prompt": "Спрашивать",
- "Never": "Никогда",
- "Undo": "Отменить",
- "Redo": "Вернуть",
- "Cut": "Вырезать",
- "Copy": "Копировать",
- "Paste": "Вставить",
- "Delete": "Удалить",
- "Select All": "Выделить все",
- "Services": "Службы",
- "Hide": "Скрыть",
- "Hide Others": "Скрыть остальные",
- "Show All": "Показать все",
- "Quit": "Выход",
- "Close": "Закрыть",
- "Minimize": "Свернуть",
- "Zoom": "Масштаб",
- "Bring All to Front": "Показать все",
- "File": "Файл",
- "Export": "Экспорт",
- "Mode": "Режим",
- "View": "Просмотр",
- "Window": "Окно",
- "Help": "Помощь",
- "Toggle Developer Tools": "Показать/скрыть инструменты разработчика",
- "Preference": "Настройка"
- },
- }
|