tmc-v2/translations.js

41 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// translations.js
const translations = {
en: {
receiptNumber: "Receipt №",
paymentType: "Payment Type:",
testPayment: "Test Payment:",
paymentAddress: "PAYMENT ADDRESS:",
issueDate: "ISSUE DATE:",
total: "TOTAL:",
thankYou: "Thank you for using Mulberry",
transactionId: "Transaction ID:",
status: "Status:",
receiptRejected: "Receipt Rejected",
paymentDate: "PAYMENT DATE:",
amountToPay: "Amount to Pay:",
cancel: "Cancel",
pay: "Pay",
paymentAddressExample:"Uzbekistan, Tashkent",
// Add more translations as needed
},
ru: {
receiptNumber: "Квитанция №",
paymentType: "Тип оплаты:",
testPayment: "Тестовый платеж:",
paymentAddress: "Адрес:",
issueDate: "Дата:",
total: "ИТОГО:",
thankYou: "Спасибо за использование Mulberry",
transactionId: "ID транзакции:",
status: "Статус:",
receiptRejected: "Операция отклонена",
paymentDate: "Дата платежа:",
amountToPay: "Сумма к оплате:",
cancel: "Отмена",
pay: "Оплатить",
paymentAddressExample:"Волгоград, пр. им. В. И. Ленина",
// Add more translations as needed
}
};
module.exports = translations;