221 lines
		
	
	
		
			No EOL
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			221 lines
		
	
	
		
			No EOL
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| Locales['en'] = {
 | |
| 
 | |
|     -- PIN RELATED LOCALES
 | |
| 
 | |
|     ['no_pin'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'Head up to a bank first to set a PIN code',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['pin_changed'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'PIN successfully changed to ${s1}',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
|     ['pin_no_money'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You need to have ${s1}€ in order to change your PIN',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['pin_digits'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'Your PIN needs to be 4 digits long',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['pin_only_numbers'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You can only use numbers',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
| 
 | |
|     -- IBAN RELATED LOCALES
 | |
| 
 | |
|     ['iban_not_exist'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'This IBAN does not exist',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['iban_in_use'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'This IBAN is already in use',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['iban_only_numbers'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You can only use numbers in your IBAN',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['iban_changed'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'IBAN successfully changed to ${s1}',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
|     ['iban_no_money'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You need to have ${s1}€ in order to change your IBAN',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
| 
 | |
|     -- WITHDRAWN / DEPOSITED / TRANSFERRED / RECEIVED
 | |
| 
 | |
|     ['deposited'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You have deposited ${s1}€',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
|     ['withdrawn'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You have withdrawn ${s1}€',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
|     ['received_from'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You have received ${s1}€ from ${s2}',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
|     ['transferred_to'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You have transferred ${s1}€ to ${s2}',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
|     ['deposited_to'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You have deposited ${s1}€ to ${s2}',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
|     ['someone_withdrawing'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'Someone is already withdrawing',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['you_have_withdrawn'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You have withdrawn ${s1}€ from ${s2}',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
| 
 | |
|     -- GENERAL LOCALES
 | |
| 
 | |
|     ['no_creditcard'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You can not access the ATM without a credit card',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['invalid_amount'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'Invalid amount',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['invalid_input'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'Invalid input',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['no_money_pocket'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You don\'t have that much money on you',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['no_money_bank'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You don\'t have that much money in the bank',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['not_send_yourself'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You can\'t send money to yourself',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['society_no_money'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'Your society doesn\'t have that much money in the bank',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['not_use_bank'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You can\'t use the bank at this moment',
 | |
|         time = 5000,
 | |
|         type = 'error'
 | |
|     },
 | |
| 
 | |
|     ['bought_cc'] = {
 | |
|         title = 'BANKING',
 | |
|         text = 'You bought a credit card for ${s1}€',
 | |
|         time = 5000,
 | |
|         type = 'success'
 | |
|     },
 | |
| 
 | |
| 
 | |
|     -- TEXTUI LOCALES
 | |
| 
 | |
|     ['open_banking'] = {
 | |
|         text = '[E] Access Bank',
 | |
|         color = 'darkblue',
 | |
|         side = 'left'
 | |
|     },
 | |
| 
 | |
|     ['open_atm'] = {
 | |
|         text = '[E] Access ATM',
 | |
|         color = 'darkblue',
 | |
|         side = 'left'
 | |
|     },
 | |
| 
 | |
| 
 | |
|     -- QB-TARGET LOCALES
 | |
| 
 | |
|     ['open_banking_target'] = {
 | |
|         text = 'Access Bank',
 | |
|     },
 | |
| 
 | |
|     ['open_atm_target'] = {
 | |
|         text = 'Access ATM',
 | |
|     },
 | |
| } | 
