{i18n.__('We launched IssueHunt which is an issue-based crowdfunding / sourcing platform for open source projects.')}
{i18n.__('Anyone can put a bounty on not only a bug but also on OSS feature requests listed on IssueHunt. Collected funds will be distributed to project owners and contributors.')}
-
-
{i18n.__('### Sustainable Open Source Ecosystem')}
+
{i18n.__('Sustainable Open Source Ecosystem')}
{i18n.__('We discussed about open-source ecosystem and IssueHunt concept with the Boostnote team repeatedly. We actually also discussed with Matz who father of Ruby.')}
{i18n.__('The original reason why we made IssueHunt was to reward our contributors of Boostnote project. We’ve got tons of Github stars and hundred of contributors in two years.')}
{i18n.__('We thought that it will be nice if we can pay reward for our contributors.')}
-
-
{i18n.__('### We believe Meritocracy')}
-
{i18n.__('We think developers who has skill and did great things must be rewarded properly.')}
+
{i18n.__('We believe Meritocracy')}
+
{i18n.__('We think developers who have skills and do great things must be rewarded properly.')}
{i18n.__('OSS projects are used in everywhere on the internet, but no matter how they great, most of owners of those projects need to have another job to sustain their living.')}
{i18n.__('It sometimes looks like exploitation.')}
{i18n.__('We’ve realized IssueHunt could enhance sustainability of open-source ecosystem.')}
@@ -108,7 +107,7 @@ class InfoTab extends React.Component {
-
{i18n.__('About')}
+
{i18n.__('About')}
@@ -143,7 +142,7 @@ class InfoTab extends React.Component {
-
{i18n.__('Analytics')}
+
{i18n.__('Analytics')}
{i18n.__('Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.')}
diff --git a/browser/main/modals/PreferencesModal/InfoTab.styl b/browser/main/modals/PreferencesModal/InfoTab.styl
index 44f2d9ae..c541c91c 100644
--- a/browser/main/modals/PreferencesModal/InfoTab.styl
+++ b/browser/main/modals/PreferencesModal/InfoTab.styl
@@ -1,16 +1,4 @@
-@import('./Tab')
-
-.root
- padding 15px
- white-space pre
- line-height 1.4
- color alpha($ui-text-color, 90%)
- width 100%
- font-size 14px
-
-.top
- text-align left
- margin-bottom 20px
+@import('./ConfigTab.styl')
.icon-space
margin 20px 0
@@ -45,13 +33,21 @@
.separate-line
margin 40px 0
-.policy
- width 100%
- font-size 20px
- margin-bottom 10px
-
.policy-submit
margin-top 10px
+ height 35px
+ border-radius 2px
+ border none
+ background-color alpha(#1EC38B, 90%)
+ padding-left 20px
+ padding-right 20px
+ text-decoration none
+ color white
+ font-weight 600
+ font-size 16px
+ &:hover
+ background-color #1EC38B
+ transition 0.2s
.policy-confirm
margin-top 10px
@@ -60,11 +56,14 @@
body[data-theme="dark"]
.root
color alpha($tab--dark-text-color, 80%)
-
+ .appId
+ color $ui-dark-text-color
body[data-theme="solarized-dark"]
.root
color $ui-solarized-dark-text-color
+ .appId
+ color $ui-solarized-dark-text-color
.list
a
color $ui-solarized-dark-active-color
@@ -72,6 +71,8 @@ body[data-theme="solarized-dark"]
body[data-theme="monokai"]
.root
color $ui-monokai-text-color
+ .appId
+ color $ui-monokai-text-color
.list
a
color $ui-monokai-active-color
@@ -79,6 +80,8 @@ body[data-theme="monokai"]
body[data-theme="dracula"]
.root
color $ui-dracula-text-color
+ .appId
+ color $ui-dracula-text-color
.list
a
- color $ui-dracula-active-color
+ color $ui-dracula-active-color
\ No newline at end of file
diff --git a/browser/main/modals/PreferencesModal/SnippetEditor.js b/browser/main/modals/PreferencesModal/SnippetEditor.js
index 071f265f..e95afdcf 100644
--- a/browser/main/modals/PreferencesModal/SnippetEditor.js
+++ b/browser/main/modals/PreferencesModal/SnippetEditor.js
@@ -4,6 +4,7 @@ import _ from 'lodash'
import styles from './SnippetTab.styl'
import CSSModules from 'browser/lib/CSSModules'
import dataApi from 'browser/main/lib/dataApi'
+import snippetManager from '../../../lib/SnippetManager'
const defaultEditorFontFamily = ['Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace']
const buildCMRulers = (rulers, enableRulers) =>
@@ -64,7 +65,9 @@ class SnippetEditor extends React.Component {
}
saveSnippet () {
- dataApi.updateSnippet(this.snippet).catch((err) => { throw err })
+ dataApi.updateSnippet(this.snippet)
+ .then(snippets => snippetManager.assignSnippets(snippets))
+ .catch((err) => { throw err })
}
render () {
diff --git a/browser/main/modals/PreferencesModal/SnippetTab.js b/browser/main/modals/PreferencesModal/SnippetTab.js
index 5f5b0aac..df338d7f 100644
--- a/browser/main/modals/PreferencesModal/SnippetTab.js
+++ b/browser/main/modals/PreferencesModal/SnippetTab.js
@@ -91,7 +91,7 @@ class SnippetTab extends React.Component {
if (!(editorFontSize > 0 && editorFontSize < 132)) editorIndentSize = 4
return (
-
{i18n.__('Snippets')}
+
{i18n.__('Snippets')}
this.handleUIChange(e)}
>
-
+
{
_.sortBy(CodeMirror.modeInfo.map(mode => mode.name)).map(name => ())
}
@@ -846,6 +846,7 @@ class UiTab extends React.Component {
onChange={e => this.handleUIChange(e)}
ref={e => (this.customCSSCM = e)}
value={config.preview.customCSS}
+ defaultValue={'/* Drop Your Custom CSS Code Here */\n'}
options={{
lineNumbers: true,
mode: 'css',
diff --git a/browser/main/store.js b/browser/main/store.js
index 11ff2f3f..5edc115f 100644
--- a/browser/main/store.js
+++ b/browser/main/store.js
@@ -44,7 +44,9 @@ function data (state = defaultDataMap(), action) {
const folderNoteSet = getOrInitItem(state.folderNoteMap, folderKey)
folderNoteSet.add(uniqueKey)
- assignToTags(note.tags, state, uniqueKey)
+ if (!note.isTrashed) {
+ assignToTags(note.tags, state, uniqueKey)
+ }
})
return state
case 'UPDATE_NOTE':
diff --git a/gruntfile.js b/gruntfile.js
index ec3bbf79..207f8685 100644
--- a/gruntfile.js
+++ b/gruntfile.js
@@ -39,7 +39,7 @@ module.exports = function (grunt) {
name: 'boostnote',
productName: 'Boostnote',
genericName: 'Boostnote',
- productDescription: 'The opensource note app for developer.',
+ productDescription: 'The opensource note app for developers.',
arch: 'amd64',
categories: [
'Development',
@@ -58,7 +58,7 @@ module.exports = function (grunt) {
name: 'boostnote',
productName: 'Boostnote',
genericName: 'Boostnote',
- productDescription: 'The opensource note app for developer.',
+ productDescription: 'The opensource note app for developers.',
arch: 'x86_64',
categories: [
'Development',
@@ -149,6 +149,7 @@ module.exports = function (grunt) {
case 'osx':
Object.assign(opts, {
platform: 'darwin',
+ darwinDarkModeSupport: true,
icon: path.join(__dirname, 'resources/app.icns'),
'app-category-type': 'public.app-category.developer-tools'
})
diff --git a/lib/main-app.js b/lib/main-app.js
index 88e44294..6151c1f0 100644
--- a/lib/main-app.js
+++ b/lib/main-app.js
@@ -3,8 +3,9 @@ const app = electron.app
const Menu = electron.Menu
const ipc = electron.ipcMain
const GhReleases = require('electron-gh-releases')
-const isDev = process.env.NODE_ENV !== 'production'
+const { isPackaged } = app
// electron.crashReporter.start()
+
var ipcServer = null
var mainWindow = null
@@ -36,7 +37,7 @@ const updater = new GhReleases(ghReleasesOpts)
// Check for updates
// `status` returns true if there is a new update available
function checkUpdate () {
- if (isDev) { // Prevents app from attempting to update when in dev mode.
+ if (!isPackaged) { // Prevents app from attempting to update when in dev mode.
console.log('Updates are disabled in Development mode, see main-app.js')
return true
}
@@ -99,12 +100,12 @@ app.on('ready', function () {
// Check update every day
setInterval(function () {
- if (!isDev) checkUpdate()
+ if (isPackaged) checkUpdate()
}, 1000 * 60 * 60 * 24)
// Check update after 10 secs to prevent file locking of Windows
setTimeout(() => {
- if (!isDev) checkUpdate()
+ if (isPackaged) checkUpdate()
ipc.on('update-check', function (event, msg) {
if (isUpdateReady) {
diff --git a/lib/main-menu.js b/lib/main-menu.js
index dcd85217..f20f1e90 100644
--- a/lib/main-menu.js
+++ b/lib/main-menu.js
@@ -141,6 +141,13 @@ const file = {
mainWindow.webContents.send('list:isMarkdownNote', 'export-html')
mainWindow.webContents.send('export:save-html')
}
+ },
+ {
+ label: 'PDF (.pdf)',
+ click () {
+ mainWindow.webContents.send('list:isMarkdownNote', 'export-pdf')
+ mainWindow.webContents.send('export:save-pdf')
+ }
}
]
},
diff --git a/lib/main.html b/lib/main.html
index a8d2761b..87a88e2d 100644
--- a/lib/main.html
+++ b/lib/main.html
@@ -134,7 +134,7 @@
window._ = require('lodash')
-
+
diff --git a/locales/da.json b/locales/da.json
index da5843f3..79503ab3 100644
--- a/locales/da.json
+++ b/locales/da.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Print",
"Your preferences for Boostnote": "Your preferences for Boostnote",
"Storage Locations": "Storage Locations",
@@ -75,7 +76,7 @@
"Website": "Website",
"Development": "Development",
" : Development configurations for Boostnote.": " : Development configurations for Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "Analytics",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.",
@@ -153,5 +154,7 @@
"Allow dangerous html tags": "Allow dangerous html tags",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/de.json b/locales/de.json
index 1b90ab63..518a4e65 100644
--- a/locales/de.json
+++ b/locales/de.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Drucken",
"Your preferences for Boostnote": "Boostnote Einstellungen",
"Storage Locations": "Speicherverwaltung",
@@ -75,7 +76,7 @@
"Website": "Website",
"Development": "Entwicklung",
" : Development configurations for Boostnote.": " : Entwicklungseinstellungen für Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "Analytics",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote sammelt anonyme Daten, um die App zu verbessern. Persönliche Informationen, wie z.B. der Inhalt deiner Notizen, werden dabei nicht erfasst.",
@@ -209,5 +210,7 @@
"No tags": "Keine Tags",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/en.json b/locales/en.json
index fe7931da..1e09bfc7 100644
--- a/locales/en.json
+++ b/locales/en.json
@@ -19,6 +19,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Print",
"Your preferences for Boostnote": "Your preferences for Boostnote",
"Help": "Help",
@@ -82,7 +83,7 @@
"Website": "Website",
"Development": "Development",
" : Development configurations for Boostnote.": " : Development configurations for Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "Analytics",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.",
@@ -136,7 +137,7 @@
"Hotkeys": "Hotkeys",
"Show/Hide Boostnote": "Show/Hide Boostnote",
"Toggle Editor Mode": "Toggle Editor Mode",
- "Delete Note": "Delete Note",
+ "Delete Note": "Delete Note",
"Restore": "Restore",
"Permanent Delete": "Permanent Delete",
"Confirm note deletion": "Confirm note deletion",
@@ -179,10 +180,12 @@
"Allow dangerous html tags": "Allow dangerous html tags",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled",
+ "Spellcheck disabled": "Spellcheck disabled",
"Save tags of a note in alphabetical order": "Save tags of a note in alphabetical order",
"Enable live count of notes": "Enable live count of notes",
"Enable smart table editor": "Enable smart table editor",
"Snippet Default Language": "Snippet Default Language",
- "New notes are tagged with the filtering tags": "New notes are tagged with the filtering tags"
+ "New notes are tagged with the filtering tags": "New notes are tagged with the filtering tags",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/es-ES.json b/locales/es-ES.json
index 8b2da1b7..a42e6bb4 100644
--- a/locales/es-ES.json
+++ b/locales/es-ES.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Imprimir",
"Your preferences for Boostnote": "Tus preferencias para Boostnote",
"Storage Locations": "Almacenamientos",
@@ -75,7 +76,7 @@
"Website": "Página web",
"Development": "Desarrollo",
" : Development configurations for Boostnote.": " : Configuraciones de desarrollo para Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "Licencia: GPL v3",
"Analytics": "Analítica",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote recopila datos anónimos con el único propósito de mejorar la aplicación, y de ninguna manera recopila información personal como el contenido de sus notas.",
@@ -154,6 +155,8 @@
"Allow dangerous html tags": "Permitir etiquetas html peligrosas",
"⚠ You have pasted a link referring an attachment that could not be found in the location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Ha pegado un enlace a un archivo adjunto que no se puede encontrar en el almacenamiento de esta nota. Pegar enlaces a archivos adjuntos solo está soportado si el origen y el destino son el mismo almacenamiento. ¡Por favor, mejor arrastre el archivo! ⚠",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convertir flechas textuales a símbolos bonitos. ⚠ Esto interferirá cuando use comentarios HTML en Markdown.",
- "Disabled": "Disabled",
- "Snippet Default Language": "Lenguaje por defecto de los fragmentos de código"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect",
+ "Snippet Default Language": "Lenguaje por defecto de los fragmentos de código"
}
diff --git a/locales/fa.json b/locales/fa.json
index 18bef679..d29e0e75 100644
--- a/locales/fa.json
+++ b/locales/fa.json
@@ -1,161 +1,164 @@
{
- "Notes": "یادداشت ها",
- "Tags": "تگ ها",
- "Preferences": "تنظیمات",
- "Make a note": "یک یادداشت بنویس",
- "Ctrl": "Ctrl",
- "Ctrl(^)": "Ctrl",
- "to create a new note": "برای ساخت یک یادداشت",
- "Toggle Mode": "تغییر حالت نمایش",
- "Trash": "سطل آشغال",
- "MODIFICATION DATE": "تاریخ تغییر",
- "Words": "کلمات",
- "Letters": "حروف",
- "STORAGE": "ذخیره سازی",
- "FOLDER": "پوشه",
- "CREATION DATE": "تاریخ ایجاد",
- "NOTE LINK": "لینک یادداشت",
- ".md": ".md",
- ".txt": ".txt",
- ".html": ".html",
- "Print": "پرینت",
- "Your preferences for Boostnote": "تنظیمات شما برای boostnote",
- "Storage Locations": "ذخیره سازی",
- "Add Storage Location": "افزودن محل ذخیره سازی",
- "Add Folder": "ساخت پوشه",
- "Open Storage folder": "بازکردن پوشه ذخیره سازی",
- "Unlink": "حذف لینک",
- "Edit": "ویرایش",
- "Delete": "حذف",
- "Interface": "رابط کاربری",
- "Interface Theme": "تم رابط کاربری",
- "Default": "پیش فرض",
- "White": "روشن",
- "Solarized Dark": "سولارایز",
- "Dark": "تاریک",
- "Show a confirmation dialog when deleting notes": "هنگام حذف یادداشت ها یک پیام تایید نمایش بده.",
- "Editor Theme": "تم ویرایشگر",
- "Editor Font Size": "اندازه فونت ویرایشگر",
- "Editor Font Family": "فونت ویرایشگر",
- "Editor Indent Style": "حالت فاصله گذاری ویرایشگر",
- "Spaces": "Spaces",
- "Tabs": "Tabs",
- "Switch to Preview": "دیدن پیش نمایش",
- "When Editor Blurred": "وقتی ویرایشگر از حالت ویرایش خارج شد ",
- "When Editor Blurred, Edit On Double Click": "وقتی ویرایشگر از حالت ویرایش خارج شد و با دبل کلیک ویرایش کنید.",
- "On Right Click": "راست کلیک",
- "Editor Keymap": "ویرایشگر Keymap",
- "default": "پیش فرض",
- "vim": "vim",
- "emacs": "emacs",
- "⚠️ Please restart boostnote after you change the keymap": "⚠️ برنامه را دوباره راه اندازی کنید keymap لطفا بعد از تغییر",
- "Show line numbers in the editor": "شماره خطوط در ویرایشگر را نمایش بده.",
- "Allow editor to scroll past the last line": "اجازه بده ویرایشگر بعد از آخرین خط اسکرول کند.",
- "Bring in web page title when pasting URL on editor": "هنگامی که آدرس اینترنتی در ویرایشگر اضافه شد عنوان آنرا نمایش بده",
- "Preview": "پیش نمایش",
- "Preview Font Size": "اندازه فونتِ پیش نمایش",
- "Preview Font Family": " فونتِ پیش نمایش",
- "Code Block Theme": "تم بخش کد",
- "Allow preview to scroll past the last line": "اجازه بده پیش نمایش بعد از آخرین خط اسکرول کند.",
- "Show line numbers for preview code blocks": "شماره خطوط در پیش نمایش را نمایش بده.",
- "LaTeX Inline Open Delimiter": "جداکننده آغازین لاتکس خطی",
- "LaTeX Inline Close Delimiter": "جداکننده پایانی لاتکس خطی",
- "LaTeX Block Open Delimiter": "جداکننده آغازین بلوک لاتکس ",
- "LaTeX Block Close Delimiter": "جداکننده آغازین بلوک لاتکس ",
- "PlantUML Server": "PlantUML Server",
- "Community": "کامینیتی",
- "Subscribe to Newsletter": "اشتراک در خبرنامه",
- "GitHub": "گیت هاب",
- "Blog": "بلاگ",
- "Facebook Group": "گروه فیسبوک",
- "Twitter": "توییتر",
- "About": "درباره",
- "Boostnote": "Boostnote",
- "An open source note-taking app made for programmers just like you.": "یک دفترچه یادداشت متن باز ساخته شده برای برنامه نویسانی مثل تو.",
- "Website": "وبسایت",
- "Development": "توسعه",
- " : Development configurations for Boostnote.": " : پیکربندی توسعه برای Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
- "License: GPL v3": "لایسنس: GPL v3",
- "Analytics": "تجزیه و تحلیل",
- "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Bosstnote اطلاعات ناشناس را برای بهبود عملکرد برنامه جمع آوری میکند.اطلاعات شخصی شما مثل محتوای یادداشت ها هرگز برای هیچ هدفی جمع آوری نمیشوند",
- "You can see how it works on ": "میتوانید ببینید چگونه کار میکند. ",
- "You can choose to enable or disable this option.": "میتوانید این گزینه را فعال یا غیرفعال کنید.",
- "Enable analytics to help improve Boostnote":".تجزیه تحلیل داده ها را برای کمک به بهبود برنامه فعال کن",
- "Crowdfunding": "جمع سپاری (سرمایه گذاری جمعی )",
- "Dear Boostnote users,": "عزیزان,",
- "Thank you for using Boostnote!": "از شما بخاطر استفاده از boostnote ممنونیم!",
- "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "در ۲۰۰ کشور مختلف دنیا مورد توسط جمعی از برنامه نویسان بی نظیر مورد استفاده قرار میگیرد. Boostnote",
- "To support our growing userbase, and satisfy community expectations,": "برای حمایت از این رشد ، و برآورده شدن انتظارات کامینیتی,",
- "we would like to invest more time and resources in this project.": "ما می خواهیم زمان و منابع بیشتری را در این پروژه سرمایه گذاری کنیم.",
- "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "اگر این پروژه را دوست دارید و پتانسیلی در آن میبینید، میتوانید مارا در اوپن کالکتیو حمایت کنید.",
- "Thanks,": "با تشکر,",
- "The Boostnote Team": "Boostnote نگهدارندگان",
- "Support via OpenCollective": "حمایت کنید OpenCollective از طریق",
- "Language": "زبان",
- "English": "انگلیسی",
- "German": "آلمانی",
- "French": "فرانسوی",
- "Show \"Saved to Clipboard\" notification when copying": "نمایش \"ذخیره در کلیپبورد\" اطلاع رسانی هنگام کپی کردن",
- "All Notes": "همه یادداشت ها",
- "Starred": "ستاره دار",
- "Are you sure to ": " مطمئن هستید که",
- " delete": "حذف ",
- "this folder?": "این پوشه ؟",
- "Confirm": "تایید",
- "Cancel": "انصراف",
- "Markdown Note": "Markdown یادداشتِ",
- "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "این قالب برای ساخت سند های متنی است. چک لیست ها و تکه کد ها و بلاک های لاتکس قابل استفاده اند.",
- "Snippet Note": "Snippet یادداشتِ",
- "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "این قالب برای ساخت تکه کد هاست. چند تکه کد میتوانند تبدیل به یک یادداشت شوند.",
- "Tab to switch format": "را بزنید Tab برای تغییر فرمت",
- "Updated": "بروزرسانی شد",
- "Created": "ایجاد شد",
- "Alphabetically": "بر اساس حروف الفبا",
- "Counter": "شمارشگر",
- "Default View": "نمایش پیشفرض",
- "Compressed View": "نمایش فشرده",
- "Search": "جستجو",
- "Blog Type": "نوع وبلاگ",
- "Blog Address": "آدرس وبلاگ",
- "Save": "ذخیره",
- "Auth": "هویت",
- "Authentication Method": "متد احراز هویت",
- "JWT": "JWT",
- "USER": "کاربر",
- "Token": "توکن",
- "Storage": "ذخیره سازی",
- "Hotkeys": "کلید های میانبر",
- "Show/Hide Boostnote": "Boostnote نمایش/پنهان کردن",
- "Restore": "بازگرداندن به حالت اول",
- "Permanent Delete": "حذف بدون بازگشت",
- "Confirm note deletion": ".حذف یادداشت را تایید کنید",
- "This will permanently remove this note.": ".این کار یادداشت را بطور دائمی حذف خواهد کرد",
- "Successfully applied!": "!با موفقیت اجرا شد",
- "Albanian": "آلبانی",
- "Chinese (zh-CN)": "چینی (zh-CN)",
- "Chinese (zh-TW)": "چینی (zh-TW)",
- "Danish": "دانمارکی",
- "Japanese": "ژاپنی",
- "Korean": "کره ای",
- "Norwegian": "نروژی",
- "Polish": "لهستانی",
- "Portuguese": "پرتغالی",
- "Spanish": "اسپانیایی",
- "Unsaved Changes!": "!باید ذخیره کنید",
- "UserName": "نام کاربری",
- "Password": "رمز عبور",
- "Russian": "روسی",
- "Thai": "Thai (ภาษาไทย)",
- "Command(⌘)": "Command(⌘)",
- "Editor Rulers": "Editor Rulers",
- "Enable": "فعال",
- "Disable": "غیرفعال",
- "Sanitization": "پاکسازی کردن",
- "Only allow secure html tags (recommended)": "(فقط تگ های امن اچ تی ام ال مجاز اند.(پیشنهاد میشود",
- "Allow styles": "حالت های مجاز",
- "Allow dangerous html tags": "تگ های خطرناک اچ تی ام ال مجاز اند",
- "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
- "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Notes": "یادداشت ها",
+ "Tags": "تگ ها",
+ "Preferences": "تنظیمات",
+ "Make a note": "یک یادداشت بنویس",
+ "Ctrl": "Ctrl",
+ "Ctrl(^)": "Ctrl",
+ "to create a new note": "برای ساخت یک یادداشت",
+ "Toggle Mode": "تغییر حالت نمایش",
+ "Trash": "سطل آشغال",
+ "MODIFICATION DATE": "تاریخ تغییر",
+ "Words": "کلمات",
+ "Letters": "حروف",
+ "STORAGE": "ذخیره سازی",
+ "FOLDER": "پوشه",
+ "CREATION DATE": "تاریخ ایجاد",
+ "NOTE LINK": "لینک یادداشت",
+ ".md": ".md",
+ ".txt": ".txt",
+ ".html": ".html",
+ ".pdf": ".pdf",
+ "Print": "پرینت",
+ "Your preferences for Boostnote": "تنظیمات شما برای boostnote",
+ "Storage Locations": "ذخیره سازی",
+ "Add Storage Location": "افزودن محل ذخیره سازی",
+ "Add Folder": "ساخت پوشه",
+ "Open Storage folder": "بازکردن پوشه ذخیره سازی",
+ "Unlink": "حذف لینک",
+ "Edit": "ویرایش",
+ "Delete": "حذف",
+ "Interface": "رابط کاربری",
+ "Interface Theme": "تم رابط کاربری",
+ "Default": "پیش فرض",
+ "White": "روشن",
+ "Solarized Dark": "سولارایز",
+ "Dark": "تاریک",
+ "Show a confirmation dialog when deleting notes": "هنگام حذف یادداشت ها یک پیام تایید نمایش بده.",
+ "Editor Theme": "تم ویرایشگر",
+ "Editor Font Size": "اندازه فونت ویرایشگر",
+ "Editor Font Family": "فونت ویرایشگر",
+ "Editor Indent Style": "حالت فاصله گذاری ویرایشگر",
+ "Spaces": "Spaces",
+ "Tabs": "Tabs",
+ "Switch to Preview": "دیدن پیش نمایش",
+ "When Editor Blurred": "وقتی ویرایشگر از حالت ویرایش خارج شد ",
+ "When Editor Blurred, Edit On Double Click": "وقتی ویرایشگر از حالت ویرایش خارج شد و با دبل کلیک ویرایش کنید.",
+ "On Right Click": "راست کلیک",
+ "Editor Keymap": "ویرایشگر Keymap",
+ "default": "پیش فرض",
+ "vim": "vim",
+ "emacs": "emacs",
+ "⚠️ Please restart boostnote after you change the keymap": "⚠️ برنامه را دوباره راه اندازی کنید keymap لطفا بعد از تغییر",
+ "Show line numbers in the editor": "شماره خطوط در ویرایشگر را نمایش بده.",
+ "Allow editor to scroll past the last line": "اجازه بده ویرایشگر بعد از آخرین خط اسکرول کند.",
+ "Bring in web page title when pasting URL on editor": "هنگامی که آدرس اینترنتی در ویرایشگر اضافه شد عنوان آنرا نمایش بده",
+ "Preview": "پیش نمایش",
+ "Preview Font Size": "اندازه فونتِ پیش نمایش",
+ "Preview Font Family": " فونتِ پیش نمایش",
+ "Code Block Theme": "تم بخش کد",
+ "Allow preview to scroll past the last line": "اجازه بده پیش نمایش بعد از آخرین خط اسکرول کند.",
+ "Show line numbers for preview code blocks": "شماره خطوط در پیش نمایش را نمایش بده.",
+ "LaTeX Inline Open Delimiter": "جداکننده آغازین لاتکس خطی",
+ "LaTeX Inline Close Delimiter": "جداکننده پایانی لاتکس خطی",
+ "LaTeX Block Open Delimiter": "جداکننده آغازین بلوک لاتکس ",
+ "LaTeX Block Close Delimiter": "جداکننده آغازین بلوک لاتکس ",
+ "PlantUML Server": "PlantUML Server",
+ "Community": "کامینیتی",
+ "Subscribe to Newsletter": "اشتراک در خبرنامه",
+ "GitHub": "گیت هاب",
+ "Blog": "بلاگ",
+ "Facebook Group": "گروه فیسبوک",
+ "Twitter": "توییتر",
+ "About": "درباره",
+ "Boostnote": "Boostnote",
+ "An open source note-taking app made for programmers just like you.": "یک دفترچه یادداشت متن باز ساخته شده برای برنامه نویسانی مثل تو.",
+ "Website": "وبسایت",
+ "Development": "توسعه",
+ " : Development configurations for Boostnote.": " : پیکربندی توسعه برای Boostnote.",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
+ "License: GPL v3": "لایسنس: GPL v3",
+ "Analytics": "تجزیه و تحلیل",
+ "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Bosstnote اطلاعات ناشناس را برای بهبود عملکرد برنامه جمع آوری میکند.اطلاعات شخصی شما مثل محتوای یادداشت ها هرگز برای هیچ هدفی جمع آوری نمیشوند",
+ "You can see how it works on ": "میتوانید ببینید چگونه کار میکند. ",
+ "You can choose to enable or disable this option.": "میتوانید این گزینه را فعال یا غیرفعال کنید.",
+ "Enable analytics to help improve Boostnote":".تجزیه تحلیل داده ها را برای کمک به بهبود برنامه فعال کن",
+ "Crowdfunding": "جمع سپاری (سرمایه گذاری جمعی )",
+ "Dear Boostnote users,": "عزیزان,",
+ "Thank you for using Boostnote!": "از شما بخاطر استفاده از boostnote ممنونیم!",
+ "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "در ۲۰۰ کشور مختلف دنیا مورد توسط جمعی از برنامه نویسان بی نظیر مورد استفاده قرار میگیرد. Boostnote",
+ "To support our growing userbase, and satisfy community expectations,": "برای حمایت از این رشد ، و برآورده شدن انتظارات کامینیتی,",
+ "we would like to invest more time and resources in this project.": "ما می خواهیم زمان و منابع بیشتری را در این پروژه سرمایه گذاری کنیم.",
+ "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "اگر این پروژه را دوست دارید و پتانسیلی در آن میبینید، میتوانید مارا در اوپن کالکتیو حمایت کنید.",
+ "Thanks,": "با تشکر,",
+ "The Boostnote Team": "Boostnote نگهدارندگان",
+ "Support via OpenCollective": "حمایت کنید OpenCollective از طریق",
+ "Language": "زبان",
+ "English": "انگلیسی",
+ "German": "آلمانی",
+ "French": "فرانسوی",
+ "Show \"Saved to Clipboard\" notification when copying": "نمایش \"ذخیره در کلیپبورد\" اطلاع رسانی هنگام کپی کردن",
+ "All Notes": "همه یادداشت ها",
+ "Starred": "ستاره دار",
+ "Are you sure to ": " مطمئن هستید که",
+ " delete": "حذف ",
+ "this folder?": "این پوشه ؟",
+ "Confirm": "تایید",
+ "Cancel": "انصراف",
+ "Markdown Note": "Markdown یادداشتِ",
+ "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "این قالب برای ساخت سند های متنی است. چک لیست ها و تکه کد ها و بلاک های لاتکس قابل استفاده اند.",
+ "Snippet Note": "Snippet یادداشتِ",
+ "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "این قالب برای ساخت تکه کد هاست. چند تکه کد میتوانند تبدیل به یک یادداشت شوند.",
+ "Tab to switch format": "را بزنید Tab برای تغییر فرمت",
+ "Updated": "بروزرسانی شد",
+ "Created": "ایجاد شد",
+ "Alphabetically": "بر اساس حروف الفبا",
+ "Counter": "شمارشگر",
+ "Default View": "نمایش پیشفرض",
+ "Compressed View": "نمایش فشرده",
+ "Search": "جستجو",
+ "Blog Type": "نوع وبلاگ",
+ "Blog Address": "آدرس وبلاگ",
+ "Save": "ذخیره",
+ "Auth": "هویت",
+ "Authentication Method": "متد احراز هویت",
+ "JWT": "JWT",
+ "USER": "کاربر",
+ "Token": "توکن",
+ "Storage": "ذخیره سازی",
+ "Hotkeys": "کلید های میانبر",
+ "Show/Hide Boostnote": "Boostnote نمایش/پنهان کردن",
+ "Restore": "بازگرداندن به حالت اول",
+ "Permanent Delete": "حذف بدون بازگشت",
+ "Confirm note deletion": ".حذف یادداشت را تایید کنید",
+ "This will permanently remove this note.": ".این کار یادداشت را بطور دائمی حذف خواهد کرد",
+ "Successfully applied!": "!با موفقیت اجرا شد",
+ "Albanian": "آلبانی",
+ "Chinese (zh-CN)": "چینی (zh-CN)",
+ "Chinese (zh-TW)": "چینی (zh-TW)",
+ "Danish": "دانمارکی",
+ "Japanese": "ژاپنی",
+ "Korean": "کره ای",
+ "Norwegian": "نروژی",
+ "Polish": "لهستانی",
+ "Portuguese": "پرتغالی",
+ "Spanish": "اسپانیایی",
+ "Unsaved Changes!": "!باید ذخیره کنید",
+ "UserName": "نام کاربری",
+ "Password": "رمز عبور",
+ "Russian": "روسی",
+ "Thai": "Thai (ภาษาไทย)",
+ "Command(⌘)": "Command(⌘)",
+ "Editor Rulers": "Editor Rulers",
+ "Enable": "فعال",
+ "Disable": "غیرفعال",
+ "Sanitization": "پاکسازی کردن",
+ "Only allow secure html tags (recommended)": "(فقط تگ های امن اچ تی ام ال مجاز اند.(پیشنهاد میشود",
+ "Allow styles": "حالت های مجاز",
+ "Allow dangerous html tags": "تگ های خطرناک اچ تی ام ال مجاز اند",
+ "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
+ "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/fr.json b/locales/fr.json
index ea5a1c05..c44b057e 100644
--- a/locales/fr.json
+++ b/locales/fr.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Imprimer",
"Your preferences for Boostnote": "Vos préférences pour Boostnote",
"Storage Locations": "Stockages",
@@ -76,7 +77,7 @@
"Website": "Site web",
"Development": "Développement",
" : Development configurations for Boostnote.": " : Configurations de développement pour Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "Analytics",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collecte des données anonymisées dans le seul but d'améliorer l'application, et ne collecte aucune donnée personnelle telle que le contenu de vos notes.",
@@ -163,11 +164,13 @@
"Enable live count of notes": "Activer le comptage live des notes",
"Enable smart table editor": "Activer l'intelligent éditeur de tableaux",
"Snippet Default Language": "Langage par défaut d'un snippet",
- "Disabled": "Disabled",
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect",
"New Snippet": "Nouveau snippet",
"Custom CSS": "CSS personnalisé",
"Snippet name": "Nom du snippet",
"Snippet prefix": "Préfixe du snippet",
- "Delete Note": "Supprimer la note",
- "New notes are tagged with the filtering tags": "Les nouvelles notes sont taggées avec les tags de filtrage"
+ "Delete Note": "Supprimer la note",
+ "New notes are tagged with the filtering tags": "Les nouvelles notes sont taggées avec les tags de filtrage"
}
diff --git a/locales/hu.json b/locales/hu.json
index 77bdb2ab..558770b9 100644
--- a/locales/hu.json
+++ b/locales/hu.json
@@ -19,6 +19,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Nyomtatás",
"Your preferences for Boostnote": "Boostnote beállításaid",
"Help": "Súgó",
@@ -26,7 +27,6 @@
"Storage Locations": "Tárolók",
"Add Storage Location": "Tároló Hozzáadása",
"Add Folder": "Könyvtár Hozzáadása",
- "Select Folder": "Könyvtár Kiválasztása",
"Open Storage folder": "Tároló Megnyitása",
"Unlink": "Tároló Leválasztása",
"Edit": "Szerkesztés",
@@ -82,7 +82,7 @@
"Website": "Weboldal",
"Development": "Fejlesztés",
" : Development configurations for Boostnote.": " : Információk a Boostnote fejlesztéséről.",
- "Copyright (C) 2017 - 2018 BoostIO": "Szerzői jog (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Szerzői jog (C) 2017 - 2019 BoostIO",
"License: GPL v3": "Licensz: GPL v3",
"Analytics": "Adatok elemzése",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "A Boostnote névtelen adatokat gyűjt össze az alkalmazás tökéletesítése céljából, és szigorúan nem gyűjt semmilyen személyes adatot, például a jegyzetek tartalmát.",
@@ -178,5 +178,7 @@
"Allow dangerous html tags": "Veszélyes html tag-ek engedélyezése",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/it.json b/locales/it.json
index 05f454f3..3b070197 100644
--- a/locales/it.json
+++ b/locales/it.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Stampa",
"Your preferences for Boostnote": "Le tue preferenze per Boostnote",
"Storage Locations": "Posizioni",
@@ -75,7 +76,7 @@
"Website": "Sito Web",
"Development": "Sviluppo",
" : Development configurations for Boostnote.": " : Configurazioni di sviluppo per Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "Licenza: GPL v3",
"Analytics": "Statistiche",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote raccoglie dati anonimi al solo scopo di migliorare l'applicazione, e non raccoglie nessuna informazione personale rigurado il contenuto delle note.",
@@ -157,5 +158,7 @@
"Allow dangerous html tags": "Consenti tag HTML pericolosi",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/ja.json b/locales/ja.json
index e7295360..087bce36 100644
--- a/locales/ja.json
+++ b/locales/ja.json
@@ -8,10 +8,10 @@
"to create a new note": "ノートを新規に作成",
"Toggle Mode": "モード切替",
"Add tag...": "タグを追加...",
- "Star": "お気に入り",
- "Fullscreen": "全画面",
+ "Star": "お気に入り",
+ "Fullscreen": "全画面",
"Trash": "ゴミ箱",
- "Info": "情報",
+ "Info": "情報",
"MODIFICATION DATE": "修正日",
"Words": "ワード",
"Letters": "文字",
@@ -22,6 +22,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "印刷",
"Your preferences for Boostnote": "Boostnoteの個人設定",
"Help": "ヘルプ",
@@ -46,7 +47,7 @@
"Default New Note": "新規ノートの形式",
"Always Ask": "作成時に聞く",
"Show a confirmation dialog when deleting notes": "ノートを削除する時に確認ダイアログを表示する",
- "Disable Direct Write (It will be applied after restarting)": "Disable Direct Write (It will be applied after restarting)",
+ "Disable Direct Write (It will be applied after restarting)": "直接編集を無効にする(設定反映には再起動が必要です)",
"Save tags of a note in alphabetical order": "ノートのタグをアルファベット順に保存する",
"Show tags of a note in alphabetical order": "ノートのタグをアルファベット順に表示する",
"Show only related tags": "関連するタグのみ表示する",
@@ -105,7 +106,7 @@
"Website": "ウェブサイト",
"Development": "開発",
" : Development configurations for Boostnote.": " : Boostnote の開発構成",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "ライセンス: GPL v3",
"Analytics": "解析",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote はアプリケーションの機能向上だけを目的に匿名データを収集します。ノートの内容を含めた個人の情報は一切収集しません。",
@@ -199,7 +200,7 @@
"Type": "種類",
"File System": "ファイルシステム",
"Setting up 3rd-party cloud storage integration:": "サードパーティのクラウドストレージとの統合を設定する:",
- "Cloud-Syncing-and-Backup": "Cloud-Syncing-and-Backup",
+ "Cloud-Syncing-and-Backup": "クラウド同期とバックアップ",
"Location": "ロケーション",
"Add": "追加",
"Export Storage": "ストレージの書き出し",
@@ -215,5 +216,7 @@
"Allow dangerous html tags": "安全でないHTMLタグの利用を許可する",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "テキストの矢印を綺麗な記号に変換する ⚠ この設定はMarkdown内でのHTMLコメントに干渉します。",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ このノートのストレージに存在しない添付ファイルへのリンクを貼り付けました。添付ファイルへのリンクの貼り付けは同一ストレージ内でのみサポートされています。代わりに添付ファイルをドラッグアンドドロップしてください! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "スペルチェック無効",
+ "Show menu bar": "メニューバーを表示",
+ "Auto Detect": "自動検出"
}
diff --git a/locales/ko.json b/locales/ko.json
index 9a8bf8c7..3dbb1ada 100644
--- a/locales/ko.json
+++ b/locales/ko.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "인쇄",
"Your preferences for Boostnote": "Boostnote 설정",
"Storage Locations": "저장소",
@@ -75,7 +76,7 @@
"Website": "웹사이트",
"Development": "개발",
" : Development configurations for Boostnote.": " : Boostnote 개발을 위한 설정들.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "사용 통계/분석",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote는 서비스개선을 위해 익명으로 데이터를 수집하며 노트의 내용과같은 일체의 개인정보는 수집하지 않습니다.",
@@ -160,5 +161,7 @@
"Allow dangerous html tags": "모든 위험한 태그 허용",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/no.json b/locales/no.json
index 2d6c92f5..ff858153 100644
--- a/locales/no.json
+++ b/locales/no.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Print",
"Your preferences for Boostnote": "Your preferences for Boostnote",
"Storage Locations": "Storage Locations",
@@ -75,7 +76,7 @@
"Website": "Website",
"Development": "Development",
" : Development configurations for Boostnote.": " : Development configurations for Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "Analytics",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.",
@@ -153,5 +154,7 @@
"Allow dangerous html tags": "Allow dangerous html tags",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/pl.json b/locales/pl.json
index 68719aef..ffdc14be 100644
--- a/locales/pl.json
+++ b/locales/pl.json
@@ -14,13 +14,14 @@
"STORAGE": "MIEJSCE ZAPISU",
"FOLDER": "FOLDER",
"CREATION DATE": "DATA UTWORZENIA",
- "NOTE LINK": "LINK NOTATKI",
- "Toggle Editor Mode": "Przełączanie trybu edytora",
+ "NOTE LINK": "LINK NOTATKI",
+ "Toggle Editor Mode": "Przełączanie trybu edytora",
".md": ".md",
".txt": ".txt",
".html": ".html",
- "Print": "Drukuj",
- "Help": "Pomoc",
+ ".pdf": ".pdf",
+ "Print": "Drukuj",
+ "Help": "Pomoc",
"Your preferences for Boostnote": "Twoje ustawienia dla Boostnote",
"Storage Locations": "Storage Locations",
"Add Storage Location": "Dodaj miejsce zapisu",
@@ -35,12 +36,12 @@
"White": "Biały",
"Solarized Dark": "Solarized Dark",
"Dark": "Ciemny",
- "Show a confirmation dialog when deleting notes": "Zatwierdzaj usunięcie notatek",
- "Show only related tags": "Pokazuj tylko powiązane tagi",
+ "Show a confirmation dialog when deleting notes": "Zatwierdzaj usunięcie notatek",
+ "Show only related tags": "Pokazuj tylko powiązane tagi",
"Editor Theme": "Wygląd edytora",
"Editor Font Size": "Rozmiar czcionki",
- "Editor Font Family": "Czcionka",
- "Snippet Default Language": "Domyślny język snippetów kodu",
+ "Editor Font Family": "Czcionka",
+ "Snippet Default Language": "Domyślny język snippetów kodu",
"Editor Indent Style": "Rodzaj wcięć",
"Spaces": "Spacje",
"Tabs": "Tabulatory",
@@ -57,9 +58,9 @@
"Allow editor to scroll past the last line": "Pozwalaj edytorowi na przewijanie poza końcową linię",
"Bring in web page title when pasting URL on editor": "Wprowadź tytuł wklejanej strony WWW do edytora",
"Preview": "Podgląd",
- "Preview Font Size": "Rozmiar czcionki",
- "Enable smart quotes": "Włącz inteligentne cytowanie",
- "Render newlines in Markdown paragraphs as ": "Dodawaj nowe linie w notatce jako znacznik ",
+ "Preview Font Size": "Rozmiar czcionki",
+ "Enable smart quotes": "Włącz inteligentne cytowanie",
+ "Render newlines in Markdown paragraphs as ": "Dodawaj nowe linie w notatce jako znacznik ",
"Preview Font Family": "Czcionka",
"Code Block Theme": "Styl bloku kodu",
"Allow preview to scroll past the last line": "Pozwalaj podglądowi na przewijanie poza końcową linię",
@@ -81,7 +82,7 @@
"Website": "Strona WWW",
"Development": "Development",
" : Development configurations for Boostnote.": " : Development configurations for Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "Licencja: GPL v3",
"Analytics": "Statystyki",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote zbiera anonimowe dane wyłącznie w celu poprawy działania aplikacji, lecz nigdy nie pobiera prywatnych danych z Twoich notatek.",
@@ -159,8 +160,10 @@
"Allow dangerous html tags": "Zezwól na niebezpieczne tagi HTML",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Konwertuje tekstowe strzałki na znaki. ⚠ Wpłynie to na używanie komentarzy HTML w Twojej notatce.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Wkleiłes link odnoszący się do załącznika, ktory nie może zostać znaleziony. Wklejanie linków do załączników jest możliwe tylko gdy notatka i załącznik są w tym samym folderze. Używaj opcji 'Przeciągaj i upuść' załącznik! ⚠",
- "Star": "Oznacz",
- "Fullscreen": "Pełen ekran",
- "Add tag...": "Dodaj tag...",
- "Disabled": "Disabled"
+ "Star": "Oznacz",
+ "Fullscreen": "Pełen ekran",
+ "Add tag...": "Dodaj tag...",
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/pt-BR.json b/locales/pt-BR.json
index 273466eb..ada02453 100644
--- a/locales/pt-BR.json
+++ b/locales/pt-BR.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Imprimir",
"Your preferences for Boostnote": "Suas preferências para o Boostnote",
"Storage Locations": "Armazenamentos",
@@ -75,7 +76,7 @@
"Website": "Website",
"Development": "Desenvolvimento",
" : Development configurations for Boostnote.": " : Configurações de desenvolvimento para o Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Direitos Autorais (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Direitos Autorais (C) 2017 - 2019 BoostIO",
"License: GPL v3": "Licença: GPL v3",
"Analytics": "Técnicas analíticas",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "O Boostnote coleta dados anônimos com o único propósito de melhorar o aplicativo e de modo algum coleta qualquer informação pessoal, bem como o conteúdo de suas anotações.",
@@ -153,5 +154,7 @@
"Allow dangerous html tags": "Permitir tags html perigosas",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/pt-PT.json b/locales/pt-PT.json
index 774919a2..159c2255 100644
--- a/locales/pt-PT.json
+++ b/locales/pt-PT.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Imprimir",
"Your preferences for Boostnote": "As tuas definiçōes para Boostnote",
"Storage Locations": "Locais de Armazenamento",
@@ -75,7 +76,7 @@
"Website": "Website",
"Development": "Desenvolvimento",
" : Development configurations for Boostnote.": " : Configurações de desenvolvimento para o Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Direitos de Autor (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Direitos de Autor (C) 2017 - 2019 BoostIO",
"License: GPL v3": "Licença: GPL v3",
"Analytics": "Analíse de Data",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "O Boostnote coleta dados anônimos com o único propósito de melhorar a aplicação e não adquire informação pessoal ou conteúdo das tuas notas.",
@@ -130,7 +131,7 @@
"Permanent Delete": "Apagar Permanentemente",
"Confirm note deletion": "Confirmar o apagamento da nota",
"This will permanently remove this note.": "Isto irá remover permanentemente esta nota.",
- "Successfully applied!": "Aplicado com Sucesso!",
+ "Successfully applied!": "Aplicado com Sucesso!",
"Albanian": "Albanês",
"Chinese (zh-CN)": "Chinês (zh-CN)",
"Chinese (zh-TW)": "Chinês (zh-TW)",
@@ -152,5 +153,7 @@
"Allow dangerous html tags": "Permitir tags html perigosas",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Converter setas de texto em simbolos. ⚠ Isto irá interferir no use de comentários em HTML em Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Você colou um link referente a um anexo que não pôde ser encontrado no local de armazenamento desta nota. A vinculação de anexos de referência de links só é suportada se o local de origem e de destino for o mesmo de armazenamento. Por favor, arraste e solte o anexo na nota! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/ru.json b/locales/ru.json
index 793e1511..70d140ce 100644
--- a/locales/ru.json
+++ b/locales/ru.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Print",
"Your preferences for Boostnote": "Настройки Boostnote",
"Storage Locations": "Хранилища",
@@ -74,7 +75,7 @@
"Website": "Сайт",
"Development": "Разработка",
" : Development configurations for Boostnote.": " : Разработческие конфигурации для Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "Аналитика",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote собирает анонимные данные о пользовании приложением для того, чтобы улучшать пользовательский опыт. Мы не собираем личную информацию и содержание ваших записей.",
@@ -150,5 +151,7 @@
"Disable": "Disable",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/sq.json b/locales/sq.json
index e4cc01ac..33d8ec97 100644
--- a/locales/sq.json
+++ b/locales/sq.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Print",
"Your preferences for Boostnote": "Your preferences for Boostnote",
"Storage Locations": "Storage Locations",
@@ -74,7 +75,7 @@
"Website": "Website",
"Development": "Development",
" : Development configurations for Boostnote.": " : Development configurations for Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "Analytics",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.",
@@ -152,5 +153,7 @@
"Allow dangerous html tags": "Allow dangerous html tags",
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/th.json b/locales/th.json
index 49d8e7cd..ade52990 100644
--- a/locales/th.json
+++ b/locales/th.json
@@ -19,6 +19,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "พิมพ์",
"Your preferences for Boostnote": "การตั้งค่าของคุณสำหรับ Boostnote",
"Help": "ช่วยเหลือ",
@@ -82,7 +83,7 @@
"Website": "เว็บไซต์",
"Development": "การพัฒนา",
" : Development configurations for Boostnote.": " : การตั้งค่าต่างๆสำหรับการพัฒนา Boostnote.",
- "Copyright (C) 2017 - 2018 BoostIO": "สงวนลิขสิทธิ์ (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "สงวนลิขสิทธิ์ (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "การวิเคราะห์",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote จะเก็บข้อมูลแบบไม่ระบุตัวตนเพื่อนำไปใช้ในการปรับปรุงแอพพลิเคชันเท่านั้น, และจะไม่มีการเก็บข้อมูลส่วนตัวใดๆของคุณ เช่น ข้อมูลในโน๊ตของคุณอย่างเด็ดขาด.",
@@ -178,5 +179,8 @@
"Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "แปลงลูกศรจากรูปแบบข้อความให้เป็นสัญลักษณ์. ⚠ สิ่งนี้จะเป็นการแทรกโดยใช้ HTML comment ลงไปใน Markdown ที่คุณเขียน.",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ ไม่พบไฟล์แนบในโน๊ตนี้ จากลิงค์ที่คุณได้วาง. คุณสามารถวางลิงค์ที่อ้างอิงไปยังไฟล์แนบ เฉพาะกรณีที่ต้นทาง และปลายทางที่อ้างถึงนั้นอยู่ใน 'แหล่งจัดเก็บ เดียวกัน. กรุณาใช้การลากและวางเพื่อใส่ไฟล์แนบแทน! ⚠",
"Enable smart table editor": "เปิดการใช้ Smart table editor",
- "Snippet Default Language": "ทำการ Snippet ภาษาที่เป็นค่าเริ่มต้น"
+ "Snippet Default Language": "ทำการ Snippet ภาษาที่เป็นค่าเริ่มต้น",
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/tr.json b/locales/tr.json
index 03a9791d..d9dd28f1 100644
--- a/locales/tr.json
+++ b/locales/tr.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "Yazdır",
"Your preferences for Boostnote": "Boostnote tercihleriniz",
"Storage Locations": "Saklama Alanları",
@@ -74,7 +75,7 @@
"Website": "Websitesi",
"Development": "Geliştirme",
" : Development configurations for Boostnote.": " : Boostnote için geliştirme ayarları.",
- "Copyright (C) 2017 - 2018 BoostIO": "Her hakkı saklıdır. (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Her hakkı saklıdır. (C) 2017 - 2019 BoostIO",
"License: GPL v3": "Lisans: GPL v3",
"Analytics": "Analizler",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote, uygulamanın geliştirilmesi amacıyla anonim veriler toplar. Notlarınızın içeriği gibi kişisel bilgiler kesinlikle toplanmaz.",
@@ -152,5 +153,7 @@
"Only allow secure html tags (recommended)": "Sadece güvenli html etiketlerine izin ver (tavsiye edilen)",
"Allow styles": "Stillere izin ver",
"Allow dangerous html tags": "Tehlikeli html etiketlerine izin ver",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/zh-CN.json b/locales/zh-CN.json
index 2e12323e..76700a7f 100755
--- a/locales/zh-CN.json
+++ b/locales/zh-CN.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "打印",
"Your preferences for Boostnote": "个性设置",
"Storage Locations": "本地存储",
@@ -76,7 +77,7 @@
"Website": "官网",
"Development": "开发",
" : Development configurations for Boostnote.": " : Boostnote 的开发配置",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "分析",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote 收集匿名数据只为了提升软件使用体验,绝对不收集任何个人信息(包括笔记内容)",
@@ -205,8 +206,19 @@
"Rename": "重命名",
"Folder Name": "文件夹名称",
"No tags":"无标签",
- "Render newlines in Markdown paragraphs as ":"在 Markdown 段落中使用 换行",
- "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
+ "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "将文本箭头转换为完整符号。 ⚠ 注意这会影响 Markdown 的 HTML 注释。",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Default New Note":"预设新笔记类型",
+ "Show only related tags": "只显示相关标签",
+ "Snippet Default Language": "程式码片段预设语言",
+ "Disable Direct Write (It will be applied after restarting)": "停用直接编辑 (重启后生效)",
+ "Enable smart table editor": "启用智能表格编辑器",
+ "Enable smart quotes": "启用智能引号",
+ "Allow line through checkbox": "替标示为完成的选框添加删除线",
+ "Custom CSS": "自定义 CSS",
+ "Allow custom CSS for preview": "允许预览自定义 CSS",
+ "Render newlines in Markdown paragraphs as ":"在 Markdown 段落中使用 换行",
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/locales/zh-TW.json b/locales/zh-TW.json
index 93a8afd5..ec6fa80c 100755
--- a/locales/zh-TW.json
+++ b/locales/zh-TW.json
@@ -18,6 +18,7 @@
".md": ".md",
".txt": ".txt",
".html": ".html",
+ ".pdf": ".pdf",
"Print": "列印",
"Your preferences for Boostnote": "Boostnote 偏好設定",
"Storage Locations": "儲存空間",
@@ -74,7 +75,7 @@
"Website": "官網",
"Development": "開發",
" : Development configurations for Boostnote.": " : Boostnote 的開發組態",
- "Copyright (C) 2017 - 2018 BoostIO": "Copyright (C) 2017 - 2018 BoostIO",
+ "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO",
"License: GPL v3": "License: GPL v3",
"Analytics": "分析",
"Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote 收集匿名資料單純只為了提升軟體使用體驗,絕對不收集任何個人資料(包括筆記內容)",
@@ -149,7 +150,19 @@
"Only allow secure html tags (recommended)": "只允許安全的 HTML 標籤 (建議)",
"Allow styles": "允許樣式",
"Allow dangerous html tags": "允許危險的 HTML 標籤",
- "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.",
+ "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "將文本箭頭轉換為完整符號。 ⚠ 注意這會影響 Markdown 的 HTML 注釋。",
+ "Default New Note":"預設新筆記類型",
+ "Show only related tags": "只顯示相關標籤",
+ "Snippet Default Language": "程式碼片段預設語言",
+ "Disable Direct Write (It will be applied after restarting)": "停用直接編輯 (重啟後生效)",
+ "Enable smart table editor": "啟用智能表格編輯器",
+ "Enable smart quotes": "啟用智能引號",
+ "Allow line through checkbox": "替標示為完成的選框添加刪除線",
+ "Custom CSS": "自定義 CSS",
+ "Allow custom CSS for preview": "允許預覽自定義 CSS",
+ "Render newlines in Markdown paragraphs as ":"在 Markdown 段落中使用 換行",
"⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠",
- "Disabled": "Disabled"
+ "Spellcheck disabled": "Spellcheck disabled",
+ "Show menu bar": "Show menu bar",
+ "Auto Detect": "Auto Detect"
}
diff --git a/package.json b/package.json
index 253623b0..f00fb095 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "boost",
"productName": "Boostnote",
- "version": "0.11.13",
+ "version": "0.11.15",
"main": "index.js",
"description": "Boostnote",
"license": "GPL-3.0",
@@ -50,6 +50,7 @@
"homepage": "https://boostnote.io",
"dependencies": {
"@enyaxu/markdown-it-anchor": "^5.0.2",
+ "@rokt33r/js-sequence-diagrams": "^2.0.6-2",
"@rokt33r/markdown-it-math": "^4.0.1",
"@rokt33r/season": "^5.3.0",
"@susisu/mte-kernel": "^2.0.0",
@@ -72,7 +73,6 @@
"iconv-lite": "^0.4.19",
"immutable": "^3.8.1",
"invert-color": "^2.0.0",
- "js-sequence-diagrams": "^1000000.0.6",
"js-yaml": "^3.12.0",
"katex": "^0.9.0",
"lodash": "^4.11.1",
@@ -138,7 +138,7 @@
"devtron": "^1.1.0",
"dom-storage": "^2.0.2",
"electron": "3.0.8",
- "electron-packager": "^12.0.0",
+ "electron-packager": "^12.2.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.2.0",
diff --git a/readme.md b/readme.md
index 5657cb0a..511f5a37 100644
--- a/readme.md
+++ b/readme.md
@@ -3,7 +3,7 @@

Note-taking app for programmers.
-
Apps available for Mac, Windows, Linux, Android, and iOS.
+
Apps available for Mac, Windows and Linux.
Built with Electron, React + Redux, Webpack, and CSSModules.