mirror of
https://github.com/moodle/moodle.git
synced 2025-02-23 11:27:51 +01:00
12 lines
391 B
PHP
12 lines
391 B
PHP
<?php // $Id$
|
|
$string['loancalc'] = 'Loan calculator';
|
|
$string['amountofloan'] = 'Amount of loan';
|
|
$string['repaymentamount'] = 'Repayment amount';
|
|
$string['loanterm'] = 'Loan term (years)';
|
|
$string['interestrate'] = 'Interest rate';
|
|
$string['repaymentfreq'] = 'Repayment frequency';
|
|
$string['weekly'] = 'Weekly';
|
|
$string['fortnightly'] = 'Fortnightly';
|
|
$string['monthly'] = 'Monthly';
|
|
|
|
?>
|