* add some notice to the user that installing step "Import Schema" will take some time

This commit is contained in:
slawkens1 2017-12-25 23:19:32 +01:00
parent 73ed384215
commit 60a8317115
3 changed files with 2 additions and 1 deletions

1
TODO
View File

@ -6,7 +6,6 @@
* add support for defining max myaac version in plugin.json file * add support for defining max myaac version in plugin.json file
* cache Menus in templates * cache Menus in templates
* semantic versioning support for plugins (github.com/composer/semver) * semantic versioning support for plugins (github.com/composer/semver)
* add some notice to the user that installing step "Import Schema" will take some time
1.0: 1.0:
* i18n support (issue #1 on github) * i18n support (issue #1 on github)

View File

@ -56,6 +56,7 @@ $locale['step_config_client_desc'] = 'Used for download page and some templates'
$locale['step_config_client_error'] = 'Client is not correct.'; $locale['step_config_client_error'] = 'Client is not correct.';
$locale['step_config_usage'] = 'Usage Statistics'; $locale['step_config_usage'] = 'Usage Statistics';
$locale['step_config_usage_desc'] = 'Allow MyAAC to report anonymous usage statistics? The data is sent only once per 30 days and is fully confidential.'; $locale['step_config_usage_desc'] = 'Allow MyAAC to report anonymous usage statistics? The data is sent only once per 30 days and is fully confidential.';
$locale['step_config_note'] = 'Loading next step will take some time. Please do not refresh the page and wait till it loads.';
// database // database
$locale['step_database'] = 'Import schema'; $locale['step_database'] = 'Import schema';

View File

@ -67,5 +67,6 @@
<p class="error">{{ error }}</p> <p class="error">{{ error }}</p>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
<p class="note">{{ locale.step_config_note }}</p>
{{ buttons|raw }} {{ buttons|raw }}
</form> </form>