From 54d87b52251208bc905d0aa5b4c7de0caa621913 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Mon, 6 Dec 2021 11:53:46 +0100 Subject: [PATCH] German translation update --- HISTORY.md | 1 + locale/lang-de.js | 10 +++++++++- snap.html | 2 +- src/blocks.js | 4 ++-- src/locale.js | 4 ++-- src/threads.js | 4 ++-- 6 files changed, 17 insertions(+), 8 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 8b496ee4..a986ddd0 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -70,6 +70,7 @@ ### 2021-12-06 * blocks, threads: refactored block assembly, experimental +* German translation update ### 2021-12-05 * blocks, threads, objects: introspection & syntax analysis, experimental diff --git a/locale/lang-de.js b/locale/lang-de.js index 20a53d24..44d64ffa 100644 --- a/locale/lang-de.js +++ b/locale/lang-de.js @@ -185,7 +185,7 @@ SnapTranslator.dict.de = { 'translator_e-mail': 'jens@moenig.org, jadga.huegle@sap.com', // optional 'last_changed': - '2021-11-25', // this, too, will appear in the Translators tab + '2021-12-06', // this, too, will appear in the Translators tab // GUI // control bar: @@ -725,6 +725,14 @@ SnapTranslator.dict.de = { 'Rahmenz\u00e4hler', 'log pen vectors': 'Vektoraufzeichnung', + '%block of block %repRing': + '%block von Block %repRing', + 'definition': + 'Definition', + 'custom?': + 'benutzerdefiniert?', + 'global': + 'global?', // operators: '%n mod %n': diff --git a/snap.html b/snap.html index c033f038..f5b53ff8 100755 --- a/snap.html +++ b/snap.html @@ -31,7 +31,7 @@ - + diff --git a/src/blocks.js b/src/blocks.js index 377d4c27..ef8975c8 100644 --- a/src/blocks.js +++ b/src/blocks.js @@ -800,8 +800,8 @@ SyntaxElementMorph.prototype.labelParts = { tags: 'read-only static', menu: { 'definition': ['definition'], - 'is custom': ['is custom'], - 'is global': ['is global'] + 'custom?': ['custom?'], + 'global?': ['global?'] } }, diff --git a/src/locale.js b/src/locale.js index 5e6260b6..a9acd4d3 100644 --- a/src/locale.js +++ b/src/locale.js @@ -50,7 +50,7 @@ // Global stuff -modules.locale = '2021-November-29'; +modules.locale = '2021-December-06'; var Localizer; var SnapTranslator = new Localizer(); @@ -185,7 +185,7 @@ SnapTranslator.dict.de = { 'translator_e-mail': 'jens@moenig.org, jadga.huegle@sap.com', 'last_changed': - '2021-11-25' + '2021-12-06' }; SnapTranslator.dict.it = { diff --git a/src/threads.js b/src/threads.js index 6ee999f8..a35b6525 100644 --- a/src/threads.js +++ b/src/threads.js @@ -5466,9 +5466,9 @@ Process.prototype.reportBasicBlockAttribute = function (attribute, block) { new Context(); } return new Context(); - case 'is custom': + case 'custom?': return expr.isCustomBlock; - case 'is global': + case 'global?': return expr.isGlobal; } return '';