Changeset 199485
- Timestamp:
- 01/29/2010 02:18:01 PM (16 years ago)
- Location:
- capsman/trunk
- Files:
-
- 11 added
- 26 edited
-
capsman.php (modified) (1 diff)
-
framework/classes/abstract/module.php (modified) (1 diff)
-
framework/classes/abstract/plugin.php (modified) (1 diff)
-
framework/classes/template.php (added)
-
framework/init.php (modified) (3 diffs)
-
framework/lang (added)
-
framework/lang/bg_BG.mo (added)
-
framework/lang/bg_BG.po (added)
-
framework/lang/ca.mo (added)
-
framework/lang/ca.po (added)
-
framework/lang/es_ES.mo (added)
-
framework/lang/es_ES.po (added)
-
framework/lang/framework.pot (added)
-
framework/lang/it_IT.mo (added)
-
framework/lang/it_IT.po (added)
-
framework/lib/filesystem.php (modified) (2 diffs)
-
framework/lib/formating.php (modified) (3 diffs)
-
framework/lib/themes.php (modified) (1 diff)
-
framework/license.txt (modified) (1 diff)
-
framework/loader.php (modified) (1 diff)
-
framework/vendor/upload/class.upload.php (modified) (2 diffs)
-
includes/manager.php (modified) (4 diffs)
-
lang/capsman-by_BY.mo (modified) (previous)
-
lang/capsman-by_BY.po (modified) (6 diffs)
-
lang/capsman-ca.mo (modified) (previous)
-
lang/capsman-ca.po (modified) (5 diffs)
-
lang/capsman-de_DE.mo (modified) (previous)
-
lang/capsman-de_DE.po (modified) (6 diffs)
-
lang/capsman-es_ES.mo (modified) (previous)
-
lang/capsman-es_ES.po (modified) (5 diffs)
-
lang/capsman-it_IT.mo (modified) (previous)
-
lang/capsman-it_IT.po (modified) (6 diffs)
-
lang/capsman-ru_RU.mo (modified) (previous)
-
lang/capsman-ru_RU.po (modified) (6 diffs)
-
lang/capsman.pot (modified) (5 diffs)
-
license.txt (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
capsman/trunk/capsman.php
r198515 r199485 4 4 Plugin URI: http://alkivia.org/wordpress/capsman 5 5 Description: Manage user capabilities and roles. 6 Version: 1.3 6 Version: 1.3.1 7 7 Author: Jordi Canals 8 8 Author URI: http://alkivia.org -
capsman/trunk/framework/classes/abstract/module.php
r198515 r199485 505 505 if ( $this->cfg->isForced($this->ID, $option) ) { 506 506 if ( $show_notice ) { 507 echo '<em>' . __('Option blocked by administrator.', 'ak theme') . '</em>';507 echo '<em>' . __('Option blocked by administrator.', 'akfw') . '</em>'; 508 508 } 509 509 return false; -
capsman/trunk/framework/classes/abstract/plugin.php
r198515 r199485 208 208 $this->loadTranslations(); // We have not loaded translations yet. 209 209 210 echo '<div class="error"><p><strong>' . __('Warning:', $this->ID) . '</strong> '211 . sprintf(__('The active plugin %s is not compatible with your WordPress version.', $this->ID),210 echo '<div class="error"><p><strong>' . __('Warning:', 'akfw') . '</strong> ' 211 . sprintf(__('The active plugin %s is not compatible with your WordPress version.', 'akfw'), 212 212 '«' . $this->mod_data['Name'] . ' ' . $this->mod_data['Version'] . '»') 213 . '</p><p>' . sprintf(__('WordPress %s is required to run this plugin.', $this->ID), $this->mod_data['Requires'])213 . '</p><p>' . sprintf(__('WordPress %s is required to run this plugin.', 'akfw'), $this->mod_data['Requires']) 214 214 . '</p></div>'; 215 215 } -
capsman/trunk/framework/init.php
r198515 r199485 41 41 } 42 42 43 // ================================================= SET GLOBAL CONSTANTS ===== 44 43 45 if ( ! defined('AK_STYLES_URL') ) { 44 46 /** Define the framework URL */ … … 76 78 } 77 79 80 // ============================================== SET GLOBAL ACTION HOOKS ===== 81 78 82 /** 79 83 * Adds meta name for Alkivia Framework to head. … … 83 87 * @return void 84 88 */ 85 function _ak_framework_meta_tags() {89 function _ak_framework_meta_tags() { 86 90 echo '<meta name="framework" content="Alkivia Framework ' . get_option('ak_framework_version') . '" />' . PHP_EOL; 87 91 } 88 92 add_action('wp_head', '_ak_framework_meta_tags'); 89 93 90 /************************************************** INIT main objects ********/ 94 /** 95 * Loads the framework translations. 96 * Sets the translation text domain to 'akvf'. 97 * 98 * @return bool true on success, false on failure 99 */ 100 function _ak_framework_translation() 101 { 102 $locale = get_locale(); 103 $mofile = AK_FRAMEWORK . "/lang/$locale.mo"; 104 105 return load_textdomain('akfw', $mofile); 106 } 107 add_action('init', '_ak_framework_translation'); 108 109 // ================================================ INCLUDE ALL LIBRARIES ===== 91 110 92 111 // Create the upload folder if does not exist. -
capsman/trunk/framework/lib/filesystem.php
r198515 r199485 126 126 function ak_dir_content($directory, $args='') 127 127 { 128 128 129 $directory = realpath($directory); // Be sure the directory path is well formed. 129 130 if ( ! is_dir($directory) ) { // Check if it is a directory. … … 164 165 } 165 166 $d->close(); 166 sort($dir_tree);167 asort($dir_tree); 167 168 168 169 return $dir_tree; 169 170 } 171 172 /** 173 * Returns a list of templates found in an array of directories 174 * 175 * @param array|string $folders Array of folders to search in. 176 * @return array Found templates (all found php files). 177 */ 178 function ak_get_templates( $folders ) 179 { 180 $paths = array(); 181 foreach ( (array) $folders as $folder ) { 182 $templates = ak_dir_content($folder, 'tree=0&extensions=php&with_ext=0'); 183 $paths = array_merge($templates, $paths); 184 } 185 186 return $paths; 187 } -
capsman/trunk/framework/lib/formating.php
r198515 r199485 50 50 if ( is_admin() ) { 51 51 if ( empty($message) ) { 52 $message = __('Settings saved.' );52 $message = __('Settings saved.', 'akfw'); 53 53 } 54 54 echo '<div id="message" class="updated fade"><p><strong>' . $message . '</strong></p></div>'; … … 132 132 * 133 133 * @param $datetime Date Time in mySql Format. 134 * @param $text_domain Translations textDomain.135 134 * @return string The time from the date to now, just looks to yesterday. 136 135 */ 137 function ak_time_ago( $datetime , $text_domain= '')136 function ak_time_ago( $datetime ) 138 137 { 139 138 $before = strtotime($datetime); … … 159 158 switch ( $unit ) { 160 159 case 's': 161 $ago = __('Just Now', $text_domain);160 $ago = __('Just Now', 'akfw'); 162 161 break; 163 162 case 'm': 164 $ago = sprintf(_n('1 minute ago', '%d minutes ago', $value, $text_domain), $value);163 $ago = sprintf(_n('1 minute ago', '%d minutes ago', $value, 'akfw'), $value); 165 164 break; 166 165 case 'h' : 167 $ago = sprintf(_n('1 hour ago', '%d hours ago', $value, $text_domain), $value);166 $ago = sprintf(_n('1 hour ago', '%d hours ago', $value, 'akfw'), $value); 168 167 break; 169 168 case 'd' : 170 169 if ( 1 == $value ) { 171 $literal = ( $is_today ) ? __('Today at %s', $text_domain) : __('Yesterday at %s', $text_domain);170 $literal = ( $is_today ) ? __('Today at %s', 'akfw') : __('Yesterday at %s', 'akfw'); 172 171 $ago = sprintf($literal, date('H:i', $before)); 173 172 } else { -
capsman/trunk/framework/lib/themes.php
r198515 r199485 158 158 <ul> 159 159 <?php if ( ! empty($data['PluginURI']) ) : ?> 160 <li><a href="<?php echo $data['PluginURI']; ?>" class="<?php echo $mod_id; ?>" target="_blank"><?php _e('Plugin Homepage', $mod_id); ?></a></li>160 <li><a href="<?php echo $data['PluginURI']; ?>" class="<?php echo $mod_id; ?>" target="_blank"><?php _e('Plugin Homepage', 'akfw'); ?></a></li> 161 161 <?php endif; ?> 162 162 163 163 <?php if ( ! empty($data['URI']) ) : ?> 164 <li><a href="<?php echo $data['URI']; ?>" class="theme" target="_blank"><?php _e('Theme Homepage', $mod_id); ?></a></li>164 <li><a href="<?php echo $data['URI']; ?>" class="theme" target="_blank"><?php _e('Theme Homepage', 'akfw'); ?></a></li> 165 165 <?php endif; ?> 166 166 167 167 <?php if ( ! empty($data['DocsURI']) ) : ?> 168 <li><a href="<?php echo $data['DocsURI']; ?>" class="docs" target="_blank"><?php _e('Documentation', $mod_id); ?></a></li>168 <li><a href="<?php echo $data['DocsURI']; ?>" class="docs" target="_blank"><?php _e('Documentation', 'akfw'); ?></a></li> 169 169 <?php endif; ?> 170 170 171 171 <?php if ( ! empty($data['HelpURI']) ) : ?> 172 <li><a href="<?php echo $data['HelpURI']; ?>" class="help" target="_blank"><?php _e('Support Forum', $mod_id); ?></a></li>172 <li><a href="<?php echo $data['HelpURI']; ?>" class="help" target="_blank"><?php _e('Support Forum', 'akfw'); ?></a></li> 173 173 <?php endif; ?> 174 174 175 175 <?php if ( ! empty($data['AuthorURI']) ) : ?> 176 <li><a href="<?php echo $data['AuthorURI']; ?>" class="home" target="_blank"><?php _e('Author Homepage', $mod_id)?></a></li>176 <li><a href="<?php echo $data['AuthorURI']; ?>" class="home" target="_blank"><?php _e('Author Homepage', 'akfw')?></a></li> 177 177 <?php endif; ?> 178 178 179 179 <?php if ( ! empty($data['DonateURI']) ) : ?> 180 <li><a href="<?php echo $data['DonateURI']; ?>" class="donate" target="_blank"><?php _e('Donate to project', $mod_id)?></a></li>180 <li><a href="<?php echo $data['DonateURI']; ?>" class="donate" target="_blank"><?php _e('Donate to project', 'akfw')?></a></li> 181 181 <?php endif; ?> 182 182 </ul> -
capsman/trunk/framework/license.txt
r198515 r199485 279 279 280 280 END OF TERMS AND CONDITIONS 281 282 How to Apply These Terms to Your New Programs283 284 If you develop a new program, and you want it to be of the greatest285 possible use to the public, the best way to achieve this is to make it286 free software which everyone can redistribute and change under these terms.287 288 To do so, attach the following notices to the program. It is safest289 to attach them to the start of each source file to most effectively290 convey the exclusion of warranty; and each file should have at least291 the "copyright" line and a pointer to where the full notice is found.292 293 <one line to give the program's name and a brief idea of what it does.>294 Copyright (C) <year> <name of author>295 296 This program is free software; you can redistribute it and/or modify297 it under the terms of the GNU General Public License as published by298 the Free Software Foundation; either version 2 of the License, or299 (at your option) any later version.300 301 This program is distributed in the hope that it will be useful,302 but WITHOUT ANY WARRANTY; without even the implied warranty of303 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the304 GNU General Public License for more details.305 306 You should have received a copy of the GNU General Public License along307 with this program; if not, write to the Free Software Foundation, Inc.,308 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.309 310 Also add information on how to contact you by electronic and paper mail.311 312 If the program is interactive, make it output a short notice like this313 when it starts in an interactive mode:314 315 Gnomovision version 69, Copyright (C) year name of author316 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.317 This is free software, and you are welcome to redistribute it318 under certain conditions; type `show c' for details.319 320 The hypothetical commands `show w' and `show c' should show the appropriate321 parts of the General Public License. Of course, the commands you use may322 be called something other than `show w' and `show c'; they could even be323 mouse-clicks or menu items--whatever suits your program.324 325 You should also get your employer (if you work as a programmer) or your326 school, if any, to sign a "copyright disclaimer" for the program, if327 necessary. Here is a sample; alter the names:328 329 Yoyodyne, Inc., hereby disclaims all copyright interest in the program330 `Gnomovision' (which makes passes at compilers) written by James Hacker.331 332 <signature of Ty Coon>, 1 April 1989333 Ty Coon, President of Vice334 335 This General Public License does not permit incorporating your program into336 proprietary programs. If your program is a subroutine library, you may337 consider it more useful to permit linking proprietary applications with the338 library. If this is what you want to do, use the GNU Lesser General339 Public License instead of this License. -
capsman/trunk/framework/loader.php
r198515 r199485 32 32 // If loaded on plufins_loaded will not load for themes. 33 33 34 $akf_version = '0. 5';34 $akf_version = '0.6'; 35 35 36 36 if ( file_exists(WP_CONTENT_DIR . '/alkivia.php') ) { -
capsman/trunk/framework/vendor/upload/class.upload.php
r198515 r199485 2127 2127 * @param array $file $_FILES['form_field'] 2128 2128 * or string $file Local filename 2129 * @param string $textDomain Optional translation textdomain 2130 */ 2131 function akUpload( $file, $textDomain = '' ) { 2129 */ 2130 function akUpload( $file ) { 2132 2131 2133 2132 $this->version = '0.28'; … … 2170 2169 2171 2170 $this->translation = array(); 2172 $this->translation['file_error'] = __('File error. Please try again.', $textDomain);2173 $this->translation['local_file_missing'] = __('Local file doesn\'t exist.', $textDomain);2174 $this->translation['local_file_not_readable'] = __('Local file is not readable.', $textDomain);2175 $this->translation['uploaded_too_big_ini'] = __('File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini).', $textDomain);2176 $this->translation['uploaded_too_big_html'] = __('File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form).', $textDomain);2177 $this->translation['uploaded_partial'] = __('File upload error (the uploaded file was only partially uploaded).', $textDomain);2178 $this->translation['uploaded_missing'] = __('File upload error (no file was uploaded).', $textDomain);2179 $this->translation['uploaded_no_tmp_dir'] = __('File upload error (missing a temporary folder).', $textDomain);2180 $this->translation['uploaded_cant_write'] = __('File upload error (failed to write file to disk).', $textDomain);2181 $this->translation['uploaded_err_extension'] = __('File upload error (file upload stopped by extension).', $textDomain);2182 $this->translation['uploaded_unknown'] = __('File upload error (unknown error code).', $textDomain);2183 $this->translation['try_again'] = __('File upload error. Please try again.', $textDomain);2184 $this->translation['file_too_big'] = __('File too big.', $textDomain);2185 $this->translation['no_mime'] = __('MIME type can\'t be detected.', $textDomain);2186 $this->translation['incorrect_file'] = __('Incorrect type of file.', $textDomain);2187 $this->translation['image_too_wide'] = __('Image too wide.', $textDomain);2188 $this->translation['image_too_narrow'] = __('Image too narrow.', $textDomain);2189 $this->translation['image_too_high'] = __('Image too high.', $textDomain);2190 $this->translation['image_too_short'] = __('Image too short.', $textDomain);2191 $this->translation['ratio_too_high'] = __('Image ratio too high (image too wide).', $textDomain);2192 $this->translation['ratio_too_low'] = __('Image ratio too low (image too high).', $textDomain);2193 $this->translation['too_many_pixels'] = __('Image has too many pixels.', $textDomain);2194 $this->translation['not_enough_pixels'] = __('Image has not enough pixels.', $textDomain);2195 $this->translation['file_not_uploaded'] = __('File not uploaded. Can\'t carry on a process.', $textDomain);2196 $this->translation['already_exists'] = __('%s already exists. Please change the file name.', $textDomain);2197 $this->translation['temp_file_missing'] = __('No correct temp source file. Can\'t carry on a process.', $textDomain);2198 $this->translation['source_missing'] = __('No correct uploaded source file. Can\'t carry on a process.', $textDomain);2199 $this->translation['destination_dir'] = __('Destination directory can\'t be created. Can\'t carry on a process.', $textDomain);2200 $this->translation['destination_dir_missing'] = __('Destination directory doesn\'t exist. Can\'t carry on a process.', $textDomain);2201 $this->translation['destination_path_not_dir'] = __('Destination path is not a directory. Can\'t carry on a process.', $textDomain);2202 $this->translation['destination_dir_write'] = __('Destination directory can\'t be made writeable. Can\'t carry on a process.', $textDomain);2203 $this->translation['destination_path_write'] = __('Destination path is not a writeable. Can\'t carry on a process.', $textDomain);2204 $this->translation['temp_file'] = __('Can\'t create the temporary file. Can\'t carry on a process.', $textDomain);2205 $this->translation['source_not_readable'] = __('Source file is not readable. Can\'t carry on a process.', $textDomain);2206 $this->translation['no_create_support'] = __('No create from %s support.', $textDomain);2207 $this->translation['create_error'] = __('Error in creating %s image from source.', $textDomain);2208 $this->translation['source_invalid'] = __('Can\'t read image source. Not an image?.', $textDomain);2209 $this->translation['gd_missing'] = __('GD doesn\'t seem to be present.', $textDomain);2210 $this->translation['watermark_no_create_support'] = __('No create from %s support, can\'t read watermark.', $textDomain);2211 $this->translation['watermark_create_error'] = __('No %s read support, can\'t create watermark.', $textDomain);2212 $this->translation['watermark_invalid'] = __('Unknown image format, can\'t read watermark.', $textDomain);2213 $this->translation['file_create'] = __('No %s create support.', $textDomain);2214 $this->translation['no_conversion_type'] = __('No conversion type defined.', $textDomain);2215 $this->translation['copy_failed'] = __('Error copying file on the server. copy() failed.', $textDomain);2216 $this->translation['reading_failed'] = __('Error reading the file.', $textDomain);2171 $this->translation['file_error'] = __('File error. Please try again.', 'akfw'); 2172 $this->translation['local_file_missing'] = __('Local file doesn\'t exist.', 'akfw'); 2173 $this->translation['local_file_not_readable'] = __('Local file is not readable.', 'akfw'); 2174 $this->translation['uploaded_too_big_ini'] = __('File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini).', 'akfw'); 2175 $this->translation['uploaded_too_big_html'] = __('File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form).', 'akfw'); 2176 $this->translation['uploaded_partial'] = __('File upload error (the uploaded file was only partially uploaded).', 'akfw'); 2177 $this->translation['uploaded_missing'] = __('File upload error (no file was uploaded).', 'akfw'); 2178 $this->translation['uploaded_no_tmp_dir'] = __('File upload error (missing a temporary folder).', 'akfw'); 2179 $this->translation['uploaded_cant_write'] = __('File upload error (failed to write file to disk).', 'akfw'); 2180 $this->translation['uploaded_err_extension'] = __('File upload error (file upload stopped by extension).', 'akfw'); 2181 $this->translation['uploaded_unknown'] = __('File upload error (unknown error code).', 'akfw'); 2182 $this->translation['try_again'] = __('File upload error. Please try again.', 'akfw'); 2183 $this->translation['file_too_big'] = __('File too big.', 'akfw'); 2184 $this->translation['no_mime'] = __('MIME type can\'t be detected.', 'akfw'); 2185 $this->translation['incorrect_file'] = __('Incorrect type of file.', 'akfw'); 2186 $this->translation['image_too_wide'] = __('Image too wide.', 'akfw'); 2187 $this->translation['image_too_narrow'] = __('Image too narrow.', 'akfw'); 2188 $this->translation['image_too_high'] = __('Image too high.', 'akfw'); 2189 $this->translation['image_too_short'] = __('Image too short.', 'akfw'); 2190 $this->translation['ratio_too_high'] = __('Image ratio too high (image too wide).', 'akfw'); 2191 $this->translation['ratio_too_low'] = __('Image ratio too low (image too high).', 'akfw'); 2192 $this->translation['too_many_pixels'] = __('Image has too many pixels.', 'akfw'); 2193 $this->translation['not_enough_pixels'] = __('Image has not enough pixels.', 'akfw'); 2194 $this->translation['file_not_uploaded'] = __('File not uploaded. Can\'t carry on a process.', 'akfw'); 2195 $this->translation['already_exists'] = __('%s already exists. Please change the file name.', 'akfw'); 2196 $this->translation['temp_file_missing'] = __('No correct temp source file. Can\'t carry on a process.', 'akfw'); 2197 $this->translation['source_missing'] = __('No correct uploaded source file. Can\'t carry on a process.', 'akfw'); 2198 $this->translation['destination_dir'] = __('Destination directory can\'t be created. Can\'t carry on a process.', 'akfw'); 2199 $this->translation['destination_dir_missing'] = __('Destination directory doesn\'t exist. Can\'t carry on a process.', 'akfw'); 2200 $this->translation['destination_path_not_dir'] = __('Destination path is not a directory. Can\'t carry on a process.', 'akfw'); 2201 $this->translation['destination_dir_write'] = __('Destination directory can\'t be made writeable. Can\'t carry on a process.', 'akfw'); 2202 $this->translation['destination_path_write'] = __('Destination path is not a writeable. Can\'t carry on a process.', 'akfw'); 2203 $this->translation['temp_file'] = __('Can\'t create the temporary file. Can\'t carry on a process.', 'akfw'); 2204 $this->translation['source_not_readable'] = __('Source file is not readable. Can\'t carry on a process.', 'akfw'); 2205 $this->translation['no_create_support'] = __('No create from %s support.', 'akfw'); 2206 $this->translation['create_error'] = __('Error in creating %s image from source.', 'akfw'); 2207 $this->translation['source_invalid'] = __('Can\'t read image source. Not an image?.', 'akfw'); 2208 $this->translation['gd_missing'] = __('GD doesn\'t seem to be present.', 'akfw'); 2209 $this->translation['watermark_no_create_support'] = __('No create from %s support, can\'t read watermark.', 'akfw'); 2210 $this->translation['watermark_create_error'] = __('No %s read support, can\'t create watermark.', 'akfw'); 2211 $this->translation['watermark_invalid'] = __('Unknown image format, can\'t read watermark.', 'akfw'); 2212 $this->translation['file_create'] = __('No %s create support.', 'akfw'); 2213 $this->translation['no_conversion_type'] = __('No conversion type defined.', 'akfw'); 2214 $this->translation['copy_failed'] = __('Error copying file on the server. copy() failed.', 'akfw'); 2215 $this->translation['reading_failed'] = __('Error reading the file.', 'akfw'); 2217 2216 2218 2217 // determines the supported MIME types, and matching image format -
capsman/trunk/includes/manager.php
r198515 r199485 164 164 function filterEditRoles ( $roles ) 165 165 { 166 $this->generate UserNames();166 $this->generateNames(); 167 167 $valid = array_keys($this->roles); 168 168 … … 194 194 } 195 195 196 $this->generate UserNames();196 $this->generateNames(); 197 197 $valid = array_keys($this->roles); 198 198 … … 480 480 /** 481 481 * Generates an array with the user capability names. 482 * A user cannot manage more capabilities that has himself (Except for administrators).483 * Only loads roles and capabilities that current user can manage.484 * The key is the capability and the value the created screen name.485 *486 * @uses self::_capNamesCB()487 * @return void488 */489 private function generateUserNames ()490 {491 global $user_ID;492 $user = new WP_User($user_ID);493 $this->max_level = ak_caps2level($user->allcaps);494 495 $keys = array_keys($user->allcaps);496 $names = array_map(array($this, '_capNamesCB'), $keys);497 $this->capabilities = array_combine($keys, $names);498 499 $roles = ak_get_roles(true);500 unset($roles['administrator']);501 502 foreach ( $user->roles as $role ) { // Unset the roles from capability list.503 unset ( $this->capabilities[$role] );504 unset ( $roles[$role]); // User cannot manage his roles.505 }506 asort($this->capabilities);507 508 foreach ( array_keys($roles) as $role ) {509 $r = get_role($role);510 $level = ak_caps2level($r->capabilities);511 512 if ( $level > $this->max_level ) {513 unset($roles[$role]);514 }515 }516 517 $this->roles = $roles;518 }519 520 /**521 * Generates an array with the user capability names.522 482 * If user has 'administrator' role, system roles are generated. 523 483 * The key is the capability and the value the created screen name. … … 532 492 $this->generateSysNames(); 533 493 } else { 534 $this->generateUserNames(); 494 global $user_ID; 495 $user = new WP_User($user_ID); 496 $this->max_level = ak_caps2level($user->allcaps); 497 498 $keys = array_keys($user->allcaps); 499 $names = array_map(array($this, '_capNamesCB'), $keys); 500 $this->capabilities = array_combine($keys, $names); 501 502 $roles = ak_get_roles(true); 503 unset($roles['administrator']); 504 505 foreach ( $user->roles as $role ) { // Unset the roles from capability list. 506 unset ( $this->capabilities[$role] ); 507 unset ( $roles[$role]); // User cannot manage his roles. 508 } 509 asort($this->capabilities); 510 511 foreach ( array_keys($roles) as $role ) { 512 $r = get_role($role); 513 $level = ak_caps2level($r->capabilities); 514 515 if ( $level > $this->max_level ) { 516 unset($roles[$role]); 517 } 518 } 519 520 $this->roles = $roles; 535 521 } 536 522 } -
capsman/trunk/lang/capsman-by_BY.po
r198515 r199485 3 3 "Project-Id-Version: Capability Manager\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2010-01-2 6 22:12+0100\n"5 "POT-Creation-Date: 2010-01-29 15:03+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: antsar.info <iliamrv@ya.ru>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 17 17 #: ../capsman.php:53 18 #: ../framework/classes/abstract/plugin.php:21019 #: ../framework/classes/abstract/plugin.php:22920 18 msgid "Warning:" 21 19 msgstr "Папярэджанне:" … … 30 28 msgid "%s is required for this plugin." 31 29 msgstr "%s неабходзен лоя ўбудовы." 32 33 #: ../framework/classes/abstract/module.php:50734 msgid "Option blocked by administrator."35 msgstr ""36 37 #: ../framework/classes/abstract/plugin.php:21138 #, php-format39 msgid "The active plugin %s is not compatible with your WordPress version."40 msgstr "Актыўная ўбудова %s не сумяшчальны з бягучай версіяй WordPress."41 42 #: ../framework/classes/abstract/plugin.php:21343 #, php-format44 msgid "WordPress %s is required to run this plugin."45 msgstr "WordPress %s неабходзен для запуску гэтай убудовы."46 47 #: ../framework/classes/abstract/plugin.php:23048 msgid "Standard sidebar functions are not present."49 msgstr "Стандартныя функцыі бакавой панэлі не прадстаўлены."50 51 #: ../framework/classes/abstract/plugin.php:23152 #, php-format53 msgid "It is required to use the standard sidebar to run %s"54 msgstr "Гэта неабходна для выкарыстання стандартнай бакавой панэлі для запуску %s"55 56 #: ../framework/lib/formating.php:5257 msgid "Settings saved."58 msgstr "Налады захаваны."59 60 #: ../framework/lib/formating.php:16161 msgid "Just Now"62 msgstr ""63 64 #: ../framework/lib/formating.php:16465 msgid "1 minute ago"66 msgstr ""67 68 #: ../framework/lib/formating.php:16769 msgid "1 hour ago"70 msgstr ""71 72 #: ../framework/lib/formating.php:17173 #, php-format74 msgid "Today at %s"75 msgstr ""76 77 #: ../framework/lib/formating.php:17178 #, php-format79 msgid "Yesterday at %s"80 msgstr ""81 82 #: ../framework/lib/themes.php:16083 msgid "Plugin Homepage"84 msgstr "Хатняя старонка ўбудовы"85 86 #: ../framework/lib/themes.php:16487 #, fuzzy88 msgid "Theme Homepage"89 msgstr "Хатняя старонка аўтара"90 91 #: ../framework/lib/themes.php:16892 #, fuzzy93 msgid "Documentation"94 msgstr "Няма дзеянняў"95 96 #: ../framework/lib/themes.php:17297 msgid "Support Forum"98 msgstr "Форум падтрымкі"99 100 #: ../framework/lib/themes.php:176101 msgid "Author Homepage"102 msgstr "Хатняя старонка аўтара"103 104 #: ../framework/lib/themes.php:180105 msgid "Donate to project"106 msgstr ""107 108 #: ../framework/vendor/upload/class.upload.php:2172109 msgid "File error. Please try again."110 msgstr ""111 112 #: ../framework/vendor/upload/class.upload.php:2173113 msgid "Local file doesn't exist."114 msgstr ""115 116 #: ../framework/vendor/upload/class.upload.php:2174117 msgid "Local file is not readable."118 msgstr ""119 120 #: ../framework/vendor/upload/class.upload.php:2175121 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."122 msgstr ""123 124 #: ../framework/vendor/upload/class.upload.php:2176125 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."126 msgstr ""127 128 #: ../framework/vendor/upload/class.upload.php:2177129 msgid "File upload error (the uploaded file was only partially uploaded)."130 msgstr ""131 132 #: ../framework/vendor/upload/class.upload.php:2178133 msgid "File upload error (no file was uploaded)."134 msgstr ""135 136 #: ../framework/vendor/upload/class.upload.php:2179137 msgid "File upload error (missing a temporary folder)."138 msgstr ""139 140 #: ../framework/vendor/upload/class.upload.php:2180141 msgid "File upload error (failed to write file to disk)."142 msgstr ""143 144 #: ../framework/vendor/upload/class.upload.php:2181145 msgid "File upload error (file upload stopped by extension)."146 msgstr ""147 148 #: ../framework/vendor/upload/class.upload.php:2182149 msgid "File upload error (unknown error code)."150 msgstr ""151 152 #: ../framework/vendor/upload/class.upload.php:2183153 msgid "File upload error. Please try again."154 msgstr ""155 156 #: ../framework/vendor/upload/class.upload.php:2184157 msgid "File too big."158 msgstr ""159 160 #: ../framework/vendor/upload/class.upload.php:2185161 msgid "MIME type can't be detected."162 msgstr ""163 164 #: ../framework/vendor/upload/class.upload.php:2186165 #, fuzzy166 msgid "Incorrect type of file."167 msgstr "Некарэктнае імя магчымасці."168 169 #: ../framework/vendor/upload/class.upload.php:2187170 msgid "Image too wide."171 msgstr ""172 173 #: ../framework/vendor/upload/class.upload.php:2188174 msgid "Image too narrow."175 msgstr ""176 177 #: ../framework/vendor/upload/class.upload.php:2189178 msgid "Image too high."179 msgstr ""180 181 #: ../framework/vendor/upload/class.upload.php:2190182 msgid "Image too short."183 msgstr ""184 185 #: ../framework/vendor/upload/class.upload.php:2191186 msgid "Image ratio too high (image too wide)."187 msgstr ""188 189 #: ../framework/vendor/upload/class.upload.php:2192190 msgid "Image ratio too low (image too high)."191 msgstr ""192 193 #: ../framework/vendor/upload/class.upload.php:2193194 msgid "Image has too many pixels."195 msgstr ""196 197 #: ../framework/vendor/upload/class.upload.php:2194198 msgid "Image has not enough pixels."199 msgstr ""200 201 #: ../framework/vendor/upload/class.upload.php:2195202 msgid "File not uploaded. Can't carry on a process."203 msgstr ""204 205 #: ../framework/vendor/upload/class.upload.php:2196206 #, php-format207 msgid "%s already exists. Please change the file name."208 msgstr ""209 210 #: ../framework/vendor/upload/class.upload.php:2197211 msgid "No correct temp source file. Can't carry on a process."212 msgstr ""213 214 #: ../framework/vendor/upload/class.upload.php:2198215 msgid "No correct uploaded source file. Can't carry on a process."216 msgstr ""217 218 #: ../framework/vendor/upload/class.upload.php:2199219 msgid "Destination directory can't be created. Can't carry on a process."220 msgstr ""221 222 #: ../framework/vendor/upload/class.upload.php:2200223 msgid "Destination directory doesn't exist. Can't carry on a process."224 msgstr ""225 226 #: ../framework/vendor/upload/class.upload.php:2201227 msgid "Destination path is not a directory. Can't carry on a process."228 msgstr ""229 230 #: ../framework/vendor/upload/class.upload.php:2202231 msgid "Destination directory can't be made writeable. Can't carry on a process."232 msgstr ""233 234 #: ../framework/vendor/upload/class.upload.php:2203235 msgid "Destination path is not a writeable. Can't carry on a process."236 msgstr ""237 238 #: ../framework/vendor/upload/class.upload.php:2204239 msgid "Can't create the temporary file. Can't carry on a process."240 msgstr ""241 242 #: ../framework/vendor/upload/class.upload.php:2205243 msgid "Source file is not readable. Can't carry on a process."244 msgstr ""245 246 #: ../framework/vendor/upload/class.upload.php:2206247 #, php-format248 msgid "No create from %s support."249 msgstr ""250 251 #: ../framework/vendor/upload/class.upload.php:2207252 #, fuzzy, php-format253 msgid "Error in creating %s image from source."254 msgstr "Памылка: Новая роля не створана."255 256 #: ../framework/vendor/upload/class.upload.php:2208257 msgid "Can't read image source. Not an image?."258 msgstr ""259 260 #: ../framework/vendor/upload/class.upload.php:2209261 msgid "GD doesn't seem to be present."262 msgstr ""263 264 #: ../framework/vendor/upload/class.upload.php:2210265 #, php-format266 msgid "No create from %s support, can't read watermark."267 msgstr ""268 269 #: ../framework/vendor/upload/class.upload.php:2211270 #, php-format271 msgid "No %s read support, can't create watermark."272 msgstr ""273 274 #: ../framework/vendor/upload/class.upload.php:2212275 msgid "Unknown image format, can't read watermark."276 msgstr ""277 278 #: ../framework/vendor/upload/class.upload.php:2213279 #, php-format280 msgid "No %s create support."281 msgstr ""282 283 #: ../framework/vendor/upload/class.upload.php:2214284 msgid "No conversion type defined."285 msgstr ""286 287 #: ../framework/vendor/upload/class.upload.php:2215288 msgid "Error copying file on the server. copy() failed."289 msgstr ""290 291 #: ../framework/vendor/upload/class.upload.php:2216292 #, fuzzy293 msgid "Error reading the file."294 msgstr "Памылка: Новая роля не створана."295 30 296 31 #: ../includes/admin.php:36 … … 364 99 msgid "Add to role" 365 100 msgstr "Дадаць ролю" 366 367 #: ../includes/author-widget.php:38368 msgid "Help donating"369 msgstr "Дапамога праз ахвяраванні"370 101 371 102 #: ../includes/backup.php:33 … … 491 222 492 223 #: ../includes/manager.php:405 493 #, fuzzy,php-format224 #, php-format 494 225 msgid "Role has been deleted. %1$d users moved to default role %2$s." 495 msgstr "Роля %1$s была выдалена. %2$d карыстачоў перамешчана ў стандартную ролю %3$s."226 msgstr "Роля была выдалена. %1$d карыстачоў перамешчана ў стандартную ролю %2$s." 496 227 497 228 #: ../includes/manager.php:419 … … 503 234 msgstr "Ролі і магчымасці скінуты да стандартных для WordPress " 504 235 505 #: ../includes/manager.php:6 20236 #: ../includes/manager.php:606 506 237 msgid "You cannot remove Manage Capabilities from Administrators" 507 238 msgstr "Вы не можаце выдаліць Manage Capabilities праз адміністратараў ." 508 239 240 #~ msgid "The active plugin %s is not compatible with your WordPress version." 241 #~ msgstr "Актыўная ўбудова %s не сумяшчальны з бягучай версіяй WordPress." 242 #~ msgid "WordPress %s is required to run this plugin." 243 #~ msgstr "WordPress %s неабходзен для запуску гэтай убудовы." 244 #~ msgid "Standard sidebar functions are not present." 245 #~ msgstr "Стандартныя функцыі бакавой панэлі не прадстаўлены." 246 #~ msgid "It is required to use the standard sidebar to run %s" 247 #~ msgstr "" 248 #~ "Гэта неабходна для выкарыстання стандартнай бакавой панэлі для запуску %s" 249 #~ msgid "Settings saved." 250 #~ msgstr "Налады захаваны." 251 #~ msgid "Plugin Homepage" 252 #~ msgstr "Хатняя старонка ўбудовы" 253 254 #, fuzzy 255 #~ msgid "Theme Homepage" 256 #~ msgstr "Хатняя старонка аўтара" 257 258 #, fuzzy 259 #~ msgid "Documentation" 260 #~ msgstr "Няма дзеянняў" 261 #~ msgid "Support Forum" 262 #~ msgstr "Форум падтрымкі" 263 #~ msgid "Author Homepage" 264 #~ msgstr "Хатняя старонка аўтара" 265 266 #, fuzzy 267 #~ msgid "Incorrect type of file." 268 #~ msgstr "Некарэктнае імя магчымасці." 269 270 #, fuzzy 271 #~ msgid "Error in creating %s image from source." 272 #~ msgstr "Памылка: Новая роля не створана." 273 274 #, fuzzy 275 #~ msgid "Error reading the file." 276 #~ msgstr "Памылка: Новая роля не створана." 277 #~ msgid "Help donating" 278 #~ msgstr "Дапамога праз ахвяраванні" 509 279 #~ msgid "Managing %s" 510 280 #~ msgstr "Administrando %s" -
capsman/trunk/lang/capsman-ca.po
r198515 r199485 3 3 "Project-Id-Version: Capability Manager\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2010-01-2 6 22:12+0100\n"5 "POT-Creation-Date: 2010-01-29 15:03+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n" 9 9 "MIME-Version: 1.0\n" … … 15 15 16 16 #: ../capsman.php:53 17 #: ../framework/classes/abstract/plugin.php:21018 #: ../framework/classes/abstract/plugin.php:22919 17 msgid "Warning:" 20 18 msgstr "Atenció:" … … 29 27 msgid "%s is required for this plugin." 30 28 msgstr "Es requereix %s per aquesta extensió." 31 32 #: ../framework/classes/abstract/module.php:50733 msgid "Option blocked by administrator."34 msgstr "Opció desactivada per l'administrador."35 36 #: ../framework/classes/abstract/plugin.php:21137 #, php-format38 msgid "The active plugin %s is not compatible with your WordPress version."39 msgstr "L'extensió activa %s no és compatible amb la teva versió de WordPress."40 41 #: ../framework/classes/abstract/plugin.php:21342 #, php-format43 msgid "WordPress %s is required to run this plugin."44 msgstr "Aquesta extensió requereix com a mínim WordPress %s."45 46 #: ../framework/classes/abstract/plugin.php:23047 msgid "Standard sidebar functions are not present."48 msgstr "Les funcions de la barra lateral estàndard no es troben presents."49 50 #: ../framework/classes/abstract/plugin.php:23151 #, php-format52 msgid "It is required to use the standard sidebar to run %s"53 msgstr "És necessari utilitzar la barra lateral estàndard per executar %s"54 55 #: ../framework/lib/formating.php:5256 msgid "Settings saved."57 msgstr "Opcions desades."58 59 #: ../framework/lib/formating.php:16160 msgid "Just Now"61 msgstr "Ara mateix"62 63 #: ../framework/lib/formating.php:16464 msgid "1 minute ago"65 msgstr "Fa 1 minut"66 67 #: ../framework/lib/formating.php:16768 msgid "1 hour ago"69 msgstr "Fa 1 hora"70 71 #: ../framework/lib/formating.php:17172 #, php-format73 msgid "Today at %s"74 msgstr "Avui a les %s"75 76 #: ../framework/lib/formating.php:17177 #, php-format78 msgid "Yesterday at %s"79 msgstr "Ahir a les %s"80 81 #: ../framework/lib/themes.php:16082 msgid "Plugin Homepage"83 msgstr "Pàgina web de l'extensió"84 85 #: ../framework/lib/themes.php:16486 msgid "Theme Homepage"87 msgstr "Pàgina web del tema"88 89 #: ../framework/lib/themes.php:16890 msgid "Documentation"91 msgstr "Documentació"92 93 #: ../framework/lib/themes.php:17294 msgid "Support Forum"95 msgstr "Forum d'Ajuda"96 97 #: ../framework/lib/themes.php:17698 msgid "Author Homepage"99 msgstr "Lloc web de l'autor"100 101 #: ../framework/lib/themes.php:180102 msgid "Donate to project"103 msgstr "Fes un donatiu"104 105 #: ../framework/vendor/upload/class.upload.php:2172106 msgid "File error. Please try again."107 msgstr "Error de fitxer. Si us plau, torneu-ho a provar."108 109 #: ../framework/vendor/upload/class.upload.php:2173110 msgid "Local file doesn't exist."111 msgstr "El fitxer local no existeix."112 113 #: ../framework/vendor/upload/class.upload.php:2174114 msgid "Local file is not readable."115 msgstr "El fitxer local no es pot llegir."116 117 #: ../framework/vendor/upload/class.upload.php:2175118 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."119 msgstr "Error de pujada de fitxer (El fitxer pujat excedeix de la directiva upload_max_filesize de php.ini)."120 121 #: ../framework/vendor/upload/class.upload.php:2176122 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."123 msgstr "Error pujant el fitxer (el fitxer pujat excedeix la directiva MAX_FILE_SIZE que s'ha especificat al formulari HTML)."124 125 #: ../framework/vendor/upload/class.upload.php:2177126 msgid "File upload error (the uploaded file was only partially uploaded)."127 msgstr "Error pujant el fitxer (El fitxer només s'ha rebut parcialment)."128 129 #: ../framework/vendor/upload/class.upload.php:2178130 msgid "File upload error (no file was uploaded)."131 msgstr "Error pujant el fitxer (No s'ha rebut cap fitxer)."132 133 #: ../framework/vendor/upload/class.upload.php:2179134 msgid "File upload error (missing a temporary folder)."135 msgstr "Error pujant el fitxer (manca la carpeta temporal)."136 137 #: ../framework/vendor/upload/class.upload.php:2180138 msgid "File upload error (failed to write file to disk)."139 msgstr "Error pujant el fitxer (No s'ha pogut escriure al disc)."140 141 #: ../framework/vendor/upload/class.upload.php:2181142 msgid "File upload error (file upload stopped by extension)."143 msgstr "Error pujant el fitxer (El fitxer s'ha bloquejat per extensió)."144 145 #: ../framework/vendor/upload/class.upload.php:2182146 msgid "File upload error (unknown error code)."147 msgstr "Error pujant el fitxer (Codi d'error desconegut)."148 149 #: ../framework/vendor/upload/class.upload.php:2183150 msgid "File upload error. Please try again."151 msgstr "S'ha produït un error pujant el fitxer. Torneu-ho a provar d'aquí una estona."152 153 #: ../framework/vendor/upload/class.upload.php:2184154 msgid "File too big."155 msgstr "Fitxer massa gran."156 157 #: ../framework/vendor/upload/class.upload.php:2185158 msgid "MIME type can't be detected."159 msgstr "No es pot detectar el tipus MIME."160 161 #: ../framework/vendor/upload/class.upload.php:2186162 msgid "Incorrect type of file."163 msgstr "Tipus d'arxiu invàlid"164 165 #: ../framework/vendor/upload/class.upload.php:2187166 msgid "Image too wide."167 msgstr "Imatge massa ample."168 169 #: ../framework/vendor/upload/class.upload.php:2188170 msgid "Image too narrow."171 msgstr "Imatge massa estreta."172 173 #: ../framework/vendor/upload/class.upload.php:2189174 msgid "Image too high."175 msgstr "Imatge massa alta."176 177 #: ../framework/vendor/upload/class.upload.php:2190178 msgid "Image too short."179 msgstr "Imatge massa baixa."180 181 #: ../framework/vendor/upload/class.upload.php:2191182 msgid "Image ratio too high (image too wide)."183 msgstr "Ratio d'imatge massa gran (Imatge massa ample)."184 185 #: ../framework/vendor/upload/class.upload.php:2192186 msgid "Image ratio too low (image too high)."187 msgstr "Ratio d'imatge massa baix (Imatge massa alta)."188 189 #: ../framework/vendor/upload/class.upload.php:2193190 msgid "Image has too many pixels."191 msgstr "La imatge té massa píxels."192 193 #: ../framework/vendor/upload/class.upload.php:2194194 msgid "Image has not enough pixels."195 msgstr "La imatge no té prou píxels."196 197 #: ../framework/vendor/upload/class.upload.php:2195198 msgid "File not uploaded. Can't carry on a process."199 msgstr "No s'ha pujat el fitxer. No s'ha pogut executar el procés."200 201 #: ../framework/vendor/upload/class.upload.php:2196202 #, php-format203 msgid "%s already exists. Please change the file name."204 msgstr "El fitxer %s ja existeix. Si en plau canvieu-ne el nom."205 206 #: ../framework/vendor/upload/class.upload.php:2197207 msgid "No correct temp source file. Can't carry on a process."208 msgstr "El fitxer temporal no es correcte. No es pot executar el procés."209 210 #: ../framework/vendor/upload/class.upload.php:2198211 msgid "No correct uploaded source file. Can't carry on a process."212 msgstr "El fitxer original no es correcte. No es pot executar el procés."213 214 #: ../framework/vendor/upload/class.upload.php:2199215 msgid "Destination directory can't be created. Can't carry on a process."216 msgstr "No es pot crear el directori de destí. No es pot executar el procés."217 218 #: ../framework/vendor/upload/class.upload.php:2200219 msgid "Destination directory doesn't exist. Can't carry on a process."220 msgstr "El directori de destí no existeix. No es pot executar el procés."221 222 #: ../framework/vendor/upload/class.upload.php:2201223 msgid "Destination path is not a directory. Can't carry on a process."224 msgstr "La ruta de destí no és un directori. No es pot executar el procés."225 226 #: ../framework/vendor/upload/class.upload.php:2202227 msgid "Destination directory can't be made writeable. Can't carry on a process."228 msgstr "No es pot canviar a 'escriure' els drets del directori de destí. No es pot executar el procés."229 230 #: ../framework/vendor/upload/class.upload.php:2203231 msgid "Destination path is not a writeable. Can't carry on a process."232 msgstr "No es pot escriure en el directori de destí. No es pot executar el procés."233 234 #: ../framework/vendor/upload/class.upload.php:2204235 msgid "Can't create the temporary file. Can't carry on a process."236 msgstr "No es pot crear un fitxer temporal. No es pot executar el procés."237 238 #: ../framework/vendor/upload/class.upload.php:2205239 msgid "Source file is not readable. Can't carry on a process."240 msgstr "El fitxer d'origen no es pot llegir. No es pot executar el procés."241 242 #: ../framework/vendor/upload/class.upload.php:2206243 #, php-format244 msgid "No create from %s support."245 msgstr "No hi ha funcions per crear des de %s."246 247 #: ../framework/vendor/upload/class.upload.php:2207248 #, php-format249 msgid "Error in creating %s image from source."250 msgstr "Error creant la imatge %s des de l'original."251 252 #: ../framework/vendor/upload/class.upload.php:2208253 msgid "Can't read image source. Not an image?."254 msgstr "No es pot llegir la imatge original. És una imatge?"255 256 #: ../framework/vendor/upload/class.upload.php:2209257 msgid "GD doesn't seem to be present."258 msgstr "No sembla que la llibreria GD estigui present."259 260 #: ../framework/vendor/upload/class.upload.php:2210261 #, php-format262 msgid "No create from %s support, can't read watermark."263 msgstr "No hi ha funcions per crear des de %s, no es pot llegir la marca a l'aigua."264 265 #: ../framework/vendor/upload/class.upload.php:2211266 #, php-format267 msgid "No %s read support, can't create watermark."268 msgstr "No hi ha funcions per llegir %s, no es pot crear la marca a l'aigua."269 270 #: ../framework/vendor/upload/class.upload.php:2212271 msgid "Unknown image format, can't read watermark."272 msgstr "Format d'imatge desconegut, no es pot llegir la marca a l'aigua."273 274 #: ../framework/vendor/upload/class.upload.php:2213275 #, php-format276 msgid "No %s create support."277 msgstr "No hi ha funcions per crear %s."278 279 #: ../framework/vendor/upload/class.upload.php:2214280 msgid "No conversion type defined."281 msgstr "No s'ha definit cap tipus de conversió."282 283 #: ../framework/vendor/upload/class.upload.php:2215284 msgid "Error copying file on the server. copy() failed."285 msgstr "Error copiant el fitxer al serivor. copy() ha fallat."286 287 #: ../framework/vendor/upload/class.upload.php:2216288 msgid "Error reading the file."289 msgstr "Error llegint el fitxer."290 29 291 30 #: ../includes/admin.php:36 … … 359 98 msgid "Add to role" 360 99 msgstr "Afegir al rol" 361 362 #: ../includes/author-widget.php:38363 msgid "Help donating"364 msgstr "Ajuda donant"365 100 366 101 #: ../includes/backup.php:33 … … 498 233 msgstr "S'han restaurat Rols i Competències als valors predeterminats de WordPress." 499 234 500 #: ../includes/manager.php:6 20235 #: ../includes/manager.php:606 501 236 msgid "You cannot remove Manage Capabilities from Administrators" 502 237 msgstr "No pots eliminar 'Manage Capabilities' dels administradors" 503 238 239 #~ msgid "Option blocked by administrator." 240 #~ msgstr "Opció desactivada per l'administrador." 241 #~ msgid "The active plugin %s is not compatible with your WordPress version." 242 #~ msgstr "" 243 #~ "L'extensió activa %s no és compatible amb la teva versió de WordPress." 244 #~ msgid "WordPress %s is required to run this plugin." 245 #~ msgstr "Aquesta extensió requereix com a mínim WordPress %s." 246 #~ msgid "Standard sidebar functions are not present." 247 #~ msgstr "Les funcions de la barra lateral estàndard no es troben presents." 248 #~ msgid "It is required to use the standard sidebar to run %s" 249 #~ msgstr "És necessari utilitzar la barra lateral estàndard per executar %s" 250 #~ msgid "Settings saved." 251 #~ msgstr "Opcions desades." 252 #~ msgid "Just Now" 253 #~ msgstr "Ara mateix" 254 #~ msgid "1 minute ago" 255 #~ msgstr "Fa 1 minut" 256 #~ msgid "1 hour ago" 257 #~ msgstr "Fa 1 hora" 258 #~ msgid "Today at %s" 259 #~ msgstr "Avui a les %s" 260 #~ msgid "Yesterday at %s" 261 #~ msgstr "Ahir a les %s" 262 #~ msgid "Plugin Homepage" 263 #~ msgstr "Pàgina web de l'extensió" 264 #~ msgid "Theme Homepage" 265 #~ msgstr "Pàgina web del tema" 266 #~ msgid "Documentation" 267 #~ msgstr "Documentació" 268 #~ msgid "Support Forum" 269 #~ msgstr "Forum d'Ajuda" 270 #~ msgid "Author Homepage" 271 #~ msgstr "Lloc web de l'autor" 272 #~ msgid "Donate to project" 273 #~ msgstr "Fes un donatiu" 274 #~ msgid "File error. Please try again." 275 #~ msgstr "Error de fitxer. Si us plau, torneu-ho a provar." 276 #~ msgid "Local file doesn't exist." 277 #~ msgstr "El fitxer local no existeix." 278 #~ msgid "Local file is not readable." 279 #~ msgstr "El fitxer local no es pot llegir." 280 #~ msgid "" 281 #~ "File upload error (the uploaded file exceeds the upload_max_filesize " 282 #~ "directive in php.ini)." 283 #~ msgstr "" 284 #~ "Error de pujada de fitxer (El fitxer pujat excedeix de la directiva " 285 #~ "upload_max_filesize de php.ini)." 286 #~ msgid "" 287 #~ "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive " 288 #~ "that was specified in the html form)." 289 #~ msgstr "" 290 #~ "Error pujant el fitxer (el fitxer pujat excedeix la directiva " 291 #~ "MAX_FILE_SIZE que s'ha especificat al formulari HTML)." 292 #~ msgid "File upload error (the uploaded file was only partially uploaded)." 293 #~ msgstr "Error pujant el fitxer (El fitxer només s'ha rebut parcialment)." 294 #~ msgid "File upload error (no file was uploaded)." 295 #~ msgstr "Error pujant el fitxer (No s'ha rebut cap fitxer)." 296 #~ msgid "File upload error (missing a temporary folder)." 297 #~ msgstr "Error pujant el fitxer (manca la carpeta temporal)." 298 #~ msgid "File upload error (failed to write file to disk)." 299 #~ msgstr "Error pujant el fitxer (No s'ha pogut escriure al disc)." 300 #~ msgid "File upload error (file upload stopped by extension)." 301 #~ msgstr "Error pujant el fitxer (El fitxer s'ha bloquejat per extensió)." 302 #~ msgid "File upload error (unknown error code)." 303 #~ msgstr "Error pujant el fitxer (Codi d'error desconegut)." 304 #~ msgid "File upload error. Please try again." 305 #~ msgstr "" 306 #~ "S'ha produït un error pujant el fitxer. Torneu-ho a provar d'aquí una " 307 #~ "estona." 308 #~ msgid "File too big." 309 #~ msgstr "Fitxer massa gran." 310 #~ msgid "MIME type can't be detected." 311 #~ msgstr "No es pot detectar el tipus MIME." 312 #~ msgid "Incorrect type of file." 313 #~ msgstr "Tipus d'arxiu invàlid" 314 #~ msgid "Image too wide." 315 #~ msgstr "Imatge massa ample." 316 #~ msgid "Image too narrow." 317 #~ msgstr "Imatge massa estreta." 318 #~ msgid "Image too high." 319 #~ msgstr "Imatge massa alta." 320 #~ msgid "Image too short." 321 #~ msgstr "Imatge massa baixa." 322 #~ msgid "Image ratio too high (image too wide)." 323 #~ msgstr "Ratio d'imatge massa gran (Imatge massa ample)." 324 #~ msgid "Image ratio too low (image too high)." 325 #~ msgstr "Ratio d'imatge massa baix (Imatge massa alta)." 326 #~ msgid "Image has too many pixels." 327 #~ msgstr "La imatge té massa píxels." 328 #~ msgid "Image has not enough pixels." 329 #~ msgstr "La imatge no té prou píxels." 330 #~ msgid "File not uploaded. Can't carry on a process." 331 #~ msgstr "No s'ha pujat el fitxer. No s'ha pogut executar el procés." 332 #~ msgid "%s already exists. Please change the file name." 333 #~ msgstr "El fitxer %s ja existeix. Si en plau canvieu-ne el nom." 334 #~ msgid "No correct temp source file. Can't carry on a process." 335 #~ msgstr "El fitxer temporal no es correcte. No es pot executar el procés." 336 #~ msgid "No correct uploaded source file. Can't carry on a process." 337 #~ msgstr "El fitxer original no es correcte. No es pot executar el procés." 338 #~ msgid "Destination directory can't be created. Can't carry on a process." 339 #~ msgstr "" 340 #~ "No es pot crear el directori de destí. No es pot executar el procés." 341 #~ msgid "Destination directory doesn't exist. Can't carry on a process." 342 #~ msgstr "El directori de destí no existeix. No es pot executar el procés." 343 #~ msgid "Destination path is not a directory. Can't carry on a process." 344 #~ msgstr "La ruta de destí no és un directori. No es pot executar el procés." 345 #~ msgid "" 346 #~ "Destination directory can't be made writeable. Can't carry on a process." 347 #~ msgstr "" 348 #~ "No es pot canviar a 'escriure' els drets del directori de destí. No es " 349 #~ "pot executar el procés." 350 #~ msgid "Destination path is not a writeable. Can't carry on a process." 351 #~ msgstr "" 352 #~ "No es pot escriure en el directori de destí. No es pot executar el procés." 353 #~ msgid "Can't create the temporary file. Can't carry on a process." 354 #~ msgstr "No es pot crear un fitxer temporal. No es pot executar el procés." 355 #~ msgid "Source file is not readable. Can't carry on a process." 356 #~ msgstr "El fitxer d'origen no es pot llegir. No es pot executar el procés." 357 #~ msgid "No create from %s support." 358 #~ msgstr "No hi ha funcions per crear des de %s." 359 #~ msgid "Error in creating %s image from source." 360 #~ msgstr "Error creant la imatge %s des de l'original." 361 #~ msgid "Can't read image source. Not an image?." 362 #~ msgstr "No es pot llegir la imatge original. És una imatge?" 363 #~ msgid "GD doesn't seem to be present." 364 #~ msgstr "No sembla que la llibreria GD estigui present." 365 #~ msgid "No create from %s support, can't read watermark." 366 #~ msgstr "" 367 #~ "No hi ha funcions per crear des de %s, no es pot llegir la marca a " 368 #~ "l'aigua." 369 #~ msgid "No %s read support, can't create watermark." 370 #~ msgstr "" 371 #~ "No hi ha funcions per llegir %s, no es pot crear la marca a l'aigua." 372 #~ msgid "Unknown image format, can't read watermark." 373 #~ msgstr "Format d'imatge desconegut, no es pot llegir la marca a l'aigua." 374 #~ msgid "No %s create support." 375 #~ msgstr "No hi ha funcions per crear %s." 376 #~ msgid "No conversion type defined." 377 #~ msgstr "No s'ha definit cap tipus de conversió." 378 #~ msgid "Error copying file on the server. copy() failed." 379 #~ msgstr "Error copiant el fitxer al serivor. copy() ha fallat." 380 #~ msgid "Error reading the file." 381 #~ msgstr "Error llegint el fitxer." 382 #~ msgid "Help donating" 383 #~ msgstr "Ajuda donant" 384 -
capsman/trunk/lang/capsman-de_DE.po
r198515 r199485 3 3 "Project-Id-Version: Capability Manager\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2010-01-2 6 22:12+0100\n"5 "POT-Creation-Date: 2010-01-29 15:03+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Alkivia | http://alkivia.org <alkivia@jcanals.net>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 17 17 #: ../capsman.php:53 18 #: ../framework/classes/abstract/plugin.php:21019 #: ../framework/classes/abstract/plugin.php:22920 18 msgid "Warning:" 21 19 msgstr "WARNUNG:" … … 30 28 msgid "%s is required for this plugin." 31 29 msgstr "%s wird für dieses Plugin benötigt." 32 33 #: ../framework/classes/abstract/module.php:50734 msgid "Option blocked by administrator."35 msgstr ""36 37 #: ../framework/classes/abstract/plugin.php:21138 #, php-format39 msgid "The active plugin %s is not compatible with your WordPress version."40 msgstr "Das Plugin %s ist zu der aktuellen Wordpressversion nicht kompatibel!"41 42 #: ../framework/classes/abstract/plugin.php:21343 #, php-format44 msgid "WordPress %s is required to run this plugin."45 msgstr "WordPress %s wird für dieses Plugin benötigt."46 47 #: ../framework/classes/abstract/plugin.php:23048 msgid "Standard sidebar functions are not present."49 msgstr "Standard Sidebarfunktionen stehen nicht zur Verfügung!"50 51 #: ../framework/classes/abstract/plugin.php:23152 #, php-format53 msgid "It is required to use the standard sidebar to run %s"54 msgstr "Standard Sidebaroptionen werden benötigt, to run %s"55 56 #: ../framework/lib/formating.php:5257 msgid "Settings saved."58 msgstr "Einstellungen gespeichert"59 60 #: ../framework/lib/formating.php:16161 msgid "Just Now"62 msgstr ""63 64 #: ../framework/lib/formating.php:16465 msgid "1 minute ago"66 msgstr ""67 68 #: ../framework/lib/formating.php:16769 msgid "1 hour ago"70 msgstr ""71 72 #: ../framework/lib/formating.php:17173 #, php-format74 msgid "Today at %s"75 msgstr ""76 77 #: ../framework/lib/formating.php:17178 #, php-format79 msgid "Yesterday at %s"80 msgstr ""81 82 #: ../framework/lib/themes.php:16083 msgid "Plugin Homepage"84 msgstr "Plugin Homepage"85 86 #: ../framework/lib/themes.php:16487 #, fuzzy88 msgid "Theme Homepage"89 msgstr "Author Homepage"90 91 #: ../framework/lib/themes.php:16892 #, fuzzy93 msgid "Documentation"94 msgstr "ausführen"95 96 #: ../framework/lib/themes.php:17297 msgid "Support Forum"98 msgstr "Support Forum"99 100 #: ../framework/lib/themes.php:176101 msgid "Author Homepage"102 msgstr "Author Homepage"103 104 #: ../framework/lib/themes.php:180105 msgid "Donate to project"106 msgstr ""107 108 #: ../framework/vendor/upload/class.upload.php:2172109 msgid "File error. Please try again."110 msgstr ""111 112 #: ../framework/vendor/upload/class.upload.php:2173113 msgid "Local file doesn't exist."114 msgstr ""115 116 #: ../framework/vendor/upload/class.upload.php:2174117 msgid "Local file is not readable."118 msgstr ""119 120 #: ../framework/vendor/upload/class.upload.php:2175121 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."122 msgstr ""123 124 #: ../framework/vendor/upload/class.upload.php:2176125 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."126 msgstr ""127 128 #: ../framework/vendor/upload/class.upload.php:2177129 msgid "File upload error (the uploaded file was only partially uploaded)."130 msgstr ""131 132 #: ../framework/vendor/upload/class.upload.php:2178133 msgid "File upload error (no file was uploaded)."134 msgstr ""135 136 #: ../framework/vendor/upload/class.upload.php:2179137 msgid "File upload error (missing a temporary folder)."138 msgstr ""139 140 #: ../framework/vendor/upload/class.upload.php:2180141 msgid "File upload error (failed to write file to disk)."142 msgstr ""143 144 #: ../framework/vendor/upload/class.upload.php:2181145 msgid "File upload error (file upload stopped by extension)."146 msgstr ""147 148 #: ../framework/vendor/upload/class.upload.php:2182149 msgid "File upload error (unknown error code)."150 msgstr ""151 152 #: ../framework/vendor/upload/class.upload.php:2183153 msgid "File upload error. Please try again."154 msgstr ""155 156 #: ../framework/vendor/upload/class.upload.php:2184157 msgid "File too big."158 msgstr ""159 160 #: ../framework/vendor/upload/class.upload.php:2185161 msgid "MIME type can't be detected."162 msgstr ""163 164 #: ../framework/vendor/upload/class.upload.php:2186165 #, fuzzy166 msgid "Incorrect type of file."167 msgstr "Berechtigungsname ist nicht zulässig."168 169 #: ../framework/vendor/upload/class.upload.php:2187170 msgid "Image too wide."171 msgstr ""172 173 #: ../framework/vendor/upload/class.upload.php:2188174 msgid "Image too narrow."175 msgstr ""176 177 #: ../framework/vendor/upload/class.upload.php:2189178 msgid "Image too high."179 msgstr ""180 181 #: ../framework/vendor/upload/class.upload.php:2190182 msgid "Image too short."183 msgstr ""184 185 #: ../framework/vendor/upload/class.upload.php:2191186 msgid "Image ratio too high (image too wide)."187 msgstr ""188 189 #: ../framework/vendor/upload/class.upload.php:2192190 msgid "Image ratio too low (image too high)."191 msgstr ""192 193 #: ../framework/vendor/upload/class.upload.php:2193194 msgid "Image has too many pixels."195 msgstr ""196 197 #: ../framework/vendor/upload/class.upload.php:2194198 msgid "Image has not enough pixels."199 msgstr ""200 201 #: ../framework/vendor/upload/class.upload.php:2195202 msgid "File not uploaded. Can't carry on a process."203 msgstr ""204 205 #: ../framework/vendor/upload/class.upload.php:2196206 #, php-format207 msgid "%s already exists. Please change the file name."208 msgstr ""209 210 #: ../framework/vendor/upload/class.upload.php:2197211 msgid "No correct temp source file. Can't carry on a process."212 msgstr ""213 214 #: ../framework/vendor/upload/class.upload.php:2198215 msgid "No correct uploaded source file. Can't carry on a process."216 msgstr ""217 218 #: ../framework/vendor/upload/class.upload.php:2199219 msgid "Destination directory can't be created. Can't carry on a process."220 msgstr ""221 222 #: ../framework/vendor/upload/class.upload.php:2200223 msgid "Destination directory doesn't exist. Can't carry on a process."224 msgstr ""225 226 #: ../framework/vendor/upload/class.upload.php:2201227 msgid "Destination path is not a directory. Can't carry on a process."228 msgstr ""229 230 #: ../framework/vendor/upload/class.upload.php:2202231 msgid "Destination directory can't be made writeable. Can't carry on a process."232 msgstr ""233 234 #: ../framework/vendor/upload/class.upload.php:2203235 msgid "Destination path is not a writeable. Can't carry on a process."236 msgstr ""237 238 #: ../framework/vendor/upload/class.upload.php:2204239 msgid "Can't create the temporary file. Can't carry on a process."240 msgstr ""241 242 #: ../framework/vendor/upload/class.upload.php:2205243 msgid "Source file is not readable. Can't carry on a process."244 msgstr ""245 246 #: ../framework/vendor/upload/class.upload.php:2206247 #, php-format248 msgid "No create from %s support."249 msgstr ""250 251 #: ../framework/vendor/upload/class.upload.php:2207252 #, fuzzy, php-format253 msgid "Error in creating %s image from source."254 msgstr "FEHLER: Rolle konnte nicht angelegt werden."255 256 #: ../framework/vendor/upload/class.upload.php:2208257 msgid "Can't read image source. Not an image?."258 msgstr ""259 260 #: ../framework/vendor/upload/class.upload.php:2209261 msgid "GD doesn't seem to be present."262 msgstr ""263 264 #: ../framework/vendor/upload/class.upload.php:2210265 #, php-format266 msgid "No create from %s support, can't read watermark."267 msgstr ""268 269 #: ../framework/vendor/upload/class.upload.php:2211270 #, php-format271 msgid "No %s read support, can't create watermark."272 msgstr ""273 274 #: ../framework/vendor/upload/class.upload.php:2212275 msgid "Unknown image format, can't read watermark."276 msgstr ""277 278 #: ../framework/vendor/upload/class.upload.php:2213279 #, php-format280 msgid "No %s create support."281 msgstr ""282 283 #: ../framework/vendor/upload/class.upload.php:2214284 msgid "No conversion type defined."285 msgstr ""286 287 #: ../framework/vendor/upload/class.upload.php:2215288 msgid "Error copying file on the server. copy() failed."289 msgstr ""290 291 #: ../framework/vendor/upload/class.upload.php:2216292 #, fuzzy293 msgid "Error reading the file."294 msgstr "FEHLER: Rolle konnte nicht angelegt werden."295 30 296 31 #: ../includes/admin.php:36 … … 364 99 msgid "Add to role" 365 100 msgstr "zur Rolle hinzufügen" 366 367 #: ../includes/author-widget.php:38368 msgid "Help donating"369 msgstr "Spenden"370 101 371 102 #: ../includes/backup.php:33 … … 491 222 492 223 #: ../includes/manager.php:405 493 #, fuzzy,php-format224 #, php-format 494 225 msgid "Role has been deleted. %1$d users moved to default role %2$s." 495 msgstr "Rolle %1$s wurde gelöscht. %2$d Benutzer auf Standardrolle (default) gesetzt %3$s."226 msgstr "Rolle wurde gelöscht. %1$d Benutzer auf Standardrolle (default) gesetzt %2$s." 496 227 497 228 #: ../includes/manager.php:419 … … 503 234 msgstr "Rollen und Berechtigungen auf Wordpress Standard zurücksetzen" 504 235 505 #: ../includes/manager.php:6 20236 #: ../includes/manager.php:606 506 237 msgid "You cannot remove Manage Capabilities from Administrators" 507 238 msgstr "Administratoren dürfen keine Berechtigungen entzogen werden!" 508 239 240 #~ msgid "The active plugin %s is not compatible with your WordPress version." 241 #~ msgstr "" 242 #~ "Das Plugin %s ist zu der aktuellen Wordpressversion nicht kompatibel!" 243 #~ msgid "WordPress %s is required to run this plugin." 244 #~ msgstr "WordPress %s wird für dieses Plugin benötigt." 245 #~ msgid "Standard sidebar functions are not present." 246 #~ msgstr "Standard Sidebarfunktionen stehen nicht zur Verfügung!" 247 #~ msgid "It is required to use the standard sidebar to run %s" 248 #~ msgstr "Standard Sidebaroptionen werden benötigt, to run %s" 249 #~ msgid "Settings saved." 250 #~ msgstr "Einstellungen gespeichert" 251 #~ msgid "Plugin Homepage" 252 #~ msgstr "Plugin Homepage" 253 254 #, fuzzy 255 #~ msgid "Theme Homepage" 256 #~ msgstr "Author Homepage" 257 258 #, fuzzy 259 #~ msgid "Documentation" 260 #~ msgstr "ausführen" 261 #~ msgid "Support Forum" 262 #~ msgstr "Support Forum" 263 #~ msgid "Author Homepage" 264 #~ msgstr "Author Homepage" 265 266 #, fuzzy 267 #~ msgid "Incorrect type of file." 268 #~ msgstr "Berechtigungsname ist nicht zulässig." 269 270 #, fuzzy 271 #~ msgid "Error in creating %s image from source." 272 #~ msgstr "FEHLER: Rolle konnte nicht angelegt werden." 273 274 #, fuzzy 275 #~ msgid "Error reading the file." 276 #~ msgstr "FEHLER: Rolle konnte nicht angelegt werden." 277 #~ msgid "Help donating" 278 #~ msgstr "Spenden" 509 279 #~ msgid "Managing %s" 510 280 #~ msgstr "Administrando %s" -
capsman/trunk/lang/capsman-es_ES.po
r198515 r199485 3 3 "Project-Id-Version: Capability Manager\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2010-01-2 6 22:12+0100\n"5 "POT-Creation-Date: 2010-01-29 15:03+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 17 17 #: ../capsman.php:53 18 #: ../framework/classes/abstract/plugin.php:21019 #: ../framework/classes/abstract/plugin.php:22920 18 msgid "Warning:" 21 19 msgstr "Atención:" … … 30 28 msgid "%s is required for this plugin." 31 29 msgstr "Se require %s para utilizar esta extensión." 32 33 #: ../framework/classes/abstract/module.php:50734 msgid "Option blocked by administrator."35 msgstr "Opción bloqueada por el administrador."36 37 #: ../framework/classes/abstract/plugin.php:21138 #, php-format39 msgid "The active plugin %s is not compatible with your WordPress version."40 msgstr "La extensión activa %s no es compatible con tu versión de WordPress."41 42 #: ../framework/classes/abstract/plugin.php:21343 #, php-format44 msgid "WordPress %s is required to run this plugin."45 msgstr "Se require WordPress %s para ejecutar esta extensión."46 47 #: ../framework/classes/abstract/plugin.php:23048 msgid "Standard sidebar functions are not present."49 msgstr "No se han encontrado algunas funciones de la barra lateral estándar."50 51 #: ../framework/classes/abstract/plugin.php:23152 #, php-format53 msgid "It is required to use the standard sidebar to run %s"54 msgstr "Es preciso utilizar la barra lateral estándar para ejectutar %s"55 56 #: ../framework/lib/formating.php:5257 msgid "Settings saved."58 msgstr "Opciones guardadas."59 60 #: ../framework/lib/formating.php:16161 msgid "Just Now"62 msgstr "Ahora mismo"63 64 #: ../framework/lib/formating.php:16465 msgid "1 minute ago"66 msgstr "Hace 1 minuto"67 68 #: ../framework/lib/formating.php:16769 msgid "1 hour ago"70 msgstr "Hace una hora"71 72 #: ../framework/lib/formating.php:17173 #, php-format74 msgid "Today at %s"75 msgstr "Hoy a las %s"76 77 #: ../framework/lib/formating.php:17178 #, php-format79 msgid "Yesterday at %s"80 msgstr "Ayer a las %s"81 82 #: ../framework/lib/themes.php:16083 msgid "Plugin Homepage"84 msgstr "Página del plugin"85 86 #: ../framework/lib/themes.php:16487 msgid "Theme Homepage"88 msgstr "Página del tema"89 90 #: ../framework/lib/themes.php:16891 msgid "Documentation"92 msgstr "Documentación"93 94 #: ../framework/lib/themes.php:17295 msgid "Support Forum"96 msgstr "Foro de soporte"97 98 #: ../framework/lib/themes.php:17699 msgid "Author Homepage"100 msgstr "Página del autor"101 102 #: ../framework/lib/themes.php:180103 msgid "Donate to project"104 msgstr "Haz un donativo"105 106 #: ../framework/vendor/upload/class.upload.php:2172107 msgid "File error. Please try again."108 msgstr "Error de archivo. Por favor, reintentalo de nuevo."109 110 #: ../framework/vendor/upload/class.upload.php:2173111 msgid "Local file doesn't exist."112 msgstr "El archivo local no existe."113 114 #: ../framework/vendor/upload/class.upload.php:2174115 msgid "Local file is not readable."116 msgstr "El archivo local no es legible."117 118 #: ../framework/vendor/upload/class.upload.php:2175119 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."120 msgstr "Error de carga de archivo (el archivo cargado excede la directiva UPLOAD_MAX_FILESIZE de PHP)."121 122 #: ../framework/vendor/upload/class.upload.php:2176123 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."124 msgstr "Error de carga de archivo (el archivo enviado excede la directiva MAX_FILE_SIZE especificada en el formulario)."125 126 #: ../framework/vendor/upload/class.upload.php:2177127 msgid "File upload error (the uploaded file was only partially uploaded)."128 msgstr "Error de carga de archivo (el archivo sólo se recibió parcialmente)."129 130 #: ../framework/vendor/upload/class.upload.php:2178131 msgid "File upload error (no file was uploaded)."132 msgstr "Error de carga de archivo (no se recibió archivo)."133 134 #: ../framework/vendor/upload/class.upload.php:2179135 msgid "File upload error (missing a temporary folder)."136 msgstr "Error de carga de archivo (falta la carpeta temporal)."137 138 #: ../framework/vendor/upload/class.upload.php:2180139 msgid "File upload error (failed to write file to disk)."140 msgstr "Error de carga de archivo (no se pudo escribir en el disco)."141 142 #: ../framework/vendor/upload/class.upload.php:2181143 msgid "File upload error (file upload stopped by extension)."144 msgstr "Error de carga de archivo (se ha bloquedao el archivo por extensión)."145 146 #: ../framework/vendor/upload/class.upload.php:2182147 msgid "File upload error (unknown error code)."148 msgstr "Error de carga de archivo (código de error desconocido)."149 150 #: ../framework/vendor/upload/class.upload.php:2183151 msgid "File upload error. Please try again."152 msgstr "Error de carga de archivo. Por favor, reinténtalo."153 154 #: ../framework/vendor/upload/class.upload.php:2184155 msgid "File too big."156 msgstr "Archivo demasiado grande."157 158 #: ../framework/vendor/upload/class.upload.php:2185159 msgid "MIME type can't be detected."160 msgstr "No se pudo detectar el tipo MIME."161 162 #: ../framework/vendor/upload/class.upload.php:2186163 msgid "Incorrect type of file."164 msgstr "Tipo de archivo incorrecto."165 166 #: ../framework/vendor/upload/class.upload.php:2187167 msgid "Image too wide."168 msgstr "Imagen demasiado ancha."169 170 #: ../framework/vendor/upload/class.upload.php:2188171 msgid "Image too narrow."172 msgstr "Imagen demasiado estrecha."173 174 #: ../framework/vendor/upload/class.upload.php:2189175 msgid "Image too high."176 msgstr "Imagen demasiado alta."177 178 #: ../framework/vendor/upload/class.upload.php:2190179 msgid "Image too short."180 msgstr "Imagen demasiado baja."181 182 #: ../framework/vendor/upload/class.upload.php:2191183 msgid "Image ratio too high (image too wide)."184 msgstr "Ratio de imagen demariado alto (imagen demasiado ancha)."185 186 #: ../framework/vendor/upload/class.upload.php:2192187 msgid "Image ratio too low (image too high)."188 msgstr "Ratio de imagen demasiado bajo (imagen demasiado alta)."189 190 #: ../framework/vendor/upload/class.upload.php:2193191 msgid "Image has too many pixels."192 msgstr "La imágen tiene demasiados píxeles."193 194 #: ../framework/vendor/upload/class.upload.php:2194195 msgid "Image has not enough pixels."196 msgstr "La imagen no tiene suficientes píxeles."197 198 #: ../framework/vendor/upload/class.upload.php:2195199 msgid "File not uploaded. Can't carry on a process."200 msgstr "No se ha cargado el archivo. No se puede ejecutar el proceso."201 202 #: ../framework/vendor/upload/class.upload.php:2196203 #, php-format204 msgid "%s already exists. Please change the file name."205 msgstr "El archivo %s ya existe. Por favor, cambia el nombre de archivo."206 207 #: ../framework/vendor/upload/class.upload.php:2197208 msgid "No correct temp source file. Can't carry on a process."209 msgstr "El archivo temporal es incorrecto. No se puede ejecutar el proceso."210 211 #: ../framework/vendor/upload/class.upload.php:2198212 msgid "No correct uploaded source file. Can't carry on a process."213 msgstr "Archivo original incorrecto. No se puede ejecutar el proceso."214 215 #: ../framework/vendor/upload/class.upload.php:2199216 msgid "Destination directory can't be created. Can't carry on a process."217 msgstr "No se puede crear el directorio de destino. No se puede realizar el proceso."218 219 #: ../framework/vendor/upload/class.upload.php:2200220 msgid "Destination directory doesn't exist. Can't carry on a process."221 msgstr "El directorio de destino no existe. No se puede realizar el proceso."222 223 #: ../framework/vendor/upload/class.upload.php:2201224 msgid "Destination path is not a directory. Can't carry on a process."225 msgstr "La ruta de destino no es un directorio. No se puede realizar el proceso."226 227 #: ../framework/vendor/upload/class.upload.php:2202228 msgid "Destination directory can't be made writeable. Can't carry on a process."229 msgstr "El directorio de destino no se puede cambiar a escribible. No se puede realizar el proceso."230 231 #: ../framework/vendor/upload/class.upload.php:2203232 msgid "Destination path is not a writeable. Can't carry on a process."233 msgstr "No se puede escribir en la ruta de destino. No se puede realizar el proceso."234 235 #: ../framework/vendor/upload/class.upload.php:2204236 msgid "Can't create the temporary file. Can't carry on a process."237 msgstr "No se puede crar un archivo temporal. No se puede ejecutar el proceso."238 239 #: ../framework/vendor/upload/class.upload.php:2205240 msgid "Source file is not readable. Can't carry on a process."241 msgstr "No se puede leer el archivo original. No se puede ejecutar el proceso."242 243 #: ../framework/vendor/upload/class.upload.php:2206244 #, php-format245 msgid "No create from %s support."246 msgstr "No hay soporte para crear desde %s."247 248 #: ../framework/vendor/upload/class.upload.php:2207249 #, php-format250 msgid "Error in creating %s image from source."251 msgstr "Error creacdo la imagen %s desde el original."252 253 #: ../framework/vendor/upload/class.upload.php:2208254 msgid "Can't read image source. Not an image?."255 msgstr "No se puede leer la imagen orginal. ¿Es una imagen?"256 257 #: ../framework/vendor/upload/class.upload.php:2209258 msgid "GD doesn't seem to be present."259 msgstr "No se ha detectado la libreria GD."260 261 #: ../framework/vendor/upload/class.upload.php:2210262 #, php-format263 msgid "No create from %s support, can't read watermark."264 msgstr "No hay soporte para crear desde %s. No se puede leer la marca de agua."265 266 #: ../framework/vendor/upload/class.upload.php:2211267 #, php-format268 msgid "No %s read support, can't create watermark."269 msgstr "No hay soporte para leer %s. No se puede crear la marca de agua."270 271 #: ../framework/vendor/upload/class.upload.php:2212272 msgid "Unknown image format, can't read watermark."273 msgstr "Formato de imagen desconocido. No se puede leer la marca al agua."274 275 #: ../framework/vendor/upload/class.upload.php:2213276 #, php-format277 msgid "No %s create support."278 msgstr "No hay soporte para crear %s."279 280 #: ../framework/vendor/upload/class.upload.php:2214281 msgid "No conversion type defined."282 msgstr "No se ha definido el tipo de conversión."283 284 #: ../framework/vendor/upload/class.upload.php:2215285 msgid "Error copying file on the server. copy() failed."286 msgstr "Error coipiando el archivo en el servidor. Ha fallado copy()."287 288 #: ../framework/vendor/upload/class.upload.php:2216289 msgid "Error reading the file."290 msgstr "Error leyendo el archivo."291 30 292 31 #: ../includes/admin.php:36 … … 360 99 msgid "Add to role" 361 100 msgstr "Añadir al rol" 362 363 #: ../includes/author-widget.php:38364 msgid "Help donating"365 msgstr "Ayuda donando"366 101 367 102 #: ../includes/backup.php:33 … … 499 234 msgstr "Roles y Permisos restaurados a los valores por defecto de WordPress" 500 235 501 #: ../includes/manager.php:6 20236 #: ../includes/manager.php:606 502 237 msgid "You cannot remove Manage Capabilities from Administrators" 503 238 msgstr "No se puede eliminar 'Manage Capabilities' de los administradores." 504 239 240 #~ msgid "Option blocked by administrator." 241 #~ msgstr "Opción bloqueada por el administrador." 242 #~ msgid "The active plugin %s is not compatible with your WordPress version." 243 #~ msgstr "" 244 #~ "La extensión activa %s no es compatible con tu versión de WordPress." 245 #~ msgid "WordPress %s is required to run this plugin." 246 #~ msgstr "Se require WordPress %s para ejecutar esta extensión." 247 #~ msgid "Standard sidebar functions are not present." 248 #~ msgstr "" 249 #~ "No se han encontrado algunas funciones de la barra lateral estándar." 250 #~ msgid "It is required to use the standard sidebar to run %s" 251 #~ msgstr "Es preciso utilizar la barra lateral estándar para ejectutar %s" 252 #~ msgid "Settings saved." 253 #~ msgstr "Opciones guardadas." 254 #~ msgid "Just Now" 255 #~ msgstr "Ahora mismo" 256 #~ msgid "1 minute ago" 257 #~ msgstr "Hace 1 minuto" 258 #~ msgid "1 hour ago" 259 #~ msgstr "Hace una hora" 260 #~ msgid "Today at %s" 261 #~ msgstr "Hoy a las %s" 262 #~ msgid "Yesterday at %s" 263 #~ msgstr "Ayer a las %s" 264 #~ msgid "Plugin Homepage" 265 #~ msgstr "Página del plugin" 266 #~ msgid "Theme Homepage" 267 #~ msgstr "Página del tema" 268 #~ msgid "Documentation" 269 #~ msgstr "Documentación" 270 #~ msgid "Support Forum" 271 #~ msgstr "Foro de soporte" 272 #~ msgid "Author Homepage" 273 #~ msgstr "Página del autor" 274 #~ msgid "Donate to project" 275 #~ msgstr "Haz un donativo" 276 #~ msgid "File error. Please try again." 277 #~ msgstr "Error de archivo. Por favor, reintentalo de nuevo." 278 #~ msgid "Local file doesn't exist." 279 #~ msgstr "El archivo local no existe." 280 #~ msgid "Local file is not readable." 281 #~ msgstr "El archivo local no es legible." 282 #~ msgid "" 283 #~ "File upload error (the uploaded file exceeds the upload_max_filesize " 284 #~ "directive in php.ini)." 285 #~ msgstr "" 286 #~ "Error de carga de archivo (el archivo cargado excede la directiva " 287 #~ "UPLOAD_MAX_FILESIZE de PHP)." 288 #~ msgid "" 289 #~ "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive " 290 #~ "that was specified in the html form)." 291 #~ msgstr "" 292 #~ "Error de carga de archivo (el archivo enviado excede la directiva " 293 #~ "MAX_FILE_SIZE especificada en el formulario)." 294 #~ msgid "File upload error (the uploaded file was only partially uploaded)." 295 #~ msgstr "" 296 #~ "Error de carga de archivo (el archivo sólo se recibió parcialmente)." 297 #~ msgid "File upload error (no file was uploaded)." 298 #~ msgstr "Error de carga de archivo (no se recibió archivo)." 299 #~ msgid "File upload error (missing a temporary folder)." 300 #~ msgstr "Error de carga de archivo (falta la carpeta temporal)." 301 #~ msgid "File upload error (failed to write file to disk)." 302 #~ msgstr "Error de carga de archivo (no se pudo escribir en el disco)." 303 #~ msgid "File upload error (file upload stopped by extension)." 304 #~ msgstr "" 305 #~ "Error de carga de archivo (se ha bloquedao el archivo por extensión)." 306 #~ msgid "File upload error (unknown error code)." 307 #~ msgstr "Error de carga de archivo (código de error desconocido)." 308 #~ msgid "File upload error. Please try again." 309 #~ msgstr "Error de carga de archivo. Por favor, reinténtalo." 310 #~ msgid "File too big." 311 #~ msgstr "Archivo demasiado grande." 312 #~ msgid "MIME type can't be detected." 313 #~ msgstr "No se pudo detectar el tipo MIME." 314 #~ msgid "Incorrect type of file." 315 #~ msgstr "Tipo de archivo incorrecto." 316 #~ msgid "Image too wide." 317 #~ msgstr "Imagen demasiado ancha." 318 #~ msgid "Image too narrow." 319 #~ msgstr "Imagen demasiado estrecha." 320 #~ msgid "Image too high." 321 #~ msgstr "Imagen demasiado alta." 322 #~ msgid "Image too short." 323 #~ msgstr "Imagen demasiado baja." 324 #~ msgid "Image ratio too high (image too wide)." 325 #~ msgstr "Ratio de imagen demariado alto (imagen demasiado ancha)." 326 #~ msgid "Image ratio too low (image too high)." 327 #~ msgstr "Ratio de imagen demasiado bajo (imagen demasiado alta)." 328 #~ msgid "Image has too many pixels." 329 #~ msgstr "La imágen tiene demasiados píxeles." 330 #~ msgid "Image has not enough pixels." 331 #~ msgstr "La imagen no tiene suficientes píxeles." 332 #~ msgid "File not uploaded. Can't carry on a process." 333 #~ msgstr "No se ha cargado el archivo. No se puede ejecutar el proceso." 334 #~ msgid "%s already exists. Please change the file name." 335 #~ msgstr "El archivo %s ya existe. Por favor, cambia el nombre de archivo." 336 #~ msgid "No correct temp source file. Can't carry on a process." 337 #~ msgstr "El archivo temporal es incorrecto. No se puede ejecutar el proceso." 338 #~ msgid "No correct uploaded source file. Can't carry on a process." 339 #~ msgstr "Archivo original incorrecto. No se puede ejecutar el proceso." 340 #~ msgid "Destination directory can't be created. Can't carry on a process." 341 #~ msgstr "" 342 #~ "No se puede crear el directorio de destino. No se puede realizar el " 343 #~ "proceso." 344 #~ msgid "Destination directory doesn't exist. Can't carry on a process." 345 #~ msgstr "" 346 #~ "El directorio de destino no existe. No se puede realizar el proceso." 347 #~ msgid "Destination path is not a directory. Can't carry on a process." 348 #~ msgstr "" 349 #~ "La ruta de destino no es un directorio. No se puede realizar el proceso." 350 #~ msgid "" 351 #~ "Destination directory can't be made writeable. Can't carry on a process." 352 #~ msgstr "" 353 #~ "El directorio de destino no se puede cambiar a escribible. No se puede " 354 #~ "realizar el proceso." 355 #~ msgid "Destination path is not a writeable. Can't carry on a process." 356 #~ msgstr "" 357 #~ "No se puede escribir en la ruta de destino. No se puede realizar el " 358 #~ "proceso." 359 #~ msgid "Can't create the temporary file. Can't carry on a process." 360 #~ msgstr "" 361 #~ "No se puede crar un archivo temporal. No se puede ejecutar el proceso." 362 #~ msgid "Source file is not readable. Can't carry on a process." 363 #~ msgstr "" 364 #~ "No se puede leer el archivo original. No se puede ejecutar el proceso." 365 #~ msgid "No create from %s support." 366 #~ msgstr "No hay soporte para crear desde %s." 367 #~ msgid "Error in creating %s image from source." 368 #~ msgstr "Error creacdo la imagen %s desde el original." 369 #~ msgid "Can't read image source. Not an image?." 370 #~ msgstr "No se puede leer la imagen orginal. ¿Es una imagen?" 371 #~ msgid "GD doesn't seem to be present." 372 #~ msgstr "No se ha detectado la libreria GD." 373 #~ msgid "No create from %s support, can't read watermark." 374 #~ msgstr "" 375 #~ "No hay soporte para crear desde %s. No se puede leer la marca de agua." 376 #~ msgid "No %s read support, can't create watermark." 377 #~ msgstr "No hay soporte para leer %s. No se puede crear la marca de agua." 378 #~ msgid "Unknown image format, can't read watermark." 379 #~ msgstr "Formato de imagen desconocido. No se puede leer la marca al agua." 380 #~ msgid "No %s create support." 381 #~ msgstr "No hay soporte para crear %s." 382 #~ msgid "No conversion type defined." 383 #~ msgstr "No se ha definido el tipo de conversión." 384 #~ msgid "Error copying file on the server. copy() failed." 385 #~ msgstr "Error coipiando el archivo en el servidor. Ha fallado copy()." 386 #~ msgid "Error reading the file." 387 #~ msgstr "Error leyendo el archivo." 388 #~ msgid "Help donating" 389 #~ msgstr "Ayuda donando" 505 390 #~ msgid "Managing %s" 506 391 #~ msgstr "Administrando %s" -
capsman/trunk/lang/capsman-it_IT.po
r198515 r199485 3 3 "Project-Id-Version: Capability Manager in italiano\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2010-01-2 6 22:12+0100\n"5 "POT-Creation-Date: 2010-01-29 15:06+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n" 9 9 "MIME-Version: 1.0\n" … … 19 19 20 20 #: ../capsman.php:53 21 #: ../framework/classes/abstract/plugin.php:21022 #: ../framework/classes/abstract/plugin.php:22923 21 msgid "Warning:" 24 22 msgstr "Attenzione:" … … 33 31 msgid "%s is required for this plugin." 34 32 msgstr "E' necessario %s per l'utilizzo di questo plugin." 35 36 #: ../framework/classes/abstract/module.php:50737 msgid "Option blocked by administrator."38 msgstr ""39 40 #: ../framework/classes/abstract/plugin.php:21141 #, php-format42 msgid "The active plugin %s is not compatible with your WordPress version."43 msgstr "Il plugin %s non é compatibile con la tua versione di WordPress."44 45 #: ../framework/classes/abstract/plugin.php:21346 #, php-format47 msgid "WordPress %s is required to run this plugin."48 msgstr "Per l'utilizzo del plugin é necessario WordPress %s."49 50 #: ../framework/classes/abstract/plugin.php:23051 msgid "Standard sidebar functions are not present."52 msgstr "Le funzioni standard per la sidebar non sono presenti."53 54 #: ../framework/classes/abstract/plugin.php:23155 #, php-format56 msgid "It is required to use the standard sidebar to run %s"57 msgstr "Necessario per l'utilizzo della sidebar standard %s"58 59 #: ../framework/lib/formating.php:5260 msgid "Settings saved."61 msgstr "Le impostazioni sono state salvate."62 63 #: ../framework/lib/formating.php:16164 msgid "Just Now"65 msgstr ""66 67 #: ../framework/lib/formating.php:16468 msgid "1 minute ago"69 msgstr ""70 71 #: ../framework/lib/formating.php:16772 msgid "1 hour ago"73 msgstr ""74 75 #: ../framework/lib/formating.php:17176 #, php-format77 msgid "Today at %s"78 msgstr ""79 80 #: ../framework/lib/formating.php:17181 #, php-format82 msgid "Yesterday at %s"83 msgstr ""84 85 #: ../framework/lib/themes.php:16086 msgid "Plugin Homepage"87 msgstr "Homepage del plugin"88 89 #: ../framework/lib/themes.php:16490 #, fuzzy91 msgid "Theme Homepage"92 msgstr "Homepage autore"93 94 #: ../framework/lib/themes.php:16895 #, fuzzy96 msgid "Documentation"97 msgstr "Procedi"98 99 #: ../framework/lib/themes.php:172100 msgid "Support Forum"101 msgstr "Forum di supporto"102 103 #: ../framework/lib/themes.php:176104 msgid "Author Homepage"105 msgstr "Homepage autore"106 107 #: ../framework/lib/themes.php:180108 msgid "Donate to project"109 msgstr ""110 111 #: ../framework/vendor/upload/class.upload.php:2172112 msgid "File error. Please try again."113 msgstr ""114 115 #: ../framework/vendor/upload/class.upload.php:2173116 msgid "Local file doesn't exist."117 msgstr ""118 119 #: ../framework/vendor/upload/class.upload.php:2174120 msgid "Local file is not readable."121 msgstr ""122 123 #: ../framework/vendor/upload/class.upload.php:2175124 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."125 msgstr ""126 127 #: ../framework/vendor/upload/class.upload.php:2176128 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."129 msgstr ""130 131 #: ../framework/vendor/upload/class.upload.php:2177132 msgid "File upload error (the uploaded file was only partially uploaded)."133 msgstr ""134 135 #: ../framework/vendor/upload/class.upload.php:2178136 msgid "File upload error (no file was uploaded)."137 msgstr ""138 139 #: ../framework/vendor/upload/class.upload.php:2179140 msgid "File upload error (missing a temporary folder)."141 msgstr ""142 143 #: ../framework/vendor/upload/class.upload.php:2180144 msgid "File upload error (failed to write file to disk)."145 msgstr ""146 147 #: ../framework/vendor/upload/class.upload.php:2181148 msgid "File upload error (file upload stopped by extension)."149 msgstr ""150 151 #: ../framework/vendor/upload/class.upload.php:2182152 msgid "File upload error (unknown error code)."153 msgstr ""154 155 #: ../framework/vendor/upload/class.upload.php:2183156 msgid "File upload error. Please try again."157 msgstr ""158 159 #: ../framework/vendor/upload/class.upload.php:2184160 msgid "File too big."161 msgstr ""162 163 #: ../framework/vendor/upload/class.upload.php:2185164 msgid "MIME type can't be detected."165 msgstr ""166 167 #: ../framework/vendor/upload/class.upload.php:2186168 #, fuzzy169 msgid "Incorrect type of file."170 msgstr "Nome non valido per la capacità."171 172 #: ../framework/vendor/upload/class.upload.php:2187173 msgid "Image too wide."174 msgstr ""175 176 #: ../framework/vendor/upload/class.upload.php:2188177 msgid "Image too narrow."178 msgstr ""179 180 #: ../framework/vendor/upload/class.upload.php:2189181 msgid "Image too high."182 msgstr ""183 184 #: ../framework/vendor/upload/class.upload.php:2190185 msgid "Image too short."186 msgstr ""187 188 #: ../framework/vendor/upload/class.upload.php:2191189 msgid "Image ratio too high (image too wide)."190 msgstr ""191 192 #: ../framework/vendor/upload/class.upload.php:2192193 msgid "Image ratio too low (image too high)."194 msgstr ""195 196 #: ../framework/vendor/upload/class.upload.php:2193197 msgid "Image has too many pixels."198 msgstr ""199 200 #: ../framework/vendor/upload/class.upload.php:2194201 msgid "Image has not enough pixels."202 msgstr ""203 204 #: ../framework/vendor/upload/class.upload.php:2195205 msgid "File not uploaded. Can't carry on a process."206 msgstr ""207 208 #: ../framework/vendor/upload/class.upload.php:2196209 #, php-format210 msgid "%s already exists. Please change the file name."211 msgstr ""212 213 #: ../framework/vendor/upload/class.upload.php:2197214 msgid "No correct temp source file. Can't carry on a process."215 msgstr ""216 217 #: ../framework/vendor/upload/class.upload.php:2198218 msgid "No correct uploaded source file. Can't carry on a process."219 msgstr ""220 221 #: ../framework/vendor/upload/class.upload.php:2199222 msgid "Destination directory can't be created. Can't carry on a process."223 msgstr ""224 225 #: ../framework/vendor/upload/class.upload.php:2200226 msgid "Destination directory doesn't exist. Can't carry on a process."227 msgstr ""228 229 #: ../framework/vendor/upload/class.upload.php:2201230 msgid "Destination path is not a directory. Can't carry on a process."231 msgstr ""232 233 #: ../framework/vendor/upload/class.upload.php:2202234 msgid "Destination directory can't be made writeable. Can't carry on a process."235 msgstr ""236 237 #: ../framework/vendor/upload/class.upload.php:2203238 msgid "Destination path is not a writeable. Can't carry on a process."239 msgstr ""240 241 #: ../framework/vendor/upload/class.upload.php:2204242 msgid "Can't create the temporary file. Can't carry on a process."243 msgstr ""244 245 #: ../framework/vendor/upload/class.upload.php:2205246 msgid "Source file is not readable. Can't carry on a process."247 msgstr ""248 249 #: ../framework/vendor/upload/class.upload.php:2206250 #, php-format251 msgid "No create from %s support."252 msgstr ""253 254 #: ../framework/vendor/upload/class.upload.php:2207255 #, fuzzy, php-format256 msgid "Error in creating %s image from source."257 msgstr "Errore: non é stato possibile creare il nuovo ruolo."258 259 #: ../framework/vendor/upload/class.upload.php:2208260 msgid "Can't read image source. Not an image?."261 msgstr ""262 263 #: ../framework/vendor/upload/class.upload.php:2209264 msgid "GD doesn't seem to be present."265 msgstr ""266 267 #: ../framework/vendor/upload/class.upload.php:2210268 #, php-format269 msgid "No create from %s support, can't read watermark."270 msgstr ""271 272 #: ../framework/vendor/upload/class.upload.php:2211273 #, php-format274 msgid "No %s read support, can't create watermark."275 msgstr ""276 277 #: ../framework/vendor/upload/class.upload.php:2212278 msgid "Unknown image format, can't read watermark."279 msgstr ""280 281 #: ../framework/vendor/upload/class.upload.php:2213282 #, php-format283 msgid "No %s create support."284 msgstr ""285 286 #: ../framework/vendor/upload/class.upload.php:2214287 msgid "No conversion type defined."288 msgstr ""289 290 #: ../framework/vendor/upload/class.upload.php:2215291 msgid "Error copying file on the server. copy() failed."292 msgstr ""293 294 #: ../framework/vendor/upload/class.upload.php:2216295 #, fuzzy296 msgid "Error reading the file."297 msgstr "Errore: non é stato possibile creare il nuovo ruolo."298 33 299 34 #: ../includes/admin.php:36 … … 367 102 msgid "Add to role" 368 103 msgstr "Aggiungi al ruolo" 369 370 #: ../includes/author-widget.php:38371 msgid "Help donating"372 msgstr "Donazioni"373 104 374 105 #: ../includes/backup.php:33 … … 494 225 495 226 #: ../includes/manager.php:405 496 #, fuzzy,php-format227 #, php-format 497 228 msgid "Role has been deleted. %1$d users moved to default role %2$s." 498 msgstr "Il ruolo %1$s é stato cancellato. Gli utenti %2$d sono stati spostati nel ruolo predefinito a nome %3$s."229 msgstr "Il ruolo é stato cancellato. Gli utenti %1$d sono stati spostati nel ruolo predefinito a nome %2$s." 499 230 500 231 #: ../includes/manager.php:419 … … 506 237 msgstr "I ruoli e le capacità sono stati ripristinati ai valori predefiniti di WordPress" 507 238 508 #: ../includes/manager.php:6 20239 #: ../includes/manager.php:606 509 240 msgid "You cannot remove Manage Capabilities from Administrators" 510 241 msgstr "Non puoi rimuovere la gestione delle capacità per gli amministratori" 511 242 243 #~ msgid "The active plugin %s is not compatible with your WordPress version." 244 #~ msgstr "Il plugin %s non é compatibile con la tua versione di WordPress." 245 #~ msgid "WordPress %s is required to run this plugin." 246 #~ msgstr "Per l'utilizzo del plugin é necessario WordPress %s." 247 #~ msgid "Standard sidebar functions are not present." 248 #~ msgstr "Le funzioni standard per la sidebar non sono presenti." 249 #~ msgid "It is required to use the standard sidebar to run %s" 250 #~ msgstr "Necessario per l'utilizzo della sidebar standard %s" 251 #~ msgid "Settings saved." 252 #~ msgstr "Le impostazioni sono state salvate." 253 #~ msgid "Plugin Homepage" 254 #~ msgstr "Homepage del plugin" 255 256 #, fuzzy 257 #~ msgid "Theme Homepage" 258 #~ msgstr "Homepage autore" 259 260 #, fuzzy 261 #~ msgid "Documentation" 262 #~ msgstr "Procedi" 263 #~ msgid "Support Forum" 264 #~ msgstr "Forum di supporto" 265 #~ msgid "Author Homepage" 266 #~ msgstr "Homepage autore" 267 268 #, fuzzy 269 #~ msgid "Incorrect type of file." 270 #~ msgstr "Nome non valido per la capacità." 271 272 #, fuzzy 273 #~ msgid "Error in creating %s image from source." 274 #~ msgstr "Errore: non é stato possibile creare il nuovo ruolo." 275 276 #, fuzzy 277 #~ msgid "Error reading the file." 278 #~ msgstr "Errore: non é stato possibile creare il nuovo ruolo." 279 #~ msgid "Help donating" 280 #~ msgstr "Donazioni" 281 -
capsman/trunk/lang/capsman-ru_RU.po
r198515 r199485 3 3 "Project-Id-Version: Capability Manager\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2010-01-2 6 22:12+0100\n"5 "POT-Creation-Date: 2010-01-29 15:03+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Fat Cow <gpl@alkivia.org>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 17 17 #: ../capsman.php:53 18 #: ../framework/classes/abstract/plugin.php:21019 #: ../framework/classes/abstract/plugin.php:22920 18 msgid "Warning:" 21 19 msgstr "Предупреждение:" … … 30 28 msgid "%s is required for this plugin." 31 29 msgstr "%s необходим лоя плагина." 32 33 #: ../framework/classes/abstract/module.php:50734 msgid "Option blocked by administrator."35 msgstr ""36 37 #: ../framework/classes/abstract/plugin.php:21138 #, php-format39 msgid "The active plugin %s is not compatible with your WordPress version."40 msgstr "Активный плагин %s не совместим с текущей версией WordPress."41 42 #: ../framework/classes/abstract/plugin.php:21343 #, php-format44 msgid "WordPress %s is required to run this plugin."45 msgstr "WordPress %s необходим для запуска этого плагина."46 47 #: ../framework/classes/abstract/plugin.php:23048 msgid "Standard sidebar functions are not present."49 msgstr "Стандартные функции боковой панели не представлены."50 51 #: ../framework/classes/abstract/plugin.php:23152 #, php-format53 msgid "It is required to use the standard sidebar to run %s"54 msgstr "Это необходимо для использования стандартной боковой панели для запуска %s"55 56 #: ../framework/lib/formating.php:5257 msgid "Settings saved."58 msgstr "Настройки сохранены."59 60 #: ../framework/lib/formating.php:16161 msgid "Just Now"62 msgstr ""63 64 #: ../framework/lib/formating.php:16465 msgid "1 minute ago"66 msgstr ""67 68 #: ../framework/lib/formating.php:16769 msgid "1 hour ago"70 msgstr ""71 72 #: ../framework/lib/formating.php:17173 #, php-format74 msgid "Today at %s"75 msgstr ""76 77 #: ../framework/lib/formating.php:17178 #, php-format79 msgid "Yesterday at %s"80 msgstr ""81 82 #: ../framework/lib/themes.php:16083 msgid "Plugin Homepage"84 msgstr "Домашняя страница плагина"85 86 #: ../framework/lib/themes.php:16487 #, fuzzy88 msgid "Theme Homepage"89 msgstr "Домашняя страница автора"90 91 #: ../framework/lib/themes.php:16892 #, fuzzy93 msgid "Documentation"94 msgstr "Нет действий"95 96 #: ../framework/lib/themes.php:17297 msgid "Support Forum"98 msgstr "Форум поддержки"99 100 #: ../framework/lib/themes.php:176101 msgid "Author Homepage"102 msgstr "Домашняя страница автора"103 104 #: ../framework/lib/themes.php:180105 msgid "Donate to project"106 msgstr ""107 108 #: ../framework/vendor/upload/class.upload.php:2172109 msgid "File error. Please try again."110 msgstr ""111 112 #: ../framework/vendor/upload/class.upload.php:2173113 msgid "Local file doesn't exist."114 msgstr ""115 116 #: ../framework/vendor/upload/class.upload.php:2174117 msgid "Local file is not readable."118 msgstr ""119 120 #: ../framework/vendor/upload/class.upload.php:2175121 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."122 msgstr ""123 124 #: ../framework/vendor/upload/class.upload.php:2176125 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."126 msgstr ""127 128 #: ../framework/vendor/upload/class.upload.php:2177129 msgid "File upload error (the uploaded file was only partially uploaded)."130 msgstr ""131 132 #: ../framework/vendor/upload/class.upload.php:2178133 msgid "File upload error (no file was uploaded)."134 msgstr ""135 136 #: ../framework/vendor/upload/class.upload.php:2179137 msgid "File upload error (missing a temporary folder)."138 msgstr ""139 140 #: ../framework/vendor/upload/class.upload.php:2180141 msgid "File upload error (failed to write file to disk)."142 msgstr ""143 144 #: ../framework/vendor/upload/class.upload.php:2181145 msgid "File upload error (file upload stopped by extension)."146 msgstr ""147 148 #: ../framework/vendor/upload/class.upload.php:2182149 msgid "File upload error (unknown error code)."150 msgstr ""151 152 #: ../framework/vendor/upload/class.upload.php:2183153 msgid "File upload error. Please try again."154 msgstr ""155 156 #: ../framework/vendor/upload/class.upload.php:2184157 msgid "File too big."158 msgstr ""159 160 #: ../framework/vendor/upload/class.upload.php:2185161 msgid "MIME type can't be detected."162 msgstr ""163 164 #: ../framework/vendor/upload/class.upload.php:2186165 #, fuzzy166 msgid "Incorrect type of file."167 msgstr "Некорректное имя возможности."168 169 #: ../framework/vendor/upload/class.upload.php:2187170 msgid "Image too wide."171 msgstr ""172 173 #: ../framework/vendor/upload/class.upload.php:2188174 msgid "Image too narrow."175 msgstr ""176 177 #: ../framework/vendor/upload/class.upload.php:2189178 msgid "Image too high."179 msgstr ""180 181 #: ../framework/vendor/upload/class.upload.php:2190182 msgid "Image too short."183 msgstr ""184 185 #: ../framework/vendor/upload/class.upload.php:2191186 msgid "Image ratio too high (image too wide)."187 msgstr ""188 189 #: ../framework/vendor/upload/class.upload.php:2192190 msgid "Image ratio too low (image too high)."191 msgstr ""192 193 #: ../framework/vendor/upload/class.upload.php:2193194 msgid "Image has too many pixels."195 msgstr ""196 197 #: ../framework/vendor/upload/class.upload.php:2194198 msgid "Image has not enough pixels."199 msgstr ""200 201 #: ../framework/vendor/upload/class.upload.php:2195202 msgid "File not uploaded. Can't carry on a process."203 msgstr ""204 205 #: ../framework/vendor/upload/class.upload.php:2196206 #, php-format207 msgid "%s already exists. Please change the file name."208 msgstr ""209 210 #: ../framework/vendor/upload/class.upload.php:2197211 msgid "No correct temp source file. Can't carry on a process."212 msgstr ""213 214 #: ../framework/vendor/upload/class.upload.php:2198215 msgid "No correct uploaded source file. Can't carry on a process."216 msgstr ""217 218 #: ../framework/vendor/upload/class.upload.php:2199219 msgid "Destination directory can't be created. Can't carry on a process."220 msgstr ""221 222 #: ../framework/vendor/upload/class.upload.php:2200223 msgid "Destination directory doesn't exist. Can't carry on a process."224 msgstr ""225 226 #: ../framework/vendor/upload/class.upload.php:2201227 msgid "Destination path is not a directory. Can't carry on a process."228 msgstr ""229 230 #: ../framework/vendor/upload/class.upload.php:2202231 msgid "Destination directory can't be made writeable. Can't carry on a process."232 msgstr ""233 234 #: ../framework/vendor/upload/class.upload.php:2203235 msgid "Destination path is not a writeable. Can't carry on a process."236 msgstr ""237 238 #: ../framework/vendor/upload/class.upload.php:2204239 msgid "Can't create the temporary file. Can't carry on a process."240 msgstr ""241 242 #: ../framework/vendor/upload/class.upload.php:2205243 msgid "Source file is not readable. Can't carry on a process."244 msgstr ""245 246 #: ../framework/vendor/upload/class.upload.php:2206247 #, php-format248 msgid "No create from %s support."249 msgstr ""250 251 #: ../framework/vendor/upload/class.upload.php:2207252 #, fuzzy, php-format253 msgid "Error in creating %s image from source."254 msgstr "Ошибка: Новая роль не создана."255 256 #: ../framework/vendor/upload/class.upload.php:2208257 msgid "Can't read image source. Not an image?."258 msgstr ""259 260 #: ../framework/vendor/upload/class.upload.php:2209261 msgid "GD doesn't seem to be present."262 msgstr ""263 264 #: ../framework/vendor/upload/class.upload.php:2210265 #, php-format266 msgid "No create from %s support, can't read watermark."267 msgstr ""268 269 #: ../framework/vendor/upload/class.upload.php:2211270 #, php-format271 msgid "No %s read support, can't create watermark."272 msgstr ""273 274 #: ../framework/vendor/upload/class.upload.php:2212275 msgid "Unknown image format, can't read watermark."276 msgstr ""277 278 #: ../framework/vendor/upload/class.upload.php:2213279 #, php-format280 msgid "No %s create support."281 msgstr ""282 283 #: ../framework/vendor/upload/class.upload.php:2214284 msgid "No conversion type defined."285 msgstr ""286 287 #: ../framework/vendor/upload/class.upload.php:2215288 msgid "Error copying file on the server. copy() failed."289 msgstr ""290 291 #: ../framework/vendor/upload/class.upload.php:2216292 #, fuzzy293 msgid "Error reading the file."294 msgstr "Ошибка: Новая роль не создана."295 30 296 31 #: ../includes/admin.php:36 … … 364 99 msgid "Add to role" 365 100 msgstr "Добавить роль" 366 367 #: ../includes/author-widget.php:38368 msgid "Help donating"369 msgstr "Помощь через пожертвования"370 101 371 102 #: ../includes/backup.php:33 … … 491 222 492 223 #: ../includes/manager.php:405 493 #, fuzzy,php-format224 #, php-format 494 225 msgid "Role has been deleted. %1$d users moved to default role %2$s." 495 msgstr "Роль %1$s была удалена. %2$d пользователей перемещена в стандартную роль %3$s."226 msgstr "Роль была удалена. %1$d пользователей перемещена в стандартную роль %2$s." 496 227 497 228 #: ../includes/manager.php:419 … … 503 234 msgstr "Роли и возможности сброшены к стандартным для WordPress " 504 235 505 #: ../includes/manager.php:6 20236 #: ../includes/manager.php:606 506 237 msgid "You cannot remove Manage Capabilities from Administrators" 507 238 msgstr "Вы не можете удалить Manage Capabilities через администраторов ." 508 239 240 #~ msgid "The active plugin %s is not compatible with your WordPress version." 241 #~ msgstr "Активный плагин %s не совместим с текущей версией WordPress." 242 #~ msgid "WordPress %s is required to run this plugin." 243 #~ msgstr "WordPress %s необходим для запуска этого плагина." 244 #~ msgid "Standard sidebar functions are not present." 245 #~ msgstr "Стандартные функции боковой панели не представлены." 246 #~ msgid "It is required to use the standard sidebar to run %s" 247 #~ msgstr "" 248 #~ "Это необходимо для использования стандартной боковой панели для запуска %s" 249 #~ msgid "Settings saved." 250 #~ msgstr "Настройки сохранены." 251 #~ msgid "Plugin Homepage" 252 #~ msgstr "Домашняя страница плагина" 253 254 #, fuzzy 255 #~ msgid "Theme Homepage" 256 #~ msgstr "Домашняя страница автора" 257 258 #, fuzzy 259 #~ msgid "Documentation" 260 #~ msgstr "Нет действий" 261 #~ msgid "Support Forum" 262 #~ msgstr "Форум поддержки" 263 #~ msgid "Author Homepage" 264 #~ msgstr "Домашняя страница автора" 265 266 #, fuzzy 267 #~ msgid "Incorrect type of file." 268 #~ msgstr "Некорректное имя возможности." 269 270 #, fuzzy 271 #~ msgid "Error in creating %s image from source." 272 #~ msgstr "Ошибка: Новая роль не создана." 273 274 #, fuzzy 275 #~ msgid "Error reading the file." 276 #~ msgstr "Ошибка: Новая роль не создана." 277 #~ msgid "Help donating" 278 #~ msgstr "Помощь через пожертвования" 509 279 #~ msgid "Managing %s" 510 280 #~ msgstr "Administrando %s" -
capsman/trunk/lang/capsman.pot
r198515 r199485 3 3 "Project-Id-Version: Capability Manager\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2010-01-2 6 22:12+0100\n"5 "POT-Creation-Date: 2010-01-29 15:03+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n" 9 9 "MIME-Version: 1.0\n" … … 12 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 13 "X-Poedit-SourceCharset: utf-8\n" 14 "X-Poedit-KeywordsList: __;_e;_n \n"14 "X-Poedit-KeywordsList: __;_e;_n:1,2;_c;_x:2c,1\n" 15 15 "X-Poedit-Basepath: .\n" 16 16 "X-Poedit-SearchPath-0: ..\n" 17 17 18 18 #: ../capsman.php:53 19 #: ../framework/classes/abstract/plugin.php:21020 #: ../framework/classes/abstract/plugin.php:22921 19 msgid "Warning:" 22 20 msgstr "" … … 30 28 #, php-format 31 29 msgid "%s is required for this plugin." 32 msgstr ""33 34 #: ../framework/classes/abstract/module.php:50735 msgid "Option blocked by administrator."36 msgstr ""37 38 #: ../framework/classes/abstract/plugin.php:21139 #, php-format40 msgid "The active plugin %s is not compatible with your WordPress version."41 msgstr ""42 43 #: ../framework/classes/abstract/plugin.php:21344 #, php-format45 msgid "WordPress %s is required to run this plugin."46 msgstr ""47 48 #: ../framework/classes/abstract/plugin.php:23049 msgid "Standard sidebar functions are not present."50 msgstr ""51 52 #: ../framework/classes/abstract/plugin.php:23153 #, php-format54 msgid "It is required to use the standard sidebar to run %s"55 msgstr ""56 57 #: ../framework/lib/formating.php:5258 msgid "Settings saved."59 msgstr ""60 61 #: ../framework/lib/formating.php:16162 msgid "Just Now"63 msgstr ""64 65 #: ../framework/lib/formating.php:16466 msgid "1 minute ago"67 msgstr ""68 69 #: ../framework/lib/formating.php:16770 msgid "1 hour ago"71 msgstr ""72 73 #: ../framework/lib/formating.php:17174 #, php-format75 msgid "Today at %s"76 msgstr ""77 78 #: ../framework/lib/formating.php:17179 #, php-format80 msgid "Yesterday at %s"81 msgstr ""82 83 #: ../framework/lib/themes.php:16084 msgid "Plugin Homepage"85 msgstr ""86 87 #: ../framework/lib/themes.php:16488 msgid "Theme Homepage"89 msgstr ""90 91 #: ../framework/lib/themes.php:16892 msgid "Documentation"93 msgstr ""94 95 #: ../framework/lib/themes.php:17296 msgid "Support Forum"97 msgstr ""98 99 #: ../framework/lib/themes.php:176100 msgid "Author Homepage"101 msgstr ""102 103 #: ../framework/lib/themes.php:180104 msgid "Donate to project"105 msgstr ""106 107 #: ../framework/vendor/upload/class.upload.php:2172108 msgid "File error. Please try again."109 msgstr ""110 111 #: ../framework/vendor/upload/class.upload.php:2173112 msgid "Local file doesn't exist."113 msgstr ""114 115 #: ../framework/vendor/upload/class.upload.php:2174116 msgid "Local file is not readable."117 msgstr ""118 119 #: ../framework/vendor/upload/class.upload.php:2175120 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."121 msgstr ""122 123 #: ../framework/vendor/upload/class.upload.php:2176124 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."125 msgstr ""126 127 #: ../framework/vendor/upload/class.upload.php:2177128 msgid "File upload error (the uploaded file was only partially uploaded)."129 msgstr ""130 131 #: ../framework/vendor/upload/class.upload.php:2178132 msgid "File upload error (no file was uploaded)."133 msgstr ""134 135 #: ../framework/vendor/upload/class.upload.php:2179136 msgid "File upload error (missing a temporary folder)."137 msgstr ""138 139 #: ../framework/vendor/upload/class.upload.php:2180140 msgid "File upload error (failed to write file to disk)."141 msgstr ""142 143 #: ../framework/vendor/upload/class.upload.php:2181144 msgid "File upload error (file upload stopped by extension)."145 msgstr ""146 147 #: ../framework/vendor/upload/class.upload.php:2182148 msgid "File upload error (unknown error code)."149 msgstr ""150 151 #: ../framework/vendor/upload/class.upload.php:2183152 msgid "File upload error. Please try again."153 msgstr ""154 155 #: ../framework/vendor/upload/class.upload.php:2184156 msgid "File too big."157 msgstr ""158 159 #: ../framework/vendor/upload/class.upload.php:2185160 msgid "MIME type can't be detected."161 msgstr ""162 163 #: ../framework/vendor/upload/class.upload.php:2186164 msgid "Incorrect type of file."165 msgstr ""166 167 #: ../framework/vendor/upload/class.upload.php:2187168 msgid "Image too wide."169 msgstr ""170 171 #: ../framework/vendor/upload/class.upload.php:2188172 msgid "Image too narrow."173 msgstr ""174 175 #: ../framework/vendor/upload/class.upload.php:2189176 msgid "Image too high."177 msgstr ""178 179 #: ../framework/vendor/upload/class.upload.php:2190180 msgid "Image too short."181 msgstr ""182 183 #: ../framework/vendor/upload/class.upload.php:2191184 msgid "Image ratio too high (image too wide)."185 msgstr ""186 187 #: ../framework/vendor/upload/class.upload.php:2192188 msgid "Image ratio too low (image too high)."189 msgstr ""190 191 #: ../framework/vendor/upload/class.upload.php:2193192 msgid "Image has too many pixels."193 msgstr ""194 195 #: ../framework/vendor/upload/class.upload.php:2194196 msgid "Image has not enough pixels."197 msgstr ""198 199 #: ../framework/vendor/upload/class.upload.php:2195200 msgid "File not uploaded. Can't carry on a process."201 msgstr ""202 203 #: ../framework/vendor/upload/class.upload.php:2196204 #, php-format205 msgid "%s already exists. Please change the file name."206 msgstr ""207 208 #: ../framework/vendor/upload/class.upload.php:2197209 msgid "No correct temp source file. Can't carry on a process."210 msgstr ""211 212 #: ../framework/vendor/upload/class.upload.php:2198213 msgid "No correct uploaded source file. Can't carry on a process."214 msgstr ""215 216 #: ../framework/vendor/upload/class.upload.php:2199217 msgid "Destination directory can't be created. Can't carry on a process."218 msgstr ""219 220 #: ../framework/vendor/upload/class.upload.php:2200221 msgid "Destination directory doesn't exist. Can't carry on a process."222 msgstr ""223 224 #: ../framework/vendor/upload/class.upload.php:2201225 msgid "Destination path is not a directory. Can't carry on a process."226 msgstr ""227 228 #: ../framework/vendor/upload/class.upload.php:2202229 msgid "Destination directory can't be made writeable. Can't carry on a process."230 msgstr ""231 232 #: ../framework/vendor/upload/class.upload.php:2203233 msgid "Destination path is not a writeable. Can't carry on a process."234 msgstr ""235 236 #: ../framework/vendor/upload/class.upload.php:2204237 msgid "Can't create the temporary file. Can't carry on a process."238 msgstr ""239 240 #: ../framework/vendor/upload/class.upload.php:2205241 msgid "Source file is not readable. Can't carry on a process."242 msgstr ""243 244 #: ../framework/vendor/upload/class.upload.php:2206245 #, php-format246 msgid "No create from %s support."247 msgstr ""248 249 #: ../framework/vendor/upload/class.upload.php:2207250 #, php-format251 msgid "Error in creating %s image from source."252 msgstr ""253 254 #: ../framework/vendor/upload/class.upload.php:2208255 msgid "Can't read image source. Not an image?."256 msgstr ""257 258 #: ../framework/vendor/upload/class.upload.php:2209259 msgid "GD doesn't seem to be present."260 msgstr ""261 262 #: ../framework/vendor/upload/class.upload.php:2210263 #, php-format264 msgid "No create from %s support, can't read watermark."265 msgstr ""266 267 #: ../framework/vendor/upload/class.upload.php:2211268 #, php-format269 msgid "No %s read support, can't create watermark."270 msgstr ""271 272 #: ../framework/vendor/upload/class.upload.php:2212273 msgid "Unknown image format, can't read watermark."274 msgstr ""275 276 #: ../framework/vendor/upload/class.upload.php:2213277 #, php-format278 msgid "No %s create support."279 msgstr ""280 281 #: ../framework/vendor/upload/class.upload.php:2214282 msgid "No conversion type defined."283 msgstr ""284 285 #: ../framework/vendor/upload/class.upload.php:2215286 msgid "Error copying file on the server. copy() failed."287 msgstr ""288 289 #: ../framework/vendor/upload/class.upload.php:2216290 msgid "Error reading the file."291 30 msgstr "" 292 31 … … 358 97 #: ../includes/manager.php:323 359 98 msgid "Add to role" 360 msgstr ""361 362 #: ../includes/author-widget.php:38363 msgid "Help donating"364 99 msgstr "" 365 100 … … 496 231 msgstr "" 497 232 498 #: ../includes/manager.php:6 20233 #: ../includes/manager.php:606 499 234 msgid "You cannot remove Manage Capabilities from Administrators" 500 235 msgstr "" -
capsman/trunk/license.txt
r198152 r199485 279 279 280 280 END OF TERMS AND CONDITIONS 281 282 How to Apply These Terms to Your New Programs283 284 If you develop a new program, and you want it to be of the greatest285 possible use to the public, the best way to achieve this is to make it286 free software which everyone can redistribute and change under these terms.287 288 To do so, attach the following notices to the program. It is safest289 to attach them to the start of each source file to most effectively290 convey the exclusion of warranty; and each file should have at least291 the "copyright" line and a pointer to where the full notice is found.292 293 <one line to give the program's name and a brief idea of what it does.>294 Copyright (C) <year> <name of author>295 296 This program is free software; you can redistribute it and/or modify297 it under the terms of the GNU General Public License as published by298 the Free Software Foundation; either version 2 of the License, or299 (at your option) any later version.300 301 This program is distributed in the hope that it will be useful,302 but WITHOUT ANY WARRANTY; without even the implied warranty of303 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the304 GNU General Public License for more details.305 306 You should have received a copy of the GNU General Public License along307 with this program; if not, write to the Free Software Foundation, Inc.,308 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.309 310 Also add information on how to contact you by electronic and paper mail.311 312 If the program is interactive, make it output a short notice like this313 when it starts in an interactive mode:314 315 Gnomovision version 69, Copyright (C) year name of author316 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.317 This is free software, and you are welcome to redistribute it318 under certain conditions; type `show c' for details.319 320 The hypothetical commands `show w' and `show c' should show the appropriate321 parts of the General Public License. Of course, the commands you use may322 be called something other than `show w' and `show c'; they could even be323 mouse-clicks or menu items--whatever suits your program.324 325 You should also get your employer (if you work as a programmer) or your326 school, if any, to sign a "copyright disclaimer" for the program, if327 necessary. Here is a sample; alter the names:328 329 Yoyodyne, Inc., hereby disclaims all copyright interest in the program330 `Gnomovision' (which makes passes at compilers) written by James Hacker.331 332 <signature of Ty Coon>, 1 April 1989333 Ty Coon, President of Vice334 335 This General Public License does not permit incorporating your program into336 proprietary programs. If your program is a subroutine library, you may337 consider it more useful to permit linking proprietary applications with the338 library. If this is what you want to do, use the GNU Lesser General339 Public License instead of this License. -
capsman/trunk/readme.txt
r198515 r199485 37 37 * Catalan 38 38 * Spanish 39 * Belorussian *by <a href="http://antsar.info/" rel="nofollow">Ilyuha</a>* 40 * German *by <a href="http://great-solution.de/" rel="nofollow">Carsten Tauber</a>* 39 41 * Italian *by <a href="http://gidibao.net" rel="nofollow">Gianni Diurno</a>* 40 * German *by <a href="http://great-solution.de/" rel="nofollow">Carsten Tauber</a>*41 * Byelorussian *by <a href="http://antsar.info/" rel="nofollow">Ilyuha</a>*42 42 * Russian *by <a href="http://www.fatcow.com" rel="nofollow">Marcis Gasuns</a>* 43 * POT file for easy translation to other languagesincluded.43 * POT file for easy <a href="http://wiki.alkivia.org/general/translators">translation to other languages</a> included. 44 44 45 45 == Installation == … … 89 89 == Changelog == 90 90 91 = 1.3.1 = 92 * Fixed a bug where administrators could not create or manage other administrators. 93 91 94 = 1.3 = 92 95 * Cannot edit users with more capabilities than current user. … … 97 100 98 101 = 1.2.5 = 99 * Tested up to WP 2.9.1.102 * Tested up to WP 2.9.1. 100 103 101 104 = 1.2.4 = 102 * Added Italian translation.105 * Added Italian translation. 103 106 104 107 = 1.2.3 = 105 * Added German and Belorussian translations.108 * Added German and Belorussian translations. 106 109 107 110 = 1.2.2 = 108 * Added Russian translation.111 * Added Russian translation. 109 112 110 113 = 1.2.1 = 111 * Coding Standards.112 * Corrected internal links.113 * Updated Framework.114 * Coding Standards. 115 * Corrected internal links. 116 * Updated Framework. 114 117 115 118 = 1.2 = 116 * Added backup/restore tool.119 * Added backup/restore tool. 117 120 118 121 = 1.1 = 119 * Role deletion added.122 * Role deletion added. 120 123 121 124 = 1.0.1 = 122 * Some code improvements.123 * Updated Alkivia Framework.125 * Some code improvements. 126 * Updated Alkivia Framework. 124 127 125 128 = 1.0 = 126 * First public version.129 * First public version. 127 130 128 131 == Upgrade Notice == 129 132 130 =1.3= 133 = 1.3.1 = 134 Bug fixes. 135 136 = 1.3 = 131 137 Improved security esiting users. You can now create real user managers.
Note: See TracChangeset
for help on using the changeset viewer.