mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
Split some strings for better formatting.
This commit is contained in:
parent
2317aa003a
commit
e6f930f340
24
install.php
24
install.php
@ -85,14 +85,21 @@ if ($INSTALL['wwwroot'] == '') {
|
||||
list($INSTALL['wwwroot'], $xtra) = explode('/install.php', qualified_me());
|
||||
}
|
||||
|
||||
$stagetext = array(WELCOME => get_string('chooselanguage', 'install'),
|
||||
COMPATIBILITY => get_string('compatibilitysettings', 'install'),
|
||||
DIRECTORY => get_string('directorysettings', 'install'),
|
||||
DATABASE => get_string('databasesettings', 'install'),
|
||||
ADMIN => get_string('admindirsetting', 'install'),
|
||||
SAVE => get_string('configurationcomplete', 'install')
|
||||
$headstagetext = array(WELCOME => get_string('chooselanguagehead', 'install'),
|
||||
COMPATIBILITY => get_string('compatibilitysettingshead', 'install'),
|
||||
DIRECTORY => get_string('directorysettingshead', 'install'),
|
||||
DATABASE => get_string('databasesettingshead', 'install'),
|
||||
ADMIN => get_string('admindirsettinghead', 'install'),
|
||||
SAVE => get_string('configurationcompletehead', 'install')
|
||||
);
|
||||
|
||||
$substagetext = array(WELCOME => get_string('chooselanguagesub', 'install'),
|
||||
COMPATIBILITY => get_string('compatibilitysettingssub', 'install'),
|
||||
DIRECTORY => get_string('directorysettingssub', 'install'),
|
||||
DATABASE => get_string('databasesettingssub', 'install'),
|
||||
ADMIN => get_string('admindirsettingsub', 'install'),
|
||||
SAVE => get_string('configurationcompletesub', 'install')
|
||||
);
|
||||
|
||||
|
||||
|
||||
@ -370,7 +377,10 @@ if (isset($_GET['help'])) {
|
||||
|
||||
<tr>
|
||||
<td class="td_mainheading" colspan="2">
|
||||
<p class="p_mainheading"><?php echo $stagetext[$nextstage] ?></p>
|
||||
<p class="p_mainheading"><?php echo $headstagetext[$nextstage] ?></p>
|
||||
<?php if (!empty($substagetext[$nextstage])) { ?>
|
||||
<p class="p_subheading"><?php echo $substagetext[$nextstage] ?></p>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user