-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: transfervehicle using phone notifications & small fixes
- Loading branch information
1 parent
fb18e88
commit 0a194fe
Showing
4 changed files
with
124 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,83 @@ | ||
{ | ||
"error": { | ||
"testdrive_alreadyin": "Already in test drive", | ||
"testdrive_return": "This is not your test drive vehicle", | ||
"Invalid_ID": "Invalid Player Id Supplied", | ||
"playertoofar": "This player is not close enough", | ||
"notenoughmoney": "Not enough money", | ||
"minimumallowed": "Minimum payment allowed is $", | ||
"overpaid": "You overpaid", | ||
"alreadypaid": "Vehicle is already paid off", | ||
"notworth": "Vehicle is not worth that much", | ||
"downtoosmall": "Down payment too small", | ||
"exceededmax": "Exceeded maximum payment amount", | ||
"repossessed": "Your vehicle with plate %s has been repossessed", | ||
"buyerinfo": "Couldn't get buyer info", | ||
"notinveh": "You must be in the vehicle you want to transfer", | ||
"vehinfo": "Couldn't get vehicle info", | ||
"notown": "You don't own this vehicle", | ||
"buyertoopoor": "The buyer doesn't have enough money", | ||
"nofinanced": "You don't have any financed vehicles", | ||
"financed": "This vehicle is financed", | ||
"buyerdeclined": "The player declined the transaction", | ||
"sale_timeout": "Wait a while before trading your vehicle" | ||
}, | ||
"success": { | ||
"purchased": "Congratulations on your purchase!", | ||
"earned_commission": "You earned $ %s in commission", | ||
"gifted": "You gifted your vehicle", | ||
"received_gift": "You were gifted a vehicle", | ||
"soldfor": "You sold your vehicle for $", | ||
"boughtfor": "You bought a vehicle for $" | ||
}, | ||
"menus": { | ||
"vehHeader_header": "Vehicle Options", | ||
"vehHeader_txt": "Interact with the current vehicle", | ||
"financed_header": "Financed Vehicles", | ||
"finance_txt": "Browse your owned vehicles", | ||
"returnTestDrive_header": "Finish Test Drive", | ||
"categories_header": "Categories", | ||
"goback_header": "Go Back", | ||
"veh_price": "Price: $", | ||
"veh_platetxt": "Plate: ", | ||
"veh_finance": "Vehicle Payment", | ||
"veh_finance_balance": "Total Balance Remaining", | ||
"veh_finance_currency": "$", | ||
"veh_finance_total": "Total Payments Remaining", | ||
"veh_finance_reccuring": "Recurring Payment Amount", | ||
"veh_finance_pay": "Make a payment", | ||
"veh_finance_payoff": "Payoff vehicle", | ||
"veh_finance_payment": "Payment Amount ($)", | ||
"submit_text": "Submit", | ||
"test_header": "Test Drive", | ||
"finance_header": "Finance Vehicle", | ||
"owned_vehicles_header": "Owned Vehicles", | ||
"swap_header": "Swap Vehicle", | ||
"swap_txt": "Change currently selected vehicle", | ||
"financesubmit_downpayment": "Down Payment Amount - Min ", | ||
"financesubmit_totalpayment": "Total Payments - Max ", | ||
"freeuse_test_txt": "Test drive currently selected vehicle", | ||
"freeuse_buy_header": "Buy Vehicle", | ||
"freeuse_buy_txt": "Purchase currently selected vehicle", | ||
"freeuse_finance_txt": "Finance currently selected vehicle", | ||
"managed_test_txt": "Allow player for test drive", | ||
"managed_sell_header": "Sell Vehicle", | ||
"managed_sell_txt": "Sell vehicle to Player", | ||
"managed_finance_txt": "Finance vehicle to Player", | ||
"submit_ID": "Server ID (#)", | ||
"keypress_showFinanceMenu": "[E] Open Finance Menu", | ||
"keypress_vehicleViewMenu": "[E] View Vehicle" | ||
}, | ||
"general": { | ||
"testdrive_timer": "Test Drive Time Remaining: ", | ||
"vehinteraction": "Vehicle Interaction", | ||
"testdrive_timenoti": "You have %s minutes remaining", | ||
"testdrive_complete": "Vehicle test drive complete", | ||
"paymentduein": "Your vehicle payment is due within %s minutes", | ||
"command_transfervehicle": "Gift or sell your vehicle", | ||
"command_transfervehicle_help": "ID of buyer", | ||
"command_transfervehicle_amount": "Sell amount (optional)", | ||
"transfervehicle_confirm": "Confirm trade of %s %s for $ %s" | ||
} | ||
} | ||
{ | ||
"error": { | ||
"testdrive_alreadyin": "Already in test drive", | ||
"testdrive_return": "This is not your test drive vehicle", | ||
"Invalid_ID": "Invalid Player Id Supplied", | ||
"playertoofar": "This player is not close enough", | ||
"notenoughmoney": "Not enough money", | ||
"minimumallowed": "Minimum payment allowed is $", | ||
"overpaid": "You overpaid", | ||
"alreadypaid": "Vehicle is already paid off", | ||
"notworth": "Vehicle is not worth that much", | ||
"downtoosmall": "Down payment too small", | ||
"exceededmax": "Exceeded maximum payment amount", | ||
"repossessed": "Your vehicle with plate %s has been repossessed", | ||
"buyerinfo": "Couldn't get buyer info", | ||
"notinveh": "You must be in the vehicle you want to transfer", | ||
"vehinfo": "Couldn't get vehicle info", | ||
"notown": "You don't own this vehicle", | ||
"buyertoopoor": "The buyer doesn't have enough money", | ||
"nofinanced": "You don't have any financed vehicles", | ||
"financed": "This vehicle is financed", | ||
"buyerdeclined": "The player declined the transaction", | ||
"selftransfer": "You can't transfer to yourself", | ||
"sale_timeout": "Wait a while before trading your vehicle" | ||
}, | ||
"success": { | ||
"purchased": "Congratulations on your purchase!", | ||
"earned_commission": "You earned $ %s in commission", | ||
"gifted": "You gifted your vehicle", | ||
"received_gift": "You were gifted a vehicle", | ||
"soldfor": "You sold your vehicle for $", | ||
"boughtfor": "You bought a vehicle for $" | ||
}, | ||
"menus": { | ||
"vehHeader_header": "Vehicle Options", | ||
"vehHeader_txt": "Interact with the current vehicle", | ||
"financed_header": "Financed Vehicles", | ||
"finance_txt": "Browse your owned vehicles", | ||
"returnTestDrive_header": "Finish Test Drive", | ||
"categories_header": "Categories", | ||
"goback_header": "Go Back", | ||
"veh_price": "Price: $", | ||
"veh_platetxt": "Plate: ", | ||
"veh_finance": "Vehicle Payment", | ||
"veh_finance_balance": "Total Balance Remaining", | ||
"veh_finance_currency": "$", | ||
"veh_finance_total": "Total Payments Remaining", | ||
"veh_finance_reccuring": "Recurring Payment Amount", | ||
"veh_finance_pay": "Make a payment", | ||
"veh_finance_payoff": "Payoff vehicle", | ||
"veh_finance_payment": "Payment Amount ($)", | ||
"submit_text": "Submit", | ||
"test_header": "Test Drive", | ||
"finance_header": "Finance Vehicle", | ||
"owned_vehicles_header": "Owned Vehicles", | ||
"swap_header": "Swap Vehicle", | ||
"swap_txt": "Change currently selected vehicle", | ||
"financesubmit_downpayment": "Down Payment Amount - Min ", | ||
"financesubmit_totalpayment": "Total Payments - Max ", | ||
"freeuse_test_txt": "Test drive currently selected vehicle", | ||
"freeuse_buy_header": "Buy Vehicle", | ||
"freeuse_buy_txt": "Purchase currently selected vehicle", | ||
"freeuse_finance_txt": "Finance currently selected vehicle", | ||
"managed_test_txt": "Allow player for test drive", | ||
"managed_sell_header": "Sell Vehicle", | ||
"managed_sell_txt": "Sell vehicle to Player", | ||
"managed_finance_txt": "Finance vehicle to Player", | ||
"submit_ID": "Server ID (#)", | ||
"keypress_showFinanceMenu": "[E] Open Finance Menu", | ||
"keypress_vehicleViewMenu": "[E] View Vehicle" | ||
}, | ||
"general": { | ||
"testdrive_timer": "Test Drive Time Remaining: ", | ||
"vehinteraction": "Vehicle Interaction", | ||
"testdrive_timenoti": "You have %s minutes remaining", | ||
"testdrive_complete": "Vehicle test drive complete", | ||
"paymentduein": "Your vehicle payment is due within %s minutes", | ||
"command_transfervehicle": "Gift or sell your vehicle", | ||
"command_transfervehicle_help": "ID of buyer", | ||
"command_transfervehicle_amount": "Sell amount (optional)", | ||
"transfervehicle_confirm": "Confirm trade of %s %s for $ %s" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters