fix i18n build task
This commit is contained in:
parent
cd7629c916
commit
9c735a0e6e
7
Makefile
7
Makefile
@ -60,7 +60,12 @@ i18n: yarn-install
|
|||||||
msgmerge -o $$pofile $$pofile src/i18n/$(poname).pot; \
|
msgmerge -o $$pofile $$pofile src/i18n/$(poname).pot; \
|
||||||
done;
|
done;
|
||||||
# generate .ts file containing all translations
|
# generate .ts file containing all translations
|
||||||
./contrib/po2ts
|
cat src/i18n/strings-prelude > src/i18n/strings.ts
|
||||||
|
@for pofile in src/i18n/*.po; do \
|
||||||
|
echo appending $$pofile; \
|
||||||
|
./contrib/po2ts $$pofile >> src/i18n/strings.ts; \
|
||||||
|
done;
|
||||||
|
./node_modules/.bin/prettier --config .prettierrc --write src/i18n/strings.ts
|
||||||
|
|
||||||
# Some commands are only available when ./configure has been run
|
# Some commands are only available when ./configure has been run
|
||||||
|
|
||||||
|
42
contrib/po2ts
Executable file
42
contrib/po2ts
Executable file
@ -0,0 +1,42 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
/*
|
||||||
|
This file is part of GNU Taler
|
||||||
|
(C) 2020 Taler Systems S.A.
|
||||||
|
|
||||||
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
||||||
|
terms of the GNU General Public License as published by the Free Software
|
||||||
|
Foundation; either version 3, or (at your option) any later version.
|
||||||
|
|
||||||
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along with
|
||||||
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert a <lang>.po file into a JavaScript / TypeScript expression.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const po2json = require("po2json");
|
||||||
|
|
||||||
|
const filename = process.argv[2];
|
||||||
|
|
||||||
|
if (!filename) {
|
||||||
|
console.error("error: missing filename");
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const m = filename.match(/([a-zA-Z0-9-_]+).po/);
|
||||||
|
|
||||||
|
if (!m) {
|
||||||
|
console.error("error: unexpected filename (expected <lang>.po)");
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const lang = m[1];
|
||||||
|
const pojson = po2json.parseFileSync(filename);
|
||||||
|
const s =
|
||||||
|
"strings['" + lang + "'] = " + JSON.stringify(pojson, null, " ") + ";\n";
|
||||||
|
console.log(s);
|
114
src/i18n/de.po
114
src/i18n/de.po
@ -27,47 +27,47 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: src/util/wire.ts:38
|
#: src/util/wire.ts:37
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Wire"
|
msgid "Invalid Wire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:43 src/util/wire.ts:46
|
#: src/util/wire.ts:42 src/util/wire.ts:45
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Test Wire Detail"
|
msgid "Invalid Test Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:48
|
#: src/util/wire.ts:47
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Test Wire Acct #%1$s on %2$s"
|
msgid "Test Wire Acct #%1$s on %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:50
|
#: src/util/wire.ts:49
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unknown Wire Detail"
|
msgid "Unknown Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:57
|
#: src/webex/pages/benchmark.tsx:52
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Operation"
|
msgid "Operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:58
|
#: src/webex/pages/benchmark.tsx:53
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "time (ms/op)"
|
msgid "time (ms/op)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:132
|
#: src/webex/pages/pay.tsx:130
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "The merchant %1$s offers you to purchase:"
|
msgid "The merchant %1$s offers you to purchase:"
|
||||||
msgstr "Der Händler %1$s möchte einen Vertrag über %2$s mit Ihnen abschließen."
|
msgstr "Der Händler %1$s möchte einen Vertrag über %2$s mit Ihnen abschließen."
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:138
|
#: src/webex/pages/pay.tsx:136
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s (plus %2$s fees)."
|
msgid "The total price is %1$s (plus %2$s fees)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:143
|
#: src/webex/pages/pay.tsx:141
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s."
|
msgid "The total price is %1$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -77,226 +77,214 @@ msgstr ""
|
|||||||
msgid "Retry"
|
msgid "Retry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:172
|
#: src/webex/pages/pay.tsx:173
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Confirm payment"
|
msgid "Confirm payment"
|
||||||
msgstr "Bezahlung bestätigen"
|
msgstr "Bezahlung bestätigen"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:162
|
#: src/webex/pages/popup.tsx:153
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Balance"
|
msgid "Balance"
|
||||||
msgstr "Saldo"
|
msgstr "Saldo"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:163
|
#: src/webex/pages/popup.tsx:154
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "History"
|
msgid "History"
|
||||||
msgstr "Verlauf"
|
msgstr "Verlauf"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:164
|
#: src/webex/pages/popup.tsx:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Debug"
|
msgid "Debug"
|
||||||
msgstr "Debug"
|
msgstr "Debug"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:198
|
#: src/webex/pages/popup.tsx:175
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "You have no balance to show. Need some %1$s getting started?"
|
msgid "You have no balance to show. Need some %1$s getting started?"
|
||||||
msgstr "Sie haben kein Digitalgeld. Wollen Sie %1$s? abheben?"
|
msgstr "Sie haben kein Digitalgeld. Wollen Sie %1$s? abheben?"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:261
|
#: src/webex/pages/popup.tsx:238
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s incoming"
|
msgid "%1$s incoming"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:273
|
#: src/webex/pages/popup.tsx:250
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s being spent"
|
msgid "%1$s being spent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:304
|
#: src/webex/pages/popup.tsx:281
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error: could not retrieve balance information."
|
msgid "Error: could not retrieve balance information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:409
|
#: src/webex/pages/popup.tsx:390
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid "
|
msgid "Invalid "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:415
|
#: src/webex/pages/popup.tsx:396
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Fees "
|
msgid "Fees "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:454
|
#: src/webex/pages/popup.tsx:434
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh sessions has completed"
|
msgid "Refresh sessions has completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:471
|
#: src/webex/pages/popup.tsx:451
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order Refused"
|
msgid "Order Refused"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:485
|
#: src/webex/pages/popup.tsx:465
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order redirected"
|
msgid "Order redirected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:502
|
#: src/webex/pages/popup.tsx:482
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment aborted"
|
msgid "Payment aborted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:535
|
#: src/webex/pages/popup.tsx:512
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment Sent"
|
msgid "Payment Sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:562
|
#: src/webex/pages/popup.tsx:536
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order accepted"
|
msgid "Order accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:573
|
#: src/webex/pages/popup.tsx:547
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Reserve balance updated"
|
msgid "Reserve balance updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:589
|
#: src/webex/pages/popup.tsx:559
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment refund"
|
msgid "Payment refund"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:614
|
#: src/webex/pages/popup.tsx:584
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Withdrawn"
|
msgid "Withdrawn"
|
||||||
msgstr "Abheben bei %1$s"
|
msgstr "Abheben bei %1$s"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:626
|
#: src/webex/pages/popup.tsx:596
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Accepted"
|
msgid "Tip Accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:636
|
#: src/webex/pages/popup.tsx:606
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Declined"
|
msgid "Tip Declined"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:645
|
#: src/webex/pages/popup.tsx:615
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s"
|
msgid "%1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:703
|
#: src/webex/pages/popup.tsx:707
|
||||||
#, c-format
|
|
||||||
msgid "Error: could not retrieve event history"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:739
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Your wallet has no events recorded."
|
msgid "Your wallet has no events recorded."
|
||||||
msgstr "Ihre Geldbörse verzeichnet keine Vorkommnisse."
|
msgstr "Ihre Geldbörse verzeichnet keine Vorkommnisse."
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:105
|
#: src/webex/pages/return-coins.tsx:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Wire to bank account"
|
msgid "Wire to bank account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:173
|
#: src/webex/pages/return-coins.tsx:206
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Bezahlung bestätigen"
|
msgstr "Bezahlung bestätigen"
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:176
|
#: src/webex/pages/return-coins.tsx:209
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Saldo"
|
msgstr "Saldo"
|
||||||
|
|
||||||
#. #-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#
|
#: src/webex/pages/withdraw.tsx:73
|
||||||
#. TODO:generic error reporting function or component.
|
|
||||||
#: src/webex/pages/tip.tsx:116 src/webex/pages/withdraw.tsx:215
|
|
||||||
#, c-format
|
|
||||||
msgid "Fatal error: \"%1$s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:72
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Could not get details for withdraw operation:"
|
msgid "Could not get details for withdraw operation:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:88 src/webex/pages/withdraw.tsx:179
|
#: src/webex/pages/withdraw.tsx:89 src/webex/pages/withdraw.tsx:183
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Chose different exchange provider"
|
msgid "Chose different exchange provider"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:108
|
#: src/webex/pages/withdraw.tsx:109
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please select an exchange. You can review the details before after your "
|
"Please select an exchange. You can review the details before after your "
|
||||||
"selection."
|
"selection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:120
|
#: src/webex/pages/withdraw.tsx:121
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select %1$s"
|
msgid "Select %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:142
|
#: src/webex/pages/withdraw.tsx:143
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select custom exchange"
|
msgid "Select custom exchange"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:159
|
#: src/webex/pages/withdraw.tsx:163
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:170
|
#: src/webex/pages/withdraw.tsx:174
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Accept fees and withdraw"
|
msgid "Accept fees and withdraw"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:188
|
#: src/webex/pages/withdraw.tsx:192
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel withdraw operation"
|
msgid "Cancel withdraw operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:238
|
#: src/webex/renderHtml.tsx:249
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Withdrawal fees:"
|
msgid "Withdrawal fees:"
|
||||||
msgstr "Abheben bei"
|
msgstr "Abheben bei"
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:241
|
#: src/webex/renderHtml.tsx:252
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Rounding loss:"
|
msgid "Rounding loss:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:243
|
#: src/webex/renderHtml.tsx:254
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Earliest expiration (for deposit): %1$s"
|
msgid "Earliest expiration (for deposit): %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:250
|
#: src/webex/renderHtml.tsx:262
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "# Coins"
|
msgid "# Coins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:251
|
#: src/webex/renderHtml.tsx:263
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:252
|
#: src/webex/renderHtml.tsx:264
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Withdraw Fee"
|
msgid "Withdraw Fee"
|
||||||
msgstr "Abheben bei %1$s"
|
msgstr "Abheben bei %1$s"
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:253
|
#: src/webex/renderHtml.tsx:265
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh Fee"
|
msgid "Refresh Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:254
|
#: src/webex/renderHtml.tsx:266
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Deposit Fee"
|
msgid "Deposit Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -27,47 +27,47 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: src/util/wire.ts:38
|
#: src/util/wire.ts:37
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Wire"
|
msgid "Invalid Wire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:43 src/util/wire.ts:46
|
#: src/util/wire.ts:42 src/util/wire.ts:45
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Test Wire Detail"
|
msgid "Invalid Test Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:48
|
#: src/util/wire.ts:47
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Test Wire Acct #%1$s on %2$s"
|
msgid "Test Wire Acct #%1$s on %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:50
|
#: src/util/wire.ts:49
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unknown Wire Detail"
|
msgid "Unknown Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:57
|
#: src/webex/pages/benchmark.tsx:52
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Operation"
|
msgid "Operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:58
|
#: src/webex/pages/benchmark.tsx:53
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "time (ms/op)"
|
msgid "time (ms/op)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:132
|
#: src/webex/pages/pay.tsx:130
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The merchant %1$s offers you to purchase:"
|
msgid "The merchant %1$s offers you to purchase:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:138
|
#: src/webex/pages/pay.tsx:136
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s (plus %2$s fees)."
|
msgid "The total price is %1$s (plus %2$s fees)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:143
|
#: src/webex/pages/pay.tsx:141
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s."
|
msgid "The total price is %1$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -77,226 +77,214 @@ msgstr ""
|
|||||||
msgid "Retry"
|
msgid "Retry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:172
|
#: src/webex/pages/pay.tsx:173
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm payment"
|
msgid "Confirm payment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:162
|
#: src/webex/pages/popup.tsx:153
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Balance"
|
msgid "Balance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:163
|
#: src/webex/pages/popup.tsx:154
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "History"
|
msgid "History"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:164
|
#: src/webex/pages/popup.tsx:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Debug"
|
msgid "Debug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:198
|
#: src/webex/pages/popup.tsx:175
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You have no balance to show. Need some %1$s getting started?"
|
msgid "You have no balance to show. Need some %1$s getting started?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:261
|
#: src/webex/pages/popup.tsx:238
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s incoming"
|
msgid "%1$s incoming"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:273
|
#: src/webex/pages/popup.tsx:250
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s being spent"
|
msgid "%1$s being spent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:304
|
#: src/webex/pages/popup.tsx:281
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error: could not retrieve balance information."
|
msgid "Error: could not retrieve balance information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:409
|
#: src/webex/pages/popup.tsx:390
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid "
|
msgid "Invalid "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:415
|
#: src/webex/pages/popup.tsx:396
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Fees "
|
msgid "Fees "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:454
|
#: src/webex/pages/popup.tsx:434
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh sessions has completed"
|
msgid "Refresh sessions has completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:471
|
#: src/webex/pages/popup.tsx:451
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order Refused"
|
msgid "Order Refused"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:485
|
#: src/webex/pages/popup.tsx:465
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order redirected"
|
msgid "Order redirected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:502
|
#: src/webex/pages/popup.tsx:482
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment aborted"
|
msgid "Payment aborted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:535
|
#: src/webex/pages/popup.tsx:512
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment Sent"
|
msgid "Payment Sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:562
|
#: src/webex/pages/popup.tsx:536
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order accepted"
|
msgid "Order accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:573
|
#: src/webex/pages/popup.tsx:547
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Reserve balance updated"
|
msgid "Reserve balance updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:589
|
#: src/webex/pages/popup.tsx:559
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment refund"
|
msgid "Payment refund"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:614
|
#: src/webex/pages/popup.tsx:584
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawn"
|
msgid "Withdrawn"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:626
|
#: src/webex/pages/popup.tsx:596
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Accepted"
|
msgid "Tip Accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:636
|
#: src/webex/pages/popup.tsx:606
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Declined"
|
msgid "Tip Declined"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:645
|
#: src/webex/pages/popup.tsx:615
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s"
|
msgid "%1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:703
|
#: src/webex/pages/popup.tsx:707
|
||||||
#, c-format
|
|
||||||
msgid "Error: could not retrieve event history"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:739
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Your wallet has no events recorded."
|
msgid "Your wallet has no events recorded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:105
|
#: src/webex/pages/return-coins.tsx:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Wire to bank account"
|
msgid "Wire to bank account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:173
|
#: src/webex/pages/return-coins.tsx:206
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:176
|
#: src/webex/pages/return-coins.tsx:209
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. #-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#
|
#: src/webex/pages/withdraw.tsx:73
|
||||||
#. TODO:generic error reporting function or component.
|
|
||||||
#: src/webex/pages/tip.tsx:116 src/webex/pages/withdraw.tsx:215
|
|
||||||
#, c-format
|
|
||||||
msgid "Fatal error: \"%1$s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:72
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Could not get details for withdraw operation:"
|
msgid "Could not get details for withdraw operation:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:88 src/webex/pages/withdraw.tsx:179
|
#: src/webex/pages/withdraw.tsx:89 src/webex/pages/withdraw.tsx:183
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Chose different exchange provider"
|
msgid "Chose different exchange provider"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:108
|
#: src/webex/pages/withdraw.tsx:109
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please select an exchange. You can review the details before after your "
|
"Please select an exchange. You can review the details before after your "
|
||||||
"selection."
|
"selection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:120
|
#: src/webex/pages/withdraw.tsx:121
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select %1$s"
|
msgid "Select %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:142
|
#: src/webex/pages/withdraw.tsx:143
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select custom exchange"
|
msgid "Select custom exchange"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:159
|
#: src/webex/pages/withdraw.tsx:163
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:170
|
#: src/webex/pages/withdraw.tsx:174
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Accept fees and withdraw"
|
msgid "Accept fees and withdraw"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:188
|
#: src/webex/pages/withdraw.tsx:192
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel withdraw operation"
|
msgid "Cancel withdraw operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:238
|
#: src/webex/renderHtml.tsx:249
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawal fees:"
|
msgid "Withdrawal fees:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:241
|
#: src/webex/renderHtml.tsx:252
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Rounding loss:"
|
msgid "Rounding loss:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:243
|
#: src/webex/renderHtml.tsx:254
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Earliest expiration (for deposit): %1$s"
|
msgid "Earliest expiration (for deposit): %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:250
|
#: src/webex/renderHtml.tsx:262
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "# Coins"
|
msgid "# Coins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:251
|
#: src/webex/renderHtml.tsx:263
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:252
|
#: src/webex/renderHtml.tsx:264
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdraw Fee"
|
msgid "Withdraw Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:253
|
#: src/webex/renderHtml.tsx:265
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh Fee"
|
msgid "Refresh Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:254
|
#: src/webex/renderHtml.tsx:266
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Deposit Fee"
|
msgid "Deposit Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
114
src/i18n/fr.po
114
src/i18n/fr.po
@ -27,47 +27,47 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: src/util/wire.ts:38
|
#: src/util/wire.ts:37
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Wire"
|
msgid "Invalid Wire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:43 src/util/wire.ts:46
|
#: src/util/wire.ts:42 src/util/wire.ts:45
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Test Wire Detail"
|
msgid "Invalid Test Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:48
|
#: src/util/wire.ts:47
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Test Wire Acct #%1$s on %2$s"
|
msgid "Test Wire Acct #%1$s on %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:50
|
#: src/util/wire.ts:49
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unknown Wire Detail"
|
msgid "Unknown Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:57
|
#: src/webex/pages/benchmark.tsx:52
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Operation"
|
msgid "Operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:58
|
#: src/webex/pages/benchmark.tsx:53
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "time (ms/op)"
|
msgid "time (ms/op)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:132
|
#: src/webex/pages/pay.tsx:130
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The merchant %1$s offers you to purchase:"
|
msgid "The merchant %1$s offers you to purchase:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:138
|
#: src/webex/pages/pay.tsx:136
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s (plus %2$s fees)."
|
msgid "The total price is %1$s (plus %2$s fees)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:143
|
#: src/webex/pages/pay.tsx:141
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s."
|
msgid "The total price is %1$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -77,226 +77,214 @@ msgstr ""
|
|||||||
msgid "Retry"
|
msgid "Retry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:172
|
#: src/webex/pages/pay.tsx:173
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm payment"
|
msgid "Confirm payment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:162
|
#: src/webex/pages/popup.tsx:153
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Balance"
|
msgid "Balance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:163
|
#: src/webex/pages/popup.tsx:154
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "History"
|
msgid "History"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:164
|
#: src/webex/pages/popup.tsx:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Debug"
|
msgid "Debug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:198
|
#: src/webex/pages/popup.tsx:175
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You have no balance to show. Need some %1$s getting started?"
|
msgid "You have no balance to show. Need some %1$s getting started?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:261
|
#: src/webex/pages/popup.tsx:238
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s incoming"
|
msgid "%1$s incoming"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:273
|
#: src/webex/pages/popup.tsx:250
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s being spent"
|
msgid "%1$s being spent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:304
|
#: src/webex/pages/popup.tsx:281
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error: could not retrieve balance information."
|
msgid "Error: could not retrieve balance information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:409
|
#: src/webex/pages/popup.tsx:390
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid "
|
msgid "Invalid "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:415
|
#: src/webex/pages/popup.tsx:396
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Fees "
|
msgid "Fees "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:454
|
#: src/webex/pages/popup.tsx:434
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh sessions has completed"
|
msgid "Refresh sessions has completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:471
|
#: src/webex/pages/popup.tsx:451
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order Refused"
|
msgid "Order Refused"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:485
|
#: src/webex/pages/popup.tsx:465
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order redirected"
|
msgid "Order redirected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:502
|
#: src/webex/pages/popup.tsx:482
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment aborted"
|
msgid "Payment aborted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:535
|
#: src/webex/pages/popup.tsx:512
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment Sent"
|
msgid "Payment Sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:562
|
#: src/webex/pages/popup.tsx:536
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order accepted"
|
msgid "Order accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:573
|
#: src/webex/pages/popup.tsx:547
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Reserve balance updated"
|
msgid "Reserve balance updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:589
|
#: src/webex/pages/popup.tsx:559
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment refund"
|
msgid "Payment refund"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:614
|
#: src/webex/pages/popup.tsx:584
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawn"
|
msgid "Withdrawn"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:626
|
#: src/webex/pages/popup.tsx:596
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Accepted"
|
msgid "Tip Accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:636
|
#: src/webex/pages/popup.tsx:606
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Declined"
|
msgid "Tip Declined"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:645
|
#: src/webex/pages/popup.tsx:615
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s"
|
msgid "%1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:703
|
#: src/webex/pages/popup.tsx:707
|
||||||
#, c-format
|
|
||||||
msgid "Error: could not retrieve event history"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:739
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Your wallet has no events recorded."
|
msgid "Your wallet has no events recorded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:105
|
#: src/webex/pages/return-coins.tsx:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Wire to bank account"
|
msgid "Wire to bank account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:173
|
#: src/webex/pages/return-coins.tsx:206
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:176
|
#: src/webex/pages/return-coins.tsx:209
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. #-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#
|
#: src/webex/pages/withdraw.tsx:73
|
||||||
#. TODO:generic error reporting function or component.
|
|
||||||
#: src/webex/pages/tip.tsx:116 src/webex/pages/withdraw.tsx:215
|
|
||||||
#, c-format
|
|
||||||
msgid "Fatal error: \"%1$s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:72
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Could not get details for withdraw operation:"
|
msgid "Could not get details for withdraw operation:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:88 src/webex/pages/withdraw.tsx:179
|
#: src/webex/pages/withdraw.tsx:89 src/webex/pages/withdraw.tsx:183
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Chose different exchange provider"
|
msgid "Chose different exchange provider"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:108
|
#: src/webex/pages/withdraw.tsx:109
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please select an exchange. You can review the details before after your "
|
"Please select an exchange. You can review the details before after your "
|
||||||
"selection."
|
"selection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:120
|
#: src/webex/pages/withdraw.tsx:121
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select %1$s"
|
msgid "Select %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:142
|
#: src/webex/pages/withdraw.tsx:143
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select custom exchange"
|
msgid "Select custom exchange"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:159
|
#: src/webex/pages/withdraw.tsx:163
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:170
|
#: src/webex/pages/withdraw.tsx:174
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Accept fees and withdraw"
|
msgid "Accept fees and withdraw"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:188
|
#: src/webex/pages/withdraw.tsx:192
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel withdraw operation"
|
msgid "Cancel withdraw operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:238
|
#: src/webex/renderHtml.tsx:249
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawal fees:"
|
msgid "Withdrawal fees:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:241
|
#: src/webex/renderHtml.tsx:252
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Rounding loss:"
|
msgid "Rounding loss:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:243
|
#: src/webex/renderHtml.tsx:254
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Earliest expiration (for deposit): %1$s"
|
msgid "Earliest expiration (for deposit): %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:250
|
#: src/webex/renderHtml.tsx:262
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "# Coins"
|
msgid "# Coins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:251
|
#: src/webex/renderHtml.tsx:263
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:252
|
#: src/webex/renderHtml.tsx:264
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdraw Fee"
|
msgid "Withdraw Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:253
|
#: src/webex/renderHtml.tsx:265
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh Fee"
|
msgid "Refresh Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:254
|
#: src/webex/renderHtml.tsx:266
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Deposit Fee"
|
msgid "Deposit Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
114
src/i18n/it.po
114
src/i18n/it.po
@ -27,47 +27,47 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: src/util/wire.ts:38
|
#: src/util/wire.ts:37
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Wire"
|
msgid "Invalid Wire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:43 src/util/wire.ts:46
|
#: src/util/wire.ts:42 src/util/wire.ts:45
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Test Wire Detail"
|
msgid "Invalid Test Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:48
|
#: src/util/wire.ts:47
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Test Wire Acct #%1$s on %2$s"
|
msgid "Test Wire Acct #%1$s on %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:50
|
#: src/util/wire.ts:49
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unknown Wire Detail"
|
msgid "Unknown Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:57
|
#: src/webex/pages/benchmark.tsx:52
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Operation"
|
msgid "Operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:58
|
#: src/webex/pages/benchmark.tsx:53
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "time (ms/op)"
|
msgid "time (ms/op)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:132
|
#: src/webex/pages/pay.tsx:130
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The merchant %1$s offers you to purchase:"
|
msgid "The merchant %1$s offers you to purchase:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:138
|
#: src/webex/pages/pay.tsx:136
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s (plus %2$s fees)."
|
msgid "The total price is %1$s (plus %2$s fees)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:143
|
#: src/webex/pages/pay.tsx:141
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s."
|
msgid "The total price is %1$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -77,226 +77,214 @@ msgstr ""
|
|||||||
msgid "Retry"
|
msgid "Retry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:172
|
#: src/webex/pages/pay.tsx:173
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm payment"
|
msgid "Confirm payment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:162
|
#: src/webex/pages/popup.tsx:153
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Balance"
|
msgid "Balance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:163
|
#: src/webex/pages/popup.tsx:154
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "History"
|
msgid "History"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:164
|
#: src/webex/pages/popup.tsx:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Debug"
|
msgid "Debug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:198
|
#: src/webex/pages/popup.tsx:175
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You have no balance to show. Need some %1$s getting started?"
|
msgid "You have no balance to show. Need some %1$s getting started?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:261
|
#: src/webex/pages/popup.tsx:238
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s incoming"
|
msgid "%1$s incoming"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:273
|
#: src/webex/pages/popup.tsx:250
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s being spent"
|
msgid "%1$s being spent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:304
|
#: src/webex/pages/popup.tsx:281
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error: could not retrieve balance information."
|
msgid "Error: could not retrieve balance information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:409
|
#: src/webex/pages/popup.tsx:390
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid "
|
msgid "Invalid "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:415
|
#: src/webex/pages/popup.tsx:396
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Fees "
|
msgid "Fees "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:454
|
#: src/webex/pages/popup.tsx:434
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh sessions has completed"
|
msgid "Refresh sessions has completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:471
|
#: src/webex/pages/popup.tsx:451
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order Refused"
|
msgid "Order Refused"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:485
|
#: src/webex/pages/popup.tsx:465
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order redirected"
|
msgid "Order redirected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:502
|
#: src/webex/pages/popup.tsx:482
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment aborted"
|
msgid "Payment aborted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:535
|
#: src/webex/pages/popup.tsx:512
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment Sent"
|
msgid "Payment Sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:562
|
#: src/webex/pages/popup.tsx:536
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order accepted"
|
msgid "Order accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:573
|
#: src/webex/pages/popup.tsx:547
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Reserve balance updated"
|
msgid "Reserve balance updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:589
|
#: src/webex/pages/popup.tsx:559
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment refund"
|
msgid "Payment refund"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:614
|
#: src/webex/pages/popup.tsx:584
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawn"
|
msgid "Withdrawn"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:626
|
#: src/webex/pages/popup.tsx:596
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Accepted"
|
msgid "Tip Accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:636
|
#: src/webex/pages/popup.tsx:606
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Declined"
|
msgid "Tip Declined"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:645
|
#: src/webex/pages/popup.tsx:615
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s"
|
msgid "%1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:703
|
#: src/webex/pages/popup.tsx:707
|
||||||
#, c-format
|
|
||||||
msgid "Error: could not retrieve event history"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:739
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Your wallet has no events recorded."
|
msgid "Your wallet has no events recorded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:105
|
#: src/webex/pages/return-coins.tsx:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Wire to bank account"
|
msgid "Wire to bank account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:173
|
#: src/webex/pages/return-coins.tsx:206
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:176
|
#: src/webex/pages/return-coins.tsx:209
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. #-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#
|
#: src/webex/pages/withdraw.tsx:73
|
||||||
#. TODO:generic error reporting function or component.
|
|
||||||
#: src/webex/pages/tip.tsx:116 src/webex/pages/withdraw.tsx:215
|
|
||||||
#, c-format
|
|
||||||
msgid "Fatal error: \"%1$s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:72
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Could not get details for withdraw operation:"
|
msgid "Could not get details for withdraw operation:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:88 src/webex/pages/withdraw.tsx:179
|
#: src/webex/pages/withdraw.tsx:89 src/webex/pages/withdraw.tsx:183
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Chose different exchange provider"
|
msgid "Chose different exchange provider"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:108
|
#: src/webex/pages/withdraw.tsx:109
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please select an exchange. You can review the details before after your "
|
"Please select an exchange. You can review the details before after your "
|
||||||
"selection."
|
"selection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:120
|
#: src/webex/pages/withdraw.tsx:121
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select %1$s"
|
msgid "Select %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:142
|
#: src/webex/pages/withdraw.tsx:143
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select custom exchange"
|
msgid "Select custom exchange"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:159
|
#: src/webex/pages/withdraw.tsx:163
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:170
|
#: src/webex/pages/withdraw.tsx:174
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Accept fees and withdraw"
|
msgid "Accept fees and withdraw"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:188
|
#: src/webex/pages/withdraw.tsx:192
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel withdraw operation"
|
msgid "Cancel withdraw operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:238
|
#: src/webex/renderHtml.tsx:249
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawal fees:"
|
msgid "Withdrawal fees:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:241
|
#: src/webex/renderHtml.tsx:252
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Rounding loss:"
|
msgid "Rounding loss:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:243
|
#: src/webex/renderHtml.tsx:254
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Earliest expiration (for deposit): %1$s"
|
msgid "Earliest expiration (for deposit): %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:250
|
#: src/webex/renderHtml.tsx:262
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "# Coins"
|
msgid "# Coins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:251
|
#: src/webex/renderHtml.tsx:263
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:252
|
#: src/webex/renderHtml.tsx:264
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdraw Fee"
|
msgid "Withdraw Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:253
|
#: src/webex/renderHtml.tsx:265
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh Fee"
|
msgid "Refresh Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:254
|
#: src/webex/renderHtml.tsx:266
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Deposit Fee"
|
msgid "Deposit Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -16,389 +16,353 @@
|
|||||||
|
|
||||||
export const strings: { [s: string]: any } = {};
|
export const strings: { [s: string]: any } = {};
|
||||||
strings["de"] = {
|
strings["de"] = {
|
||||||
domain: "messages",
|
"Invalid Wire": [null, ""],
|
||||||
locale_data: {
|
"Invalid Test Wire Detail": [null, ""],
|
||||||
messages: {
|
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
||||||
"": {
|
"Unknown Wire Detail": [null, ""],
|
||||||
domain: "messages",
|
Operation: [null, ""],
|
||||||
plural_forms: "nplurals=2; plural=(n != 1);",
|
"time (ms/op)": [null, ""],
|
||||||
lang: "",
|
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
||||||
},
|
"The total price is %1$s.": [null, ""],
|
||||||
"Invalid Wire": [null, ""],
|
Retry: [null, ""],
|
||||||
"Invalid Test Wire Detail": [null, ""],
|
Balance: [null, "Saldo"],
|
||||||
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
History: [null, "Verlauf"],
|
||||||
"Unknown Wire Detail": [null, ""],
|
Debug: [null, "Debug"],
|
||||||
Operation: [null, ""],
|
"%1$s incoming": [null, ""],
|
||||||
"time (ms/op)": [null, ""],
|
"%1$s being spent": [null, ""],
|
||||||
"The merchant %1$s offers you to purchase:": [
|
"Error: could not retrieve balance information.": [null, ""],
|
||||||
null,
|
"Invalid ": [null, ""],
|
||||||
"Der Händler %1$s möchte einen Vertrag über %2$s mit Ihnen abschließen.",
|
"Fees ": [null, ""],
|
||||||
],
|
"Refresh sessions has completed": [null, ""],
|
||||||
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
"Order Refused": [null, ""],
|
||||||
"The total price is %1$s.": [null, ""],
|
"Order redirected": [null, ""],
|
||||||
Retry: [null, ""],
|
"Payment aborted": [null, ""],
|
||||||
"Confirm payment": [null, "Bezahlung bestätigen"],
|
"Payment Sent": [null, ""],
|
||||||
Balance: [null, "Saldo"],
|
"Order accepted": [null, ""],
|
||||||
History: [null, "Verlauf"],
|
"Reserve balance updated": [null, ""],
|
||||||
Debug: [null, "Debug"],
|
"Payment refund": [null, ""],
|
||||||
"You have no balance to show. Need some %1$s getting started?": [
|
"Tip Accepted": [null, ""],
|
||||||
null,
|
"Tip Declined": [null, ""],
|
||||||
"Sie haben kein Digitalgeld. Wollen Sie %1$s? abheben?",
|
"%1$s": [null, ""],
|
||||||
],
|
"Your wallet has no events recorded.": [
|
||||||
"%1$s incoming": [null, ""],
|
null,
|
||||||
"%1$s being spent": [null, ""],
|
"Ihre Geldbörse verzeichnet keine Vorkommnisse.",
|
||||||
"Error: could not retrieve balance information.": [null, ""],
|
],
|
||||||
"Invalid ": [null, ""],
|
"Wire to bank account": [null, ""],
|
||||||
"Fees ": [null, ""],
|
"Could not get details for withdraw operation:": [null, ""],
|
||||||
"Refresh sessions has completed": [null, ""],
|
"Chose different exchange provider": [null, ""],
|
||||||
"Order Refused": [null, ""],
|
"Please select an exchange. You can review the details before after your selection.": [
|
||||||
"Order redirected": [null, ""],
|
null,
|
||||||
"Payment aborted": [null, ""],
|
"",
|
||||||
"Payment Sent": [null, ""],
|
],
|
||||||
"Order accepted": [null, ""],
|
"Select %1$s": [null, ""],
|
||||||
"Reserve balance updated": [null, ""],
|
"Select custom exchange": [null, ""],
|
||||||
"Payment refund": [null, ""],
|
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
||||||
Withdrawn: [null, "Abheben bei %1$s"],
|
null,
|
||||||
"Tip Accepted": [null, ""],
|
"",
|
||||||
"Tip Declined": [null, ""],
|
],
|
||||||
"%1$s": [null, ""],
|
"Accept fees and withdraw": [null, ""],
|
||||||
"Error: could not retrieve event history": [null, ""],
|
"Cancel withdraw operation": [null, ""],
|
||||||
"Your wallet has no events recorded.": [
|
"Rounding loss:": [null, ""],
|
||||||
null,
|
"Earliest expiration (for deposit): %1$s": [null, ""],
|
||||||
"Ihre Geldbörse verzeichnet keine Vorkommnisse.",
|
"# Coins": [null, ""],
|
||||||
],
|
Value: [null, ""],
|
||||||
"Wire to bank account": [null, ""],
|
"Refresh Fee": [null, ""],
|
||||||
Confirm: [null, "Bezahlung bestätigen"],
|
"Deposit Fee": [null, ""],
|
||||||
Cancel: [null, "Saldo"],
|
"": {
|
||||||
'Fatal error: "%1$s".': [null, ""],
|
"project-id-version": "Taler Wallet",
|
||||||
"Could not get details for withdraw operation:": [null, ""],
|
"report-msgid-bugs-to": "",
|
||||||
"Chose different exchange provider": [null, ""],
|
"pot-creation-date": "2016-11-23 00:00+0100",
|
||||||
"Please select an exchange. You can review the details before after your selection.": [
|
"po-revision-date": "YEAR-MO-DA HO:MI+ZONE",
|
||||||
null,
|
"last-translator": "FULL NAME <EMAIL@ADDRESS>",
|
||||||
"",
|
"language-team": "LANGUAGE <LL@li.org>",
|
||||||
],
|
language: "",
|
||||||
"Select %1$s": [null, ""],
|
"mime-version": "1.0",
|
||||||
"Select custom exchange": [null, ""],
|
"content-type": "text/plain; charset=UTF-8",
|
||||||
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
"content-transfer-encoding": "8bit",
|
||||||
null,
|
"plural-forms": "nplurals=2; plural=(n != 1);",
|
||||||
"",
|
|
||||||
],
|
|
||||||
"Accept fees and withdraw": [null, ""],
|
|
||||||
"Cancel withdraw operation": [null, ""],
|
|
||||||
"Withdrawal fees:": [null, "Abheben bei"],
|
|
||||||
"Rounding loss:": [null, ""],
|
|
||||||
"Earliest expiration (for deposit): %1$s": [null, ""],
|
|
||||||
"# Coins": [null, ""],
|
|
||||||
Value: [null, ""],
|
|
||||||
"Withdraw Fee": [null, "Abheben bei %1$s"],
|
|
||||||
"Refresh Fee": [null, ""],
|
|
||||||
"Deposit Fee": [null, ""],
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
strings["en-US"] = {
|
strings["en-US"] = {
|
||||||
domain: "messages",
|
"Invalid Wire": [null, ""],
|
||||||
locale_data: {
|
"Invalid Test Wire Detail": [null, ""],
|
||||||
messages: {
|
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
||||||
"": {
|
"Unknown Wire Detail": [null, ""],
|
||||||
domain: "messages",
|
Operation: [null, ""],
|
||||||
plural_forms: "nplurals=2; plural=(n != 1);",
|
"time (ms/op)": [null, ""],
|
||||||
lang: "",
|
"The merchant %1$s offers you to purchase:": [null, ""],
|
||||||
},
|
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
||||||
"Invalid Wire": [null, ""],
|
"The total price is %1$s.": [null, ""],
|
||||||
"Invalid Test Wire Detail": [null, ""],
|
Retry: [null, ""],
|
||||||
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
"Confirm payment": [null, ""],
|
||||||
"Unknown Wire Detail": [null, ""],
|
Balance: [null, ""],
|
||||||
Operation: [null, ""],
|
History: [null, ""],
|
||||||
"time (ms/op)": [null, ""],
|
Debug: [null, ""],
|
||||||
"The merchant %1$s offers you to purchase:": [null, ""],
|
"You have no balance to show. Need some %1$s getting started?": [null, ""],
|
||||||
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
"%1$s incoming": [null, ""],
|
||||||
"The total price is %1$s.": [null, ""],
|
"%1$s being spent": [null, ""],
|
||||||
Retry: [null, ""],
|
"Error: could not retrieve balance information.": [null, ""],
|
||||||
"Confirm payment": [null, ""],
|
"Invalid ": [null, ""],
|
||||||
Balance: [null, ""],
|
"Fees ": [null, ""],
|
||||||
History: [null, ""],
|
"Refresh sessions has completed": [null, ""],
|
||||||
Debug: [null, ""],
|
"Order Refused": [null, ""],
|
||||||
"You have no balance to show. Need some %1$s getting started?": [
|
"Order redirected": [null, ""],
|
||||||
null,
|
"Payment aborted": [null, ""],
|
||||||
"",
|
"Payment Sent": [null, ""],
|
||||||
],
|
"Order accepted": [null, ""],
|
||||||
"%1$s incoming": [null, ""],
|
"Reserve balance updated": [null, ""],
|
||||||
"%1$s being spent": [null, ""],
|
"Payment refund": [null, ""],
|
||||||
"Error: could not retrieve balance information.": [null, ""],
|
Withdrawn: [null, ""],
|
||||||
"Invalid ": [null, ""],
|
"Tip Accepted": [null, ""],
|
||||||
"Fees ": [null, ""],
|
"Tip Declined": [null, ""],
|
||||||
"Refresh sessions has completed": [null, ""],
|
"%1$s": [null, ""],
|
||||||
"Order Refused": [null, ""],
|
"Your wallet has no events recorded.": [null, ""],
|
||||||
"Order redirected": [null, ""],
|
"Wire to bank account": [null, ""],
|
||||||
"Payment aborted": [null, ""],
|
Confirm: [null, ""],
|
||||||
"Payment Sent": [null, ""],
|
Cancel: [null, ""],
|
||||||
"Order accepted": [null, ""],
|
"Could not get details for withdraw operation:": [null, ""],
|
||||||
"Reserve balance updated": [null, ""],
|
"Chose different exchange provider": [null, ""],
|
||||||
"Payment refund": [null, ""],
|
"Please select an exchange. You can review the details before after your selection.": [
|
||||||
Withdrawn: [null, ""],
|
null,
|
||||||
"Tip Accepted": [null, ""],
|
"",
|
||||||
"Tip Declined": [null, ""],
|
],
|
||||||
"%1$s": [null, ""],
|
"Select %1$s": [null, ""],
|
||||||
"Error: could not retrieve event history": [null, ""],
|
"Select custom exchange": [null, ""],
|
||||||
"Your wallet has no events recorded.": [null, ""],
|
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
||||||
"Wire to bank account": [null, ""],
|
null,
|
||||||
Confirm: [null, ""],
|
"",
|
||||||
Cancel: [null, ""],
|
],
|
||||||
'Fatal error: "%1$s".': [null, ""],
|
"Accept fees and withdraw": [null, ""],
|
||||||
"Could not get details for withdraw operation:": [null, ""],
|
"Cancel withdraw operation": [null, ""],
|
||||||
"Chose different exchange provider": [null, ""],
|
"Withdrawal fees:": [null, ""],
|
||||||
"Please select an exchange. You can review the details before after your selection.": [
|
"Rounding loss:": [null, ""],
|
||||||
null,
|
"Earliest expiration (for deposit): %1$s": [null, ""],
|
||||||
"",
|
"# Coins": [null, ""],
|
||||||
],
|
Value: [null, ""],
|
||||||
"Select %1$s": [null, ""],
|
"Withdraw Fee": [null, ""],
|
||||||
"Select custom exchange": [null, ""],
|
"Refresh Fee": [null, ""],
|
||||||
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
"Deposit Fee": [null, ""],
|
||||||
null,
|
"": {
|
||||||
"",
|
"project-id-version": "Taler Wallet",
|
||||||
],
|
"report-msgid-bugs-to": "",
|
||||||
"Accept fees and withdraw": [null, ""],
|
"pot-creation-date": "2016-11-23 00:00+0100",
|
||||||
"Cancel withdraw operation": [null, ""],
|
"po-revision-date": "YEAR-MO-DA HO:MI+ZONE",
|
||||||
"Withdrawal fees:": [null, ""],
|
"last-translator": "FULL NAME <EMAIL@ADDRESS>",
|
||||||
"Rounding loss:": [null, ""],
|
"language-team": "LANGUAGE <LL@li.org>",
|
||||||
"Earliest expiration (for deposit): %1$s": [null, ""],
|
language: "",
|
||||||
"# Coins": [null, ""],
|
"mime-version": "1.0",
|
||||||
Value: [null, ""],
|
"content-type": "text/plain; charset=UTF-8",
|
||||||
"Withdraw Fee": [null, ""],
|
"content-transfer-encoding": "8bit",
|
||||||
"Refresh Fee": [null, ""],
|
"plural-forms": "nplurals=2; plural=(n != 1);",
|
||||||
"Deposit Fee": [null, ""],
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
strings["fr"] = {
|
strings["fr"] = {
|
||||||
domain: "messages",
|
"Invalid Wire": [null, ""],
|
||||||
locale_data: {
|
"Invalid Test Wire Detail": [null, ""],
|
||||||
messages: {
|
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
||||||
"": {
|
"Unknown Wire Detail": [null, ""],
|
||||||
domain: "messages",
|
Operation: [null, ""],
|
||||||
plural_forms: "nplurals=2; plural=(n != 1);",
|
"time (ms/op)": [null, ""],
|
||||||
lang: "",
|
"The merchant %1$s offers you to purchase:": [null, ""],
|
||||||
},
|
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
||||||
"Invalid Wire": [null, ""],
|
"The total price is %1$s.": [null, ""],
|
||||||
"Invalid Test Wire Detail": [null, ""],
|
Retry: [null, ""],
|
||||||
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
"Confirm payment": [null, ""],
|
||||||
"Unknown Wire Detail": [null, ""],
|
Balance: [null, ""],
|
||||||
Operation: [null, ""],
|
History: [null, ""],
|
||||||
"time (ms/op)": [null, ""],
|
Debug: [null, ""],
|
||||||
"The merchant %1$s offers you to purchase:": [null, ""],
|
"You have no balance to show. Need some %1$s getting started?": [null, ""],
|
||||||
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
"%1$s incoming": [null, ""],
|
||||||
"The total price is %1$s.": [null, ""],
|
"%1$s being spent": [null, ""],
|
||||||
Retry: [null, ""],
|
"Error: could not retrieve balance information.": [null, ""],
|
||||||
"Confirm payment": [null, ""],
|
"Invalid ": [null, ""],
|
||||||
Balance: [null, ""],
|
"Fees ": [null, ""],
|
||||||
History: [null, ""],
|
"Refresh sessions has completed": [null, ""],
|
||||||
Debug: [null, ""],
|
"Order Refused": [null, ""],
|
||||||
"You have no balance to show. Need some %1$s getting started?": [
|
"Order redirected": [null, ""],
|
||||||
null,
|
"Payment aborted": [null, ""],
|
||||||
"",
|
"Payment Sent": [null, ""],
|
||||||
],
|
"Order accepted": [null, ""],
|
||||||
"%1$s incoming": [null, ""],
|
"Reserve balance updated": [null, ""],
|
||||||
"%1$s being spent": [null, ""],
|
"Payment refund": [null, ""],
|
||||||
"Error: could not retrieve balance information.": [null, ""],
|
Withdrawn: [null, ""],
|
||||||
"Invalid ": [null, ""],
|
"Tip Accepted": [null, ""],
|
||||||
"Fees ": [null, ""],
|
"Tip Declined": [null, ""],
|
||||||
"Refresh sessions has completed": [null, ""],
|
"%1$s": [null, ""],
|
||||||
"Order Refused": [null, ""],
|
"Your wallet has no events recorded.": [null, ""],
|
||||||
"Order redirected": [null, ""],
|
"Wire to bank account": [null, ""],
|
||||||
"Payment aborted": [null, ""],
|
Confirm: [null, ""],
|
||||||
"Payment Sent": [null, ""],
|
Cancel: [null, ""],
|
||||||
"Order accepted": [null, ""],
|
"Could not get details for withdraw operation:": [null, ""],
|
||||||
"Reserve balance updated": [null, ""],
|
"Chose different exchange provider": [null, ""],
|
||||||
"Payment refund": [null, ""],
|
"Please select an exchange. You can review the details before after your selection.": [
|
||||||
Withdrawn: [null, ""],
|
null,
|
||||||
"Tip Accepted": [null, ""],
|
"",
|
||||||
"Tip Declined": [null, ""],
|
],
|
||||||
"%1$s": [null, ""],
|
"Select %1$s": [null, ""],
|
||||||
"Error: could not retrieve event history": [null, ""],
|
"Select custom exchange": [null, ""],
|
||||||
"Your wallet has no events recorded.": [null, ""],
|
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
||||||
"Wire to bank account": [null, ""],
|
null,
|
||||||
Confirm: [null, ""],
|
"",
|
||||||
Cancel: [null, ""],
|
],
|
||||||
'Fatal error: "%1$s".': [null, ""],
|
"Accept fees and withdraw": [null, ""],
|
||||||
"Could not get details for withdraw operation:": [null, ""],
|
"Cancel withdraw operation": [null, ""],
|
||||||
"Chose different exchange provider": [null, ""],
|
"Withdrawal fees:": [null, ""],
|
||||||
"Please select an exchange. You can review the details before after your selection.": [
|
"Rounding loss:": [null, ""],
|
||||||
null,
|
"Earliest expiration (for deposit): %1$s": [null, ""],
|
||||||
"",
|
"# Coins": [null, ""],
|
||||||
],
|
Value: [null, ""],
|
||||||
"Select %1$s": [null, ""],
|
"Withdraw Fee": [null, ""],
|
||||||
"Select custom exchange": [null, ""],
|
"Refresh Fee": [null, ""],
|
||||||
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
"Deposit Fee": [null, ""],
|
||||||
null,
|
"": {
|
||||||
"",
|
"project-id-version": "Taler Wallet",
|
||||||
],
|
"report-msgid-bugs-to": "",
|
||||||
"Accept fees and withdraw": [null, ""],
|
"pot-creation-date": "2016-11-23 00:00+0100",
|
||||||
"Cancel withdraw operation": [null, ""],
|
"po-revision-date": "YEAR-MO-DA HO:MI+ZONE",
|
||||||
"Withdrawal fees:": [null, ""],
|
"last-translator": "FULL NAME <EMAIL@ADDRESS>",
|
||||||
"Rounding loss:": [null, ""],
|
"language-team": "LANGUAGE <LL@li.org>",
|
||||||
"Earliest expiration (for deposit): %1$s": [null, ""],
|
language: "",
|
||||||
"# Coins": [null, ""],
|
"mime-version": "1.0",
|
||||||
Value: [null, ""],
|
"content-type": "text/plain; charset=UTF-8",
|
||||||
"Withdraw Fee": [null, ""],
|
"content-transfer-encoding": "8bit",
|
||||||
"Refresh Fee": [null, ""],
|
"plural-forms": "nplurals=2; plural=(n != 1);",
|
||||||
"Deposit Fee": [null, ""],
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
strings["it"] = {
|
strings["it"] = {
|
||||||
domain: "messages",
|
"Invalid Wire": [null, ""],
|
||||||
locale_data: {
|
"Invalid Test Wire Detail": [null, ""],
|
||||||
messages: {
|
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
||||||
"": {
|
"Unknown Wire Detail": [null, ""],
|
||||||
domain: "messages",
|
Operation: [null, ""],
|
||||||
plural_forms: "nplurals=2; plural=(n != 1);",
|
"time (ms/op)": [null, ""],
|
||||||
lang: "",
|
"The merchant %1$s offers you to purchase:": [null, ""],
|
||||||
},
|
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
||||||
"Invalid Wire": [null, ""],
|
"The total price is %1$s.": [null, ""],
|
||||||
"Invalid Test Wire Detail": [null, ""],
|
Retry: [null, ""],
|
||||||
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
"Confirm payment": [null, ""],
|
||||||
"Unknown Wire Detail": [null, ""],
|
Balance: [null, ""],
|
||||||
Operation: [null, ""],
|
History: [null, ""],
|
||||||
"time (ms/op)": [null, ""],
|
Debug: [null, ""],
|
||||||
"The merchant %1$s offers you to purchase:": [null, ""],
|
"You have no balance to show. Need some %1$s getting started?": [null, ""],
|
||||||
"The total price is %1$s (plus %2$s fees).": [null, ""],
|
"%1$s incoming": [null, ""],
|
||||||
"The total price is %1$s.": [null, ""],
|
"%1$s being spent": [null, ""],
|
||||||
Retry: [null, ""],
|
"Error: could not retrieve balance information.": [null, ""],
|
||||||
"Confirm payment": [null, ""],
|
"Invalid ": [null, ""],
|
||||||
Balance: [null, ""],
|
"Fees ": [null, ""],
|
||||||
History: [null, ""],
|
"Refresh sessions has completed": [null, ""],
|
||||||
Debug: [null, ""],
|
"Order Refused": [null, ""],
|
||||||
"You have no balance to show. Need some %1$s getting started?": [
|
"Order redirected": [null, ""],
|
||||||
null,
|
"Payment aborted": [null, ""],
|
||||||
"",
|
"Payment Sent": [null, ""],
|
||||||
],
|
"Order accepted": [null, ""],
|
||||||
"%1$s incoming": [null, ""],
|
"Reserve balance updated": [null, ""],
|
||||||
"%1$s being spent": [null, ""],
|
"Payment refund": [null, ""],
|
||||||
"Error: could not retrieve balance information.": [null, ""],
|
Withdrawn: [null, ""],
|
||||||
"Invalid ": [null, ""],
|
"Tip Accepted": [null, ""],
|
||||||
"Fees ": [null, ""],
|
"Tip Declined": [null, ""],
|
||||||
"Refresh sessions has completed": [null, ""],
|
"%1$s": [null, ""],
|
||||||
"Order Refused": [null, ""],
|
"Your wallet has no events recorded.": [null, ""],
|
||||||
"Order redirected": [null, ""],
|
"Wire to bank account": [null, ""],
|
||||||
"Payment aborted": [null, ""],
|
Confirm: [null, ""],
|
||||||
"Payment Sent": [null, ""],
|
Cancel: [null, ""],
|
||||||
"Order accepted": [null, ""],
|
"Could not get details for withdraw operation:": [null, ""],
|
||||||
"Reserve balance updated": [null, ""],
|
"Chose different exchange provider": [null, ""],
|
||||||
"Payment refund": [null, ""],
|
"Please select an exchange. You can review the details before after your selection.": [
|
||||||
Withdrawn: [null, ""],
|
null,
|
||||||
"Tip Accepted": [null, ""],
|
"",
|
||||||
"Tip Declined": [null, ""],
|
],
|
||||||
"%1$s": [null, ""],
|
"Select %1$s": [null, ""],
|
||||||
"Error: could not retrieve event history": [null, ""],
|
"Select custom exchange": [null, ""],
|
||||||
"Your wallet has no events recorded.": [null, ""],
|
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
||||||
"Wire to bank account": [null, ""],
|
null,
|
||||||
Confirm: [null, ""],
|
"",
|
||||||
Cancel: [null, ""],
|
],
|
||||||
'Fatal error: "%1$s".': [null, ""],
|
"Accept fees and withdraw": [null, ""],
|
||||||
"Could not get details for withdraw operation:": [null, ""],
|
"Cancel withdraw operation": [null, ""],
|
||||||
"Chose different exchange provider": [null, ""],
|
"Withdrawal fees:": [null, ""],
|
||||||
"Please select an exchange. You can review the details before after your selection.": [
|
"Rounding loss:": [null, ""],
|
||||||
null,
|
"Earliest expiration (for deposit): %1$s": [null, ""],
|
||||||
"",
|
"# Coins": [null, ""],
|
||||||
],
|
Value: [null, ""],
|
||||||
"Select %1$s": [null, ""],
|
"Withdraw Fee": [null, ""],
|
||||||
"Select custom exchange": [null, ""],
|
"Refresh Fee": [null, ""],
|
||||||
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
"Deposit Fee": [null, ""],
|
||||||
null,
|
"": {
|
||||||
"",
|
"project-id-version": "Taler Wallet",
|
||||||
],
|
"report-msgid-bugs-to": "",
|
||||||
"Accept fees and withdraw": [null, ""],
|
"pot-creation-date": "2016-11-23 00:00+0100",
|
||||||
"Cancel withdraw operation": [null, ""],
|
"po-revision-date": "YEAR-MO-DA HO:MI+ZONE",
|
||||||
"Withdrawal fees:": [null, ""],
|
"last-translator": "FULL NAME <EMAIL@ADDRESS>",
|
||||||
"Rounding loss:": [null, ""],
|
"language-team": "LANGUAGE <LL@li.org>",
|
||||||
"Earliest expiration (for deposit): %1$s": [null, ""],
|
language: "",
|
||||||
"# Coins": [null, ""],
|
"mime-version": "1.0",
|
||||||
Value: [null, ""],
|
"content-type": "text/plain; charset=UTF-8",
|
||||||
"Withdraw Fee": [null, ""],
|
"content-transfer-encoding": "8bit",
|
||||||
"Refresh Fee": [null, ""],
|
"plural-forms": "nplurals=2; plural=(n != 1);",
|
||||||
"Deposit Fee": [null, ""],
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
strings["sv"] = {
|
strings["sv"] = {
|
||||||
domain: "messages",
|
"Invalid Wire": [null, ""],
|
||||||
locale_data: {
|
"Invalid Test Wire Detail": [null, ""],
|
||||||
messages: {
|
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
||||||
"": {
|
Operation: [null, ""],
|
||||||
domain: "messages",
|
"time (ms/op)": [null, ""],
|
||||||
plural_forms: "nplurals=2; plural=(n != 1);",
|
Retry: [null, ""],
|
||||||
lang: "",
|
"Confirm payment": [null, "Godkän betalning"],
|
||||||
},
|
Balance: [null, "Balans"],
|
||||||
"Invalid Wire": [null, ""],
|
History: [null, "Historia"],
|
||||||
"Invalid Test Wire Detail": [null, ""],
|
Debug: [null, ""],
|
||||||
"Test Wire Acct #%1$s on %2$s": [null, ""],
|
"%1$s being spent": [null, ""],
|
||||||
"Unknown Wire Detail": [null, "visa mer"],
|
"Error: could not retrieve balance information.": [null, ""],
|
||||||
Operation: [null, ""],
|
"Invalid ": [null, ""],
|
||||||
"time (ms/op)": [null, ""],
|
"Fees ": [null, ""],
|
||||||
"The merchant %1$s offers you to purchase:": [
|
"Refresh sessions has completed": [null, ""],
|
||||||
null,
|
"Order Refused": [null, ""],
|
||||||
"Säljaren %1$s erbjuder följande:",
|
"Order redirected": [null, ""],
|
||||||
],
|
"Payment aborted": [null, ""],
|
||||||
"The total price is %1$s (plus %2$s fees).": [
|
"Payment Sent": [null, ""],
|
||||||
null,
|
"Order accepted": [null, ""],
|
||||||
"Det totala priset är %1$s (plus %2$s avgifter).\n",
|
"Reserve balance updated": [null, ""],
|
||||||
],
|
"Payment refund": [null, ""],
|
||||||
"The total price is %1$s.": [null, "Det totala priset är %1$s."],
|
"Tip Accepted": [null, ""],
|
||||||
Retry: [null, ""],
|
"Tip Declined": [null, ""],
|
||||||
"Confirm payment": [null, "Godkän betalning"],
|
"%1$s": [null, ""],
|
||||||
Balance: [null, "Balans"],
|
"Your wallet has no events recorded.": [null, "plånboken"],
|
||||||
History: [null, "Historia"],
|
"Wire to bank account": [null, "Övervisa till bank konto"],
|
||||||
Debug: [null, ""],
|
Confirm: [null, "Bekräfta"],
|
||||||
"You have no balance to show. Need some %1$s getting started?": [
|
Cancel: [null, "Avbryt"],
|
||||||
null,
|
"Could not get details for withdraw operation:": [null, ""],
|
||||||
"Du har ingen balans att visa. Behöver du\n %1$s att börja?\n",
|
"Please select an exchange. You can review the details before after your selection.": [
|
||||||
],
|
null,
|
||||||
"%1$s incoming": [null, "%1$s inkommande"],
|
"",
|
||||||
"%1$s being spent": [null, ""],
|
],
|
||||||
"Error: could not retrieve balance information.": [null, ""],
|
"Select custom exchange": [null, ""],
|
||||||
"Invalid ": [null, ""],
|
"Accept fees and withdraw": [null, "Acceptera avgifter och utbetala"],
|
||||||
"Fees ": [null, ""],
|
"Cancel withdraw operation": [null, ""],
|
||||||
"Refresh sessions has completed": [null, ""],
|
"Withdrawal fees:": [null, "Utbetalnings avgifter:"],
|
||||||
"Order Refused": [null, ""],
|
"Rounding loss:": [null, ""],
|
||||||
"Order redirected": [null, ""],
|
"Earliest expiration (for deposit): %1$s": [null, ""],
|
||||||
"Payment aborted": [null, ""],
|
"# Coins": [null, "# Mynt"],
|
||||||
"Payment Sent": [null, ""],
|
Value: [null, "Värde"],
|
||||||
"Order accepted": [null, ""],
|
"Withdraw Fee": [null, "Utbetalnings avgift"],
|
||||||
"Reserve balance updated": [null, ""],
|
"Refresh Fee": [null, "Återhämtnings avgift"],
|
||||||
"Payment refund": [null, ""],
|
"Deposit Fee": [null, "Depostitions avgift"],
|
||||||
Withdrawn: [null, "Utbetalnings avgift"],
|
"": {
|
||||||
"Tip Accepted": [null, ""],
|
"project-id-version": "Taler Wallet",
|
||||||
"Tip Declined": [null, ""],
|
"report-msgid-bugs-to": "",
|
||||||
"%1$s": [null, ""],
|
"pot-creation-date": "2016-11-23 00:00+0100",
|
||||||
"Error: could not retrieve event history": [null, ""],
|
"po-revision-date": "YEAR-MO-DA HO:MI+ZONE",
|
||||||
"Your wallet has no events recorded.": [null, "plånboken"],
|
"last-translator": "Flo Reitz <EMAIL@ADDRESS>",
|
||||||
"Wire to bank account": [null, "Övervisa till bank konto"],
|
"language-team": "LANGUAGE <LL@li.org>",
|
||||||
Confirm: [null, "Bekräfta"],
|
language: "",
|
||||||
Cancel: [null, "Avbryt"],
|
"mime-version": "1.0",
|
||||||
'Fatal error: "%1$s".': [null, ""],
|
"content-type": "text/plain; charset=UTF-8",
|
||||||
"Could not get details for withdraw operation:": [null, ""],
|
"content-transfer-encoding": "8bit",
|
||||||
"Chose different exchange provider": [null, "Ändra tjänsteleverantörer"],
|
"plural-forms": "nplurals=2; plural=(n != 1);",
|
||||||
"Please select an exchange. You can review the details before after your selection.": [
|
|
||||||
null,
|
|
||||||
"",
|
|
||||||
],
|
|
||||||
"Select %1$s": [null, "Välj %1$s"],
|
|
||||||
"Select custom exchange": [null, ""],
|
|
||||||
"You are about to withdraw %1$s from your bank account into your wallet.": [
|
|
||||||
null,
|
|
||||||
"Du är på väg att ta ut\n %1$s från ditt bankkonto till din plånbok.\n",
|
|
||||||
],
|
|
||||||
"Accept fees and withdraw": [null, "Acceptera avgifter och utbetala"],
|
|
||||||
"Cancel withdraw operation": [null, ""],
|
|
||||||
"Withdrawal fees:": [null, "Utbetalnings avgifter:"],
|
|
||||||
"Rounding loss:": [null, ""],
|
|
||||||
"Earliest expiration (for deposit): %1$s": [null, ""],
|
|
||||||
"# Coins": [null, "# Mynt"],
|
|
||||||
Value: [null, "Värde"],
|
|
||||||
"Withdraw Fee": [null, "Utbetalnings avgift"],
|
|
||||||
"Refresh Fee": [null, "Återhämtnings avgift"],
|
|
||||||
"Deposit Fee": [null, "Depostitions avgift"],
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
114
src/i18n/sv.po
114
src/i18n/sv.po
@ -27,47 +27,47 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: src/util/wire.ts:38
|
#: src/util/wire.ts:37
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Wire"
|
msgid "Invalid Wire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:43 src/util/wire.ts:46
|
#: src/util/wire.ts:42 src/util/wire.ts:45
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Test Wire Detail"
|
msgid "Invalid Test Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:48
|
#: src/util/wire.ts:47
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Test Wire Acct #%1$s on %2$s"
|
msgid "Test Wire Acct #%1$s on %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:50
|
#: src/util/wire.ts:49
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Unknown Wire Detail"
|
msgid "Unknown Wire Detail"
|
||||||
msgstr "visa mer"
|
msgstr "visa mer"
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:57
|
#: src/webex/pages/benchmark.tsx:52
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Operation"
|
msgid "Operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:58
|
#: src/webex/pages/benchmark.tsx:53
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "time (ms/op)"
|
msgid "time (ms/op)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:132
|
#: src/webex/pages/pay.tsx:130
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "The merchant %1$s offers you to purchase:"
|
msgid "The merchant %1$s offers you to purchase:"
|
||||||
msgstr "Säljaren %1$s erbjuder följande:"
|
msgstr "Säljaren %1$s erbjuder följande:"
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:138
|
#: src/webex/pages/pay.tsx:136
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "The total price is %1$s (plus %2$s fees)."
|
msgid "The total price is %1$s (plus %2$s fees)."
|
||||||
msgstr "Det totala priset är %1$s (plus %2$s avgifter).\n"
|
msgstr "Det totala priset är %1$s (plus %2$s avgifter).\n"
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:143
|
#: src/webex/pages/pay.tsx:141
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "The total price is %1$s."
|
msgid "The total price is %1$s."
|
||||||
msgstr "Det totala priset är %1$s."
|
msgstr "Det totala priset är %1$s."
|
||||||
@ -77,230 +77,218 @@ msgstr "Det totala priset är %1$s."
|
|||||||
msgid "Retry"
|
msgid "Retry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:172
|
#: src/webex/pages/pay.tsx:173
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm payment"
|
msgid "Confirm payment"
|
||||||
msgstr "Godkän betalning"
|
msgstr "Godkän betalning"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:162
|
#: src/webex/pages/popup.tsx:153
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Balance"
|
msgid "Balance"
|
||||||
msgstr "Balans"
|
msgstr "Balans"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:163
|
#: src/webex/pages/popup.tsx:154
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "History"
|
msgid "History"
|
||||||
msgstr "Historia"
|
msgstr "Historia"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:164
|
#: src/webex/pages/popup.tsx:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Debug"
|
msgid "Debug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:198
|
#: src/webex/pages/popup.tsx:175
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "You have no balance to show. Need some %1$s getting started?"
|
msgid "You have no balance to show. Need some %1$s getting started?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Du har ingen balans att visa. Behöver du\n"
|
"Du har ingen balans att visa. Behöver du\n"
|
||||||
" %1$s att börja?\n"
|
" %1$s att börja?\n"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:261
|
#: src/webex/pages/popup.tsx:238
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "%1$s incoming"
|
msgid "%1$s incoming"
|
||||||
msgstr "%1$s inkommande"
|
msgstr "%1$s inkommande"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:273
|
#: src/webex/pages/popup.tsx:250
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s being spent"
|
msgid "%1$s being spent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:304
|
#: src/webex/pages/popup.tsx:281
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error: could not retrieve balance information."
|
msgid "Error: could not retrieve balance information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:409
|
#: src/webex/pages/popup.tsx:390
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid "
|
msgid "Invalid "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:415
|
#: src/webex/pages/popup.tsx:396
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Fees "
|
msgid "Fees "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:454
|
#: src/webex/pages/popup.tsx:434
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh sessions has completed"
|
msgid "Refresh sessions has completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:471
|
#: src/webex/pages/popup.tsx:451
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order Refused"
|
msgid "Order Refused"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:485
|
#: src/webex/pages/popup.tsx:465
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order redirected"
|
msgid "Order redirected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:502
|
#: src/webex/pages/popup.tsx:482
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment aborted"
|
msgid "Payment aborted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:535
|
#: src/webex/pages/popup.tsx:512
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment Sent"
|
msgid "Payment Sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:562
|
#: src/webex/pages/popup.tsx:536
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order accepted"
|
msgid "Order accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:573
|
#: src/webex/pages/popup.tsx:547
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Reserve balance updated"
|
msgid "Reserve balance updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:589
|
#: src/webex/pages/popup.tsx:559
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment refund"
|
msgid "Payment refund"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:614
|
#: src/webex/pages/popup.tsx:584
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Withdrawn"
|
msgid "Withdrawn"
|
||||||
msgstr "Utbetalnings avgift"
|
msgstr "Utbetalnings avgift"
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:626
|
#: src/webex/pages/popup.tsx:596
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Accepted"
|
msgid "Tip Accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:636
|
#: src/webex/pages/popup.tsx:606
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Declined"
|
msgid "Tip Declined"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:645
|
#: src/webex/pages/popup.tsx:615
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s"
|
msgid "%1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:703
|
#: src/webex/pages/popup.tsx:707
|
||||||
#, c-format
|
|
||||||
msgid "Error: could not retrieve event history"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:739
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Your wallet has no events recorded."
|
msgid "Your wallet has no events recorded."
|
||||||
msgstr "plånboken"
|
msgstr "plånboken"
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:105
|
#: src/webex/pages/return-coins.tsx:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Wire to bank account"
|
msgid "Wire to bank account"
|
||||||
msgstr "Övervisa till bank konto"
|
msgstr "Övervisa till bank konto"
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:173
|
#: src/webex/pages/return-coins.tsx:206
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Bekräfta"
|
msgstr "Bekräfta"
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:176
|
#: src/webex/pages/return-coins.tsx:209
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Avbryt"
|
msgstr "Avbryt"
|
||||||
|
|
||||||
#. #-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#
|
#: src/webex/pages/withdraw.tsx:73
|
||||||
#. TODO:generic error reporting function or component.
|
|
||||||
#: src/webex/pages/tip.tsx:116 src/webex/pages/withdraw.tsx:215
|
|
||||||
#, c-format
|
|
||||||
msgid "Fatal error: \"%1$s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:72
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Could not get details for withdraw operation:"
|
msgid "Could not get details for withdraw operation:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:88 src/webex/pages/withdraw.tsx:179
|
#: src/webex/pages/withdraw.tsx:89 src/webex/pages/withdraw.tsx:183
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Chose different exchange provider"
|
msgid "Chose different exchange provider"
|
||||||
msgstr "Ändra tjänsteleverantörer"
|
msgstr "Ändra tjänsteleverantörer"
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:108
|
#: src/webex/pages/withdraw.tsx:109
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please select an exchange. You can review the details before after your "
|
"Please select an exchange. You can review the details before after your "
|
||||||
"selection."
|
"selection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:120
|
#: src/webex/pages/withdraw.tsx:121
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "Select %1$s"
|
msgid "Select %1$s"
|
||||||
msgstr "Välj %1$s"
|
msgstr "Välj %1$s"
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:142
|
#: src/webex/pages/withdraw.tsx:143
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select custom exchange"
|
msgid "Select custom exchange"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:159
|
#: src/webex/pages/withdraw.tsx:163
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Du är på väg att ta ut\n"
|
"Du är på väg att ta ut\n"
|
||||||
" %1$s från ditt bankkonto till din plånbok.\n"
|
" %1$s från ditt bankkonto till din plånbok.\n"
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:170
|
#: src/webex/pages/withdraw.tsx:174
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Accept fees and withdraw"
|
msgid "Accept fees and withdraw"
|
||||||
msgstr "Acceptera avgifter och utbetala"
|
msgstr "Acceptera avgifter och utbetala"
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:188
|
#: src/webex/pages/withdraw.tsx:192
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel withdraw operation"
|
msgid "Cancel withdraw operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:238
|
#: src/webex/renderHtml.tsx:249
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawal fees:"
|
msgid "Withdrawal fees:"
|
||||||
msgstr "Utbetalnings avgifter:"
|
msgstr "Utbetalnings avgifter:"
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:241
|
#: src/webex/renderHtml.tsx:252
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Rounding loss:"
|
msgid "Rounding loss:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:243
|
#: src/webex/renderHtml.tsx:254
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Earliest expiration (for deposit): %1$s"
|
msgid "Earliest expiration (for deposit): %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:250
|
#: src/webex/renderHtml.tsx:262
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "# Coins"
|
msgid "# Coins"
|
||||||
msgstr "# Mynt"
|
msgstr "# Mynt"
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:251
|
#: src/webex/renderHtml.tsx:263
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Värde"
|
msgstr "Värde"
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:252
|
#: src/webex/renderHtml.tsx:264
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdraw Fee"
|
msgid "Withdraw Fee"
|
||||||
msgstr "Utbetalnings avgift"
|
msgstr "Utbetalnings avgift"
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:253
|
#: src/webex/renderHtml.tsx:265
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh Fee"
|
msgid "Refresh Fee"
|
||||||
msgstr "Återhämtnings avgift"
|
msgstr "Återhämtnings avgift"
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:254
|
#: src/webex/renderHtml.tsx:266
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Deposit Fee"
|
msgid "Deposit Fee"
|
||||||
msgstr "Depostitions avgift"
|
msgstr "Depostitions avgift"
|
||||||
|
@ -27,47 +27,47 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: src/util/wire.ts:38
|
#: src/util/wire.ts:37
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Wire"
|
msgid "Invalid Wire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:43 src/util/wire.ts:46
|
#: src/util/wire.ts:42 src/util/wire.ts:45
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid Test Wire Detail"
|
msgid "Invalid Test Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:48
|
#: src/util/wire.ts:47
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Test Wire Acct #%1$s on %2$s"
|
msgid "Test Wire Acct #%1$s on %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/util/wire.ts:50
|
#: src/util/wire.ts:49
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unknown Wire Detail"
|
msgid "Unknown Wire Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:57
|
#: src/webex/pages/benchmark.tsx:52
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Operation"
|
msgid "Operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/benchmark.tsx:58
|
#: src/webex/pages/benchmark.tsx:53
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "time (ms/op)"
|
msgid "time (ms/op)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:132
|
#: src/webex/pages/pay.tsx:130
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The merchant %1$s offers you to purchase:"
|
msgid "The merchant %1$s offers you to purchase:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:138
|
#: src/webex/pages/pay.tsx:136
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s (plus %2$s fees)."
|
msgid "The total price is %1$s (plus %2$s fees)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:143
|
#: src/webex/pages/pay.tsx:141
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "The total price is %1$s."
|
msgid "The total price is %1$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -77,226 +77,214 @@ msgstr ""
|
|||||||
msgid "Retry"
|
msgid "Retry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/pay.tsx:172
|
#: src/webex/pages/pay.tsx:173
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm payment"
|
msgid "Confirm payment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:162
|
#: src/webex/pages/popup.tsx:153
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Balance"
|
msgid "Balance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:163
|
#: src/webex/pages/popup.tsx:154
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "History"
|
msgid "History"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:164
|
#: src/webex/pages/popup.tsx:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Debug"
|
msgid "Debug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:198
|
#: src/webex/pages/popup.tsx:175
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You have no balance to show. Need some %1$s getting started?"
|
msgid "You have no balance to show. Need some %1$s getting started?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:261
|
#: src/webex/pages/popup.tsx:238
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s incoming"
|
msgid "%1$s incoming"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:273
|
#: src/webex/pages/popup.tsx:250
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s being spent"
|
msgid "%1$s being spent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:304
|
#: src/webex/pages/popup.tsx:281
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error: could not retrieve balance information."
|
msgid "Error: could not retrieve balance information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:409
|
#: src/webex/pages/popup.tsx:390
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Invalid "
|
msgid "Invalid "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:415
|
#: src/webex/pages/popup.tsx:396
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Fees "
|
msgid "Fees "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:454
|
#: src/webex/pages/popup.tsx:434
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh sessions has completed"
|
msgid "Refresh sessions has completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:471
|
#: src/webex/pages/popup.tsx:451
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order Refused"
|
msgid "Order Refused"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:485
|
#: src/webex/pages/popup.tsx:465
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order redirected"
|
msgid "Order redirected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:502
|
#: src/webex/pages/popup.tsx:482
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment aborted"
|
msgid "Payment aborted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:535
|
#: src/webex/pages/popup.tsx:512
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment Sent"
|
msgid "Payment Sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:562
|
#: src/webex/pages/popup.tsx:536
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Order accepted"
|
msgid "Order accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:573
|
#: src/webex/pages/popup.tsx:547
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Reserve balance updated"
|
msgid "Reserve balance updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:589
|
#: src/webex/pages/popup.tsx:559
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Payment refund"
|
msgid "Payment refund"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:614
|
#: src/webex/pages/popup.tsx:584
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawn"
|
msgid "Withdrawn"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:626
|
#: src/webex/pages/popup.tsx:596
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Accepted"
|
msgid "Tip Accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:636
|
#: src/webex/pages/popup.tsx:606
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tip Declined"
|
msgid "Tip Declined"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:645
|
#: src/webex/pages/popup.tsx:615
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%1$s"
|
msgid "%1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:703
|
#: src/webex/pages/popup.tsx:707
|
||||||
#, c-format
|
|
||||||
msgid "Error: could not retrieve event history"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/popup.tsx:739
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Your wallet has no events recorded."
|
msgid "Your wallet has no events recorded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:105
|
#: src/webex/pages/return-coins.tsx:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Wire to bank account"
|
msgid "Wire to bank account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:173
|
#: src/webex/pages/return-coins.tsx:206
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/return-coins.tsx:176
|
#: src/webex/pages/return-coins.tsx:209
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. #-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#
|
#: src/webex/pages/withdraw.tsx:73
|
||||||
#. TODO:generic error reporting function or component.
|
|
||||||
#: src/webex/pages/tip.tsx:116 src/webex/pages/withdraw.tsx:215
|
|
||||||
#, c-format
|
|
||||||
msgid "Fatal error: \"%1$s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:72
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Could not get details for withdraw operation:"
|
msgid "Could not get details for withdraw operation:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:88 src/webex/pages/withdraw.tsx:179
|
#: src/webex/pages/withdraw.tsx:89 src/webex/pages/withdraw.tsx:183
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Chose different exchange provider"
|
msgid "Chose different exchange provider"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:108
|
#: src/webex/pages/withdraw.tsx:109
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please select an exchange. You can review the details before after your "
|
"Please select an exchange. You can review the details before after your "
|
||||||
"selection."
|
"selection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:120
|
#: src/webex/pages/withdraw.tsx:121
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select %1$s"
|
msgid "Select %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:142
|
#: src/webex/pages/withdraw.tsx:143
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Select custom exchange"
|
msgid "Select custom exchange"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:159
|
#: src/webex/pages/withdraw.tsx:163
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
msgid "You are about to withdraw %1$s from your bank account into your wallet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:170
|
#: src/webex/pages/withdraw.tsx:174
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Accept fees and withdraw"
|
msgid "Accept fees and withdraw"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/pages/withdraw.tsx:188
|
#: src/webex/pages/withdraw.tsx:192
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Cancel withdraw operation"
|
msgid "Cancel withdraw operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:238
|
#: src/webex/renderHtml.tsx:249
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdrawal fees:"
|
msgid "Withdrawal fees:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:241
|
#: src/webex/renderHtml.tsx:252
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Rounding loss:"
|
msgid "Rounding loss:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:243
|
#: src/webex/renderHtml.tsx:254
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Earliest expiration (for deposit): %1$s"
|
msgid "Earliest expiration (for deposit): %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:250
|
#: src/webex/renderHtml.tsx:262
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "# Coins"
|
msgid "# Coins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:251
|
#: src/webex/renderHtml.tsx:263
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:252
|
#: src/webex/renderHtml.tsx:264
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Withdraw Fee"
|
msgid "Withdraw Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:253
|
#: src/webex/renderHtml.tsx:265
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Refresh Fee"
|
msgid "Refresh Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/webex/renderHtml.tsx:254
|
#: src/webex/renderHtml.tsx:266
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Deposit Fee"
|
msgid "Deposit Fee"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Loading…
Reference in New Issue
Block a user