summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-03-18 16:18:33 +0100
committerAndrej Mihajlov <and@mullvad.net>2019-03-18 17:03:09 +0100
commitd5a747ef0d89a26985e808930fe20a0a87f6f35a (patch)
treec3bff7522f49de49181a9c296d19b54b3594ecec
parentb3df605be7965b264a5b3f7f49988f3e100dac84 (diff)
downloadmullvadvpn-d5a747ef0d89a26985e808930fe20a0a87f6f35a.tar.xz
mullvadvpn-d5a747ef0d89a26985e808930fe20a0a87f6f35a.zip
Add missing translation
-rw-r--r--gui/locales/messages.pot13
-rw-r--r--gui/src/renderer/components/Account.tsx4
2 files changed, 12 insertions, 5 deletions
diff --git a/gui/locales/messages.pot b/gui/locales/messages.pot
index 72e77985cb..a9ab6d17ca 100644
--- a/gui/locales/messages.pot
+++ b/gui/locales/messages.pot
@@ -45,7 +45,7 @@ msgctxt "account-view"
msgid "Account ID"
msgstr ""
-#: src/renderer/components/Account.tsx:69
+#: src/renderer/components/Account.tsx:71
msgctxt "account-view"
msgid "Buy more credit"
msgstr ""
@@ -55,21 +55,26 @@ msgctxt "account-view"
msgid "COPIED TO CLIPBOARD!"
msgstr ""
-#: src/renderer/components/Account.tsx:101
+#: src/renderer/components/Account.tsx:103
msgctxt "account-view"
msgid "Currently unavailable"
msgstr ""
-#: src/renderer/components/Account.tsx:74
+#: src/renderer/components/Account.tsx:76
msgctxt "account-view"
msgid "Log out"
msgstr ""
-#: src/renderer/components/Account.tsx:93
+#: src/renderer/components/Account.tsx:95
msgctxt "account-view"
msgid "OUT OF TIME"
msgstr ""
+#: src/renderer/components/Account.tsx:57
+msgctxt "account-view"
+msgid "Paid until"
+msgstr ""
+
#. Title label in navigation bar
#: src/renderer/components/AdvancedSettings.tsx:97
msgctxt "advanced-settings-nav"
diff --git a/gui/src/renderer/components/Account.tsx b/gui/src/renderer/components/Account.tsx
index 7864bfa0da..90de402269 100644
--- a/gui/src/renderer/components/Account.tsx
+++ b/gui/src/renderer/components/Account.tsx
@@ -53,7 +53,9 @@ export default class Account extends Component<IProps> {
</View>
<View style={styles.account__row}>
- <Text style={styles.account__row_label}>Paid until</Text>
+ <Text style={styles.account__row_label}>
+ {pgettext('account-view', 'Paid until')}
+ </Text>
<FormattedAccountExpiry
expiry={this.props.accountExpiry}
locale={this.props.expiryLocale}