Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/components/NavbarComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
case RouteNames.LOAD_FROM_BACKUP: return 'Import Keychain';
case RouteNames.SETTINGS: return 'Settings';
case RouteNames.TRANSFER: return 'Transfer';
case RouteNames.IDENTITIES: return 'Identities';
case RouteNames.IDENTITIES: return this.locale(this.langKeys.MAINMENU_Identities);
case RouteNames.IDENTITY: return 'Identity';
case RouteNames.PERMISSIONS:
case RouteNames.DOMAIN_PERMISSIONS: return 'Permissions';
case RouteNames.HISTORY: return 'History';
case RouteNames.DOMAIN_PERMISSIONS: return this.locale(this.langKeys.MAINMENU_Permissions);
case RouteNames.HISTORY: return this.locale(this.langKeys.MAINMENU_History);
case RouteNames.NETWORKS: return 'Networks';
case RouteNames.NETWORK: return 'Network';
case RouteNames.CHANGE_PASSWORD: return 'Password';
Expand All @@ -62,7 +62,7 @@
case RouteNames.AUTO_LOCK: return 'Auto Lock';
case RouteNames.LANGUAGE: return 'Language';
case RouteNames.KEYPAIRS: return 'Key Pair';
case RouteNames.KEYS: return 'Key Pairs';
case RouteNames.KEYS: return this.locale(this.langKeys.MAINMENU_Keys);
}
return 'Undefined'
},
Expand Down Expand Up @@ -161,4 +161,4 @@
background:#f9f9f9;
}
}
</style>
</style>
10 changes: 8 additions & 2 deletions src/localization/languages/german.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default {
[KEYS.GENERIC_Account]:'Account',

[KEYS.PLACEHOLDER_Name]:'Name',
[KEYS.PLACEHOLDER_PublicKey]:'Public Key',
[KEYS.PLACEHOLDER_PrivateKey]:'Private Key',
[KEYS.PLACEHOLDER_PublicKey]:'Öffentlicher Schlüssel',
[KEYS.PLACEHOLDER_PrivateKey]:'Privater Schlüssel',
[KEYS.PLACEHOLDER_FirstName]:'Vorname',
[KEYS.PLACEHOLDER_LastName]:'Nachname',
[KEYS.PLACEHOLDER_Email]:'E-Mail',
Expand Down Expand Up @@ -178,12 +178,18 @@ export default {

[KEYS.LANGUAGE_Header]:`Wähle deine Sprache aus`,

[KEYS.KEYPAIRS_NoKeyPairsHeader]:`Du hast noch keine Schlüsselpaare.`,
[KEYS.KEYPAIRS_NoKeyPairsDescription]:`
Drücke den Button oben rechts um ein Schlüsselpaar zu erstellen/importieren.
`,

[KEYS.KEYPAIR_Header]:`Erstelle ein neues Schlüsselpaar`,
[KEYS.KEYPAIR_Description]:`
Hier kannst du EOS-Schlüsselpaare erzeugen. Die erzeugten Schlüsselpaare werden lokal auf deinem Rechner erzeugt und werden nie versendet.
Du kannst auch ein Schlüsselpaar hinzufügen und überprüfen, ob der private Schlüssel mit dem öffentlichen Schlüssel übereinstimmt.
Beachte, dass diese Schlüssel durch Entropie erzeugt werden, die von deinem Computer und nicht von einem bestimmten Seed stammen.
`,
[KEYS.KEYPAIR_Important]:`Bewahre deinen privaten Schlüssel sicher irgendwo auf! Du kannst ihn aus Scatter nicht mehr exportieren.`,
[KEYS.KEYPAIR_Validation_Header]:`Erstelle ein neues Schlüsselpaar`,
[KEYS.KEYPAIR_Validation_Valid]:`Der private Schlüssel ist gültig und der daraus generierte öffentliche Schlüssel entspricht dem bereitgestellten öffentlichen Schlüssel.`,
[KEYS.KEYPAIR_Validation_Invalid]:`Der aus dem privaten Schlüssel generierte öffentliche Schlüssel stimmt nicht mit dem bereitgestellten öffentlichen Schlüssel überein!`,
Expand Down
6 changes: 3 additions & 3 deletions src/views/IdentitiesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

<!-- Personal Information -->
<section class="panel" v-if="fullKeysOf(identity.personal).length">
<figure class="header small reverse-margin">personal information</figure>
<figure class="header small reverse-margin">{{locale(langKeys.IDENTITY_PersonalHeader)}}</figure>
<section class="items">
<section class="item" v-for="key in fullKeysOf(identity.personal)">
<span>{{key}}</span>
Expand All @@ -65,7 +65,7 @@
<!-- Location Information -->
<section class="panel" v-for="location in identity.locations">
<section v-if="fullKeysOf(location).length">
<figure class="header small reverse-margin">location information</figure>
<figure class="header small reverse-margin">{{locale(langKeys.IDENTITY_LocationHeader)}}</figure>
<section class="items">
<section class="item" v-for="key in fullKeysOf(location)">
<span>{{key}}</span>
Expand Down Expand Up @@ -209,4 +209,4 @@
}
}

</style>
</style>