Changeset 1298:c4b69fd15ef5 for plugins
- Timestamp:
- 08/04/13 21:00:35 (12 years ago)
- Branch:
- default
- Location:
- plugins/importExport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/importExport/inc/class.dc.import.flat.php
r939 r1298 184 184 '<p>'.sprintf(__('This will import a single blog backup as new content in the current blog: %s.'),html::escapeHTML($this->core->blog->name)).'</p>'. 185 185 186 '<p><label for="up_single_file" >'.__('Upload a backup file').187 ' ('.sprintf(__('Maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.' </label>'.188 ' <input type="file" id="up_single_file" name="up_single_file" size="20" />'.186 '<p><label for="up_single_file" class="classic">'.__('Upload a backup file'). 187 ' ('.sprintf(__('Maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.' </label>'. 188 ' <input type="file" id="up_single_file" name="up_single_file" size="20" />'. 189 189 '</p>'; 190 190 191 191 if ($has_files) { 192 192 echo 193 '<p><label for="public_single_file" >'.__('or pick up a local file in your public directory').' '.193 '<p><label for="public_single_file" class="classic">'.__('or pick up a local file in your public directory').' '. 194 194 form::combo('public_single_file',$public_files). 195 195 '</label></p>'; … … 211 211 '<form action="'.$this->getURL(true).'" method="post" enctype="multipart/form-data" id="formfull">'. 212 212 '<fieldset><legend>'.__('Multiple blogs').'</legend>'. 213 '<p >'.__('This will reset all the content of your database, except users.').'</p>'.214 215 '<p><label for="up_full_file" >'.__('Upload a backup file').216 ' ('.sprintf(__('Maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.' </label>'.213 '<p class="warning">'.__('This will reset all the content of your database, except users.').'</p>'. 214 215 '<p><label for="up_full_file" class="classic">'.__('Upload a backup file').' '. 216 ' ('.sprintf(__('Maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.' </label>'. 217 217 '<input type="file" id="up_full_file" name="up_full_file" size="20" />'. 218 218 '</p>'; … … 220 220 if ($has_files) { 221 221 echo 222 '<p><label for="public_full_file" >'.__('or pick up a local file in your public directory').'</label>'.222 '<p><label for="public_full_file" class="classic">'.__('or pick up a local file in your public directory').' </label>'. 223 223 form::combo('public_full_file',$public_files). 224 224 '</p>'; -
plugins/importExport/index.php
r840 r1298 75 75 if ($type && $module !== null) { 76 76 echo 77 '<h2> <a href="'.$p_url.'">'.$title.'</a>'.77 '<h2>'.__('Plugins').' › <a href="'.$p_url.'">'.$title.'</a>'. 78 78 ' › <span class="page-title">'.html::escapeHTML($module->name).'</span></h2>'. 79 79 '<div id="ie-gui">'; … … 85 85 else { 86 86 echo 87 '<h2 class="page-title">'.$title.'</h2>'.87 '<h2>'.__('Plugins').' › <span class="page-title">'.$title.'</span></h2>'. 88 88 '<h3>'.__('Import').'</h3>'.listImportExportModules($core,$modules['import']). 89 89 '<h3>'.__('Export').'</h3>'.listImportExportModules($core,$modules['export']);
Note: See TracChangeset
for help on using the changeset viewer.