- Timestamp:
- 08/24/13 11:25:47 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/importExport/inc/class.dc.import.flat.php
r1499 r1559 142 142 if ($this->status == 'single') 143 143 { 144 dcPage:: message(__('Single blog successfully imported.'));144 dcPage::success(__('Single blog successfully imported.')); 145 145 return; 146 146 } 147 147 if ($this->status == 'full') 148 148 { 149 dcPage:: message(__('Content successfully imported.'));149 dcPage::success(__('Content successfully imported.')); 150 150 return; 151 151 } … … 184 184 '<p>'.sprintf(__('This will import a single blog backup as new content in the current blog: <strong>%s</strong>.'),html::escapeHTML($this->core->blog->name)).'</p>'. 185 185 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>'.186 '<p><label for="up_single_file">'.__('Upload a backup file'). 187 ' ('.sprintf(__('maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.' </label>'. 188 188 ' <input type="file" id="up_single_file" name="up_single_file" size="20" />'. 189 189 '</p>'; … … 191 191 if ($has_files) { 192 192 echo 193 '<p><label for="public_single_file" class=" classic">'.__('or pick up a local file in your public directory').'</label> '.193 '<p><label for="public_single_file" class="">'.__('or pick up a local file in your public directory').' </label> '. 194 194 form::combo('public_single_file',$public_files). 195 195 '</p>'; … … 212 212 '<p class="warning">'.__('This will reset all the content of your database, except users.').'</p>'. 213 213 214 '<p><label for="up_full_file" class="classic">'.__('Upload a backup file').' '.215 ' ('.sprintf(__(' Maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.' </label>'.214 '<p><label for="up_full_file">'.__('Upload a backup file').' '. 215 ' ('.sprintf(__('maximum size %s'),files::size(DC_MAX_UPLOAD_SIZE)).')'.' </label>'. 216 216 '<input type="file" id="up_full_file" name="up_full_file" size="20" />'. 217 217 '</p>'; … … 219 219 if ($has_files) { 220 220 echo 221 '<p><label for="public_full_file" class="classic">'.__('or pick up a local file in your public directory').' </label>'.221 '<p><label for="public_full_file">'.__('or pick up a local file in your public directory').' </label>'. 222 222 form::combo('public_full_file',$public_files). 223 223 '</p>';
Note: See TracChangeset
for help on using the changeset viewer.