Changeset 2044:4a3330bc8bd5 for plugins/maintenance/inc/tasks
- Timestamp:
- 09/23/13 20:34:42 (12 years ago)
- Branch:
- default
- Location:
- plugins/maintenance/inc/tasks
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/inc/tasks/class.dc.maintenance.cache.php
r1925 r2044 21 21 $this->success = __('Templates cache directory emptied.'); 22 22 $this->error = __('Failed to empty templates cache directory.'); 23 24 $this->description = __("It may be useful to empty this cache when modifying a theme's .html or .css files (or when updating a theme or plugin). Notice : with some hosters, the templates cache cannot be emptied with this plugin. You may then have to delete the directory <strong>/cbtpl/</strong> directly on the server with your FTP software."); 23 25 } 24 26 -
plugins/maintenance/inc/tasks/class.dc.maintenance.countcomments.php
r1984 r2044 21 21 $this->success = __('Comments and trackback counted.'); 22 22 $this->error = __('Failed to count comments and trackbacks.'); 23 24 $this->description = __('Count again comments and trackbacks allows to check their exact numbers. This operation can be useful when importing from another blog platform (or when migrating from dotclear 1 to dotclear 2).'); 23 25 } 24 26 -
plugins/maintenance/inc/tasks/class.dc.maintenance.indexcomments.php
r1989 r2044 27 27 $this->success = __('Comments index done.'); 28 28 $this->error = __('Failed to index comments.'); 29 30 $this->description = __('Index all comments and trackbacks in search engine index. This operation is necessary, after importing content in your blog, to use internal search engine, on public and private pages.'); 29 31 } 30 32 -
plugins/maintenance/inc/tasks/class.dc.maintenance.indexposts.php
r1989 r2044 27 27 $this->success = __('Entries index done.'); 28 28 $this->error = __('Failed to index entries.'); 29 30 $this->description = __('Index all entries in search engine index. This operation is necessary, after importing content in your blog, to use internal search engine, on public and private pages.'); 29 31 } 30 32 -
plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php
r1925 r2044 21 21 $this->success = __('Logs deleted.'); 22 22 $this->error = __('Failed to delete logs.'); 23 24 $this->description = __('Logs record all activity and connection to your blog history. Unless you need to keep this history, consider deleting these logs from time to time.'); 23 25 } 24 26 -
plugins/maintenance/inc/tasks/class.dc.maintenance.vacuum.php
r1984 r2044 18 18 protected function init() 19 19 { 20 $this->name = __('Optimise database'); 20 21 $this->task = __('optimize tables'); 21 22 $this->success = __('Optimization successful.'); 22 23 $this->error = __('Failed to optimize tables.'); 24 25 $this->description = __("After numerous delete or update operations on Dotclear's database, it gets fragmented. Optimizing will allow to defragment it. It has no incidence on your data's integrity. It is recommended to optimize before any blog export."); 23 26 } 24 27 -
plugins/maintenance/inc/tasks/class.dc.maintenance.zipmedia.php
r1989 r2044 22 22 { 23 23 $this->task = __('Download media folder of current blog'); 24 25 $this->description = __('It may be useful to backup your media folder. This compress all content of media folder into a single zip file. Notice : with some hosters, the media folder cannot be compressed with this plugin if it is too big.'); 24 26 } 25 27 -
plugins/maintenance/inc/tasks/class.dc.maintenance.ziptheme.php
r1989 r2044 22 22 { 23 23 $this->task = __('Download active theme of current blog'); 24 25 $this->description = __('It may be useful to backup the active theme before any change or update. This compress theme folder into a single zip file.'); 24 26 } 25 27
Note: See TracChangeset
for help on using the changeset viewer.