diff --git a/server/i18n/de.json b/server/i18n/de.json index 424ef86..b17c9d8 100644 --- a/server/i18n/de.json +++ b/server/i18n/de.json @@ -102,5 +102,15 @@ "getblockheight" : "Nimmt einen Hash-Parameter und gibt die entsprechende Blockhöhe zurück.", "getblocktime" : "Nimmt einen Höhenparameter und gibt die unixtime des Blocks zurück.", "takes":"nimmt ein" + }, + "commit-id-view": { + "output-commit":"Output Commit", + "created-at-block":"Erstellt am Block", + "created-at":"Hergestellt in", + "output-type" : "Ausgabetyp", + "proof" : "Beweis", + "proof-hash" : "Beweis-Hash", + "merkle-proof" : "Merkle Beweis", + "mmr-index" : "MMR Index" } } diff --git a/server/i18n/en.json b/server/i18n/en.json index 8ef2852..9b9e965 100644 --- a/server/i18n/en.json +++ b/server/i18n/en.json @@ -102,5 +102,15 @@ "getblockheight" : " parameter and returns corresponding block height.", "getblocktime" : " parameter and returns unixtime of the block.", "takes" : "takes a" + }, + "commit-id-view": { + "output-commit":"Output Commit", + "created-at-block":"Created at block", + "created-at":"Created At", + "output-type" : "Output Type", + "proof" : "Proof", + "proof-hash" : "Proof hash", + "merkle-proof" : "Merkle Proof", + "mmr-index" : "MMR Index" } } diff --git a/src/app/view/block-view/block-detail/block-detail.component.html b/src/app/view/block-view/block-detail/block-detail.component.html index d94a635..306461f 100644 --- a/src/app/view/block-view/block-detail/block-detail.component.html +++ b/src/app/view/block-view/block-detail/block-detail.component.html @@ -291,50 +291,50 @@
Created at block | +{{'commit-id-view.created-at-block' | translate}} |
- Created at block +{{'commit-id-view.created-at-block' | translate}} {{ hashdata.BlockchainBlockFetchQuery.Height }} |
Created At | +{{'commit-id-view.created-at' | translate}} |
- Created At +{{'commit-id-view.created-at' | translate}} {{ hashdata.BlockchainBlockFetchQuery.Timestamp }} |
Output Type | +{{'commit-id-view.output-type' | translate}} |
- Output Type +{{'commit-id-view.output-type' | translate}} {{ hashdata.BlockchainBlockOutputFetchQuery[0].OutputType }} |
Proof | +{{'commit-id-view.proof' | translate}} |
- Proof +{{'commit-id-view.proof' | translate}} {{ hashdata.BlockchainBlockOutputFetchQuery[0].Proof }} |
Proof hash | +{{'commit-id-view.proof-hash' | translate}} |
- Proof hash +{{'commit-id-view.proof-hash' | translate}} {{ hashdata.BlockchainBlockOutputFetchQuery[0].ProofHash }} |
Merkle Proof | +{{'commit-id-view.merkle-proof' | translate}} |
- Merkle Proof +{{'commit-id-view.merkle-proof' | translate}} {{ hashdata.BlockchainBlockOutputFetchQuery[0].MerkleProof }} |
MMR Index | +{{'commit-id-view.mmr-index' | translate}} |
- MMR Index +{{'commit-id-view.mmr-index' | translate}} {{ hashdata.BlockchainBlockOutputFetchQuery[0].MmrIndex }} |