moe-l10n.js 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148
  1. /*
  2. * This file is part of Moeditor.
  3. *
  4. * Copyright (c) 2016 Menci <huanghaorui301@gmail.com>
  5. * Copyright (c) 2016 lucaschimweg
  6. * Copyright (c) 2016 douglaseccker
  7. * Copyright (c) 2016 PifyZ
  8. * Copyright (c) 2016 Hyuchia
  9. * Copyright (c) 2016 welksonramos
  10. * Copyright (c) 2016 caiocdasilva
  11. * Copyright (c) 2016 lawgsy <lawgsy@gmail.com>
  12. *
  13. * Moeditor is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation, either version 3 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * Moeditor is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with Moeditor. If not, see <http://www.gnu.org/licenses/>.
  25. *
  26. * The translation providers:
  27. * - en: Menci
  28. * - zh_CN: Menci
  29. * - de: lucaschimweg
  30. * - pt: douglaseccker & welksonramos & caiocdasilva
  31. * - fr: PifyZ
  32. * - es: Hyuchia
  33. * - nl: lawgsy
  34. * - it: iamsisar
  35. *
  36. * If you want to help translate this app, please copy the `en` items of the
  37. * `strings` constant as the template, and fill each item with the translated
  38. * string. The `_name` item in a language is the language's name.
  39. *
  40. * You can translate for a language (e.g. en) or a language with specified
  41. * region (e.g. zh_CN). The app will choose the language with specified region
  42. * first, fallback to only language when the former is unavailable, and fallback
  43. * to English when they are all unavailable.
  44. *
  45. * Send a PR to us after translating.
  46. *
  47. */
  48. 'use strict'
  49. const osLocale = require('os-locale');
  50. class MoeditorLocale {
  51. constructor() {
  52. if (moeApp.config.get('locale') !== 'default') {
  53. this.locale = moeApp.config.get('locale');
  54. } else {
  55. this.locale = 'default';
  56. }
  57. this.sysLocale = osLocale.sync();
  58. if (typeof strings[this.sysLocale] === 'undefined') {
  59. this.sysLocale = this.sysLocale.substr(0, this.sysLocale.indexOf('_'));
  60. if (typeof strings[this.sysLocale] === 'undefined') {
  61. this.sysLocale = '';
  62. }
  63. }
  64. if (this.locale === 'default') {
  65. this.locale = this.sysLocale;
  66. }
  67. }
  68. setLocale(locale) {
  69. this.locale = locale;
  70. if (this.locale === 'default') {
  71. this.locale = this.sysLocale;
  72. }
  73. }
  74. get(str) {
  75. let res;
  76. if (typeof strings[this.locale] == 'undefined' || typeof strings[this.locale][str] == 'undefined') {
  77. res = strings['en'][str];
  78. if (!res || res == undefined )
  79. res = str;
  80. // console.log('Localization of "' + str + '" in "' + this.locale + '" failed, falling back to English.');
  81. } else {
  82. res = strings[this.locale][str];
  83. if (!res || res == undefined )
  84. res = str;
  85. }
  86. return res;
  87. }
  88. getLanguages() {
  89. let languages = {};
  90. for (let lang in strings) languages[lang] = strings[lang]._name;
  91. return languages;
  92. }
  93. }
  94. module.exports = MoeditorLocale;
  95. const strings = {
  96. "en": {
  97. "_name": "English",
  98. "New": "New",
  99. "New Post": "New Post",
  100. "Open": "Open",
  101. "Save": "Save",
  102. "Save as": "Save as",
  103. "Export as HTML": "Export as HTML",
  104. "Export as PDF": "Export as PDF",
  105. "Settings": "Settings",
  106. "About": "About",
  107. "Menu": "Menu",
  108. "Directory": "Directory",
  109. "Toggle focus mode": "Toggle focus mode",
  110. "Edit mode": "Edit mode",
  111. "Refresh": "Refresh",
  112. "Restart Script": "Restart script",
  113. "Write Mode": "Write Mode",
  114. "Read Mode": "Read Mode",
  115. "Preview Mode": "Preview Mode",
  116. "Wide": "Wide",
  117. "Medium": "Medium",
  118. "Narrow": "Narrow",
  119. "Yes": "Yes",
  120. "No": "No",
  121. "Cancel": "Cancel",
  122. "Confirm": "Confirm",
  123. "Save changes to file?": "Save changes to file?",
  124. "File changed by another program, reload?": "File changed by another program, reload?",
  125. "Markdown Documents": "Markdown Documents",
  126. "HTML Documents": "HTML Documents",
  127. "PDF Documents": "PDF Documents",
  128. "CSS Files": "CSS Files",
  129. "All Files": "All Files",
  130. "Saved successfully.": "Saved successfully.",
  131. "Can't save file": "Can't save file",
  132. "Exporting as HTML, please wait ...": "Exporting as HTML, please wait ...",
  133. "Exporting as PDF, please wait ...": "Exporting as PDF, please wait ...",
  134. "Can't export as HTML": "Can't export as HTML",
  135. "Can't export as PDF": "Can't export as PDF",
  136. "General": "General",
  137. "Edit": "Edit",
  138. "Appearance": "Appearance",
  139. "Render": "Render",
  140. "Breaks": "Breaks",
  141. "Language": "Language",
  142. "Reload when file changed": "Reload when file changed",
  143. "Font": "Editor Font",
  144. "Font Size": "Font Size",
  145. "Line Height": "Line Height",
  146. "Tab Size": "Tab Size",
  147. "Zoom factor": "Zoom Factor",
  148. "Color Theme": "Color Theme",
  149. "TeX Math Expressions":"TeX Math Expressions",
  150. "UML Diagrams": "UML Diagrams",
  151. "Brakes": "Brakes",
  152. "Highlight Theme": "Highlight Theme",
  153. "Render Theme": "Render Theme",
  154. "Custom CSSs": "Custom CSSs",
  155. "Def Show Number": "Default Show Line Number",
  156. "Show Number": "Show Line Number",
  157. "Scroll Sync": "Scroll Sync",
  158. "File Rename": "File Rename",
  159. "Hexo Auto": "Auto Hexo Setting",
  160. "Hexo": "Hexo",
  161. "Hexo Mode": "Hexo Mode",
  162. "Extend Highlight": "Extend Highlight",
  163. "Hexo Config": "Hexo Config",
  164. "Hexo tags": "Tag Templates",
  165. "HEXOQuickPublish": "Quick Deploy",
  166. "HEXOServer": "Start Server",
  167. "HEXOClean": "Clean Cache",
  168. "HEXOGenerate": "Generate file",
  169. "HEXODeploy": "Deploy web",
  170. "HEXOKillPort": "Kill Port Thread",
  171. "ban": "Cancle",
  172. "stop": "Stop",
  173. "close": "Close",
  174. "check": "Confirm",
  175. "ServerStart": "Service Started And Continue... ",
  176. "Executing": "Operation Executing...",
  177. "Operation Execution Timeout": "Operation Execution Timeout !",
  178. "Operation Finished": "Operation Finished !",
  179. "Operation Canceled": "Operation Canceled !",
  180. "PortOccupied": "[ %s:%s ] Port is occupied, please change other IP or Port.",
  181. "Waring": "Waring",
  182. "WaringNoFile": "No CSS files found !",
  183. "WaringNoFileDetail1": 'Please check the directory: \n"',
  184. "WaringNoFileDetail2": '"\n\nIf you were used Hexo,\nyou can try open Hexo\'s directory and execute command \n"hexo -g" to solve.',
  185. "Default": "Default",
  186. "System Default": "System Default",
  187. "version": "version",
  188. "Auto save": "Auto save",
  189. "Auto": "Auto",
  190. "Prompt": "Prompt",
  191. "Never": "Never",
  192. "Image": "Image",
  193. "Source Center": "Source Center",
  194. "Web Type": "Web Type",
  195. "WebSM": "SM.MS",
  196. "QiNiu": "QiNiu",
  197. "BackImage": "Back Image To Cloud",
  198. "WebCOS": "Tencent",
  199. "AccessKey": "Access Key",
  200. "SecretKey": "Secret Key",
  201. "Bucket": "Bucket",
  202. "BaseWeb": "Base Web",
  203. "Customize": "Customize origin",
  204. "Undo": "Undo",
  205. "Redo": "Redo",
  206. "Cut": "Cut",
  207. "Copy": "Copy",
  208. "Paste": "Paste",
  209. "Delete": "Delete",
  210. "Select All": "Select All",
  211. "UploadToCOS": "Upload To COS",
  212. "UploadToSMMS": "Upload To SM.MS",
  213. "UploadToQiNiu": "Upload To QiNiu",
  214. "UndoUpload": "Undo Uploaded",
  215. "Quick Open":"Quick Open",
  216. "OpenPathPost":"Open Post Path",
  217. "OpenPathPostSrc":"Open Post Src Path",
  218. "OpenPathSrcCenter":"Open All Src Path",
  219. "OpenPathHEXO":"Open Hexo Path",
  220. "WebIndex":"Open Your Index",
  221. "WebLocalIndex":"Open Local Index",
  222. "WebCOSSource":"Open COS Src Index",
  223. "WebQiNiuSource":"Open QiNiu Src Index",
  224. "WebSMMS":"Open SM.MS Index",
  225. "Services": "Services",
  226. "Hide": "Hide",
  227. "Hide Others": "Hide Others",
  228. "Show All": "Show All",
  229. "Quit": "Quit",
  230. "Close": "Close",
  231. "Minimize": "Minimize",
  232. "Zoom": "Zoom",
  233. "Bring All to Front": "Bring All to Front",
  234. "File": "File",
  235. "Export": "Export",
  236. "Mode": "Mode",
  237. "View": "View",
  238. "Window": "Window",
  239. "Help": "Help",
  240. "Toggle Developer Tools": "Toggle Developer Tools",
  241. "Preference": "Preference",
  242. "No Find File.": "No Find File.",
  243. "Upload Finished": "Upload Finished.",
  244. "Access Denied.": "Access Denied.",
  245. "Upload file count limit.": "Upload file count limit.",
  246. "Upload file frequency limit.": "Upload file frequency limit.",
  247. "Server error. Upload directory isn't writable.": "Server error. Upload directory isn't writable.",
  248. "No files were uploaded.": "No files were uploaded.",
  249. "File is empty.": "File is empty.",
  250. "File is too large.": "File is too large.(Max: 5M)",
  251. "File has an invalid extension.": "File has an invalid extension.",
  252. "Could not save uploaded file.": "Could not save uploaded file."
  253. },
  254. "zh_CN": {
  255. "_name": "简体中文",
  256. "New": "新建",
  257. "New Post": "新建Post",
  258. "Open": "打开",
  259. "Save": "保存",
  260. "Save as": "另存为",
  261. "Export as HTML": "导出为 HTML",
  262. "Export as PDF": "导出为 PDF",
  263. "Settings": "设置",
  264. "About": "关于",
  265. "Menu": "菜单",
  266. "Directory": "目录",
  267. "Toggle focus mode": "切换专注模式",
  268. "Edit mode": "编辑模式",
  269. "Restart Script": "重启脚本",
  270. "Write Mode": "写作模式",
  271. "Read Mode": "阅读模式",
  272. "Preview Mode": "预览模式",
  273. "Wide": "宽",
  274. "Medium": "中等",
  275. "Narrow": "窄",
  276. "Yes": "是",
  277. "No": "否",
  278. "Cancel": "取消",
  279. "Confirm": "询问",
  280. "Save changes to file?": "将修改保存到文件?",
  281. "File changed by another program, reload?": "文件被另一程序修改,是否重新加载?",
  282. "Markdown Documents": "Markdown 文档",
  283. "HTML Documents": "HTML 文档",
  284. "PDF Documents": "PDF 文档",
  285. "CSS Files": "CSS 文件",
  286. "All Files": "所有文件",
  287. "Saved successfully.": "保存成功。",
  288. "Can't save file": "无法保存文件",
  289. "Exporting as HTML, please wait ...": "正在导出为 HTML,请稍候 ...",
  290. "Exporting as PDF, please wait ...": "正在导出为 PDF,请稍候 ...",
  291. "Can't export as HTML": "无法导出为 HTML",
  292. "Can't export as PDF": "无法导出为 PDF",
  293. "General": "通用",
  294. "Edit": "编辑",
  295. "Appearance": "外观",
  296. "Render": "渲染",
  297. "Breaks": "换行",
  298. "Language": "语言",
  299. "Reload when file changed": "当文件被修改时,重新加载",
  300. "Font": "字体",
  301. "Font Size": "字体大小",
  302. "Line Height": "行高",
  303. "Tab Size": "Tab 大小",
  304. "Zoom factor": "缩放比例",
  305. "Color Theme": "颜色主题",
  306. "TeX Math Expressions": "TeX 数学表达式",
  307. "UML Diagrams": "UML 图表",
  308. "Brakes": "Brakes",
  309. "Highlight Theme": "高亮主题",
  310. "Render Theme": "渲染主题",
  311. "Custom CSSs": "自定义 CSS",
  312. "Def Show Number": "默认显示行号",
  313. "Show Number": "显示行号",
  314. "Scroll Sync": "同步滚动",
  315. "File Rename": "同步文件名",
  316. "Hexo Auto": "Hexo自动设置",
  317. "Hexo": "Hexo",
  318. "Hexo Mode": "Hexo模式",
  319. "Extend Highlight": "自定义代码块",
  320. "Hexo Config": "Hexo配置文件",
  321. "Hexo tags": "Tag模板目录",
  322. "HEXOQuickPublish": "一键部署",
  323. "HEXOServer": "启动服务器",
  324. "HEXOClean": "清除缓存文件",
  325. "HEXOGenerate": "生成静态文件",
  326. "HEXODeploy": "部署网站",
  327. "HEXOKillPort": "结束占用进程",
  328. "ban": "取消",
  329. "stop": "停止",
  330. "close": "关闭",
  331. "check": "确认",
  332. "ServerStart": "服务已启动...",
  333. "Executing": "操作执行中...",
  334. "Operation Execution Timeout": "操作执行超时!",
  335. "Operation Finished": "操作完成!",
  336. "Operation Canceled": "取消操作!",
  337. "PortOccupied": "[ %s:%s ] 端口占用, 请更换IP地址或端口。",
  338. "Waring": "警告",
  339. "WaringNoFile": "没有发现CSS文件!",
  340. "WaringNoFileDetail1": '请检查如下路径: \n"',
  341. "WaringNoFileDetail2": '"\n\n如果你使用Hexo框架,\n可尝试在Hexo项目目录下运行命令"hexo -g"来解决。',
  342. "Default": "默认",
  343. "System Default": "系统默认",
  344. "version": "版本",
  345. "Refresh": "刷新界面",
  346. "Auto save": "自动保存",
  347. "Auto": "自动",
  348. "Prompt": "询问",
  349. "Never": "从不",
  350. "Image": "图片",
  351. "Source Center": "默认资源库",
  352. "Web Type": "云图类型",
  353. "WebSM": "SM.MS 图床",
  354. "QiNiu": "七牛云",
  355. "WebCOS": "腾讯云",
  356. "BackImage": "备份到云",
  357. "AccessKey": "Access Key",
  358. "SecretKey": "Secret Key",
  359. "Bucket": "存储空间",
  360. "BaseWeb": "域名",
  361. "Customize": "自定义域名",
  362. "Undo": "撤销",
  363. "Redo": "重做",
  364. "Cut": "剪切",
  365. "Copy": "复制",
  366. "Paste": "粘贴",
  367. "Delete": "删除",
  368. "Select All": "全选",
  369. "UploadToCOS": "上传 腾讯云",
  370. "UploadToSMMS": "上传 SM.MS",
  371. "UploadToQiNiu": "上传 七牛",
  372. "UndoUpload": "撤销上传",
  373. "Quick Open":"快速打开",
  374. "OpenPathPost":"本文所在路径",
  375. "OpenPathPostSrc":"本文图片路径",
  376. "OpenPathSrcCenter":"全部图片路径",
  377. "OpenPathHEXO":"Hexo项目路径",
  378. "WebIndex":"主页",
  379. "WebLocalIndex":"本地主页",
  380. "WebCOSSource":"腾讯云主页",
  381. "WebQiNiuSource":"七牛云主页",
  382. "WebSMMS":"SM.MS主页",
  383. "Services": "服务",
  384. "Hide": "隐藏",
  385. "Hide Others": "隐藏其他",
  386. "Show All": "显示全部",
  387. "Quit": "退出",
  388. "Close": "关闭",
  389. "Minimize": "最小化",
  390. "Zoom": "缩放",
  391. "Bring All to Front": "前置全部窗口",
  392. "File": "文件",
  393. "Export": "导出",
  394. "Mode": "模式",
  395. "View": "查看",
  396. "Window": "窗口",
  397. "Help": "帮助",
  398. "Toggle Developer Tools": "切换开发者工具",
  399. "Preference": "偏好设置",
  400. "No Find File.": "未找到文件.",
  401. "Upload Finished": "上传完成.",
  402. "Access Denied.": "服务器拒绝访问.",
  403. "Upload file count limit.": "超出上传文件数量.",
  404. "Upload file frequency limit.": "上传文件频率限制.",
  405. "Server error. Upload directory isn't writable.": "服务器错误。上传目录不可写.",
  406. "No files were uploaded.": "没有文件上传.",
  407. "File is empty.": "文件是空的.",
  408. "File is too large.": "文件太大.(最大支持5M)",
  409. "File has an invalid extension.": "文件扩展名无效.",
  410. "Could not save uploaded file.": "无法保存上传的文件."
  411. },
  412. "de": {
  413. "_name": "Deutsch",
  414. "New": "Neu",
  415. "Open": "Öffnen",
  416. "Save": "Speichern",
  417. "Save as": "Speichern als...",
  418. "Export as HTML": "Als HTML exportieren",
  419. "Export as PDF": "Als PDF exportieren",
  420. "Settings": "Einstellungen",
  421. "About": "Über",
  422. "Menu": "Menü",
  423. "Directory": "Ordner",
  424. "Toggle focus mode": "Fokusmodus umschalten",
  425. "Edit mode": "Bearbeitungsmodus",
  426. "Restart Script": "Restart script",
  427. "Write Mode": "Schreibmodus",
  428. "Read Mode": "Lesemodus",
  429. "Preview Mode": "Vorschaumodus",
  430. "Wide": "Breit",
  431. "Medium": "Normal",
  432. "Narrow": "Schmal",
  433. "Yes": "Ja",
  434. "No": "Nein",
  435. "Cancel": "Abbrechen",
  436. "Confirm": "Bestätigen",
  437. "Save changes to file?": "Änderungen in Datei speichern?",
  438. "File changed by another program, reload?": "Dateien von anderem Programm geändert, neu laden?",
  439. "Markdown Documents": "Markdown Dokumente",
  440. "HTML Documents": "HTML Dokumente",
  441. "PDF Documents": "PDF Dokumente",
  442. "CSS Files": "CSS Dateien",
  443. "All Files": "Alle Dateien",
  444. "Saved successfully.": "Speichern erfolgreich.",
  445. "Can't save file": "Datei kann nicht gespeichert werden.",
  446. "Exporting as HTML, please wait ...": "Wird als HTML exportiert, bitte warten ...",
  447. "Exporting as PDF, please wait ...": "Wird als HTML exportiert, bitte warten ...",
  448. "Can't export as HTML": "Kann nicht als HTML exporiert werden.",
  449. "Can't export as PDF": "Kann nicht als PDF exporiert werden.",
  450. "General": "Allgemein",
  451. "Edit": "Bearbeiten",
  452. "Appearance": "Aussehen",
  453. "Render": "Rendern",
  454. "Language": "Sprache",
  455. "Reload when file changed": "Neu laden wenn Datei geändert",
  456. "Font": "Editor Schriftart",
  457. "Font Size": "Schriftgröße",
  458. "Line Height": "Zeilenhöhe",
  459. "Tab Size": "Tabgröße",
  460. "Color Theme": "Farbthema",
  461. "TeX Math Expressions":"TeX Mathematikausdrücke",
  462. "UML Diagrams": "UML Diagramme",
  463. "Brakes": "Brakes",
  464. "Highlight Theme": "Highlight-Thema",
  465. "Render Theme": "Renderthema",
  466. "Custom CSSs": "Benutzerdefiniertes CSS",
  467. "Default": "Standart",
  468. "System Default": "Systemstandart",
  469. "version": "Version",
  470. "Auto": "Automatisch",
  471. "Prompt": "Fragen",
  472. "Never": "Nie",
  473. "Undo": "Rückgängig machen",
  474. "Redo": "Wiederholen",
  475. "Cut": "Ausscheiden",
  476. "Copy": "Kopieren",
  477. "Paste": "Einfügen",
  478. "Delete": "Löschen",
  479. "Select All": "Alles auswählen",
  480. "Services": "Services",
  481. "Hide": "Verstecken",
  482. "Hide Others": "Andere Verstecken",
  483. "Show All": "Alle zeigen",
  484. "Quit": "Beenden",
  485. "Close": "Schließen",
  486. "Minimize": "Minimieren",
  487. "Zoom": "Zoom",
  488. "Bring All to Front": "Alle anzeigen",
  489. "File": "Datei",
  490. "Export": "Exportieren",
  491. "Mode": "Modus",
  492. "View": "Ansicht",
  493. "Window": "Fenster",
  494. "Help": "Hilfe",
  495. "Toggle Developer Tools": "Entwicklereinstellungen umschalten",
  496. "Preference": "Einstellung"
  497. },
  498. "pt": {
  499. "_name": "Português",
  500. "New": "Novo",
  501. "Open": "Abrir",
  502. "Save": "Salvar",
  503. "Save as": "Salvar como",
  504. "Export as HTML": "Exportar como HTML",
  505. "Export as PDF": "Exportar como PDF",
  506. "Settings": "Configurações",
  507. "About": "Sobre",
  508. "Menu": "Menu",
  509. "Directory": "Diretório",
  510. "Toggle focus mode": "Alternar para o modo foco",
  511. "Edit mode": "Editar modo",
  512. "Restart Script": "Inicie o script",
  513. "Write Mode": "Modo Escrita",
  514. "Read Mode": "Modo Leitura",
  515. "Preview Mode": "Mode de Pré-visualização",
  516. "Wide": "Largo",
  517. "Medium": "Médio",
  518. "Narrow": "Estreito",
  519. "Yes": "Sim",
  520. "No": "Não",
  521. "Cancel": "Cancelar",
  522. "Confirm": "Confirmar",
  523. "Save changes to file?": "Salvar as alterações no arquivo?",
  524. "File changed by another program, reload?": "Arquivo modificado por outro programa, recarregar?",
  525. "Markdown Documents": "Documentos Markdown",
  526. "HTML Documents": "Documentos HTML",
  527. "PDF Documents": "Documentos PDF",
  528. "CSS Files": "Arquivos CSS",
  529. "All Files": "Todos os Arquivos",
  530. "Saved successfully.": "Salvo com sucesso",
  531. "Can't save file": "Não é possível salvar o arquivo",
  532. "Exporting as HTML, please wait ...": "Exportando como HTML, aguarde ...",
  533. "Exporting as PDF, please wait ...": "Exportando como PDF, aguarde...",
  534. "Can't export as HTML": "Não é possível exportar como HTML",
  535. "Can't export as PDF": "Não é possível exportar como PDF",
  536. "General": "Geral",
  537. "Edit": "Editar",
  538. "Appearance": "Aparência",
  539. "Render": "Renderização",
  540. "Language": "Idioma",
  541. "Reload when file changed": "Recarregar quando o arquivo for alterado",
  542. "Font": "Fonte",
  543. "Font Size": "Tamanho da Fonte",
  544. "Line Height": "Altura da Linha",
  545. "Tab Size": "Tamanho da Tabulação",
  546. "Color Theme": "Tema",
  547. "TeX Math Expressions":"Expressões TeX Math",
  548. "UML Diagrams": "Diagramas UML",
  549. "Brakes": "Brakes",
  550. "Highlight Theme": "Tema de Sintaxe",
  551. "Render Theme": "Tema de Renderização",
  552. "Custom CSSs": "CSSs Personalizados",
  553. "Default": "Padrão",
  554. "System Default": "Padrão do Sistema",
  555. "version": "versão",
  556. "Auto": "Automático",
  557. "Prompt": "Perguntar",
  558. "Never": "Nunca",
  559. "Undo": "Desfazer",
  560. "Redo": "Refazer",
  561. "Cut": "Cortar",
  562. "Copy": "Copiar",
  563. "Paste": "Colar",
  564. "Delete": "Excluir",
  565. "Select All": "Selecionar Tudo",
  566. "Services": "Serviços",
  567. "Hide": "Ocultar",
  568. "Hide Others": "Ocultar Outros",
  569. "Show All": "Exibir Tudo",
  570. "Quit": "Sair",
  571. "Close": "Fechar",
  572. "Minimize": "Minimizar",
  573. "Zoom": "Zoom",
  574. "Bring All to Front": "Trazer todas para frente",
  575. "File": "Arquivo",
  576. "Export": "Exportar",
  577. "Mode": "Modo",
  578. "View": "Visualizar",
  579. "Window": "Janela",
  580. "Help": "Ajuda",
  581. "Toggle Developer Tools": "Alternar Ferramentas de Desenvolvimento",
  582. "Preference": "Preferências"
  583. },
  584. "fr": {
  585. "_name": "Français",
  586. "New": "Nouveau",
  587. "Open": "Ouvrir",
  588. "Save": "Enregistrer",
  589. "Save as": "Enregistrer sous",
  590. "Export as HTML": "Exporter comme HTML",
  591. "Export as PDF": "Exporter comme PDF",
  592. "Settings": "Paramètres",
  593. "About": "À propos",
  594. "Menu": "Menu",
  595. "Directory": "Répertoire",
  596. "Toggle focus mode": "Basculer en mode focus",
  597. "Edit mode": "Mode édition",
  598. "Restart Script": "Démarrer le script",
  599. "Write Mode": "Mode écriture",
  600. "Read Mode": "Mode lecture",
  601. "Preview Mode": "Mode prévisualisation",
  602. "Wide": "Large",
  603. "Medium": "Moyen",
  604. "Narrow": "Étroit",
  605. "Yes": "Oui",
  606. "No": "Non",
  607. "Cancel": "Annuler",
  608. "Confirm": "Confirmer",
  609. "Save changes to file?": "Enregistrer les changements?",
  610. "File changed by another program, reload?": "Fichier modifié par un autre programme, recharger?",
  611. "Markdown Documents": "Documents Markdown",
  612. "HTML Documents": "Documents HTML",
  613. "PDF Documents": "Documents PDF",
  614. "CSS Files": "Fichiers CSS",
  615. "All Files": "Tous les fichiers",
  616. "Saved successfully.": "Enregistrement réussi.",
  617. "Can't save file": "Impossible d'enregistrer le fichier",
  618. "Exporting as HTML, please wait ...": "Exportation au format HTML, veuillez patienter...",
  619. "Exporting as PDF, please wait ...": "Exportation au format PDF, veuillez patienter...",
  620. "Can't export as HTML": "Ne peut pas être exporté au format HTML",
  621. "Can't export as PDF": "Ne peut pas être exporté au format PDF",
  622. "General": "Général",
  623. "Edit": "Édition",
  624. "Appearance": "Apparence",
  625. "Render": "Rendu",
  626. "Language": "Langue",
  627. "Reload when file changed": "Recharger quand le fichier est modifié",
  628. "Font": "Police",
  629. "Font Size": "Taille de la police",
  630. "Line Height": "Hauteur de ligne",
  631. "Tab Size": "Taille de tabulation",
  632. "Color Theme": "Couleur du thème",
  633. "TeX Math Expressions": "Expressions TeX Math",
  634. "UML Diagrams": "Diagrammes UML",
  635. "Brakes": "Brakes",
  636. "Highlight Theme": "Thème de coloration syntaxique",
  637. "Render Theme": "Thème de rendu",
  638. "Custom CSSs": "CSS personnalisés",
  639. "Default": "Par défaut",
  640. "System Default": "Par défaut du système",
  641. "version": "version",
  642. "Auto": "Automatique",
  643. "Prompt": "Demander",
  644. "Never": "Jamais",
  645. "Undo": "Annuler",
  646. "Redo": "Refaire",
  647. "Cut": "Couper",
  648. "Copy": "Copier",
  649. "Paste": "Coller",
  650. "Delete": "Supprimer",
  651. "Select All": "Tout sélectionner",
  652. "Services": "Services",
  653. "Hide": "Cacher",
  654. "Hide Others": "Cacher les autres",
  655. "Show All": "Afficher tout",
  656. "Quit": "Quitter",
  657. "Close": "Fermer",
  658. "Minimize": "Minimiser",
  659. "Zoom": "Zoom",
  660. "Bring All to Front": "Mettre tout à l'avant",
  661. "File": "Fichier",
  662. "Export": "Exportation",
  663. "Mode": "Mode",
  664. "View": "Voir",
  665. "Window": "Fenêtre",
  666. "Help": "Aide",
  667. "Toggle Developer Tools": "Basculer vers les outils développeurs",
  668. "Preference": "Préférence"
  669. },
  670. "es": {
  671. "_name": "Español",
  672. "New": "Nuevo",
  673. "Open": "Abrir",
  674. "Save": "Guardar",
  675. "Save as": "Guardar como",
  676. "Export as HTML": "Exportar como HTML",
  677. "Export as PDF": "Exportar como PDF",
  678. "Settings": "Configuración",
  679. "About": "Acerca de",
  680. "Menu": "Menú",
  681. "Directory": "Directorio",
  682. "Toggle focus mode": "Activar modo de concentración",
  683. "Edit mode": "Modo de edición",
  684. "Restart Script": "Comience la secuencia de comandos",
  685. "Write Mode": "Modo de Escritura",
  686. "Read Mode": "Modo de Lectura",
  687. "Preview Mode": "Modo de Previsualización",
  688. "Wide": "Amplio",
  689. "Medium": "Medio",
  690. "Narrow": "Estrecho",
  691. "Yes": "Sí",
  692. "No": "No",
  693. "Cancel": "Cancelar",
  694. "Confirm": "Confirmar",
  695. "Save changes to file?": "¿Guardar cambios?",
  696. "File changed by another program, reload?": "El Archivo ha sido modificado por otro programa, ¿desea recargarlo?",
  697. "Markdown Documents": "Documentos Markdown",
  698. "HTML Documents": "Documentos HTML",
  699. "PDF Documents": "Documentos PDF",
  700. "CSS Files": "Archivos CSS",
  701. "All Files": "Todos los Archivos",
  702. "Saved successfully.": "Guardado Exitosamente.",
  703. "Can't save file": "El archivo no pudo ser guardado",
  704. "Exporting as HTML, please wait ...": "Exportando como HTML, por favor espere...",
  705. "Exporting as PDF, please wait ...": "Exportando como PDF, por favor espere...",
  706. "Can't export as HTML": "No se puede exportar como HTML",
  707. "Can't export as PDF": "No se puede exportar como PDF",
  708. "General": "General",
  709. "Edit": "Editar",
  710. "Appearance": "Apariencia",
  711. "Render": "Renderización",
  712. "Language": "Lenguaje",
  713. "Reload when file changed": "Recargar cuando el archivo haya sido modificado",
  714. "Font": "Tipografía del Editor",
  715. "Font Size": "Tamaño de la Letra",
  716. "Line Height": "Interlineado",
  717. "Tab Size": "Tamaño de Tabulación",
  718. "Color Theme": "Tema de Color",
  719. "TeX Math Expressions":"Expresiones de TeX Math",
  720. "UML Diagrams": "Diagramas UML",
  721. "Brakes": "Brakes",
  722. "Highlight Theme": "Tema de Syntaxis",
  723. "Render Theme": "Tema de Renderización",
  724. "Custom CSSs": "CSSs Personalizados",
  725. "Default": "Predeterminado",
  726. "System Default": "Predeterminado del Sistema",
  727. "version": "versión",
  728. "Auto": "Auto",
  729. "Prompt": "Mensaje",
  730. "Never": "Nunca",
  731. "Undo": "Deshacer",
  732. "Redo": "Rehacer",
  733. "Cut": "Cortar",
  734. "Copy": "Copiar",
  735. "Paste": "Pegar",
  736. "Delete": "Borrar",
  737. "Select All": "Seleccionar Todo",
  738. "Services": "Servicios",
  739. "Hide": "Esconder",
  740. "Hide Others": "Esconder Otros",
  741. "Show All": "Mostrar Todo",
  742. "Quit": "Salir",
  743. "Close": "Cerrar",
  744. "Minimize": "Minimizar",
  745. "Zoom": "Zoom",
  746. "Bring All to Front": "Traer Todo al Frente",
  747. "File": "Archivo",
  748. "Export": "Exportar",
  749. "Mode": "Modo",
  750. "View": "Ver",
  751. "Window": "Ventana",
  752. "Help": "Ayuda",
  753. "Toggle Developer Tools": "Activar Herramientas de Desarrollador",
  754. "Preference": "Preferencias"
  755. },
  756. "nl": {
  757. "_name": "Nederlands",
  758. "New": "Nieuw",
  759. "Open": "Open",
  760. "Save": "Opslaan",
  761. "Save as": "Opslaan als",
  762. "Export as HTML": "Exporteren als HTML",
  763. "Export as PDF": "Exporteren als PDF",
  764. "Settings": "Instellingen",
  765. "About": "Over",
  766. "Menu": "Menu",
  767. "Directory": "Map",
  768. "Toggle focus mode": "Focus modus aan-/uitzetten",
  769. "Edit mode": "Bewerk modus",
  770. "Restart Script": "Start scriptet",
  771. "Write Mode": "Schrijf Modus",
  772. "Read Mode": "Lees Modus",
  773. "Preview Mode": "Voorbeeld Modus",
  774. "Wide": "Breed",
  775. "Medium": "Gemiddeld",
  776. "Narrow": "Smal",
  777. "Yes": "Ja",
  778. "No": "Nee",
  779. "Cancel": "Annuleren",
  780. "Confirm": "Bevestigen",
  781. "Save changes to file?": "Wijzigingen aan bestand opslaan?",
  782. "File changed by another program, reload?": "Bestand is gewijzigd door een ander programma, herladen?",
  783. "Markdown Documents": "Markdown Documenten",
  784. "HTML Documents": "HTML Documenten",
  785. "PDF Documents": "PDF Documenten",
  786. "CSS Files": "CSS Bestanden",
  787. "All Files": "Alle Bestanden",
  788. "Saved successfully.": "Succesvol opgeslagen.",
  789. "Can't save file": "Kan bestand niet opslaan",
  790. "Exporting as HTML, please wait ...": "Exporteren als HTML, even geduld alstublieft ...",
  791. "Exporting as PDF, please wait ...": "Exporteren als PDF, even geduld alstublieft ...",
  792. "Can't export as HTML": "Kan niet exporteren als HTML",
  793. "Can't export as PDF": "Kan niet exporteren als PDF",
  794. "General": "Algemeen",
  795. "Edit": "Bewerken",
  796. "Appearance": "Uiterlijk",
  797. "Render": "Renderen",
  798. "Language": "Taal",
  799. "Reload when file changed": "Herladen wanneer het bestand is gewijzigd",
  800. "Font": "Lettertype",
  801. "Font Size": "Lettertypegrootte",
  802. "Line Height": "Regelhoogte",
  803. "Tab Size": "Tabbreedte",
  804. "Color Theme": "Kleurthema",
  805. "TeX Math Expressions":"TeX Math Expressies",
  806. "UML Diagrams": "UML Diagrammen",
  807. "Brakes": "Brakes",
  808. "Highlight Theme": "Highlight Thema",
  809. "Render Theme": "Render Thema",
  810. "Custom CSSs": "Aangepaste CSSen",
  811. "Default": "Standaard",
  812. "System Default": "Systeemstandaard",
  813. "version": "versie",
  814. "Auto": "Automatisch",
  815. "Prompt": "Vragen",
  816. "Never": "Nooit",
  817. "Undo": "Ongedaan maken",
  818. "Redo": "Herhalen",
  819. "Cut": "Knippen",
  820. "Copy": "Kopiëren",
  821. "Paste": "Plakken",
  822. "Delete": "Verwijderen",
  823. "Select All": "Alles Selecteren",
  824. "Services": "Diensten",
  825. "Hide": "Verstoppen",
  826. "Hide Others": "Verstop Anderen",
  827. "Show All": "Alles tonen",
  828. "Quit": "Afsluiten",
  829. "Close": "Sluiten",
  830. "Minimize": "Minimaliseren",
  831. "Zoom": "Zoom",
  832. "Bring All to Front": "Alles naar Voren Brengen",
  833. "File": "Bestand",
  834. "Export": "Exporteer",
  835. "Mode": "Modus",
  836. "View": "Beeld",
  837. "Window": "Venster",
  838. "Help": "Help",
  839. "Toggle Developer Tools": "Developer Tools aan-/uitzetten",
  840. "Preference": "Voorkeur"
  841. },
  842. "it": {
  843. "_name": "Italian",
  844. "New": "Nuovo",
  845. "Open": "Apri",
  846. "Save": "Salva",
  847. "Save as": "Save con nome",
  848. "Export as HTML": "Esporta come HTML",
  849. "Export as PDF": "Esporta come PDF",
  850. "Settings": "Impostazioni",
  851. "About": "About",
  852. "Menu": "Menu",
  853. "Directory": "Directory",
  854. "Toggle focus mode": "Attiva modalità concentrazione",
  855. "Edit mode": "Modalità modifica",
  856. "Restart Script": "Byrjaðu handritið",
  857. "Write Mode": "Modalità scrittura",
  858. "Read Mode": "Modalità lettura",
  859. "Preview Mode": "Modalità anteprima",
  860. "Wide": "Largo",
  861. "Medium": "Medio",
  862. "Narrow": "Stretto",
  863. "Yes": "Sì",
  864. "No": "No",
  865. "Cancel": "Annulla",
  866. "Confirm": "Conferma",
  867. "Save changes to file?": "Salvare le modifiche apportate al file?",
  868. "File changed by another program, reload?": "Il file è stato modificato da un altro programma, vuoi caricare le nuove modifiche",
  869. "Markdown Documents": "Documenti Markdown",
  870. "HTML Documents": "Documenti HTML",
  871. "PDF Documents": "Documenti PDF",
  872. "CSS Files": "File CSS",
  873. "All Files": "Tutti i file",
  874. "Saved successfully.": "Salvataggio eseguito",
  875. "Can't save file": "Impossibile salvare il file",
  876. "Exporting as HTML, please wait ...": "Esportazione HTML in corso, attendere...",
  877. "Exporting as PDF, please wait ...": "Esportazione PDF in corso, attendere...",
  878. "Can't export as HTML": "Impossibile esportare in HTML",
  879. "Can't export as PDF": "Impossibile esportare in PDF",
  880. "General": "Generale",
  881. "Edit": "Modifica",
  882. "Appearance": "Aspetto",
  883. "Render": "Render",
  884. "Language": "Lingua",
  885. "Reload when file changed": "Ricarica quando il file cambia",
  886. "Font": "Carattere dell'editor",
  887. "Font Size": "Dimensione carattere",
  888. "Line Height": "Interlinea",
  889. "Tab Size": "Tabulazione",
  890. "Color Theme": "Tema colori",
  891. "TeX Math Expressions":"Espressioni Tex Math",
  892. "UML Diagrams": "Diagrammi UML",
  893. "Brakes": "Brakes",
  894. "Highlight Theme": "Highlight Theme",
  895. "Render Theme": "Tema di render",
  896. "Custom CSSs": "CSS personalizzato",
  897. "Default": "Predefinito",
  898. "System Default": "Predefinito dal Sistema",
  899. "version": "versione",
  900. "Auto": "Automatico",
  901. "Prompt": "Chiedi",
  902. "Never": "Mai",
  903. "Undo": "Undo",
  904. "Redo": "Redo",
  905. "Cut": "Taglia",
  906. "Copy": "Copia",
  907. "Paste": "Incolla",
  908. "Delete": "Cancella",
  909. "Select All": "Seleziona tutto",
  910. "Services": "Servizi",
  911. "Hide": "Nascondi",
  912. "Hide Others": "Nascondi altri",
  913. "Show All": "Visualizza tutti",
  914. "Quit": "Esci",
  915. "Close": "Chiudi",
  916. "Minimize": "Riduci",
  917. "Zoom": "Zoom",
  918. "Bring All to Front": "Porta tutti in cima",
  919. "File": "File",
  920. "Export": "Esporta",
  921. "Mode": "Modalità",
  922. "View": "Vedi",
  923. "Window": "Finestra",
  924. "Help": "Aiuto",
  925. "Toggle Developer Tools": "Attiva strumenti per sviluppatori",
  926. "Preference": "Preferenza"
  927. },
  928. "ru": {
  929. "_name": "Русский",
  930. "New": "Создать",
  931. "Open": "Открыть",
  932. "Save": "Сохранить",
  933. "Save as": "Сохранить как",
  934. "Export as HTML": "Экспорт в HTML",
  935. "Export as PDF": "Экспорт в PDF",
  936. "Settings": "Настройки",
  937. "About": "О программе",
  938. "Menu": "Меню",
  939. "Directory": "Папка",
  940. "Toggle focus mode": "Переключить режим фокусировки",
  941. "Edit mode": "Выбрать режим",
  942. "Restart Script": "Запустить скрипт",
  943. "Write Mode": "Правка",
  944. "Read Mode": "Чтение",
  945. "Preview Mode": "Предпросмотр",
  946. "Wide": "Широкий",
  947. "Medium": "Средний",
  948. "Narrow": "Компактный",
  949. "Yes": "Да",
  950. "No": "Нет",
  951. "Cancel": "Отмена",
  952. "Confirm": "Подтверждение",
  953. "Save changes to file?": "Сохранить изменения?",
  954. "File changed by another program, reload?": "Файл был изменен в другой программе, обновить содержимое?",
  955. "Markdown Documents": "Markdown-документы",
  956. "HTML Documents": "HTML-документы",
  957. "PDF Documents": "PDF-документы",
  958. "CSS Files": "CSS-файлы",
  959. "All Files": "Все файлы",
  960. "Saved successfully.": "Файл сохранен.",
  961. "Can't save file": "Не удалось сохранить файл",
  962. "Exporting as HTML, please wait ...": "Идет экспорт в HTML, пожалуйста, подождите...",
  963. "Exporting as PDF, please wait ...": "Идет экспорт в PDF, пожалуйста, подождите...",
  964. "Can't export as HTML": "Не удалось выполнить экспорт в HTML",
  965. "Can't export as PDF": "Не удалось выполнить экспорт в PDF",
  966. "General": "Основные",
  967. "Edit": "Правка",
  968. "Appearance": "Внешний вид",
  969. "Render": "Визуализация",
  970. "Language": "Язык",
  971. "Reload when file changed": "Обновление содержимого при изменении файла",
  972. "Font": "Шрифт редактора",
  973. "Font Size": "Размер шрифта",
  974. "Line Height": "Высота строк",
  975. "Tab Size": "Размер табуляции",
  976. "Color Theme": "Цветовая тема",
  977. "TeX Math Expressions": "Выражения TeX",
  978. "UML Diagrams": "Диаграммы UML",
  979. "Brakes": "Brakes",
  980. "Highlight Theme": "Тема подсветки кода",
  981. "Render Theme": "Тема визуализации",
  982. "Custom CSSs": "Пользовательский CSS",
  983. "Default": "По умолчанию",
  984. "System Default": "Системный",
  985. "version": "версия",
  986. "Auto": "Всегда",
  987. "Prompt": "Спрашивать",
  988. "Never": "Никогда",
  989. "Undo": "Отменить",
  990. "Redo": "Вернуть",
  991. "Cut": "Вырезать",
  992. "Copy": "Копировать",
  993. "Paste": "Вставить",
  994. "Delete": "Удалить",
  995. "Select All": "Выделить все",
  996. "Services": "Службы",
  997. "Hide": "Скрыть",
  998. "Hide Others": "Скрыть остальные",
  999. "Show All": "Показать все",
  1000. "Quit": "Выход",
  1001. "Close": "Закрыть",
  1002. "Minimize": "Свернуть",
  1003. "Zoom": "Масштаб",
  1004. "Bring All to Front": "Показать все",
  1005. "File": "Файл",
  1006. "Export": "Экспорт",
  1007. "Mode": "Режим",
  1008. "View": "Просмотр",
  1009. "Window": "Окно",
  1010. "Help": "Помощь",
  1011. "Toggle Developer Tools": "Показать/скрыть инструменты разработчика",
  1012. "Preference": "Настройка"
  1013. },
  1014. }