Changeset 5285 for trunk/admin
- Timestamp:
- Mar 23, 2010, 2:26:41 PM (15 years ago)
- Location:
- trunk/admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/photos_add.php
r5182 r5285 57 57 'pattern' => '/^\d+$/', 58 58 'can_be_null' => true, 59 'error_message' => 'The websize maximum width must be a number between %d and %d',59 'error_message' => l10n('The websize maximum width must be a number between %d and %d'), 60 60 ), 61 61 … … 66 66 'pattern' => '/^\d+$/', 67 67 'can_be_null' => true, 68 'error_message' => 'The websize maximum height must be a number between %d and %d',68 'error_message' => l10n('The websize maximum height must be a number between %d and %d'), 69 69 ), 70 70 … … 75 75 'pattern' => '/^\d+$/', 76 76 'can_be_null' => false, 77 'error_message' => 'The websize image quality must be a number between %d and %d',77 'error_message' => l10n('The websize image quality must be a number between %d and %d'), 78 78 ), 79 79 … … 84 84 'pattern' => '/^\d+$/', 85 85 'can_be_null' => false, 86 'error_message' => 'The thumbnail maximum width must be a number between %d and %d',86 'error_message' => l10n('The thumbnail maximum width must be a number between %d and %d'), 87 87 ), 88 88 … … 93 93 'pattern' => '/^\d+$/', 94 94 'can_be_null' => false, 95 'error_message' => 'The thumbnail maximum height must be a number between %d and %d',95 'error_message' => l10n('The thumbnail maximum height must be a number between %d and %d'), 96 96 ), 97 97 … … 102 102 'pattern' => '/^\d+$/', 103 103 'can_be_null' => false, 104 'error_message' => 'The thumbnail image quality must be a number between %d and %d',104 'error_message' => l10n('The thumbnail image quality must be a number between %d and %d'), 105 105 ), 106 106 ); … … 143 143 array( 144 144 'code' => 'direct', 145 'label' => 'Upload Photos',145 'label' => l10n('Upload Photos'), 146 146 ), 147 147 array( 148 148 'code' => 'settings', 149 'label' => 'Settings',149 'label' => l10n('Settings'), 150 150 ), 151 151 array( 152 152 'code' => 'ploader', 153 'label' => 'Piwigo Uploader',153 'label' => l10n('Piwigo Uploader'), 154 154 ), 155 155 array( 156 156 'code' => 'ftp', 157 'label' => 'FTP + Synchronisation',157 'label' => l10n('FTP + Synchronization'), 158 158 ), 159 159 ); … … 178 178 $tabsheet->add( 179 179 $tab['code'], 180 l10n($tab['label']),180 $tab['label'], 181 181 PHOTOS_ADD_BASE_URL.'&section='.$tab['code'] 182 182 ); -
trunk/admin/photos_add_settings.php
r5089 r5285 105 105 $page['errors'], 106 106 sprintf( 107 l10n($upload_form_config[$field]['error_message']),107 $upload_form_config[$field]['error_message'], 108 108 $min, 109 109 $max -
trunk/admin/themes/default/template/photos_add_ftp.tpl
r5182 r5285 1 <div class="titrePage" style="height:25px">1 <div class="titrePage"> 2 2 <h2>{'FTP + Synchronization'|@translate}</h2> 3 3 </div>
Note: See TracChangeset
for help on using the changeset viewer.