MDL-22054 converting block name strings to pluginname

AMOS START
 MOV [loancalc,block_loancalc],[pluginname,block_loancalc]
AMOS END
This commit is contained in:
Petr Skoda 2010-04-11 11:21:53 +00:00
parent 8c5bba16cc
commit 4931465f06
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
class block_loancalc extends block_base {
function init() {
$this->title = get_string('loancalc','block_loancalc');
$this->title = get_string('pluginname','block_loancalc');
$this->content_type = BLOCK_TYPE_TEXT;
$this->version = 2007101509;
}

View File

@ -26,9 +26,9 @@
$string['amountofloan'] = 'Amount of loan';
$string['fortnightly'] = 'Fortnightly';
$string['interestrate'] = 'Interest rate';
$string['loancalc'] = 'Loan calculator';
$string['loanterm'] = 'Loan term (years)';
$string['monthly'] = 'Monthly';
$string['pluginname'] = 'Loan calculator';
$string['repaymentamount'] = 'Repayment amount';
$string['repaymentfreq'] = 'Repayment frequency';
$string['weekly'] = 'Weekly';