Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | import { namespaces } from "../../resources/i18n.constants";
export const common = {
[namespaces.common]: {
buttons: {
ok: "Ok",
cancel: "Cancel",
DownloadReport: "Download Report",
more: "More",
DownloadReportAgain: "Download report again",
Done: "Done",
clickHere: "click here",
next: "Next",
Prev: "Prev",
UploadStatement: "Upload Statement",
ConfirmDeletion: "Confirm Deletion",
Edit: "Edit",
Delete: "Delete",
Back: "Back",
Verify: "Verify",
Remove: "Remove",
CreateOption: "Create Option",
PreviousStep: "Previous Step",
CreateFundraiser: "Create Fundraiser",
NextStep: "Next Step",
Payment: "Payment",
},
menu: {
refundTransactions: "Refund Transactions",
sendReceipt: "Send Receipt",
viewCustomer: "View Customer",
moveTransaction: "Move Transaction",
},
modals: {
NewBankAccount: "New Bank Account",
LinkBankAccount: "Link Bank Account",
AverageApproval1: " Average approval time is 1 day",
Connect_Manually: "Connect Manually",
AverageApproval3: "Average approval time is 3 days",
ConnectWithPlaid: "Connect with plaid",
},
toast: {
success: "Success",
error: "Error",
warning: "Warning",
info: "Info",
Report_has_been_successfully_downloaded:
" Report has been successfully downloaded",
Bank_Account_deleted_successfully: "Bank Account deleted successfully",
Team_Member_deleted_successfully: "Team Member deleted successfully",
},
filters: {
date: "Date",
created: "Created",
amount: "Amount",
status: "Status",
recurrence: "Recurrence",
type: "Type",
conversion: "Conversion",
transaction: "Transaction",
transactions: "Transactions",
"date-and-time": "Date and Time",
search: "Search",
isBefore: "IsBefore",
greaterThan: "greater than",
lessThan: "less than",
isAfter: "is After",
is: "is",
isNot: "is not",
is_on_or_before: "is on or before",
is_on_or_after: "is on or after",
isBetween: "is between",
filterBy: "Filter By",
apply: "Apply",
visitors: "Visitors",
entries: "Entries",
"entries sold": "Entries Sold",
inTheLast: "in the last",
isEqualToOrGreaterThan: "is equal to or greater than",
isEqualToOrLessThan: "is equal to or less than",
purchases: "Purchases",
source: "Source",
joined: "Joined",
total: "Total",
quantity: "Quantity",
reccuring_OneTime: "Recurring & One Time",
AllRecurring: "All Recurring",
oneTime: "One Time",
daily: "Daily",
weekly: "Weekly",
monthly: "Monthly",
yearly: "Yearly",
quartely: "Quartely",
CharitableDonations: "Charitable Donations",
credits_Money_recived: "Credits (Money received)",
debit_Money_transfered: "Debit (Money transfered)",
giveboxPurshaes: "Givebox Purshaes",
Pending: "Pending",
Approved: "Approved",
Refunded: "Refunded",
Chargeback: "Chargeback",
All: "All",
Sales: "Sales",
days: "days",
},
transactionTable: {
SendReceipt: "Resend receipt",
RefundTransaction: "Refund transaction",
ViewCustomer: "View customer",
MoveTransaction: "Move Transaction",
Refund: "Refund transaction",
Account: "Account",
Status: "Status",
},
"Any Amount": "Any Amount",
"Any payment amount is accepted.": "Any payment amount is accepted",
transactions: "Transactions",
GeneralInfo: "General Info",
Notes: "Notes",
characters_remaining: "Characters remaining",
advanced_builder: "Advanced Builder",
stepper: {
GeneralInformation: "General Information",
Payement: "Payment",
},
delete: {
delete: "Delete",
are_you_sure: "Are you sure that you want to delete this",
cancel: "Cancel",
},
},
};
|