Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
YakovL committed Jan 4, 2024
2 parents 7371ff4 + df1446e commit 271304a
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Core lingo history.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changes in Lingo.js are shown below for each version.
Note that some commits have changes in other files;
some only have changes of codestyle which may guide you, but they don't affect functionality.

v2.10.0
* [20ec30c](https://github.com/TiddlyWiki/TiddlyWikiClassic/commit/20ec30c57095d689ed2c9b9c892def79a846dcb3) remove an extra link in GettingStarted
* [49da59f](https://github.com/TiddlyWiki/TiddlyWikiClassic/commit/49da59ffa69cea59b6c911b60fa47bdd23a5e480) add `errorVerifyingBackup` to `config.macros.upgrade`
* [4d4e19d](https://github.com/TiddlyWiki/TiddlyWikiClassic/commit/4d4e19ddc17d94f0b65b7c3dbb7aa936f1ce02b8) update instructions in the upgrade wizard

v2.9.4 (update examples: [main](https://github.com/TiddlyWiki/translations/commit/2a2ee7c), [optional codestyle update](https://github.com/TiddlyWiki/translations/commit/bf64a6d))
* [edcd6b3](https://github.com/TiddlyWiki/TiddlyWikiClassic/commit/edcd6b3) Add description for chkPreventAsyncSaving
* [65977fe](https://github.com/TiddlyWiki/TiddlyWikiClassic/commit/65977fe) Update UI in step1Html for options macro
Expand Down Expand Up @@ -85,4 +90,4 @@ previous changes (source: `git log --oneline -- .\js\Lingo.js`; TODO: ideally, a
* 887f04e Corrected annotation for MarkupPostBody tiddler (ticket #499)
* 48b364b Made the warning against modifying StyleSheetLayout and StyleSheetColors be stronger (ticket #404)
* 25f3f5c Fixed problem with sync error in Internet Explorer (ticket #421)
* ...
* ...
47 changes: 47 additions & 0 deletions locales/extensions/ExtensionsManagerPlugin/locale.de.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/***
|Name |ExtensionsExplorerPluginGermanTranslation|
|Description |German translation for [[ExtensionsExplorerPlugin|https://github.com/YakovL/TiddlyWiki_ExtensionsExplorerPlugin]]|
|PluginVersion|0.6.4|
|Version |1.0.0|
|Requires |ExtensionsExplorerPlugin|
|Source |https://github.com/TiddlyWiki/translations/blob/master/locales/extensions/ExtensionsManagerPlugin/locale.de.js|
***/
//{{{
merge(config.macros.extensionsExplorer.lingo, {
backstageButtonLabel: "Erweiterungen",
backstageButtonTooltip: "Prüfen, ob es neue Versionen gibt oder neue Erweiterungen installieren",
installButtonLabel: "Installieren",
installButtonPrompt: "Erweiterung herunterladen und installieren",
otherActionsPrompt: "Andere Funktionen anzeigen",
getFailedToLoadMsg: name => name + " herunterladen fehlgeschlagen",
getSucceededToLoadMsg: name => `${name} heruntergeladen, Import und Installation folgt...`,
noSourceUrlAvailable: "Quell-URL fehlt",
getEvalSuccessMsg: name => `${name} erfolgreich installiert (neu laden nicht notwendig)`,
getEvalFailMsg: (name, error) => `${name} fehlgeschlagen mit Fehler: ${error}`,
getImportSuccessMsg: (title, versionString, isUpdated) => isUpdated ?
`${title}${versionString ? " auf " + versionString : ""} aktualisiert` :
`${title}${versionString ? " v" + versionString : ""} installiert`,

updateButtonCheckLabel: "Prüfen",
updateButtonCheckPrompt: "Auf neue Version prüfen",
updateButtonUpdateLabel: "Aktualisieren",
updateButtonUpdatePrompt: "Auf neue Version aktualisieren",
getUpdateAvailableMsg: name => `Neue Version von ${name} ist verfügbar!`,
getUpdateAvailableAndVersionsMsg: (existingTiddler, newTiddler) => {
const getVersionString = config.macros.extensionsExplorer.getVersionString
return `Neue Version von ${existingTiddler.title} ist verfügbar ` +
"(aktuelle Version: " + getVersionString(existingTiddler) +
", verfügbare Version: " + getVersionString(newTiddler) + ")"
},
updateNotAvailable: "Keine neue Version verfügbar",
getUpdateConfirmMsg: (title, loadedVersion, presentVersion) => {
const loadedVersionString = loadedVersion ? formatVersion(loadedVersion) : ""
const presentVersionString = presentVersion ? formatVersion(presentVersion) : ""
return `Soll ${title} aktualisiert werden` +
` (new version: ${loadedVersionString || "unknown"}, ` +
`current version: ${presentVersionString || "unknown"})?`
},

centralSourcesListAnnotation: "Das JSON hier beschreibt Erweiterungen, so dass ExtensionsExplorerPlugin diese installieren kann"
});
//}}}

0 comments on commit 271304a

Please sign in to comment.