Plugin Directory

Changeset 199485


Ignore:
Timestamp:
01/29/2010 02:18:01 PM (16 years ago)
Author:
Txanny
Message:

Capability Manager 1.3.1

Location:
capsman/trunk
Files:
11 added
26 edited

Legend:

Unmodified
Added
Removed
  • capsman/trunk/capsman.php

    r198515 r199485  
    44Plugin URI: http://alkivia.org/wordpress/capsman
    55Description: Manage user capabilities and roles.
    6 Version: 1.3
     6Version: 1.3.1
    77Author: Jordi Canals
    88Author URI: http://alkivia.org
  • capsman/trunk/framework/classes/abstract/module.php

    r198515 r199485  
    505505        if ( $this->cfg->isForced($this->ID, $option) ) {
    506506            if ( $show_notice ) {
    507                 echo '<em>' . __('Option blocked by administrator.', 'aktheme') . '</em>';
     507                echo '<em>' . __('Option blocked by administrator.', 'akfw') . '</em>';
    508508            }
    509509            return false;
  • capsman/trunk/framework/classes/abstract/plugin.php

    r198515 r199485  
    208208        $this->loadTranslations(); // We have not loaded translations yet.
    209209
    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'),
    212212                '&laquo;' . $this->mod_data['Name'] . ' ' . $this->mod_data['Version'] . '&raquo;')
    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'])
    214214            . '</p></div>';
    215215    }
  • capsman/trunk/framework/init.php

    r198515 r199485  
    4141}
    4242
     43// ================================================= SET GLOBAL CONSTANTS =====
     44
    4345if ( ! defined('AK_STYLES_URL') ) {
    4446    /** Define the framework URL */
     
    7678}
    7779
     80// ============================================== SET GLOBAL ACTION HOOKS =====
     81
    7882/**
    7983 * Adds meta name for Alkivia Framework to head.
     
    8387 * @return void
    8488 */
    85 function _ak_framework_meta_tags(){
     89function _ak_framework_meta_tags() {
    8690    echo '<meta name="framework" content="Alkivia Framework ' . get_option('ak_framework_version') . '" />' . PHP_EOL;
    8791}
    8892add_action('wp_head', '_ak_framework_meta_tags');
    8993
    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 */
     100function _ak_framework_translation()
     101{
     102    $locale = get_locale();
     103    $mofile = AK_FRAMEWORK . "/lang/$locale.mo";
     104
     105    return load_textdomain('akfw', $mofile);
     106}
     107add_action('init', '_ak_framework_translation');
     108
     109// ================================================ INCLUDE ALL LIBRARIES =====
    91110
    92111// Create the upload folder if does not exist.
  • capsman/trunk/framework/lib/filesystem.php

    r198515 r199485  
    126126function ak_dir_content($directory, $args='')
    127127{
     128
    128129    $directory = realpath($directory); // Be sure the directory path is well formed.
    129130    if ( ! is_dir($directory) ) {      // Check if it is a directory.
     
    164165    }
    165166    $d->close();
    166     sort($dir_tree);
     167    asort($dir_tree);
    167168
    168169    return $dir_tree;
    169170}
     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 */
     178function 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  
    5050    if ( is_admin() ) {
    5151        if ( empty($message) ) {
    52             $message = __('Settings saved.');
     52            $message = __('Settings saved.', 'akfw');
    5353        }
    5454        echo '<div id="message" class="updated fade"><p><strong>' . $message . '</strong></p></div>';
     
    132132 *
    133133 * @param $datetime Date Time in mySql Format.
    134  * @param $text_domain Translations textDomain.
    135134 * @return string The time from the date to now, just looks to yesterday.
    136135 */
    137 function ak_time_ago( $datetime, $text_domain= '' )
     136function ak_time_ago( $datetime )
    138137{
    139138    $before = strtotime($datetime);
     
    159158    switch ( $unit ) {
    160159        case 's':
    161             $ago = __('Just Now', $text_domain);
     160            $ago = __('Just Now', 'akfw');
    162161            break;
    163162        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);
    165164            break;
    166165        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);
    168167            break;
    169168        case 'd' :
    170169            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');
    172171                $ago = sprintf($literal, date('H:i', $before));
    173172            } else {
  • capsman/trunk/framework/lib/themes.php

    r198515 r199485  
    158158            <ul>
    159159                <?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>
    161161                <?php endif; ?>
    162162
    163163                <?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>
    165165                <?php endif; ?>
    166166
    167167                <?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>
    169169                <?php endif; ?>
    170170
    171171                <?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>
    173173                <?php endif; ?>
    174174
    175175                <?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>
    177177                <?php endif; ?>
    178178
    179179                <?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>
    181181                <?php endif; ?>
    182182            </ul>
  • capsman/trunk/framework/license.txt

    r198515 r199485  
    279279
    280280             END OF TERMS AND CONDITIONS
    281 
    282         How to Apply These Terms to Your New Programs
    283 
    284   If you develop a new program, and you want it to be of the greatest
    285 possible use to the public, the best way to achieve this is to make it
    286 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 safest
    289 to attach them to the start of each source file to most effectively
    290 convey the exclusion of warranty; and each file should have at least
    291 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 modify
    297     it under the terms of the GNU General Public License as published by
    298     the Free Software Foundation; either version 2 of the License, or
    299     (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 of
    303     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    304     GNU General Public License for more details.
    305 
    306     You should have received a copy of the GNU General Public License along
    307     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 this
    313 when it starts in an interactive mode:
    314 
    315     Gnomovision version 69, Copyright (C) year name of author
    316     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    317     This is free software, and you are welcome to redistribute it
    318     under certain conditions; type `show c' for details.
    319 
    320 The hypothetical commands `show w' and `show c' should show the appropriate
    321 parts of the General Public License.  Of course, the commands you use may
    322 be called something other than `show w' and `show c'; they could even be
    323 mouse-clicks or menu items--whatever suits your program.
    324 
    325 You should also get your employer (if you work as a programmer) or your
    326 school, if any, to sign a "copyright disclaimer" for the program, if
    327 necessary.  Here is a sample; alter the names:
    328 
    329   Yoyodyne, Inc., hereby disclaims all copyright interest in the program
    330   `Gnomovision' (which makes passes at compilers) written by James Hacker.
    331 
    332   <signature of Ty Coon>, 1 April 1989
    333   Ty Coon, President of Vice
    334 
    335 This General Public License does not permit incorporating your program into
    336 proprietary programs.  If your program is a subroutine library, you may
    337 consider it more useful to permit linking proprietary applications with the
    338 library.  If this is what you want to do, use the GNU Lesser General
    339 Public License instead of this License.
  • capsman/trunk/framework/loader.php

    r198515 r199485  
    3232//       If loaded on plufins_loaded will not load for themes.
    3333
    34 $akf_version = '0.5';
     34$akf_version = '0.6';
    3535
    3636if ( file_exists(WP_CONTENT_DIR . '/alkivia.php') ) {
  • capsman/trunk/framework/vendor/upload/class.upload.php

    r198515 r199485  
    21272127     * @param  array  $file $_FILES['form_field']
    21282128     *    or   string $file Local filename
    2129      * @param  string $textDomain Optional translation textdomain
    2130      */
    2131     function akUpload( $file, $textDomain = '' ) {
     2129     */
     2130    function akUpload( $file ) {
    21322131
    21332132        $this->version            = '0.28';
     
    21702169
    21712170        $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');
    22172216
    22182217        // determines the supported MIME types, and matching image format
  • capsman/trunk/includes/manager.php

    r198515 r199485  
    164164    function filterEditRoles ( $roles )
    165165    {
    166         $this->generateUserNames();
     166        $this->generateNames();
    167167        $valid = array_keys($this->roles);
    168168
     
    194194        }
    195195
    196         $this->generateUserNames();
     196        $this->generateNames();
    197197        $valid = array_keys($this->roles);
    198198
     
    480480    /**
    481481     * 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 void
    488      */
    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.
    522482     * If user has 'administrator' role, system roles are generated.
    523483     * The key is the capability and the value the created screen name.
     
    532492            $this->generateSysNames();
    533493        } 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;
    535521        }
    536522    }
  • capsman/trunk/lang/capsman-by_BY.po

    r198515 r199485  
    33"Project-Id-Version: Capability Manager\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-26 22:12+0100\n"
     5"POT-Creation-Date: 2010-01-29 15:03+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: antsar.info <iliamrv@ya.ru>\n"
    99"MIME-Version: 1.0\n"
     
    1616
    1717#: ../capsman.php:53
    18 #: ../framework/classes/abstract/plugin.php:210
    19 #: ../framework/classes/abstract/plugin.php:229
    2018msgid "Warning:"
    2119msgstr "Папярэджанне:"
     
    3028msgid "%s is required for this plugin."
    3129msgstr "%s неабходзен лоя ўбудовы."
    32 
    33 #: ../framework/classes/abstract/module.php:507
    34 msgid "Option blocked by administrator."
    35 msgstr ""
    36 
    37 #: ../framework/classes/abstract/plugin.php:211
    38 #, php-format
    39 msgid "The active plugin %s is not compatible with your WordPress version."
    40 msgstr "Актыўная ўбудова %s не сумяшчальны з бягучай версіяй WordPress."
    41 
    42 #: ../framework/classes/abstract/plugin.php:213
    43 #, php-format
    44 msgid "WordPress %s is required to run this plugin."
    45 msgstr "WordPress %s неабходзен для запуску гэтай убудовы."
    46 
    47 #: ../framework/classes/abstract/plugin.php:230
    48 msgid "Standard sidebar functions are not present."
    49 msgstr "Стандартныя функцыі бакавой панэлі не прадстаўлены."
    50 
    51 #: ../framework/classes/abstract/plugin.php:231
    52 #, php-format
    53 msgid "It is required to use the standard sidebar to run %s"
    54 msgstr "Гэта неабходна для выкарыстання стандартнай бакавой панэлі для запуску %s"
    55 
    56 #: ../framework/lib/formating.php:52
    57 msgid "Settings saved."
    58 msgstr "Налады захаваны."
    59 
    60 #: ../framework/lib/formating.php:161
    61 msgid "Just Now"
    62 msgstr ""
    63 
    64 #: ../framework/lib/formating.php:164
    65 msgid "1 minute ago"
    66 msgstr ""
    67 
    68 #: ../framework/lib/formating.php:167
    69 msgid "1 hour ago"
    70 msgstr ""
    71 
    72 #: ../framework/lib/formating.php:171
    73 #, php-format
    74 msgid "Today at %s"
    75 msgstr ""
    76 
    77 #: ../framework/lib/formating.php:171
    78 #, php-format
    79 msgid "Yesterday at %s"
    80 msgstr ""
    81 
    82 #: ../framework/lib/themes.php:160
    83 msgid "Plugin Homepage"
    84 msgstr "Хатняя старонка ўбудовы"
    85 
    86 #: ../framework/lib/themes.php:164
    87 #, fuzzy
    88 msgid "Theme Homepage"
    89 msgstr "Хатняя старонка аўтара"
    90 
    91 #: ../framework/lib/themes.php:168
    92 #, fuzzy
    93 msgid "Documentation"
    94 msgstr "Няма дзеянняў"
    95 
    96 #: ../framework/lib/themes.php:172
    97 msgid "Support Forum"
    98 msgstr "Форум падтрымкі"
    99 
    100 #: ../framework/lib/themes.php:176
    101 msgid "Author Homepage"
    102 msgstr "Хатняя старонка аўтара"
    103 
    104 #: ../framework/lib/themes.php:180
    105 msgid "Donate to project"
    106 msgstr ""
    107 
    108 #: ../framework/vendor/upload/class.upload.php:2172
    109 msgid "File error. Please try again."
    110 msgstr ""
    111 
    112 #: ../framework/vendor/upload/class.upload.php:2173
    113 msgid "Local file doesn't exist."
    114 msgstr ""
    115 
    116 #: ../framework/vendor/upload/class.upload.php:2174
    117 msgid "Local file is not readable."
    118 msgstr ""
    119 
    120 #: ../framework/vendor/upload/class.upload.php:2175
    121 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:2176
    125 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:2177
    129 msgid "File upload error (the uploaded file was only partially uploaded)."
    130 msgstr ""
    131 
    132 #: ../framework/vendor/upload/class.upload.php:2178
    133 msgid "File upload error (no file was uploaded)."
    134 msgstr ""
    135 
    136 #: ../framework/vendor/upload/class.upload.php:2179
    137 msgid "File upload error (missing a temporary folder)."
    138 msgstr ""
    139 
    140 #: ../framework/vendor/upload/class.upload.php:2180
    141 msgid "File upload error (failed to write file to disk)."
    142 msgstr ""
    143 
    144 #: ../framework/vendor/upload/class.upload.php:2181
    145 msgid "File upload error (file upload stopped by extension)."
    146 msgstr ""
    147 
    148 #: ../framework/vendor/upload/class.upload.php:2182
    149 msgid "File upload error (unknown error code)."
    150 msgstr ""
    151 
    152 #: ../framework/vendor/upload/class.upload.php:2183
    153 msgid "File upload error. Please try again."
    154 msgstr ""
    155 
    156 #: ../framework/vendor/upload/class.upload.php:2184
    157 msgid "File too big."
    158 msgstr ""
    159 
    160 #: ../framework/vendor/upload/class.upload.php:2185
    161 msgid "MIME type can't be detected."
    162 msgstr ""
    163 
    164 #: ../framework/vendor/upload/class.upload.php:2186
    165 #, fuzzy
    166 msgid "Incorrect type of file."
    167 msgstr "Некарэктнае імя магчымасці."
    168 
    169 #: ../framework/vendor/upload/class.upload.php:2187
    170 msgid "Image too wide."
    171 msgstr ""
    172 
    173 #: ../framework/vendor/upload/class.upload.php:2188
    174 msgid "Image too narrow."
    175 msgstr ""
    176 
    177 #: ../framework/vendor/upload/class.upload.php:2189
    178 msgid "Image too high."
    179 msgstr ""
    180 
    181 #: ../framework/vendor/upload/class.upload.php:2190
    182 msgid "Image too short."
    183 msgstr ""
    184 
    185 #: ../framework/vendor/upload/class.upload.php:2191
    186 msgid "Image ratio too high (image too wide)."
    187 msgstr ""
    188 
    189 #: ../framework/vendor/upload/class.upload.php:2192
    190 msgid "Image ratio too low (image too high)."
    191 msgstr ""
    192 
    193 #: ../framework/vendor/upload/class.upload.php:2193
    194 msgid "Image has too many pixels."
    195 msgstr ""
    196 
    197 #: ../framework/vendor/upload/class.upload.php:2194
    198 msgid "Image has not enough pixels."
    199 msgstr ""
    200 
    201 #: ../framework/vendor/upload/class.upload.php:2195
    202 msgid "File not uploaded. Can't carry on a process."
    203 msgstr ""
    204 
    205 #: ../framework/vendor/upload/class.upload.php:2196
    206 #, php-format
    207 msgid "%s already exists. Please change the file name."
    208 msgstr ""
    209 
    210 #: ../framework/vendor/upload/class.upload.php:2197
    211 msgid "No correct temp source file. Can't carry on a process."
    212 msgstr ""
    213 
    214 #: ../framework/vendor/upload/class.upload.php:2198
    215 msgid "No correct uploaded source file. Can't carry on a process."
    216 msgstr ""
    217 
    218 #: ../framework/vendor/upload/class.upload.php:2199
    219 msgid "Destination directory can't be created. Can't carry on a process."
    220 msgstr ""
    221 
    222 #: ../framework/vendor/upload/class.upload.php:2200
    223 msgid "Destination directory doesn't exist. Can't carry on a process."
    224 msgstr ""
    225 
    226 #: ../framework/vendor/upload/class.upload.php:2201
    227 msgid "Destination path is not a directory. Can't carry on a process."
    228 msgstr ""
    229 
    230 #: ../framework/vendor/upload/class.upload.php:2202
    231 msgid "Destination directory can't be made writeable. Can't carry on a process."
    232 msgstr ""
    233 
    234 #: ../framework/vendor/upload/class.upload.php:2203
    235 msgid "Destination path is not a writeable. Can't carry on a process."
    236 msgstr ""
    237 
    238 #: ../framework/vendor/upload/class.upload.php:2204
    239 msgid "Can't create the temporary file. Can't carry on a process."
    240 msgstr ""
    241 
    242 #: ../framework/vendor/upload/class.upload.php:2205
    243 msgid "Source file is not readable. Can't carry on a process."
    244 msgstr ""
    245 
    246 #: ../framework/vendor/upload/class.upload.php:2206
    247 #, php-format
    248 msgid "No create from %s support."
    249 msgstr ""
    250 
    251 #: ../framework/vendor/upload/class.upload.php:2207
    252 #, fuzzy, php-format
    253 msgid "Error in creating %s image from source."
    254 msgstr "Памылка: Новая роля не створана."
    255 
    256 #: ../framework/vendor/upload/class.upload.php:2208
    257 msgid "Can't read image source. Not an image?."
    258 msgstr ""
    259 
    260 #: ../framework/vendor/upload/class.upload.php:2209
    261 msgid "GD doesn't seem to be present."
    262 msgstr ""
    263 
    264 #: ../framework/vendor/upload/class.upload.php:2210
    265 #, php-format
    266 msgid "No create from %s support, can't read watermark."
    267 msgstr ""
    268 
    269 #: ../framework/vendor/upload/class.upload.php:2211
    270 #, php-format
    271 msgid "No %s read support, can't create watermark."
    272 msgstr ""
    273 
    274 #: ../framework/vendor/upload/class.upload.php:2212
    275 msgid "Unknown image format, can't read watermark."
    276 msgstr ""
    277 
    278 #: ../framework/vendor/upload/class.upload.php:2213
    279 #, php-format
    280 msgid "No %s create support."
    281 msgstr ""
    282 
    283 #: ../framework/vendor/upload/class.upload.php:2214
    284 msgid "No conversion type defined."
    285 msgstr ""
    286 
    287 #: ../framework/vendor/upload/class.upload.php:2215
    288 msgid "Error copying file on the server. copy() failed."
    289 msgstr ""
    290 
    291 #: ../framework/vendor/upload/class.upload.php:2216
    292 #, fuzzy
    293 msgid "Error reading the file."
    294 msgstr "Памылка: Новая роля не створана."
    29530
    29631#: ../includes/admin.php:36
     
    36499msgid "Add to role"
    365100msgstr "Дадаць ролю"
    366 
    367 #: ../includes/author-widget.php:38
    368 msgid "Help donating"
    369 msgstr "Дапамога праз ахвяраванні"
    370101
    371102#: ../includes/backup.php:33
     
    491222
    492223#: ../includes/manager.php:405
    493 #, fuzzy, php-format
     224#, php-format
    494225msgid "Role has been deleted. %1$d users moved to default role %2$s."
    495 msgstr "Роля %1$s была выдалена. %2$d карыстачоў перамешчана ў стандартную ролю %3$s."
     226msgstr "Роля была выдалена. %1$d карыстачоў перамешчана ў стандартную ролю %2$s."
    496227
    497228#: ../includes/manager.php:419
     
    503234msgstr "Ролі і магчымасці скінуты да стандартных для WordPress "
    504235
    505 #: ../includes/manager.php:620
     236#: ../includes/manager.php:606
    506237msgid "You cannot remove Manage Capabilities from Administrators"
    507238msgstr "Вы не можаце выдаліць Manage Capabilities праз адміністратараў ."
    508239
     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 "Дапамога праз ахвяраванні"
    509279#~ msgid "Managing %s"
    510280#~ msgstr "Administrando %s"
  • capsman/trunk/lang/capsman-ca.po

    r198515 r199485  
    33"Project-Id-Version: Capability Manager\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-26 22:12+0100\n"
     5"POT-Creation-Date: 2010-01-29 15:03+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n"
    99"MIME-Version: 1.0\n"
     
    1515
    1616#: ../capsman.php:53
    17 #: ../framework/classes/abstract/plugin.php:210
    18 #: ../framework/classes/abstract/plugin.php:229
    1917msgid "Warning:"
    2018msgstr "Atenció:"
     
    2927msgid "%s is required for this plugin."
    3028msgstr "Es requereix %s per aquesta extensió."
    31 
    32 #: ../framework/classes/abstract/module.php:507
    33 msgid "Option blocked by administrator."
    34 msgstr "Opció desactivada per l'administrador."
    35 
    36 #: ../framework/classes/abstract/plugin.php:211
    37 #, php-format
    38 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:213
    42 #, php-format
    43 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:230
    47 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:231
    51 #, php-format
    52 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:52
    56 msgid "Settings saved."
    57 msgstr "Opcions desades."
    58 
    59 #: ../framework/lib/formating.php:161
    60 msgid "Just Now"
    61 msgstr "Ara mateix"
    62 
    63 #: ../framework/lib/formating.php:164
    64 msgid "1 minute ago"
    65 msgstr "Fa 1 minut"
    66 
    67 #: ../framework/lib/formating.php:167
    68 msgid "1 hour ago"
    69 msgstr "Fa 1 hora"
    70 
    71 #: ../framework/lib/formating.php:171
    72 #, php-format
    73 msgid "Today at %s"
    74 msgstr "Avui a les %s"
    75 
    76 #: ../framework/lib/formating.php:171
    77 #, php-format
    78 msgid "Yesterday at %s"
    79 msgstr "Ahir a les %s"
    80 
    81 #: ../framework/lib/themes.php:160
    82 msgid "Plugin Homepage"
    83 msgstr "Pàgina web de l'extensió"
    84 
    85 #: ../framework/lib/themes.php:164
    86 msgid "Theme Homepage"
    87 msgstr "Pàgina web del tema"
    88 
    89 #: ../framework/lib/themes.php:168
    90 msgid "Documentation"
    91 msgstr "Documentació"
    92 
    93 #: ../framework/lib/themes.php:172
    94 msgid "Support Forum"
    95 msgstr "Forum d'Ajuda"
    96 
    97 #: ../framework/lib/themes.php:176
    98 msgid "Author Homepage"
    99 msgstr "Lloc web de l'autor"
    100 
    101 #: ../framework/lib/themes.php:180
    102 msgid "Donate to project"
    103 msgstr "Fes un donatiu"
    104 
    105 #: ../framework/vendor/upload/class.upload.php:2172
    106 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:2173
    110 msgid "Local file doesn't exist."
    111 msgstr "El fitxer local no existeix."
    112 
    113 #: ../framework/vendor/upload/class.upload.php:2174
    114 msgid "Local file is not readable."
    115 msgstr "El fitxer local no es pot llegir."
    116 
    117 #: ../framework/vendor/upload/class.upload.php:2175
    118 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:2176
    122 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:2177
    126 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:2178
    130 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:2179
    134 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:2180
    138 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:2181
    142 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:2182
    146 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:2183
    150 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:2184
    154 msgid "File too big."
    155 msgstr "Fitxer massa gran."
    156 
    157 #: ../framework/vendor/upload/class.upload.php:2185
    158 msgid "MIME type can't be detected."
    159 msgstr "No es pot detectar el tipus MIME."
    160 
    161 #: ../framework/vendor/upload/class.upload.php:2186
    162 msgid "Incorrect type of file."
    163 msgstr "Tipus d'arxiu invàlid"
    164 
    165 #: ../framework/vendor/upload/class.upload.php:2187
    166 msgid "Image too wide."
    167 msgstr "Imatge massa ample."
    168 
    169 #: ../framework/vendor/upload/class.upload.php:2188
    170 msgid "Image too narrow."
    171 msgstr "Imatge massa estreta."
    172 
    173 #: ../framework/vendor/upload/class.upload.php:2189
    174 msgid "Image too high."
    175 msgstr "Imatge massa alta."
    176 
    177 #: ../framework/vendor/upload/class.upload.php:2190
    178 msgid "Image too short."
    179 msgstr "Imatge massa baixa."
    180 
    181 #: ../framework/vendor/upload/class.upload.php:2191
    182 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:2192
    186 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:2193
    190 msgid "Image has too many pixels."
    191 msgstr "La imatge té massa píxels."
    192 
    193 #: ../framework/vendor/upload/class.upload.php:2194
    194 msgid "Image has not enough pixels."
    195 msgstr "La imatge no té prou píxels."
    196 
    197 #: ../framework/vendor/upload/class.upload.php:2195
    198 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:2196
    202 #, php-format
    203 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:2197
    207 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:2198
    211 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:2199
    215 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:2200
    219 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:2201
    223 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:2202
    227 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:2203
    231 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:2204
    235 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:2205
    239 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:2206
    243 #, php-format
    244 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:2207
    248 #, php-format
    249 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:2208
    253 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:2209
    257 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:2210
    261 #, php-format
    262 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:2211
    266 #, php-format
    267 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:2212
    271 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:2213
    275 #, php-format
    276 msgid "No %s create support."
    277 msgstr "No hi ha funcions per crear %s."
    278 
    279 #: ../framework/vendor/upload/class.upload.php:2214
    280 msgid "No conversion type defined."
    281 msgstr "No s'ha definit cap tipus de conversió."
    282 
    283 #: ../framework/vendor/upload/class.upload.php:2215
    284 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:2216
    288 msgid "Error reading the file."
    289 msgstr "Error llegint el fitxer."
    29029
    29130#: ../includes/admin.php:36
     
    35998msgid "Add to role"
    36099msgstr "Afegir al rol"
    361 
    362 #: ../includes/author-widget.php:38
    363 msgid "Help donating"
    364 msgstr "Ajuda donant"
    365100
    366101#: ../includes/backup.php:33
     
    498233msgstr "S'han restaurat Rols i Competències als valors predeterminats de WordPress."
    499234
    500 #: ../includes/manager.php:620
     235#: ../includes/manager.php:606
    501236msgid "You cannot remove Manage Capabilities from Administrators"
    502237msgstr "No pots eliminar 'Manage Capabilities' dels administradors"
    503238
     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  
    33"Project-Id-Version: Capability Manager\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-26 22:12+0100\n"
     5"POT-Creation-Date: 2010-01-29 15:03+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Alkivia | http://alkivia.org <alkivia@jcanals.net>\n"
    99"MIME-Version: 1.0\n"
     
    1616
    1717#: ../capsman.php:53
    18 #: ../framework/classes/abstract/plugin.php:210
    19 #: ../framework/classes/abstract/plugin.php:229
    2018msgid "Warning:"
    2119msgstr "WARNUNG:"
     
    3028msgid "%s is required for this plugin."
    3129msgstr "%s wird für dieses Plugin benötigt."
    32 
    33 #: ../framework/classes/abstract/module.php:507
    34 msgid "Option blocked by administrator."
    35 msgstr ""
    36 
    37 #: ../framework/classes/abstract/plugin.php:211
    38 #, php-format
    39 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:213
    43 #, php-format
    44 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:230
    48 msgid "Standard sidebar functions are not present."
    49 msgstr "Standard Sidebarfunktionen stehen nicht zur Verfügung!"
    50 
    51 #: ../framework/classes/abstract/plugin.php:231
    52 #, php-format
    53 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:52
    57 msgid "Settings saved."
    58 msgstr "Einstellungen gespeichert"
    59 
    60 #: ../framework/lib/formating.php:161
    61 msgid "Just Now"
    62 msgstr ""
    63 
    64 #: ../framework/lib/formating.php:164
    65 msgid "1 minute ago"
    66 msgstr ""
    67 
    68 #: ../framework/lib/formating.php:167
    69 msgid "1 hour ago"
    70 msgstr ""
    71 
    72 #: ../framework/lib/formating.php:171
    73 #, php-format
    74 msgid "Today at %s"
    75 msgstr ""
    76 
    77 #: ../framework/lib/formating.php:171
    78 #, php-format
    79 msgid "Yesterday at %s"
    80 msgstr ""
    81 
    82 #: ../framework/lib/themes.php:160
    83 msgid "Plugin Homepage"
    84 msgstr "Plugin Homepage"
    85 
    86 #: ../framework/lib/themes.php:164
    87 #, fuzzy
    88 msgid "Theme Homepage"
    89 msgstr "Author Homepage"
    90 
    91 #: ../framework/lib/themes.php:168
    92 #, fuzzy
    93 msgid "Documentation"
    94 msgstr "ausführen"
    95 
    96 #: ../framework/lib/themes.php:172
    97 msgid "Support Forum"
    98 msgstr "Support Forum"
    99 
    100 #: ../framework/lib/themes.php:176
    101 msgid "Author Homepage"
    102 msgstr "Author Homepage"
    103 
    104 #: ../framework/lib/themes.php:180
    105 msgid "Donate to project"
    106 msgstr ""
    107 
    108 #: ../framework/vendor/upload/class.upload.php:2172
    109 msgid "File error. Please try again."
    110 msgstr ""
    111 
    112 #: ../framework/vendor/upload/class.upload.php:2173
    113 msgid "Local file doesn't exist."
    114 msgstr ""
    115 
    116 #: ../framework/vendor/upload/class.upload.php:2174
    117 msgid "Local file is not readable."
    118 msgstr ""
    119 
    120 #: ../framework/vendor/upload/class.upload.php:2175
    121 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:2176
    125 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:2177
    129 msgid "File upload error (the uploaded file was only partially uploaded)."
    130 msgstr ""
    131 
    132 #: ../framework/vendor/upload/class.upload.php:2178
    133 msgid "File upload error (no file was uploaded)."
    134 msgstr ""
    135 
    136 #: ../framework/vendor/upload/class.upload.php:2179
    137 msgid "File upload error (missing a temporary folder)."
    138 msgstr ""
    139 
    140 #: ../framework/vendor/upload/class.upload.php:2180
    141 msgid "File upload error (failed to write file to disk)."
    142 msgstr ""
    143 
    144 #: ../framework/vendor/upload/class.upload.php:2181
    145 msgid "File upload error (file upload stopped by extension)."
    146 msgstr ""
    147 
    148 #: ../framework/vendor/upload/class.upload.php:2182
    149 msgid "File upload error (unknown error code)."
    150 msgstr ""
    151 
    152 #: ../framework/vendor/upload/class.upload.php:2183
    153 msgid "File upload error. Please try again."
    154 msgstr ""
    155 
    156 #: ../framework/vendor/upload/class.upload.php:2184
    157 msgid "File too big."
    158 msgstr ""
    159 
    160 #: ../framework/vendor/upload/class.upload.php:2185
    161 msgid "MIME type can't be detected."
    162 msgstr ""
    163 
    164 #: ../framework/vendor/upload/class.upload.php:2186
    165 #, fuzzy
    166 msgid "Incorrect type of file."
    167 msgstr "Berechtigungsname ist nicht zulässig."
    168 
    169 #: ../framework/vendor/upload/class.upload.php:2187
    170 msgid "Image too wide."
    171 msgstr ""
    172 
    173 #: ../framework/vendor/upload/class.upload.php:2188
    174 msgid "Image too narrow."
    175 msgstr ""
    176 
    177 #: ../framework/vendor/upload/class.upload.php:2189
    178 msgid "Image too high."
    179 msgstr ""
    180 
    181 #: ../framework/vendor/upload/class.upload.php:2190
    182 msgid "Image too short."
    183 msgstr ""
    184 
    185 #: ../framework/vendor/upload/class.upload.php:2191
    186 msgid "Image ratio too high (image too wide)."
    187 msgstr ""
    188 
    189 #: ../framework/vendor/upload/class.upload.php:2192
    190 msgid "Image ratio too low (image too high)."
    191 msgstr ""
    192 
    193 #: ../framework/vendor/upload/class.upload.php:2193
    194 msgid "Image has too many pixels."
    195 msgstr ""
    196 
    197 #: ../framework/vendor/upload/class.upload.php:2194
    198 msgid "Image has not enough pixels."
    199 msgstr ""
    200 
    201 #: ../framework/vendor/upload/class.upload.php:2195
    202 msgid "File not uploaded. Can't carry on a process."
    203 msgstr ""
    204 
    205 #: ../framework/vendor/upload/class.upload.php:2196
    206 #, php-format
    207 msgid "%s already exists. Please change the file name."
    208 msgstr ""
    209 
    210 #: ../framework/vendor/upload/class.upload.php:2197
    211 msgid "No correct temp source file. Can't carry on a process."
    212 msgstr ""
    213 
    214 #: ../framework/vendor/upload/class.upload.php:2198
    215 msgid "No correct uploaded source file. Can't carry on a process."
    216 msgstr ""
    217 
    218 #: ../framework/vendor/upload/class.upload.php:2199
    219 msgid "Destination directory can't be created. Can't carry on a process."
    220 msgstr ""
    221 
    222 #: ../framework/vendor/upload/class.upload.php:2200
    223 msgid "Destination directory doesn't exist. Can't carry on a process."
    224 msgstr ""
    225 
    226 #: ../framework/vendor/upload/class.upload.php:2201
    227 msgid "Destination path is not a directory. Can't carry on a process."
    228 msgstr ""
    229 
    230 #: ../framework/vendor/upload/class.upload.php:2202
    231 msgid "Destination directory can't be made writeable. Can't carry on a process."
    232 msgstr ""
    233 
    234 #: ../framework/vendor/upload/class.upload.php:2203
    235 msgid "Destination path is not a writeable. Can't carry on a process."
    236 msgstr ""
    237 
    238 #: ../framework/vendor/upload/class.upload.php:2204
    239 msgid "Can't create the temporary file. Can't carry on a process."
    240 msgstr ""
    241 
    242 #: ../framework/vendor/upload/class.upload.php:2205
    243 msgid "Source file is not readable. Can't carry on a process."
    244 msgstr ""
    245 
    246 #: ../framework/vendor/upload/class.upload.php:2206
    247 #, php-format
    248 msgid "No create from %s support."
    249 msgstr ""
    250 
    251 #: ../framework/vendor/upload/class.upload.php:2207
    252 #, fuzzy, php-format
    253 msgid "Error in creating %s image from source."
    254 msgstr "FEHLER: Rolle konnte nicht angelegt werden."
    255 
    256 #: ../framework/vendor/upload/class.upload.php:2208
    257 msgid "Can't read image source. Not an image?."
    258 msgstr ""
    259 
    260 #: ../framework/vendor/upload/class.upload.php:2209
    261 msgid "GD doesn't seem to be present."
    262 msgstr ""
    263 
    264 #: ../framework/vendor/upload/class.upload.php:2210
    265 #, php-format
    266 msgid "No create from %s support, can't read watermark."
    267 msgstr ""
    268 
    269 #: ../framework/vendor/upload/class.upload.php:2211
    270 #, php-format
    271 msgid "No %s read support, can't create watermark."
    272 msgstr ""
    273 
    274 #: ../framework/vendor/upload/class.upload.php:2212
    275 msgid "Unknown image format, can't read watermark."
    276 msgstr ""
    277 
    278 #: ../framework/vendor/upload/class.upload.php:2213
    279 #, php-format
    280 msgid "No %s create support."
    281 msgstr ""
    282 
    283 #: ../framework/vendor/upload/class.upload.php:2214
    284 msgid "No conversion type defined."
    285 msgstr ""
    286 
    287 #: ../framework/vendor/upload/class.upload.php:2215
    288 msgid "Error copying file on the server. copy() failed."
    289 msgstr ""
    290 
    291 #: ../framework/vendor/upload/class.upload.php:2216
    292 #, fuzzy
    293 msgid "Error reading the file."
    294 msgstr "FEHLER: Rolle konnte nicht angelegt werden."
    29530
    29631#: ../includes/admin.php:36
     
    36499msgid "Add to role"
    365100msgstr "zur Rolle hinzufügen"
    366 
    367 #: ../includes/author-widget.php:38
    368 msgid "Help donating"
    369 msgstr "Spenden"
    370101
    371102#: ../includes/backup.php:33
     
    491222
    492223#: ../includes/manager.php:405
    493 #, fuzzy, php-format
     224#, php-format
    494225msgid "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."
     226msgstr "Rolle wurde gelöscht. %1$d Benutzer auf Standardrolle (default) gesetzt %2$s."
    496227
    497228#: ../includes/manager.php:419
     
    503234msgstr "Rollen und Berechtigungen auf Wordpress Standard zurücksetzen"
    504235
    505 #: ../includes/manager.php:620
     236#: ../includes/manager.php:606
    506237msgid "You cannot remove Manage Capabilities from Administrators"
    507238msgstr "Administratoren dürfen keine Berechtigungen entzogen werden!"
    508239
     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"
    509279#~ msgid "Managing %s"
    510280#~ msgstr "Administrando %s"
  • capsman/trunk/lang/capsman-es_ES.po

    r198515 r199485  
    33"Project-Id-Version: Capability Manager\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-26 22:12+0100\n"
     5"POT-Creation-Date: 2010-01-29 15:03+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n"
    99"MIME-Version: 1.0\n"
     
    1616
    1717#: ../capsman.php:53
    18 #: ../framework/classes/abstract/plugin.php:210
    19 #: ../framework/classes/abstract/plugin.php:229
    2018msgid "Warning:"
    2119msgstr "Atención:"
     
    3028msgid "%s is required for this plugin."
    3129msgstr "Se require %s para utilizar esta extensión."
    32 
    33 #: ../framework/classes/abstract/module.php:507
    34 msgid "Option blocked by administrator."
    35 msgstr "Opción bloqueada por el administrador."
    36 
    37 #: ../framework/classes/abstract/plugin.php:211
    38 #, php-format
    39 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:213
    43 #, php-format
    44 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:230
    48 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:231
    52 #, php-format
    53 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:52
    57 msgid "Settings saved."
    58 msgstr "Opciones guardadas."
    59 
    60 #: ../framework/lib/formating.php:161
    61 msgid "Just Now"
    62 msgstr "Ahora mismo"
    63 
    64 #: ../framework/lib/formating.php:164
    65 msgid "1 minute ago"
    66 msgstr "Hace 1 minuto"
    67 
    68 #: ../framework/lib/formating.php:167
    69 msgid "1 hour ago"
    70 msgstr "Hace una hora"
    71 
    72 #: ../framework/lib/formating.php:171
    73 #, php-format
    74 msgid "Today at %s"
    75 msgstr "Hoy a las %s"
    76 
    77 #: ../framework/lib/formating.php:171
    78 #, php-format
    79 msgid "Yesterday at %s"
    80 msgstr "Ayer a las %s"
    81 
    82 #: ../framework/lib/themes.php:160
    83 msgid "Plugin Homepage"
    84 msgstr "Página del plugin"
    85 
    86 #: ../framework/lib/themes.php:164
    87 msgid "Theme Homepage"
    88 msgstr "Página del tema"
    89 
    90 #: ../framework/lib/themes.php:168
    91 msgid "Documentation"
    92 msgstr "Documentación"
    93 
    94 #: ../framework/lib/themes.php:172
    95 msgid "Support Forum"
    96 msgstr "Foro de soporte"
    97 
    98 #: ../framework/lib/themes.php:176
    99 msgid "Author Homepage"
    100 msgstr "Página del autor"
    101 
    102 #: ../framework/lib/themes.php:180
    103 msgid "Donate to project"
    104 msgstr "Haz un donativo"
    105 
    106 #: ../framework/vendor/upload/class.upload.php:2172
    107 msgid "File error. Please try again."
    108 msgstr "Error de archivo. Por favor, reintentalo de nuevo."
    109 
    110 #: ../framework/vendor/upload/class.upload.php:2173
    111 msgid "Local file doesn't exist."
    112 msgstr "El archivo local no existe."
    113 
    114 #: ../framework/vendor/upload/class.upload.php:2174
    115 msgid "Local file is not readable."
    116 msgstr "El archivo local no es legible."
    117 
    118 #: ../framework/vendor/upload/class.upload.php:2175
    119 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:2176
    123 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:2177
    127 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:2178
    131 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:2179
    135 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:2180
    139 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:2181
    143 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:2182
    147 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:2183
    151 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:2184
    155 msgid "File too big."
    156 msgstr "Archivo demasiado grande."
    157 
    158 #: ../framework/vendor/upload/class.upload.php:2185
    159 msgid "MIME type can't be detected."
    160 msgstr "No se pudo detectar el tipo MIME."
    161 
    162 #: ../framework/vendor/upload/class.upload.php:2186
    163 msgid "Incorrect type of file."
    164 msgstr "Tipo de archivo incorrecto."
    165 
    166 #: ../framework/vendor/upload/class.upload.php:2187
    167 msgid "Image too wide."
    168 msgstr "Imagen demasiado ancha."
    169 
    170 #: ../framework/vendor/upload/class.upload.php:2188
    171 msgid "Image too narrow."
    172 msgstr "Imagen demasiado estrecha."
    173 
    174 #: ../framework/vendor/upload/class.upload.php:2189
    175 msgid "Image too high."
    176 msgstr "Imagen demasiado alta."
    177 
    178 #: ../framework/vendor/upload/class.upload.php:2190
    179 msgid "Image too short."
    180 msgstr "Imagen demasiado baja."
    181 
    182 #: ../framework/vendor/upload/class.upload.php:2191
    183 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:2192
    187 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:2193
    191 msgid "Image has too many pixels."
    192 msgstr "La imágen tiene demasiados píxeles."
    193 
    194 #: ../framework/vendor/upload/class.upload.php:2194
    195 msgid "Image has not enough pixels."
    196 msgstr "La imagen no tiene suficientes píxeles."
    197 
    198 #: ../framework/vendor/upload/class.upload.php:2195
    199 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:2196
    203 #, php-format
    204 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:2197
    208 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:2198
    212 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:2199
    216 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:2200
    220 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:2201
    224 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:2202
    228 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:2203
    232 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:2204
    236 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:2205
    240 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:2206
    244 #, php-format
    245 msgid "No create from %s support."
    246 msgstr "No hay soporte para crear desde %s."
    247 
    248 #: ../framework/vendor/upload/class.upload.php:2207
    249 #, php-format
    250 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:2208
    254 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:2209
    258 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:2210
    262 #, php-format
    263 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:2211
    267 #, php-format
    268 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:2212
    272 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:2213
    276 #, php-format
    277 msgid "No %s create support."
    278 msgstr "No hay soporte para crear %s."
    279 
    280 #: ../framework/vendor/upload/class.upload.php:2214
    281 msgid "No conversion type defined."
    282 msgstr "No se ha definido el tipo de conversión."
    283 
    284 #: ../framework/vendor/upload/class.upload.php:2215
    285 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:2216
    289 msgid "Error reading the file."
    290 msgstr "Error leyendo el archivo."
    29130
    29231#: ../includes/admin.php:36
     
    36099msgid "Add to role"
    361100msgstr "Añadir al rol"
    362 
    363 #: ../includes/author-widget.php:38
    364 msgid "Help donating"
    365 msgstr "Ayuda donando"
    366101
    367102#: ../includes/backup.php:33
     
    499234msgstr "Roles y Permisos restaurados a los valores por defecto de WordPress"
    500235
    501 #: ../includes/manager.php:620
     236#: ../includes/manager.php:606
    502237msgid "You cannot remove Manage Capabilities from Administrators"
    503238msgstr "No se puede eliminar 'Manage Capabilities' de los administradores."
    504239
     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"
    505390#~ msgid "Managing %s"
    506391#~ msgstr "Administrando %s"
  • capsman/trunk/lang/capsman-it_IT.po

    r198515 r199485  
    33"Project-Id-Version: Capability Manager in italiano\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-26 22:12+0100\n"
     5"POT-Creation-Date: 2010-01-29 15:06+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
    99"MIME-Version: 1.0\n"
     
    1919
    2020#: ../capsman.php:53
    21 #: ../framework/classes/abstract/plugin.php:210
    22 #: ../framework/classes/abstract/plugin.php:229
    2321msgid "Warning:"
    2422msgstr "Attenzione:"
     
    3331msgid "%s is required for this plugin."
    3432msgstr "E' necessario %s per l'utilizzo di questo plugin."
    35 
    36 #: ../framework/classes/abstract/module.php:507
    37 msgid "Option blocked by administrator."
    38 msgstr ""
    39 
    40 #: ../framework/classes/abstract/plugin.php:211
    41 #, php-format
    42 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:213
    46 #, php-format
    47 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:230
    51 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:231
    55 #, php-format
    56 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:52
    60 msgid "Settings saved."
    61 msgstr "Le impostazioni sono state salvate."
    62 
    63 #: ../framework/lib/formating.php:161
    64 msgid "Just Now"
    65 msgstr ""
    66 
    67 #: ../framework/lib/formating.php:164
    68 msgid "1 minute ago"
    69 msgstr ""
    70 
    71 #: ../framework/lib/formating.php:167
    72 msgid "1 hour ago"
    73 msgstr ""
    74 
    75 #: ../framework/lib/formating.php:171
    76 #, php-format
    77 msgid "Today at %s"
    78 msgstr ""
    79 
    80 #: ../framework/lib/formating.php:171
    81 #, php-format
    82 msgid "Yesterday at %s"
    83 msgstr ""
    84 
    85 #: ../framework/lib/themes.php:160
    86 msgid "Plugin Homepage"
    87 msgstr "Homepage del plugin"
    88 
    89 #: ../framework/lib/themes.php:164
    90 #, fuzzy
    91 msgid "Theme Homepage"
    92 msgstr "Homepage autore"
    93 
    94 #: ../framework/lib/themes.php:168
    95 #, fuzzy
    96 msgid "Documentation"
    97 msgstr "Procedi"
    98 
    99 #: ../framework/lib/themes.php:172
    100 msgid "Support Forum"
    101 msgstr "Forum di supporto"
    102 
    103 #: ../framework/lib/themes.php:176
    104 msgid "Author Homepage"
    105 msgstr "Homepage autore"
    106 
    107 #: ../framework/lib/themes.php:180
    108 msgid "Donate to project"
    109 msgstr ""
    110 
    111 #: ../framework/vendor/upload/class.upload.php:2172
    112 msgid "File error. Please try again."
    113 msgstr ""
    114 
    115 #: ../framework/vendor/upload/class.upload.php:2173
    116 msgid "Local file doesn't exist."
    117 msgstr ""
    118 
    119 #: ../framework/vendor/upload/class.upload.php:2174
    120 msgid "Local file is not readable."
    121 msgstr ""
    122 
    123 #: ../framework/vendor/upload/class.upload.php:2175
    124 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:2176
    128 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:2177
    132 msgid "File upload error (the uploaded file was only partially uploaded)."
    133 msgstr ""
    134 
    135 #: ../framework/vendor/upload/class.upload.php:2178
    136 msgid "File upload error (no file was uploaded)."
    137 msgstr ""
    138 
    139 #: ../framework/vendor/upload/class.upload.php:2179
    140 msgid "File upload error (missing a temporary folder)."
    141 msgstr ""
    142 
    143 #: ../framework/vendor/upload/class.upload.php:2180
    144 msgid "File upload error (failed to write file to disk)."
    145 msgstr ""
    146 
    147 #: ../framework/vendor/upload/class.upload.php:2181
    148 msgid "File upload error (file upload stopped by extension)."
    149 msgstr ""
    150 
    151 #: ../framework/vendor/upload/class.upload.php:2182
    152 msgid "File upload error (unknown error code)."
    153 msgstr ""
    154 
    155 #: ../framework/vendor/upload/class.upload.php:2183
    156 msgid "File upload error. Please try again."
    157 msgstr ""
    158 
    159 #: ../framework/vendor/upload/class.upload.php:2184
    160 msgid "File too big."
    161 msgstr ""
    162 
    163 #: ../framework/vendor/upload/class.upload.php:2185
    164 msgid "MIME type can't be detected."
    165 msgstr ""
    166 
    167 #: ../framework/vendor/upload/class.upload.php:2186
    168 #, fuzzy
    169 msgid "Incorrect type of file."
    170 msgstr "Nome non valido per la capacità."
    171 
    172 #: ../framework/vendor/upload/class.upload.php:2187
    173 msgid "Image too wide."
    174 msgstr ""
    175 
    176 #: ../framework/vendor/upload/class.upload.php:2188
    177 msgid "Image too narrow."
    178 msgstr ""
    179 
    180 #: ../framework/vendor/upload/class.upload.php:2189
    181 msgid "Image too high."
    182 msgstr ""
    183 
    184 #: ../framework/vendor/upload/class.upload.php:2190
    185 msgid "Image too short."
    186 msgstr ""
    187 
    188 #: ../framework/vendor/upload/class.upload.php:2191
    189 msgid "Image ratio too high (image too wide)."
    190 msgstr ""
    191 
    192 #: ../framework/vendor/upload/class.upload.php:2192
    193 msgid "Image ratio too low (image too high)."
    194 msgstr ""
    195 
    196 #: ../framework/vendor/upload/class.upload.php:2193
    197 msgid "Image has too many pixels."
    198 msgstr ""
    199 
    200 #: ../framework/vendor/upload/class.upload.php:2194
    201 msgid "Image has not enough pixels."
    202 msgstr ""
    203 
    204 #: ../framework/vendor/upload/class.upload.php:2195
    205 msgid "File not uploaded. Can't carry on a process."
    206 msgstr ""
    207 
    208 #: ../framework/vendor/upload/class.upload.php:2196
    209 #, php-format
    210 msgid "%s already exists. Please change the file name."
    211 msgstr ""
    212 
    213 #: ../framework/vendor/upload/class.upload.php:2197
    214 msgid "No correct temp source file. Can't carry on a process."
    215 msgstr ""
    216 
    217 #: ../framework/vendor/upload/class.upload.php:2198
    218 msgid "No correct uploaded source file. Can't carry on a process."
    219 msgstr ""
    220 
    221 #: ../framework/vendor/upload/class.upload.php:2199
    222 msgid "Destination directory can't be created. Can't carry on a process."
    223 msgstr ""
    224 
    225 #: ../framework/vendor/upload/class.upload.php:2200
    226 msgid "Destination directory doesn't exist. Can't carry on a process."
    227 msgstr ""
    228 
    229 #: ../framework/vendor/upload/class.upload.php:2201
    230 msgid "Destination path is not a directory. Can't carry on a process."
    231 msgstr ""
    232 
    233 #: ../framework/vendor/upload/class.upload.php:2202
    234 msgid "Destination directory can't be made writeable. Can't carry on a process."
    235 msgstr ""
    236 
    237 #: ../framework/vendor/upload/class.upload.php:2203
    238 msgid "Destination path is not a writeable. Can't carry on a process."
    239 msgstr ""
    240 
    241 #: ../framework/vendor/upload/class.upload.php:2204
    242 msgid "Can't create the temporary file. Can't carry on a process."
    243 msgstr ""
    244 
    245 #: ../framework/vendor/upload/class.upload.php:2205
    246 msgid "Source file is not readable. Can't carry on a process."
    247 msgstr ""
    248 
    249 #: ../framework/vendor/upload/class.upload.php:2206
    250 #, php-format
    251 msgid "No create from %s support."
    252 msgstr ""
    253 
    254 #: ../framework/vendor/upload/class.upload.php:2207
    255 #, fuzzy, php-format
    256 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:2208
    260 msgid "Can't read image source. Not an image?."
    261 msgstr ""
    262 
    263 #: ../framework/vendor/upload/class.upload.php:2209
    264 msgid "GD doesn't seem to be present."
    265 msgstr ""
    266 
    267 #: ../framework/vendor/upload/class.upload.php:2210
    268 #, php-format
    269 msgid "No create from %s support, can't read watermark."
    270 msgstr ""
    271 
    272 #: ../framework/vendor/upload/class.upload.php:2211
    273 #, php-format
    274 msgid "No %s read support, can't create watermark."
    275 msgstr ""
    276 
    277 #: ../framework/vendor/upload/class.upload.php:2212
    278 msgid "Unknown image format, can't read watermark."
    279 msgstr ""
    280 
    281 #: ../framework/vendor/upload/class.upload.php:2213
    282 #, php-format
    283 msgid "No %s create support."
    284 msgstr ""
    285 
    286 #: ../framework/vendor/upload/class.upload.php:2214
    287 msgid "No conversion type defined."
    288 msgstr ""
    289 
    290 #: ../framework/vendor/upload/class.upload.php:2215
    291 msgid "Error copying file on the server. copy() failed."
    292 msgstr ""
    293 
    294 #: ../framework/vendor/upload/class.upload.php:2216
    295 #, fuzzy
    296 msgid "Error reading the file."
    297 msgstr "Errore: non é stato possibile creare il nuovo ruolo."
    29833
    29934#: ../includes/admin.php:36
     
    367102msgid "Add to role"
    368103msgstr "Aggiungi al ruolo"
    369 
    370 #: ../includes/author-widget.php:38
    371 msgid "Help donating"
    372 msgstr "Donazioni"
    373104
    374105#: ../includes/backup.php:33
     
    494225
    495226#: ../includes/manager.php:405
    496 #, fuzzy, php-format
     227#, php-format
    497228msgid "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."
     229msgstr "Il ruolo é stato cancellato. Gli utenti %1$d sono stati spostati nel ruolo predefinito a nome %2$s."
    499230
    500231#: ../includes/manager.php:419
     
    506237msgstr "I ruoli e le capacità sono stati ripristinati ai valori predefiniti di WordPress"
    507238
    508 #: ../includes/manager.php:620
     239#: ../includes/manager.php:606
    509240msgid "You cannot remove Manage Capabilities from Administrators"
    510241msgstr "Non puoi rimuovere la gestione delle capacità per gli amministratori"
    511242
     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  
    33"Project-Id-Version: Capability Manager\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-26 22:12+0100\n"
     5"POT-Creation-Date: 2010-01-29 15:03+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Fat Cow <gpl@alkivia.org>\n"
    99"MIME-Version: 1.0\n"
     
    1616
    1717#: ../capsman.php:53
    18 #: ../framework/classes/abstract/plugin.php:210
    19 #: ../framework/classes/abstract/plugin.php:229
    2018msgid "Warning:"
    2119msgstr "Предупреждение:"
     
    3028msgid "%s is required for this plugin."
    3129msgstr "%s необходим лоя плагина."
    32 
    33 #: ../framework/classes/abstract/module.php:507
    34 msgid "Option blocked by administrator."
    35 msgstr ""
    36 
    37 #: ../framework/classes/abstract/plugin.php:211
    38 #, php-format
    39 msgid "The active plugin %s is not compatible with your WordPress version."
    40 msgstr "Активный плагин %s не совместим с текущей версией WordPress."
    41 
    42 #: ../framework/classes/abstract/plugin.php:213
    43 #, php-format
    44 msgid "WordPress %s is required to run this plugin."
    45 msgstr "WordPress %s необходим для запуска этого плагина."
    46 
    47 #: ../framework/classes/abstract/plugin.php:230
    48 msgid "Standard sidebar functions are not present."
    49 msgstr "Стандартные функции боковой панели не представлены."
    50 
    51 #: ../framework/classes/abstract/plugin.php:231
    52 #, php-format
    53 msgid "It is required to use the standard sidebar to run %s"
    54 msgstr "Это необходимо для использования стандартной боковой панели для запуска %s"
    55 
    56 #: ../framework/lib/formating.php:52
    57 msgid "Settings saved."
    58 msgstr "Настройки сохранены."
    59 
    60 #: ../framework/lib/formating.php:161
    61 msgid "Just Now"
    62 msgstr ""
    63 
    64 #: ../framework/lib/formating.php:164
    65 msgid "1 minute ago"
    66 msgstr ""
    67 
    68 #: ../framework/lib/formating.php:167
    69 msgid "1 hour ago"
    70 msgstr ""
    71 
    72 #: ../framework/lib/formating.php:171
    73 #, php-format
    74 msgid "Today at %s"
    75 msgstr ""
    76 
    77 #: ../framework/lib/formating.php:171
    78 #, php-format
    79 msgid "Yesterday at %s"
    80 msgstr ""
    81 
    82 #: ../framework/lib/themes.php:160
    83 msgid "Plugin Homepage"
    84 msgstr "Домашняя страница плагина"
    85 
    86 #: ../framework/lib/themes.php:164
    87 #, fuzzy
    88 msgid "Theme Homepage"
    89 msgstr "Домашняя страница автора"
    90 
    91 #: ../framework/lib/themes.php:168
    92 #, fuzzy
    93 msgid "Documentation"
    94 msgstr "Нет действий"
    95 
    96 #: ../framework/lib/themes.php:172
    97 msgid "Support Forum"
    98 msgstr "Форум поддержки"
    99 
    100 #: ../framework/lib/themes.php:176
    101 msgid "Author Homepage"
    102 msgstr "Домашняя страница автора"
    103 
    104 #: ../framework/lib/themes.php:180
    105 msgid "Donate to project"
    106 msgstr ""
    107 
    108 #: ../framework/vendor/upload/class.upload.php:2172
    109 msgid "File error. Please try again."
    110 msgstr ""
    111 
    112 #: ../framework/vendor/upload/class.upload.php:2173
    113 msgid "Local file doesn't exist."
    114 msgstr ""
    115 
    116 #: ../framework/vendor/upload/class.upload.php:2174
    117 msgid "Local file is not readable."
    118 msgstr ""
    119 
    120 #: ../framework/vendor/upload/class.upload.php:2175
    121 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:2176
    125 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:2177
    129 msgid "File upload error (the uploaded file was only partially uploaded)."
    130 msgstr ""
    131 
    132 #: ../framework/vendor/upload/class.upload.php:2178
    133 msgid "File upload error (no file was uploaded)."
    134 msgstr ""
    135 
    136 #: ../framework/vendor/upload/class.upload.php:2179
    137 msgid "File upload error (missing a temporary folder)."
    138 msgstr ""
    139 
    140 #: ../framework/vendor/upload/class.upload.php:2180
    141 msgid "File upload error (failed to write file to disk)."
    142 msgstr ""
    143 
    144 #: ../framework/vendor/upload/class.upload.php:2181
    145 msgid "File upload error (file upload stopped by extension)."
    146 msgstr ""
    147 
    148 #: ../framework/vendor/upload/class.upload.php:2182
    149 msgid "File upload error (unknown error code)."
    150 msgstr ""
    151 
    152 #: ../framework/vendor/upload/class.upload.php:2183
    153 msgid "File upload error. Please try again."
    154 msgstr ""
    155 
    156 #: ../framework/vendor/upload/class.upload.php:2184
    157 msgid "File too big."
    158 msgstr ""
    159 
    160 #: ../framework/vendor/upload/class.upload.php:2185
    161 msgid "MIME type can't be detected."
    162 msgstr ""
    163 
    164 #: ../framework/vendor/upload/class.upload.php:2186
    165 #, fuzzy
    166 msgid "Incorrect type of file."
    167 msgstr "Некорректное имя возможности."
    168 
    169 #: ../framework/vendor/upload/class.upload.php:2187
    170 msgid "Image too wide."
    171 msgstr ""
    172 
    173 #: ../framework/vendor/upload/class.upload.php:2188
    174 msgid "Image too narrow."
    175 msgstr ""
    176 
    177 #: ../framework/vendor/upload/class.upload.php:2189
    178 msgid "Image too high."
    179 msgstr ""
    180 
    181 #: ../framework/vendor/upload/class.upload.php:2190
    182 msgid "Image too short."
    183 msgstr ""
    184 
    185 #: ../framework/vendor/upload/class.upload.php:2191
    186 msgid "Image ratio too high (image too wide)."
    187 msgstr ""
    188 
    189 #: ../framework/vendor/upload/class.upload.php:2192
    190 msgid "Image ratio too low (image too high)."
    191 msgstr ""
    192 
    193 #: ../framework/vendor/upload/class.upload.php:2193
    194 msgid "Image has too many pixels."
    195 msgstr ""
    196 
    197 #: ../framework/vendor/upload/class.upload.php:2194
    198 msgid "Image has not enough pixels."
    199 msgstr ""
    200 
    201 #: ../framework/vendor/upload/class.upload.php:2195
    202 msgid "File not uploaded. Can't carry on a process."
    203 msgstr ""
    204 
    205 #: ../framework/vendor/upload/class.upload.php:2196
    206 #, php-format
    207 msgid "%s already exists. Please change the file name."
    208 msgstr ""
    209 
    210 #: ../framework/vendor/upload/class.upload.php:2197
    211 msgid "No correct temp source file. Can't carry on a process."
    212 msgstr ""
    213 
    214 #: ../framework/vendor/upload/class.upload.php:2198
    215 msgid "No correct uploaded source file. Can't carry on a process."
    216 msgstr ""
    217 
    218 #: ../framework/vendor/upload/class.upload.php:2199
    219 msgid "Destination directory can't be created. Can't carry on a process."
    220 msgstr ""
    221 
    222 #: ../framework/vendor/upload/class.upload.php:2200
    223 msgid "Destination directory doesn't exist. Can't carry on a process."
    224 msgstr ""
    225 
    226 #: ../framework/vendor/upload/class.upload.php:2201
    227 msgid "Destination path is not a directory. Can't carry on a process."
    228 msgstr ""
    229 
    230 #: ../framework/vendor/upload/class.upload.php:2202
    231 msgid "Destination directory can't be made writeable. Can't carry on a process."
    232 msgstr ""
    233 
    234 #: ../framework/vendor/upload/class.upload.php:2203
    235 msgid "Destination path is not a writeable. Can't carry on a process."
    236 msgstr ""
    237 
    238 #: ../framework/vendor/upload/class.upload.php:2204
    239 msgid "Can't create the temporary file. Can't carry on a process."
    240 msgstr ""
    241 
    242 #: ../framework/vendor/upload/class.upload.php:2205
    243 msgid "Source file is not readable. Can't carry on a process."
    244 msgstr ""
    245 
    246 #: ../framework/vendor/upload/class.upload.php:2206
    247 #, php-format
    248 msgid "No create from %s support."
    249 msgstr ""
    250 
    251 #: ../framework/vendor/upload/class.upload.php:2207
    252 #, fuzzy, php-format
    253 msgid "Error in creating %s image from source."
    254 msgstr "Ошибка: Новая роль не создана."
    255 
    256 #: ../framework/vendor/upload/class.upload.php:2208
    257 msgid "Can't read image source. Not an image?."
    258 msgstr ""
    259 
    260 #: ../framework/vendor/upload/class.upload.php:2209
    261 msgid "GD doesn't seem to be present."
    262 msgstr ""
    263 
    264 #: ../framework/vendor/upload/class.upload.php:2210
    265 #, php-format
    266 msgid "No create from %s support, can't read watermark."
    267 msgstr ""
    268 
    269 #: ../framework/vendor/upload/class.upload.php:2211
    270 #, php-format
    271 msgid "No %s read support, can't create watermark."
    272 msgstr ""
    273 
    274 #: ../framework/vendor/upload/class.upload.php:2212
    275 msgid "Unknown image format, can't read watermark."
    276 msgstr ""
    277 
    278 #: ../framework/vendor/upload/class.upload.php:2213
    279 #, php-format
    280 msgid "No %s create support."
    281 msgstr ""
    282 
    283 #: ../framework/vendor/upload/class.upload.php:2214
    284 msgid "No conversion type defined."
    285 msgstr ""
    286 
    287 #: ../framework/vendor/upload/class.upload.php:2215
    288 msgid "Error copying file on the server. copy() failed."
    289 msgstr ""
    290 
    291 #: ../framework/vendor/upload/class.upload.php:2216
    292 #, fuzzy
    293 msgid "Error reading the file."
    294 msgstr "Ошибка: Новая роль не создана."
    29530
    29631#: ../includes/admin.php:36
     
    36499msgid "Add to role"
    365100msgstr "Добавить роль"
    366 
    367 #: ../includes/author-widget.php:38
    368 msgid "Help donating"
    369 msgstr "Помощь через пожертвования"
    370101
    371102#: ../includes/backup.php:33
     
    491222
    492223#: ../includes/manager.php:405
    493 #, fuzzy, php-format
     224#, php-format
    494225msgid "Role has been deleted. %1$d users moved to default role %2$s."
    495 msgstr "Роль %1$s была удалена. %2$d пользователей перемещена в стандартную роль %3$s."
     226msgstr "Роль была удалена. %1$d пользователей перемещена в стандартную роль %2$s."
    496227
    497228#: ../includes/manager.php:419
     
    503234msgstr "Роли и возможности сброшены к стандартным для WordPress "
    504235
    505 #: ../includes/manager.php:620
     236#: ../includes/manager.php:606
    506237msgid "You cannot remove Manage Capabilities from Administrators"
    507238msgstr "Вы не можете удалить Manage Capabilities через администраторов ."
    508239
     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 "Помощь через пожертвования"
    509279#~ msgid "Managing %s"
    510280#~ msgstr "Administrando %s"
  • capsman/trunk/lang/capsman.pot

    r198515 r199485  
    33"Project-Id-Version: Capability Manager\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-26 22:12+0100\n"
     5"POT-Creation-Date: 2010-01-29 15:03+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n"
    99"MIME-Version: 1.0\n"
     
    1212"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1313"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"
    1515"X-Poedit-Basepath: .\n"
    1616"X-Poedit-SearchPath-0: ..\n"
    1717
    1818#: ../capsman.php:53
    19 #: ../framework/classes/abstract/plugin.php:210
    20 #: ../framework/classes/abstract/plugin.php:229
    2119msgid "Warning:"
    2220msgstr ""
     
    3028#, php-format
    3129msgid "%s is required for this plugin."
    32 msgstr ""
    33 
    34 #: ../framework/classes/abstract/module.php:507
    35 msgid "Option blocked by administrator."
    36 msgstr ""
    37 
    38 #: ../framework/classes/abstract/plugin.php:211
    39 #, php-format
    40 msgid "The active plugin %s is not compatible with your WordPress version."
    41 msgstr ""
    42 
    43 #: ../framework/classes/abstract/plugin.php:213
    44 #, php-format
    45 msgid "WordPress %s is required to run this plugin."
    46 msgstr ""
    47 
    48 #: ../framework/classes/abstract/plugin.php:230
    49 msgid "Standard sidebar functions are not present."
    50 msgstr ""
    51 
    52 #: ../framework/classes/abstract/plugin.php:231
    53 #, php-format
    54 msgid "It is required to use the standard sidebar to run %s"
    55 msgstr ""
    56 
    57 #: ../framework/lib/formating.php:52
    58 msgid "Settings saved."
    59 msgstr ""
    60 
    61 #: ../framework/lib/formating.php:161
    62 msgid "Just Now"
    63 msgstr ""
    64 
    65 #: ../framework/lib/formating.php:164
    66 msgid "1 minute ago"
    67 msgstr ""
    68 
    69 #: ../framework/lib/formating.php:167
    70 msgid "1 hour ago"
    71 msgstr ""
    72 
    73 #: ../framework/lib/formating.php:171
    74 #, php-format
    75 msgid "Today at %s"
    76 msgstr ""
    77 
    78 #: ../framework/lib/formating.php:171
    79 #, php-format
    80 msgid "Yesterday at %s"
    81 msgstr ""
    82 
    83 #: ../framework/lib/themes.php:160
    84 msgid "Plugin Homepage"
    85 msgstr ""
    86 
    87 #: ../framework/lib/themes.php:164
    88 msgid "Theme Homepage"
    89 msgstr ""
    90 
    91 #: ../framework/lib/themes.php:168
    92 msgid "Documentation"
    93 msgstr ""
    94 
    95 #: ../framework/lib/themes.php:172
    96 msgid "Support Forum"
    97 msgstr ""
    98 
    99 #: ../framework/lib/themes.php:176
    100 msgid "Author Homepage"
    101 msgstr ""
    102 
    103 #: ../framework/lib/themes.php:180
    104 msgid "Donate to project"
    105 msgstr ""
    106 
    107 #: ../framework/vendor/upload/class.upload.php:2172
    108 msgid "File error. Please try again."
    109 msgstr ""
    110 
    111 #: ../framework/vendor/upload/class.upload.php:2173
    112 msgid "Local file doesn't exist."
    113 msgstr ""
    114 
    115 #: ../framework/vendor/upload/class.upload.php:2174
    116 msgid "Local file is not readable."
    117 msgstr ""
    118 
    119 #: ../framework/vendor/upload/class.upload.php:2175
    120 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:2176
    124 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:2177
    128 msgid "File upload error (the uploaded file was only partially uploaded)."
    129 msgstr ""
    130 
    131 #: ../framework/vendor/upload/class.upload.php:2178
    132 msgid "File upload error (no file was uploaded)."
    133 msgstr ""
    134 
    135 #: ../framework/vendor/upload/class.upload.php:2179
    136 msgid "File upload error (missing a temporary folder)."
    137 msgstr ""
    138 
    139 #: ../framework/vendor/upload/class.upload.php:2180
    140 msgid "File upload error (failed to write file to disk)."
    141 msgstr ""
    142 
    143 #: ../framework/vendor/upload/class.upload.php:2181
    144 msgid "File upload error (file upload stopped by extension)."
    145 msgstr ""
    146 
    147 #: ../framework/vendor/upload/class.upload.php:2182
    148 msgid "File upload error (unknown error code)."
    149 msgstr ""
    150 
    151 #: ../framework/vendor/upload/class.upload.php:2183
    152 msgid "File upload error. Please try again."
    153 msgstr ""
    154 
    155 #: ../framework/vendor/upload/class.upload.php:2184
    156 msgid "File too big."
    157 msgstr ""
    158 
    159 #: ../framework/vendor/upload/class.upload.php:2185
    160 msgid "MIME type can't be detected."
    161 msgstr ""
    162 
    163 #: ../framework/vendor/upload/class.upload.php:2186
    164 msgid "Incorrect type of file."
    165 msgstr ""
    166 
    167 #: ../framework/vendor/upload/class.upload.php:2187
    168 msgid "Image too wide."
    169 msgstr ""
    170 
    171 #: ../framework/vendor/upload/class.upload.php:2188
    172 msgid "Image too narrow."
    173 msgstr ""
    174 
    175 #: ../framework/vendor/upload/class.upload.php:2189
    176 msgid "Image too high."
    177 msgstr ""
    178 
    179 #: ../framework/vendor/upload/class.upload.php:2190
    180 msgid "Image too short."
    181 msgstr ""
    182 
    183 #: ../framework/vendor/upload/class.upload.php:2191
    184 msgid "Image ratio too high (image too wide)."
    185 msgstr ""
    186 
    187 #: ../framework/vendor/upload/class.upload.php:2192
    188 msgid "Image ratio too low (image too high)."
    189 msgstr ""
    190 
    191 #: ../framework/vendor/upload/class.upload.php:2193
    192 msgid "Image has too many pixels."
    193 msgstr ""
    194 
    195 #: ../framework/vendor/upload/class.upload.php:2194
    196 msgid "Image has not enough pixels."
    197 msgstr ""
    198 
    199 #: ../framework/vendor/upload/class.upload.php:2195
    200 msgid "File not uploaded. Can't carry on a process."
    201 msgstr ""
    202 
    203 #: ../framework/vendor/upload/class.upload.php:2196
    204 #, php-format
    205 msgid "%s already exists. Please change the file name."
    206 msgstr ""
    207 
    208 #: ../framework/vendor/upload/class.upload.php:2197
    209 msgid "No correct temp source file. Can't carry on a process."
    210 msgstr ""
    211 
    212 #: ../framework/vendor/upload/class.upload.php:2198
    213 msgid "No correct uploaded source file. Can't carry on a process."
    214 msgstr ""
    215 
    216 #: ../framework/vendor/upload/class.upload.php:2199
    217 msgid "Destination directory can't be created. Can't carry on a process."
    218 msgstr ""
    219 
    220 #: ../framework/vendor/upload/class.upload.php:2200
    221 msgid "Destination directory doesn't exist. Can't carry on a process."
    222 msgstr ""
    223 
    224 #: ../framework/vendor/upload/class.upload.php:2201
    225 msgid "Destination path is not a directory. Can't carry on a process."
    226 msgstr ""
    227 
    228 #: ../framework/vendor/upload/class.upload.php:2202
    229 msgid "Destination directory can't be made writeable. Can't carry on a process."
    230 msgstr ""
    231 
    232 #: ../framework/vendor/upload/class.upload.php:2203
    233 msgid "Destination path is not a writeable. Can't carry on a process."
    234 msgstr ""
    235 
    236 #: ../framework/vendor/upload/class.upload.php:2204
    237 msgid "Can't create the temporary file. Can't carry on a process."
    238 msgstr ""
    239 
    240 #: ../framework/vendor/upload/class.upload.php:2205
    241 msgid "Source file is not readable. Can't carry on a process."
    242 msgstr ""
    243 
    244 #: ../framework/vendor/upload/class.upload.php:2206
    245 #, php-format
    246 msgid "No create from %s support."
    247 msgstr ""
    248 
    249 #: ../framework/vendor/upload/class.upload.php:2207
    250 #, php-format
    251 msgid "Error in creating %s image from source."
    252 msgstr ""
    253 
    254 #: ../framework/vendor/upload/class.upload.php:2208
    255 msgid "Can't read image source. Not an image?."
    256 msgstr ""
    257 
    258 #: ../framework/vendor/upload/class.upload.php:2209
    259 msgid "GD doesn't seem to be present."
    260 msgstr ""
    261 
    262 #: ../framework/vendor/upload/class.upload.php:2210
    263 #, php-format
    264 msgid "No create from %s support, can't read watermark."
    265 msgstr ""
    266 
    267 #: ../framework/vendor/upload/class.upload.php:2211
    268 #, php-format
    269 msgid "No %s read support, can't create watermark."
    270 msgstr ""
    271 
    272 #: ../framework/vendor/upload/class.upload.php:2212
    273 msgid "Unknown image format, can't read watermark."
    274 msgstr ""
    275 
    276 #: ../framework/vendor/upload/class.upload.php:2213
    277 #, php-format
    278 msgid "No %s create support."
    279 msgstr ""
    280 
    281 #: ../framework/vendor/upload/class.upload.php:2214
    282 msgid "No conversion type defined."
    283 msgstr ""
    284 
    285 #: ../framework/vendor/upload/class.upload.php:2215
    286 msgid "Error copying file on the server. copy() failed."
    287 msgstr ""
    288 
    289 #: ../framework/vendor/upload/class.upload.php:2216
    290 msgid "Error reading the file."
    29130msgstr ""
    29231
     
    35897#: ../includes/manager.php:323
    35998msgid "Add to role"
    360 msgstr ""
    361 
    362 #: ../includes/author-widget.php:38
    363 msgid "Help donating"
    36499msgstr ""
    365100
     
    496231msgstr ""
    497232
    498 #: ../includes/manager.php:620
     233#: ../includes/manager.php:606
    499234msgid "You cannot remove Manage Capabilities from Administrators"
    500235msgstr ""
  • capsman/trunk/license.txt

    r198152 r199485  
    279279
    280280             END OF TERMS AND CONDITIONS
    281 
    282         How to Apply These Terms to Your New Programs
    283 
    284   If you develop a new program, and you want it to be of the greatest
    285 possible use to the public, the best way to achieve this is to make it
    286 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 safest
    289 to attach them to the start of each source file to most effectively
    290 convey the exclusion of warranty; and each file should have at least
    291 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 modify
    297     it under the terms of the GNU General Public License as published by
    298     the Free Software Foundation; either version 2 of the License, or
    299     (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 of
    303     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    304     GNU General Public License for more details.
    305 
    306     You should have received a copy of the GNU General Public License along
    307     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 this
    313 when it starts in an interactive mode:
    314 
    315     Gnomovision version 69, Copyright (C) year name of author
    316     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    317     This is free software, and you are welcome to redistribute it
    318     under certain conditions; type `show c' for details.
    319 
    320 The hypothetical commands `show w' and `show c' should show the appropriate
    321 parts of the General Public License.  Of course, the commands you use may
    322 be called something other than `show w' and `show c'; they could even be
    323 mouse-clicks or menu items--whatever suits your program.
    324 
    325 You should also get your employer (if you work as a programmer) or your
    326 school, if any, to sign a "copyright disclaimer" for the program, if
    327 necessary.  Here is a sample; alter the names:
    328 
    329   Yoyodyne, Inc., hereby disclaims all copyright interest in the program
    330   `Gnomovision' (which makes passes at compilers) written by James Hacker.
    331 
    332   <signature of Ty Coon>, 1 April 1989
    333   Ty Coon, President of Vice
    334 
    335 This General Public License does not permit incorporating your program into
    336 proprietary programs.  If your program is a subroutine library, you may
    337 consider it more useful to permit linking proprietary applications with the
    338 library.  If this is what you want to do, use the GNU Lesser General
    339 Public License instead of this License.
  • capsman/trunk/readme.txt

    r198515 r199485  
    3737* Catalan
    3838* 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>*
    3941* 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>*
    4242* Russian *by <a href="http://www.fatcow.com" rel="nofollow">Marcis Gasuns</a>*
    43 * POT file for easy translation to other languages included.
     43* POT file for easy <a href="http://wiki.alkivia.org/general/translators">translation to other languages</a> included.
    4444
    4545== Installation ==
     
    8989== Changelog ==
    9090
     91= 1.3.1 =
     92  * Fixed a bug where administrators could not create or manage other administrators.
     93 
    9194= 1.3 =
    9295  * Cannot edit users with more capabilities than current user.
     
    97100
    98101= 1.2.5 =
    99 * Tested up to WP 2.9.1.
     102  * Tested up to WP 2.9.1.
    100103
    101104= 1.2.4 =
    102 * Added Italian translation.
     105  * Added Italian translation.
    103106
    104107= 1.2.3 =
    105 * Added German and Belorussian translations.
     108  * Added German and Belorussian translations.
    106109
    107110= 1.2.2 =
    108 * Added Russian translation.
     111  * Added Russian translation.
    109112
    110113= 1.2.1 =
    111 * Coding Standards.
    112 * Corrected internal links.
    113 * Updated Framework.
     114  * Coding Standards.
     115  * Corrected internal links.
     116  * Updated Framework.
    114117
    115118= 1.2 =
    116 * Added backup/restore tool.
     119  * Added backup/restore tool.
    117120
    118121= 1.1 =
    119 * Role deletion added.
     122  * Role deletion added.
    120123
    121124= 1.0.1 =
    122 * Some code improvements.
    123 * Updated Alkivia Framework.
     125  * Some code improvements.
     126  * Updated Alkivia Framework.
    124127
    125128= 1.0 =
    126 * First public version.
     129  * First public version.
    127130
    128131== Upgrade Notice ==
    129132
    130 =1.3=
     133= 1.3.1 =
     134Bug fixes.
     135 
     136= 1.3 =
    131137Improved security esiting users. You can now create real user managers.
Note: See TracChangeset for help on using the changeset viewer.