mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 17:06:53 +02:00
MDL-29523 filemanager: Fix a hardcode string
This commit is contained in:
parent
d1c12af76e
commit
e91dd85ed7
1 changed files with 2 additions and 1 deletions
|
@ -274,6 +274,7 @@ function form_filemanager_render($options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$maxsize = get_string('maxfilesize', 'moodle', display_size(get_max_upload_file_size($CFG->maxbytes, $course_maxbytes, $options->maxbytes)));
|
$maxsize = get_string('maxfilesize', 'moodle', display_size(get_max_upload_file_size($CFG->maxbytes, $course_maxbytes, $options->maxbytes)));
|
||||||
|
$loading = get_string('loading', 'repository');
|
||||||
$html .= <<<FMHTML
|
$html .= <<<FMHTML
|
||||||
<div class="filemanager-loading mdl-align" id='filemanager-loading-{$client_id}'>
|
<div class="filemanager-loading mdl-align" id='filemanager-loading-{$client_id}'>
|
||||||
$icon_progress
|
$icon_progress
|
||||||
|
@ -288,7 +289,7 @@ $icon_progress
|
||||||
</div>
|
</div>
|
||||||
<div class="filemanager-container" id="filemanager-{$client_id}">
|
<div class="filemanager-container" id="filemanager-{$client_id}">
|
||||||
<ul id="draftfiles-{$client_id}" class="fm-filelist">
|
<ul id="draftfiles-{$client_id}" class="fm-filelist">
|
||||||
<li>Loading...</li>
|
<li>{$loading}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue