Changeset 5021 for trunk/admin/plugins_new.php
- Timestamp:
- Mar 2, 2010, 3:54:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/plugins_new.php
r3282 r5021 51 51 case 'ok': 52 52 array_push($page['infos'], 53 l10n(' plugins_install_ok'),54 l10n(' plugins_install_need_activate'));53 l10n('Plugin has been successfully copied'), 54 l10n('You might go to plugin list to install and activate it.')); 55 55 break; 56 56 57 57 case 'temp_path_error': 58 array_push($page['errors'], l10n(' plugins_temp_path_error'));58 array_push($page['errors'], l10n('Can\'t create temporary file.')); 59 59 break; 60 60 61 61 case 'dl_archive_error': 62 array_push($page['errors'], l10n(' plugins_dl_archive_error'));62 array_push($page['errors'], l10n('Can\'t download archive.')); 63 63 break; 64 64 65 65 case 'archive_error': 66 array_push($page['errors'], l10n(' plugins_archive_error'));66 array_push($page['errors'], l10n('Can\'t read or extract archive.')); 67 67 break; 68 68 69 69 default: 70 70 array_push($page['errors'], 71 sprintf(l10n(' plugins_extract_error'), $_GET['installstatus']),72 l10n(' plugins_check_chmod'));71 sprintf(l10n('An error occured during extraction (%s).'), $_GET['installstatus']), 72 l10n('Please check \"plugins\" folder and sub-folders permissions (CHMOD).')); 73 73 } 74 74 } … … 82 82 array( 83 83 $link.'date' => l10n('Post date'), 84 $link.'revision' => l10n(' plugins_revisions'),84 $link.'revision' => l10n('Last revisions'), 85 85 $link.'name' => l10n('Name'), 86 86 $link.'author' => l10n('Author'), … … 127 127 else 128 128 { 129 array_push($page['errors'], l10n(' plugins_server_error'));129 array_push($page['errors'], l10n('Can\'t connect to server.')); 130 130 } 131 131
Note: See TracChangeset
for help on using the changeset viewer.