1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Merge branch 'master' of github.com:laurent22/joplin

This commit is contained in:
Laurent Cozic 2019-06-10 08:55:46 +01:00
commit f7de0c5ffd
4 changed files with 22 additions and 13 deletions

1
.github/FUNDING.yml vendored
View File

@ -1,5 +1,4 @@
# These are supported funding model platforms
github: laurent22
patreon: joplin
custom: https://joplinapp.org/donate/

View File

@ -738,7 +738,7 @@ msgid "Make a donation"
msgstr "Spenden"
msgid "Toggle development tools"
msgstr ""
msgstr "Entwicklerwerkzeuge ein-/ausschalten"
#, javascript-format
msgid "Open %s"
@ -998,9 +998,8 @@ msgstr "Manche Objekte können nicht synchronisiert werden."
msgid "View them now"
msgstr "Zeige sie jetzt an"
#, fuzzy
msgid "One or more master keys need a password."
msgstr "Master-Passwort eingeben:"
msgstr "Mindestens ein Hauptschlüssel benötigt ein Passwort."
msgid "Set the password"
msgstr "Setze ein Passwort"
@ -1211,7 +1210,7 @@ msgstr ""
"Bitte wähle aus, wohin der Synchronisations-Status exportiert werden soll"
msgid "Retry"
msgstr ""
msgstr "Erneut versuchen"
msgid "Add or remove tags"
msgstr "Schlagwörter hinzufügen oder entfernen"
@ -1471,7 +1470,7 @@ msgid "Auto"
msgstr "Automatisch"
msgid "Max concurrent connections"
msgstr ""
msgstr "Maximale Anzahl an gleichzeitigen Verbindungen"
msgid "Language"
msgstr "Sprache"
@ -1756,15 +1755,18 @@ msgstr "%s (%s) konnte nicht hochgeladen werden: %s"
msgid "Item \"%s\" could not be downloaded: %s"
msgstr "Eintrag \"%s\" konnte nicht heruntergeladen werden: %s"
#, fuzzy
msgid "Items that cannot be decrypted"
msgstr "Objekte können nicht synchronisiert werden"
msgstr "Objekte, die nicht entschlüsselt werden konnten"
msgid ""
"Joplin failed to decrypt these items multiple times, possibly because they "
"are corrupted or too large. These items will remain on the device but Joplin "
"will no longer attempt to decrypt them."
msgstr ""
"Joplin konnte diese Objekte trotz mehrfacher Versuche nicht entschlüsseln, "
"weil sie wahrscheinlich entweder kaputt oder zu groß sind. Diese Objekte "
"bleiben auf dem Gerat, aber Joplin wird nicht mehr versuchen sie zu "
"entschlüsseln."
msgid "Sync status (synced items / total items)"
msgstr "Synchronisationsstatus (synchronisierte Objekte / gesamte Objekte)"
@ -1891,9 +1893,8 @@ msgstr "Neue Schlagwörter:"
msgid "Type new tags or select from list"
msgstr "Neues Schlagwort eingeben oder aus der Liste auswählen"
#, fuzzy
msgid "More information"
msgstr "Konfiguration"
msgstr "Weitere Information"
msgid ""
"To work correctly, the app needs the following permissions. Please enable "

View File

@ -668,6 +668,16 @@ class Application extends BaseApplication {
name: 'textLink',
});
},
}, {
label: _('Code'),
screens: ['Main'],
accelerator: 'CommandOrControl+`',
click: () => {
this.dispatch({
type: 'WINDOW_COMMAND',
name: 'textCode',
});
},
}, {
type: 'separator',
screens: ['Main'],

View File

@ -896,9 +896,6 @@ class NoteTextComponent extends React.Component {
}
return output;
}
//fixes #1426 but this is an Ace issue, so it can be removed if ace/brace is updated.
this.editor_.editor.getSession().getMode().$quotes = {'"': '"', "'": "'", "`": "`"};
// Disable Markdown auto-completion (eg. auto-adding a dash after a line with a dash.
// https://github.com/ajaxorg/ace/issues/2754
@ -1022,6 +1019,8 @@ class NoteTextComponent extends React.Component {
fn = this.commandStartExternalEditing;
} else if (command.name === 'showLocalSearch') {
fn = this.commandShowLocalSearch;
} else if (command.name === 'textCode') {
fn = this.commandTextCode;
}
}