##// END OF EJS Templates
spelling: clarify what "Destroy old data" means
Søren Løvborg -
r5410:97a20b80 default
parent child Browse files
Show More
@@ -1,34 +1,34 b''
1 1 ${h.form(url('admin_settings_mapping'), method='post')}
2 2 <div class="form">
3 3 <div class="fields">
4 4 <div class="field">
5 5 <div class="label label-checkbox">
6 6 <label for="destroy">${_('Rescan option')}:</label>
7 7 </div>
8 8 <div class="checkboxes">
9 9 <div class="checkbox">
10 10 ${h.checkbox('destroy',True)}
11 <label for="destroy">${_('Destroy old data')}</label>
11 <label for="destroy">${_('Delete records of missing repositories')}</label>
12 12 </div>
13 <span class="help-block">${_('Check this option to remove references to repositories that no longer exist in on the filesystem.')}</span>
13 <span class="help-block">${_('Check this option to remove all comments, pull requests and other records related to repositories that no longer exist in the filesystem.')}</span>
14 14
15 15 <div class="checkbox">
16 16 ${h.checkbox('invalidate',True)}
17 17 <label for="invalidate"> ${_('Invalidate cache for all repositories')}</label>
18 18 </div>
19 19 <span class="help-block">${_('Check this to reload data and clear cache keys for all repositories.')}</span>
20 20
21 21 <div class="checkbox">
22 22 ${h.checkbox('hooks',True)}
23 23 <label for="hooks"> ${_('Install Git hooks')} </label>
24 24 </div>
25 25 <span class="help-block">${_("Verify if Kallithea's Git hooks are installed for each repository. Current hooks will be updated to the latest version.")}</span>
26 26 </div>
27 27 </div>
28 28
29 29 <div class="buttons">
30 30 ${h.submit('rescan',_('Rescan Repositories'),class_="btn")}
31 31 </div>
32 32 </div>
33 33 </div>
34 34 ${h.end_form()}
General Comments 0
You need to be logged in to leave comments. Login now