mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Disable shapeshift and use changelly * UI to manage changelly payment method * wip on changelly api * Add in Vue component for changelly and remove target currency from payment method * add changelly merhcant id * Small fixes to get Conversion to load * wip fixing the component * fix merge conflict * fixes to UI * remove debug, fix fee calc and move changelly to own partials * Update ChangellyController.cs * move original vue setup back to checkout * Update core.js * Extracting Changelly component to js file * Proposal for loading spinner * remove zone * imrpove changelly ui * add in changelly config checks * try new method to calculate amount + remove to currency from list * abstract changelly lofgic to provider and reduce dependency on js component * Add UTs for Changelly * refactor changelly backend * fix failing UT * add shitcoin tax * pr changes * pr changes * WIP: getting rid of changelly dependency * client caching, compiling code, cleaner code * Cleaner changelly * fiat! * updat i18n, css and error styler * default keys * pr changes part 1 * part2 * fix tests * fix loader alignment and retry button responsiveness * final pr change
55 lines
2.7 KiB
JavaScript
55 lines
2.7 KiB
JavaScript
const locales_en = {
|
||
nested: {
|
||
lang: 'Language'
|
||
},
|
||
"Awaiting Payment...": "Awaiting Payment...",
|
||
"Pay with": "Pay with",
|
||
"Contact and Refund Email": "Contact & Refund Email",
|
||
"Contact_Body": "Please provide an email address below. We’ll contact you at this address if there is an issue with your payment.",
|
||
"Your email": "Your email",
|
||
"Continue": "Continue",
|
||
"Please enter a valid email address": "Please enter a valid email address",
|
||
"Order Amount": "Order Amount",
|
||
"Network Cost": "Network Cost",
|
||
"Already Paid": "Already Paid",
|
||
"Due": "Due",
|
||
// Tabs
|
||
"Scan": "Scan",
|
||
"Copy": "Copy",
|
||
"Conversion": "Conversion",
|
||
// Scan tab
|
||
"Open in wallet": "Open in wallet",
|
||
// Copy tab
|
||
"CompletePay_Body": "To complete your payment, please send {{btcDue}} {{cryptoCode}} to the address below.",
|
||
"Amount": "Amount",
|
||
"Address": "Address",
|
||
"Copied": "Copied",
|
||
// Conversion tab
|
||
"ConversionTab_BodyTop": "You can pay {{btcDue}} {{cryptoCode}} using altcoins other than the ones merchant directly supports.",
|
||
"ConversionTab_BodyDesc": "This service is provided by 3rd party. Please keep in mind that we have no control over how providers will forward your funds. Invoice will only be marked paid once funds are received on {{cryptoCode}} Blockchain.",
|
||
"ConversionTab_CalculateAmount_Error": "Retry",
|
||
"ConversionTab_LoadCurrencies_Error": "Retry",
|
||
"ConversionTab_Lightning": "No conversion providers available for Lightning Network payments.",
|
||
// Invoice expired
|
||
"Invoice expiring soon...": "Invoice expiring soon...",
|
||
"Invoice expired": "Invoice expired",
|
||
"What happened?": "What happened?",
|
||
"InvoiceExpired_Body_1": "This invoice has expired. An invoice is only valid for {{maxTimeMinutes}} minutes. \
|
||
You can return to {{storeName}} if you would like to submit your payment again.",
|
||
"InvoiceExpired_Body_2": "If you tried to send a payment, it has not yet been accepted by the network. We have not yet received your funds.",
|
||
"InvoiceExpired_Body_3": "If the transaction is not accepted by the network, the funds will be spendable again in your wallet. Depending on your wallet, this may take 48-72 hours.",
|
||
"Invoice ID": "Invoice ID",
|
||
"Order ID": "Order ID",
|
||
"Return to StoreName": "Return to {{storeName}}",
|
||
// Invoice paid
|
||
"This invoice has been paid": "This invoice has been paid",
|
||
// Invoice archived
|
||
"This invoice has been archived": "This invoice has been archived",
|
||
"Archived_Body": "Please contact the store for order information or assistance",
|
||
// Lightning
|
||
"BOLT 11 Invoice": "BOLT 11 Invoice",
|
||
"Node Info": "Node Info",
|
||
//
|
||
"txCount": "{{count}} transaction",
|
||
"txCount_plural": "{{count}} transactions"
|
||
};
|