Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 2032d3f

Browse files
author
Charles Ma
committed
BUG: fixed bug #173 Fixed spelling
1 parent a535a3c commit 2032d3f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

core/public/js/install/install.step3.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,21 @@
33
var defaultTest=$('.installHelp').html();
44
var helpText=new Array();
55
helpText['name']='<h4>Name</h4>Please select the name of your installation of MIDAS';
6-
helpText['lang']='<h4>Language</h4>Please select the default language. Currently, english and french are available.';
7-
helpText['env']='<h4>Environment</h4>Developpement is slower but it will show you all the informations needed to debug the application<br/><br/>Production is faster but it hides the errors.';
8-
helpText['process']='<h4>Process</h4>On the fly: All the data processing will be done on the fly. The application will be slower<br/><br/>External: This mode allows you the process the data using and external tool like cron.<br/> To lunch the processing, use wget:<br/>'+$('.hiddenProcces').html();
9-
helpText['time']='<h4>Timezone</h4>Please select the timezone of your server';
10-
helpText['optimizer']='<h4>SmartOptimizer</h4>SmartOptimizer is a PHP library that enhances your website performance by optimizing the front end using techniques such as minifying, compression, caching, concatenation and embedding. (previously named JSmart) is a PHP library that enhances your website performance by optimizing the front end using techniques such as minifying, compression, caching, concatenation and embedding. ';
11-
helpText['assetstore']='<h4>Default Assetstore</h4>Please select a default assetstore. An assestore is the location where the uploaded files are store.';
6+
helpText['description']='<h4>Description</h4>Provide a description for search engines.';
7+
helpText['keywords']='<h4>Keywords</h4>Provide keywords for search engines.';
8+
helpText['lang']='<h4>Language</h4>Please select the default language. Currently, English and French are available.';
9+
helpText['env']='<h4>Environment</h4>Development is slower, but it will show you all the information needed to debug the application<br/><br/>Production is faster, but it hides the errors.';
10+
helpText['time']='<h4>Timezone</h4>Please select the timezone of your server.';
11+
helpText['optimizer']='<h4>SmartOptimizer</h4>SmartOptimizer (previously named JSmart) is a PHP library that enhances your website performance by optimizing the front end using techniques such as minifying, compression, caching, concatenation and embedding.';
12+
helpText['assetstore']='<h4>Default Assetstore</h4>Please select a default assetstore. An assestore is the location where the uploaded files are stored.';
1213

1314
$('.installName').hover(function(){ $('.installHelp').html(helpText['name'])}, function(){ $('.installHelp').html(defaultTest)});
15+
$('.installDescription').hover(function(){ $('.installHelp').html(helpText['description'])}, function(){ $('.installHelp').html(defaultTest)});
16+
$('.installKeywords').hover(function(){ $('.installHelp').html(helpText['keywords'])}, function(){ $('.installHelp').html(defaultTest)});
1417
$('.installLang').hover(function(){ $('.installHelp').html(helpText['lang'])}, function(){ $('.installHelp').html(defaultTest)});
1518
$('.installEnvironment').hover(function(){ $('.installHelp').html(helpText['env'])}, function(){ $('.installHelp').html(defaultTest)});
16-
$('.installProcess').hover(function(){ $('.installHelp').html(helpText['process'])}, function(){ $('.installHelp').html(defaultTest)});
1719
$('.installTimezone').hover(function(){ $('.installHelp').html(helpText['time'])}, function(){ $('.installHelp').html(defaultTest)});
1820
$('.installSmartoptimizer').hover(function(){ $('.installHelp').html(helpText['optimizer'])}, function(){ $('.installHelp').html(defaultTest)});
1921
$('.installAssetstrore').hover(function(){ $('.installHelp').html(helpText['assetstore'])}, function(){ $('.installHelp').html(defaultTest)});
2022
});
21-
22-
23+

core/views/install/step3.phtml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ PURPOSE. See the above copyright notices for more information.
2626
<label for='name'>Application name</label>
2727
{$this->form['name']}
2828
</div>
29-
<div class='description'>
29+
<div class='installDescription'>
3030
<label for='name'>Description</label>
3131
{$this->form['description']}
3232
</div>
33-
<div class='keywords'>
33+
<div class='installKeywords'>
3434
<label for='name'>Keywords</label>
3535
{$this->form['keywords']}
3636
</div>
@@ -54,7 +54,6 @@ PURPOSE. See the above copyright notices for more information.
5454
<label for='smartoptimizer'>CSS and Javascript optimizer</label>
5555
{$this->form['smartoptimizer']}
5656
</div>
57-
5857
";
5958

6059
echo"

0 commit comments

Comments
 (0)