diff --git a/frontend/src/components/GddSend/TransactionConfirmationSend.vue b/frontend/src/components/GddSend/TransactionConfirmationSend.vue
index 5e945ec20..2d85fa33f 100644
--- a/frontend/src/components/GddSend/TransactionConfirmationSend.vue
+++ b/frontend/src/components/GddSend/TransactionConfirmationSend.vue
@@ -27,7 +27,7 @@
-
{{ memo ? memo : $t('dash') }}
+ {{ memo ? memo : $t('em-dash') }}
diff --git a/frontend/src/components/Menu/Navbar.vue b/frontend/src/components/Menu/Navbar.vue
index 2163ae945..3542c1cd1 100644
--- a/frontend/src/components/Menu/Navbar.vue
+++ b/frontend/src/components/Menu/Navbar.vue
@@ -10,7 +10,7 @@
- {{ pending ? $t('dash') : balance | amount }} {{ $t('GDD') }}
+ {{ pending ? $t('em-dash') : balance | amount }} {{ $t('GDD') }}
{{ $store.state.firstName }} {{ $store.state.lastName }}
diff --git a/frontend/src/components/Status.spec.js b/frontend/src/components/Status.spec.js
index 1dbb05493..ba7b03fa4 100644
--- a/frontend/src/components/Status.spec.js
+++ b/frontend/src/components/Status.spec.js
@@ -27,7 +27,7 @@ describe('Status', () => {
describe('balance is pending', () => {
it('it displays an en-dash', () => {
- expect(wrapper.find('div.gdd-status-div').text()).toEqual('dash GDD')
+ expect(wrapper.find('div.gdd-status-div').text()).toEqual('em-dash GDD')
})
})
diff --git a/frontend/src/components/Status.vue b/frontend/src/components/Status.vue
index cde1afbdb..9ebe48e09 100644
--- a/frontend/src/components/Status.vue
+++ b/frontend/src/components/Status.vue
@@ -1,7 +1,7 @@
- {{ pending || balance === null ? $t('dash') : $n(balance, 'decimal') }} {{ statusText }}
+ {{ pending || balance === null ? $t('em-dash') : $n(balance, 'decimal') }} {{ statusText }}
diff --git a/frontend/src/components/UserCard.vue b/frontend/src/components/UserCard.vue
index 915632860..beca89532 100755
--- a/frontend/src/components/UserCard.vue
+++ b/frontend/src/components/UserCard.vue
@@ -26,7 +26,7 @@
- {{ $t('dash') }}
+ {{ $t('em-dash') }}
{{ $t('community.community') }}
diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json
index 47076886d..93752b92d 100644
--- a/frontend/src/locales/de.json
+++ b/frontend/src/locales/de.json
@@ -9,7 +9,7 @@
"other-communities": "Weitere Gemeinschaften",
"switch-to-this-community": "zu dieser Gemeinschaft wechseln"
},
- "dash": "—",
+ "em-dash": "—",
"decay": {
"before_startblock_transaction": "Diese Transaktion beinhaltet keine Vergänglichkeit.",
"calculation_decay": "Berechnung der Vergänglichkeit",
diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json
index fe227cb9d..48e761eda 100644
--- a/frontend/src/locales/en.json
+++ b/frontend/src/locales/en.json
@@ -9,7 +9,7 @@
"other-communities": "Other communities",
"switch-to-this-community": "Switch to this community"
},
- "dash": "—",
+ "em-dash": "—",
"decay": {
"before_startblock_transaction": "This transaction does not include decay.",
"calculation_decay": "Calculation of Decay",