Plugin Directory

Changeset 629816


Ignore:
Timestamp:
11/25/2012 09:50:57 PM (13 years ago)
Author:
codestyling
Message:

bugfix release 1.99.25

Location:
codestyling-localization/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • codestyling-localization/trunk/codestyling-localization.php

    r561552 r629816  
    44Plugin URI: http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en
    55Description: You can manage and edit all gettext translation files (*.po/*.mo) directly out of your WordPress Admin Center without any need of an external editor. It automatically detects the gettext ready components like <b>WordPress</b> itself or any <b>Plugin</b> / <b>Theme</b> supporting gettext, is able to scan the related source files and can assists you using <b>Google Translate API</b> or <b>Microsoft Translator API</b> during translation.This plugin supports <b>WordPress MU</b> and allows explicit <b>WPMU Plugin</b> translation too. It newly introduces ignore-case and regular expression search during translation. <b>BuddyPress</b> and <b>bbPress</b> as part of BuddyPress can be translated too. Produces transalation files are 100% compatible to <b>PoEdit</b>.
    6 Version: 1.99.25-beta
     6Version: 1.99.25
    77Author: Heiko Rabe
    88Author URI: http://www.code-styling.de/english/
     
    6464if (function_exists('add_action')) {
    6565    if ( !defined('WP_CONTENT_URL') )
    66         define('WP_CONTENT_URL', get_option('siteurl') . '/wp-content');
     66        define('WP_CONTENT_URL', get_site_url() . '/wp-content');
    6767    if ( !defined('WP_CONTENT_DIR') )
    6868        define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
     
    8888
    8989    define('CSP_PO_TEXTDOMAIN', 'codestyling-localization');
    90     define('CSP_PO_BASE_URL', WP_PLUGIN_URL . CSP_PO_PLUGINPATH);
     90    define('CSP_PO_BASE_URL', plugins_url(CSP_PO_PLUGINPATH));
    9191       
    9292    //Bugfix: ensure valid JSON requests at IDN locations!
    9393    //Attention: Google Chrome and Safari behave in different way (shared WebKit issue or all other are wrong?)!
    94     list($csp_domain, $csp_target) = csp_split_url( ( function_exists("admin_url") ? rtrim(admin_url(), '/') : rtrim(get_option('siteurl').'/wp-admin/', '/') ) );
     94    list($csp_domain, $csp_target) = csp_split_url( ( function_exists("admin_url") ? rtrim(admin_url(), '/') : rtrim(get_site_url().'/wp-admin/', '/') ) );
    9595    if (
    9696        stripos($_SERVER['HTTP_USER_AGENT'], 'chrome') !== false
     
    522522        else {  $tmp = array(); $files = rscandir(str_replace("\\","/",dirname(WP_PLUGIN_DIR.'/'.$plug)).'/', "/(\.mo|\.po|\.pot)$/", $tmp); }
    523523        $data['translation_template'] = csp_find_translation_template($files);
    524         foreach($files as $filename) {
    525             if ($data['is-simple']) {
     524           
     525        if ($data['is-simple']) { //simple plugin case
     526            //1st - try to find the assumed one files
     527            foreach($files as $filename) {
    526528                $file = str_replace(str_replace("\\","/",WP_PLUGIN_DIR).'/'.dirname($plug), '', $filename);
    527529                preg_match("/".$data['filename']."-([a-z][a-z]_[A-Z][A-Z])\.(mo|po)$/", $file, $hits);
     
    533535                    $data['special_path'] = '';
    534536                }
    535                 else{
    536                     //try to re-construct from real file.
    537                     preg_match("/([a-z0-9\-_]+)-([a-z][a-z]_[A-Z][A-Z])\.(mo|po)$/", $file, $hits);
     537            }
     538            //2nd - try to re-construct, if nessessary, avoid multi textdomain issues
     539            if(count($data['languages']) == 0) {
     540                foreach($files as $filename) {
     541                    //bugfix: uppercase filenames supported
     542                    preg_match("/([A-Za-z0-9\-_]+)-([a-z][a-z]_[A-Z][A-Z])\.(mo|po)$/", $file, $hits);
    538543                    if (empty($hits[2]) === false) {               
    539544                        $data['filename'] = $hits[1];
     
    549554                    }
    550555                }
    551             }else{
     556            }
     557        }
     558        else { //complex plugin case
     559            //1st - try to find the assumed one files
     560            foreach($files as $filename) {
    552561                $file = str_replace(str_replace("\\","/",WP_PLUGIN_DIR).'/'.dirname($plug), '', $filename);
    553                 preg_match("/([\/a-z0-9\-_]*)\/".$data['filename']."-([a-z][a-z]_[A-Z][A-Z])\.(mo|po)$/", $file, $hits);
     562                //bugfix: uppercase folders supported
     563                preg_match("/([\/A-Za-z0-9\-_]*)\/".$data['filename']."-([a-z][a-z]_[A-Z][A-Z])\.(mo|po)$/", $file, $hits);
    554564                if (empty($hits[2]) === false) {
    555                     $data['languages'][$hits[2]][$hits[3]] = array(
    556                         'class' => "-".(is_readable($filename) ? 'r' : '').(is_writable($filename) ? 'w' : ''),
    557                         'stamp' => date(__('m/d/Y H:i:s',CSP_PO_TEXTDOMAIN), filemtime($filename))." ".file_permissions($filename)
    558                     );
     565                    //bugfix: only accept those mathing known textdomain
     566                    if ($data['textdomain']['identifier'] == $data['filename'])
     567                    {
     568                        $data['languages'][$hits[2]][$hits[3]] = array(
     569                            'class' => "-".(is_readable($filename) ? 'r' : '').(is_writable($filename) ? 'w' : ''),
     570                            'stamp' => date(__('m/d/Y H:i:s',CSP_PO_TEXTDOMAIN), filemtime($filename))." ".file_permissions($filename)
     571                        );
     572                    }
    559573                    $data['special_path'] = ltrim($hits[1], "/");
    560574                }
    561                 else{
     575            }
     576            //2nd - try to re-construct, if nessessary, avoid multi textdomain issues
     577            if(count($data['languages']) == 0) {
     578                foreach($files as $filename) {
    562579                    //try to re-construct from real file.
    563                     preg_match("/([\/a-z0-9\-_]*)\/([\/a-z0-9\-_]+)-([a-z][a-z]_[A-Z][A-Z])\.(mo|po)$/", $file, $hits);
     580                    //bugfix: uppercase folders supported, additional uppercased filenames!
     581                    preg_match("/([\/A-Za-z0-9\-_]*)\/([\/A-Za-z0-9\-_]+)-([a-z][a-z]_[A-Z][A-Z])\.(mo|po)$/", $file, $hits);
    564582                    if (empty($hits[3]) === false) {
    565583                        $data['filename'] = $hits[2];
     
    574592                        $data['special_path'] = ltrim($hits[1], "/");
    575593                    }
    576                 }
     594                }           
    577595            }
    578596        }
     
    581599            if ($data['is-path-unclear'] && (count($files) > 0)) {
    582600                $file = str_replace(str_replace("\\","/",WP_PLUGIN_DIR).'/'.dirname($plug), '', $files[0]);
    583                 preg_match("/^\/([\/a-z0-9\-_]*)\//", $file, $hits);
     601                //bugfix: uppercase folders supported
     602                preg_match("/^\/([\/A-Za-z0-9\-_]*)\//", $file, $hits);
    584603                $data['is-path-unclear'] = false;
    585604                if (empty($hits[1]) === false) { $data['special_path'] = $hits[1]; }
    586605            }
     606        }
     607        //supporting the plugins suggestion for language path
     608        if ($data['is-path-unclear'] && isset($values['DomainPath']) && is_dir(dirname(WP_PLUGIN_DIR.'/'.$plug).'/'.trim($values['DomainPath'], "\\/")) )
     609        {
     610            $data['is-path-unclear'] = false;
     611            $data['special_path'] = trim($values['DomainPath'], "\\/");     
    587612        }
    588613
     
    684709    $data['dev-hints'] = null;
    685710    $data['deny_scanning'] = false;
    686        
     711
    687712    //let's first check the whether we have a child or base theme
    688713    if(is_object($values) && get_class($values) == 'WP_Theme') {
    689714        //WORDPRESS Version 3.4 changes theme handling!
    690         $v = array_values($values['Template Files']);
    691         $firstfile = array_shift($v);
    692         $data['base_path'] = str_replace("\\","/", WP_CONTENT_DIR.str_replace('wp-content', '', dirname($firstfile)).'/');     
    693         if (file_exists($firstfile)){
    694             $data['base_path'] = dirname(str_replace("\\","/",$firstfile)).'/';
    695         }
     715        $theme_root = trailingslashit(str_replace("\\","/", get_theme_root()));
     716        $firstfile = array_values($values['Template Files']);
     717        $firstfile = array_shift($firstfile);
     718        $firstfile = str_replace("\\","/", $firstfile);
     719        $firstfile = str_replace($theme_root, '', $firstfile);
     720        $firstfile = explode('/',$firstfile);
     721        $firstfile = reset($firstfile);
     722        $data['base_path'] = $theme_root.$firstfile.'/';
    696723    }else{
    697724        $data['base_path'] = str_replace("\\","/", WP_CONTENT_DIR.str_replace('wp-content', '', dirname($values['Template Files'][0])).'/');
     
    19711998   
    19721999    $pofile = new CspFileSystem_TranslationFile();
    1973     $pofile->create_directory($path);
    19742000   
    19752001    if (!$pofile->create_directory($path)) {
     
    22742300    <?php _e('You may have written a Plugin or Theme that requires scripts at all pages but play nicely at backend pages. In those cases please send me an email with your repository link. I will check this Plugin or Theme and exclude it from trace, if the test will show, that it is working well.', CSP_PO_TEXTDOMAIN); ?>
    22752301</p>
    2276 
     2302<p>
     2303    <?php _e('Plugins currently supported by Scripting Guard:', CSP_PO_TEXTDOMAIN); ?>
     2304</p>
     2305<ul>
     2306    <li><a href="http://wordpress.org/extend/plugins/wp-native-dashboard/" target="_blank">WP Native Dashboard</a> <small>(by codestyling)</small></li>
     2307    <li><a href="http://wordpress.org/extend/plugins/debug-bar/" target="_blank">Debug Bar</a> <small>(by wordpressdotorg)</small></li>
     2308    <li><a href="http://wordpress.org/extend/plugins/debug-bar-console/" target="_blank">Debug Bar Console</a> <small>(by koopersmith)</small></li>
     2309</ul>
    22772310<?php
    22782311}
     
    23532386);
    23542387
     2388function csp_plugin_denied_by_guard($url)
     2389{
     2390    $valid = array(
     2391        '/wp-native-dashboard/',
     2392        '/debug-bar/',
     2393        '/debug-bar-console/'
     2394    );
     2395    foreach($valid as $slug)
     2396    {
     2397        if(stripos($url, $slug) !== false)
     2398        {
     2399             return false;
     2400        }
     2401    }
     2402    return true;
     2403}
     2404
    23552405function csp_filter_print_scripts_array($scripts) {
    23562406    //detect CDN script redirecting
    23572407    global $wp_scripts, $csp_external_scripts, $csp_known_wordpress_externals;
    2358     //var_dump($wp_scripts);
    23592408    if (is_object($wp_scripts)) {
    23602409        foreach($scripts as $token) {
     
    23622411                if (isset($wp_scripts->registered[$token]->src) && !empty($wp_scripts->registered[$token]->src)) {
    23632412                    if (preg_match('|^http|', $wp_scripts->registered[$token]->src)) {
    2364                         if(!preg_match('|^'.str_replace('.','\.',get_option('siteurl')).'|', $wp_scripts->registered[$token]->src)) {
     2413                        if(!preg_match('|^'.str_replace('.','\.',get_site_url()).'|', $wp_scripts->registered[$token]->src)) {
    23652414                            if (in_array($token, $csp_known_wordpress_externals)) {
    23662415                                if (!in_array($token, $csp_external_scripts['cdn']['tokens'])) {
     
    24762525                if (isset($url[1]) && !empty($url[1])){
    24772526                    global $csp_external_scripts;               
    2478                     if(stripos($url[1], WP_CONTENT_URL) !== false  && stripos($url[1], '/wp-native-dashboard/') === false) {
     2527                    if( stripos($url[1], content_url()) !== false && csp_plugin_denied_by_guard($url[1]) ) {
    24792528                        //internal scripts
    24802529                        $dirty_scripts[] = $url[1];
    24812530                        $dirty_index[] = $i;
    2482                         if (stripos($url[1], WP_PLUGIN_URL) !== false) {
     2531                        if (stripos($url[1], plugins_url()) !== false || stripos($url[1], content_url().'/mu-plugins') !== false) {
    24832532                            $dirty_plugins[] = $url[1];
    24842533                        }else{
    24852534                            $dirty_theme[] = $url[1];
    24862535                        }
    2487                     }elseif (stripos($url[1], get_option('siteurl')) === false && !in_array($url[1], $csp_external_scripts['cdn']['scripts'])) {
     2536                    }elseif (stripos($url[1], get_site_url()) === false && !in_array($url[1], $csp_external_scripts['cdn']['scripts'])) {
    24882537                        //external
    24892538                        $dirty_index[] = $i;           
     
    25272576                if (isset($url[1]) && !empty($url[1])){
    25282577                    global $csp_external_scripts;               
    2529                     if(stripos($url[1], WP_CONTENT_URL) !== false && stripos($url[1], '/wp-native-dashboard/') === false) {
     2578                    if(stripos($url[1], content_url()) !== false && csp_plugin_denied_by_guard($url[1])) {
    25302579                        //internal scripts
    25312580                        $dirty_scripts[] = $url[1];
    25322581                        $dirty_index[] = $i;
    2533                         if (stripos($url[1], WP_PLUGIN_URL) !== false || stripos($url[1], WPMU_PLUGIN_URL) !== false) {
     2582                        if (stripos($url[1], plugins_url()) !== false || stripos($url[1], content_url().'/mu-plugins') !== false) {
    25342583                            $dirty_plugins[] = $url[1];
    25352584                        }else{
    25362585                            $dirty_theme[] = $url[1];
    25372586                        }
    2538                     }elseif (stripos($url[1], get_option('siteurl')) === false && !in_array($url[1], $csp_external_scripts['cdn']['scripts'])) {
     2587                    }elseif (stripos($url[1], get_site_url()) === false && !in_array($url[1], $csp_external_scripts['cdn']['scripts'])) {
    25392588                        //external
    25402589                        $dirty_index[] = $i;           
     
    25562605    }
    25572606    //4th - define our protection
    2558     echo '<script type="text/javascript">csp_self_protection.dirty_theme.concat('.json_encode($dirty_theme).");</script>\n";
    2559     echo '<script type="text/javascript">csp_self_protection.dirty_plugins.concat('.json_encode($dirty_plugins).");</script>\n";
    2560     $media_upload = ((defined('CSL_MEDIA_UPLOAD_STRIPPED') && CSL_MEDIA_UPLOAD_STRIPPED === true) ? ( function_exists("admin_url") ? admin_url('js/media-upload.js') : get_option('siteurl').'/wp-admin/js/media-upload.js' ) : '');
     2607    echo '<script type="text/javascript">csp_self_protection.dirty_theme = csp_self_protection.dirty_theme.concat('.json_encode($dirty_theme).");</script>\n";
     2608    echo '<script type="text/javascript">csp_self_protection.dirty_plugins = csp_self_protection.dirty_plugins.concat('.json_encode($dirty_plugins).");</script>\n";
     2609    $media_upload = ((defined('CSL_MEDIA_UPLOAD_STRIPPED') && CSL_MEDIA_UPLOAD_STRIPPED === true) ? ( function_exists("admin_url") ? admin_url('js/media-upload.js') : get_site_url().'/wp-admin/js/media-upload.js' ) : '');
    25612610    if (!empty($media_upload))
    25622611        echo '<script type="text/javascript">csp_self_protection.dirty_enqueues = ["'.$media_upload."\"];</script>\n";
     
    27902839        if(function_exists('is_rtl') && is_rtl())
    27912840            wp_enqueue_style('codestyling-localization-rtl', CSP_PO_BASE_URL.'/css/plugin-rtl.css');
    2792 //      wp_enqueue_style('codestyling-localization', CSP_PO_BASE_URL.'/codestyling-localization.php?css=default&amp;dir='.((function_exists('is_rtl') && is_rtl()) ? 'rtl' : 'ltr'));
    27932841    }
    27942842   
     
    28692917        preg_match("/^codestyling\-localization\/codestyling\-localization\.php/", $_GET['page'])
    28702918    ) {
    2871         print '<link rel="stylesheet" href="'.get_option('siteurl')."/wp-includes/js/thickbox/thickbox.css".'" type="text/css" media="screen"/>';
     2919        print '<link rel="stylesheet" href="'.get_site_url()."/wp-includes/js/thickbox/thickbox.css".'" type="text/css" media="screen"/>';
    28722920        print '<link rel="stylesheet" href="'.CSP_PO_BASE_URL.'/codestyling-localization.php?css=default'.'" type="text/css" media="screen"/>';
    28732921    }
     
    40584106    for (i=0; i<csp_textdomains.size(); i++) {
    40594107        tderror = tderror && (csp_textdomains[i] != actual_domain);
    4060         if (csp_textdomains[i] != 'default' && csp_textdomains[i] != actual_domain) tdmixed.push(csp_textdomains[i]);
     4108        if (csp_textdomains[i] != 'default' && csp_textdomains[i] != actual_domain && csp_textdomains[i] != '{bug-detected}') tdmixed.push(csp_textdomains[i]);
    40614109        opt_list += '<option value="'+csp_textdomains[i]+'"'+(csp_textdomains[i] == actual_domain ? ' selected="selected"' : '')+'>'+(csp_textdomains[i].empty() ? 'default' : csp_textdomains[i])+'</option>';
    40624110    }
     
    41384186    $('csp-filter-all').addClassName('current');
    41394187    hide = false;
    4140     if (textdomain == '{php-code}') { hide = true; }
     4188    if (textdomain == '{php-code}' || textdomain == '{bug-detected}') { hide = true; }
    41414189    else if(textdomain == 'default') {
    41424190        hide = true;
  • codestyling-localization/trunk/includes/class-translationfile.php

    r555692 r629816  
    352352        //update the revision date
    353353        $stamp = date("Y-m-d H:i:sO");
    354         $this->_set_header_from_string("PO-Revision-Date: $stamp\nPlural-Forms: \nX-Textdomain-Support: $tds");
     354        //BUGFIX: language not possible if it's a template file
     355        $po_lang = 'en';
     356        if (preg_match("/([a-z][a-z]_[A-Z][A-Z]).(mo|po)$/", $pofile, $hits)) {
     357            $po_lang = $this->strings->_substr($hits[1],0,2);
     358        }else{
     359            $po_lang = $this->strings->_substr($_POST['language'],0,2);
     360        }
     361        $this->_set_header_from_string("PO-Revision-Date: $stamp\nPlural-Forms: \nX-Textdomain-Support: $tds", $po_lang);
    355362
    356363        //write header if last because it has no code ref anyway
     
    608615            &&
    609616            in_array($textdomain, $entry['LTD'])
    610         );
     617        )
     618        ||
     619        (stripos($entry['T'], 'Plural-Forms') !== false);
    611620    }
    612621   
  • codestyling-localization/trunk/includes/class.parser.php

    r549699 r629816  
    118118                    if ($in_func && $args_started) {
    119119                        if ($text{0} == '"') {
    120                             $text = trim($text, '"');
     120                            $text = substr($text, 1, strlen($text)-2);
    121121                            $text = str_replace('\"', '"', $text);
    122122                            $text = str_replace("\\$", "$", $text);
     
    126126                        }
    127127                        else{
    128                             $text = trim($text, "'");
     128                            $text = substr($text, 1, strlen($text)-2);
    129129                            $text = str_replace("\\'", "'", $text);
    130130                            $text = str_replace("\\$", "$", $text);
     
    289289    }
    290290   
     291    function _ltd_validate($text)
     292    {
     293        $r = strip_tags($text);
     294        if ($r != $text) return "{bug-detected}";
     295        return $text;
     296    }
     297   
    291298    function _build_gettext($line, $func, $args, $argc, $is_dev_func, $bad_argc) {
    292299        $res = array(
     
    328335                if (in_array(0, $bad_argc)) return null; //error, this can't be a function
    329336                $res['msgid'] = $args[0];
    330                 if (isset($args[1])) $res['LTD'] = trim($args[1]);
     337                if (isset($args[1])) $res['LTD'] = $this->_ltd_validate(trim($args[1]));
    331338                elseif ($argc == 1) $res['LTD'] = $this->textdomain;
    332339            case '_e':
     
    337344                if (in_array(0, $bad_argc)) return null; //error, this can't be a function
    338345                $res['msgid'] = $args[0];
    339                 if (isset($args[1])) $res['LTD'] = trim($args[1]);
     346                if (isset($args[1])) $res['LTD'] = $this->_ltd_validate(trim($args[1]));
    340347                elseif ($argc == 1) $res['LTD'] = $this->textdomain;
    341348            case '_c':
     
    344351                $res['msgid'] = $args[0];
    345352                if (in_array(0, $bad_argc)) return null; //error, this can't be a function
    346                 if (isset($args[1])) $res['LTD'] = trim($args[1]);
     353                if (isset($args[1])) $res['LTD'] = $this->_ltd_validate(trim($args[1]));
    347354                elseif ($argc == 1) $res['LTD'] = $this->textdomain;
    348355                break;
     
    357364                if (in_array(1, $bad_argc)) return null; //error, this can't be a function
    358365                $res['msgid'] = $args[1]."\04".$args[0];
    359                 if (isset($args[2])) $res['LTD'] = trim($args[2]);
     366                if (isset($args[2])) $res['LTD'] = $this->_ltd_validate(trim($args[2]));
    360367                elseif ($argc == 2) $res['LTD'] = $this->textdomain;
    361368                break;
     
    368375                if (in_array(1, $bad_argc)) return null; //error, this can't be a function
    369376                $res['msgid'] = $args[1]."\04".$args[0];
    370                 if (isset($args[2])) $res['LTD'] = trim($args[2]);
     377                if (isset($args[2])) $res['LTD'] = $this->_ltd_validate(trim($args[2]));
    371378                elseif ($argc == 2) $res['LTD'] = $this->textdomain;
    372379                break;
     
    380387                $res['msgid'] = $args[0]."\00".$args[1];
    381388                $res['P'] = true;
    382                 if (isset($args[3])) $res['LTD'] = trim($args[3]);
     389                if (isset($args[3])) $res['LTD'] = $this->_ltd_validate(trim($args[3]));
    383390                elseif ($argc == 3) $res['LTD'] = $this->textdomain;
    384391                break;
     
    392399                $res['msgid'] = $args[0]."\00".$args[1];
    393400                $res['P'] = true;
    394                 if (isset($args[3])) $res['LTD'] = trim($args[3]);
     401                if (isset($args[3])) $res['LTD'] = $this->_ltd_validate(trim($args[3]));
    395402                elseif ($argc == 3) $res['LTD'] = $this->textdomain;
    396403                break;
     
    404411                $res['msgid'] = $args[0]."\00".$args[1];
    405412                $res['P'] = true;
    406                 if (isset($args[3])) $res['LTD'] = trim($args[3]);
     413                if (isset($args[3])) $res['LTD'] = $this->_ltd_validate(trim($args[3]));
    407414                elseif ($argc == 3) $res['LTD'] = $this->textdomain;
    408415                break;
     
    419426                $res['msgid'] = $args[3]."\04".$args[0]."\00".$args[1];
    420427                $res['P'] = true;
    421                 if (isset($args[4])) $res['LTD'] = trim($args[4]);
     428                if (isset($args[4])) $res['LTD'] = html_entity_decode(strip_tags(trim($args[4])));
    422429                elseif ($argc == 4) $res['LTD'] = $this->textdomain;
    423430                break;
  • codestyling-localization/trunk/languages/codestyling-localization-de_DE.po

    r557539 r629816  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2008-08-25 03:13+0100\n"
    6 "PO-Revision-Date: 2012-06-13 19:55:41+0000\n"
     6"PO-Revision-Date: 2012-11-23 08:16:22+0000\n"
    77"Last-Translator: Heiko Rabe <[email protected]>\n"
    88"Language-Team: \n"
     
    2020"X-Textdomain-Support: yes"
    2121
    22 #: codestyling-localization.php:3302
    23 #: codestyling-localization.php:3355
    24 #: codestyling-localization.php:4188
     22#: codestyling-localization.php:3325
     23#: codestyling-localization.php:3378
     24#: codestyling-localization.php:4211
    2525#@ codestyling-localization
    2626msgid "&laquo; Previous"
    2727msgstr "&laquo; zurück"
    2828
    29 #: codestyling-localization.php:3134
    30 #: codestyling-localization.php:3139
    31 #: codestyling-localization.php:3166
    32 #: codestyling-localization.php:3171
    33 #: codestyling-localization.php:3204
    34 #: codestyling-localization.php:3209
    35 #: codestyling-localization.php:3629
     29#: codestyling-localization.php:3157
     30#: codestyling-localization.php:3162
     31#: codestyling-localization.php:3189
     32#: codestyling-localization.php:3194
     33#: codestyling-localization.php:3227
     34#: codestyling-localization.php:3232
     35#: codestyling-localization.php:3652
    3636#@ codestyling-localization
    3737msgid "-n.a.-"
     
    4040#: codestyling-localization.php:1539
    4141#: codestyling-localization.php:1576
    42 #: codestyling-localization.php:3108
     42#: codestyling-localization.php:3131
    4343#, php-format
    4444#@ codestyling-localization
     
    4848msgstr[1] "<strong>%d</strong> Sprachen"
    4949
    50 #: codestyling-localization.php:4066
     50#: codestyling-localization.php:4089
    5151#@ codestyling-localization
    5252msgid "Access Error"
    5353msgstr "Zugriffsfehler"
    5454
    55 #: codestyling-localization.php:3115
    56 #: codestyling-localization.php:3345
     55#: codestyling-localization.php:3138
     56#: codestyling-localization.php:3368
    5757#@ codestyling-localization
    5858msgid "Actions"
    5959msgstr "Aktionen"
    6060
    61 #: codestyling-localization.php:3102
    62 #: codestyling-localization.php:3506
     61#: codestyling-localization.php:3125
     62#: codestyling-localization.php:3529
    6363#@ codestyling-localization
    6464msgid "Add New Language"
     
    7070msgstr "Betroffene Dateien"
    7171
    72 #: codestyling-localization.php:2941
     72#: codestyling-localization.php:2964
    7373#@ codestyling-localization
    7474msgid "All Translations"
    7575msgstr "Alle Übersetzungen"
    7676
    77 #: codestyling-localization.php:3077
     77#: codestyling-localization.php:3100
    7878#@ codestyling-localization
    7979msgid "Available Directories:"
    8080msgstr "verfügbare Verzeichnisse:"
    8181
    82 #: codestyling-localization.php:3705
     82#: codestyling-localization.php:3728
    8383#@ codestyling-localization
    8484msgid "Confirm Delete Language"
    8585msgstr "Bestätigung der Löschung der Sprache"
    8686
    87 #: codestyling-localization.php:4248
     87#: codestyling-localization.php:4271
    8888#@ codestyling-localization
    8989msgid "Copy"
     
    9595msgstr "Erstellungsdatum"
    9696
    97 #: codestyling-localization.php:3153
    98 #: codestyling-localization.php:3185
    99 #: codestyling-localization.php:3227
    100 #: codestyling-localization.php:3641
     97#: codestyling-localization.php:3176
     98#: codestyling-localization.php:3208
     99#: codestyling-localization.php:3250
     100#: codestyling-localization.php:3664
    101101#@ codestyling-localization
    102102msgid "Delete"
    103103msgstr "Löschen"
    104104
    105 #: codestyling-localization.php:2987
     105#: codestyling-localization.php:3010
    106106#@ codestyling-localization
    107107msgid "Description"
    108108msgstr "Beschreibung"
    109109
    110 #: codestyling-localization.php:3144
    111 #: codestyling-localization.php:3176
    112 #: codestyling-localization.php:3214
    113 #: codestyling-localization.php:3633
    114 #: codestyling-localization.php:4247
     110#: codestyling-localization.php:3167
     111#: codestyling-localization.php:3199
     112#: codestyling-localization.php:3237
     113#: codestyling-localization.php:3656
     114#: codestyling-localization.php:4270
    115115#@ codestyling-localization
    116116msgid "Edit"
    117117msgstr "Bearbeiten"
    118118
    119 #: codestyling-localization.php:3370
    120 #: codestyling-localization.php:4685
     119#: codestyling-localization.php:3393
     120#: codestyling-localization.php:4708
    121121#@ codestyling-localization
    122122msgid "Edit Catalog Entry"
    123123msgstr "Katalogeintrag bearbeiten"
    124124
    125 #: codestyling-localization.php:4383
     125#: codestyling-localization.php:4406
    126126#@ codestyling-localization
    127127msgid "Examples: <small>Please refer to official Perl regular expression descriptions</small>"
    128128msgstr "Beispiele: <small>Bitte lies auch die offizielle Beschreibung für Perl reguläre Ausdrücke.</small>"
    129129
    130 #: codestyling-localization.php:3286
     130#: codestyling-localization.php:3309
    131131#@ codestyling-localization
    132132msgid "Expression Result"
    133133msgstr "Treffer Ausdruckssuche"
    134134
    135 #: codestyling-localization.php:4381
     135#: codestyling-localization.php:4404
    136136#@ codestyling-localization
    137137msgid "Expression:"
    138138msgstr "Ausdruck:"
    139139
    140 #: codestyling-localization.php:4379
     140#: codestyling-localization.php:4402
    141141#@ codestyling-localization
    142142msgid "Extended Expression Search"
    143143msgstr "Erweiterte Suche per Ausdruck"
    144144
    145 #: codestyling-localization.php:3244
    146 #: codestyling-localization.php:3893
    147 #: codestyling-localization.php:4779
     145#: codestyling-localization.php:3267
     146#: codestyling-localization.php:3916
     147#: codestyling-localization.php:4802
    148148#@ codestyling-localization
    149149msgid "File:"
    150150msgstr "Datei:"
    151151
    152 #: codestyling-localization.php:4214
     152#: codestyling-localization.php:4237
    153153#@ codestyling-localization
    154154msgid "Files:"
    155155msgstr "Dateien:"
    156156
    157 #: codestyling-localization.php:3314
     157#: codestyling-localization.php:3337
    158158#@ codestyling-localization
    159159msgid "Infos"
    160160msgstr "Infos"
    161161
    162 #: codestyling-localization.php:3113
     162#: codestyling-localization.php:3136
    163163#@ codestyling-localization
    164164msgid "Language"
     
    170170msgstr "Zielsprache"
    171171
    172 #: codestyling-localization.php:2988
     172#: codestyling-localization.php:3011
    173173#@ codestyling-localization
    174174msgid "Languages"
     
    180180msgstr "Letzter Übersetzer"
    181181
    182 #: codestyling-localization.php:3128
    183 #: codestyling-localization.php:3160
    184 #: codestyling-localization.php:3198
    185 #: codestyling-localization.php:3621
     182#: codestyling-localization.php:3151
     183#: codestyling-localization.php:3183
     184#: codestyling-localization.php:3221
     185#: codestyling-localization.php:3644
    186186#@ codestyling-localization
    187187msgid "Locale"
    188188msgstr "Gebietsschema"
    189189
    190 #: codestyling-localization.php:2782
     190#: codestyling-localization.php:2805
    191191#@ codestyling-localization
    192192msgid "Localization"
    193193msgstr "Lokalisierung"
    194194
    195 #: codestyling-localization.php:2857
     195#: codestyling-localization.php:2880
    196196#@ codestyling-localization
    197197msgid "Manage Language Files"
    198198msgstr "Sprachdateien verwalten"
    199199
    200 #: codestyling-localization.php:3307
    201 #: codestyling-localization.php:3360
    202 #: codestyling-localization.php:4195
     200#: codestyling-localization.php:3330
     201#: codestyling-localization.php:3383
     202#: codestyling-localization.php:4218
    203203#@ codestyling-localization
    204204msgid "Next &raquo;"
    205205msgstr "vorwärts &raquo;"
    206206
    207 #: codestyling-localization.php:3318
    208 #: codestyling-localization.php:4730
     207#: codestyling-localization.php:3341
     208#: codestyling-localization.php:4753
    209209#@ codestyling-localization
    210210msgid "Original:"
    211211msgstr "Original:"
    212212
    213 #: codestyling-localization.php:3290
     213#: codestyling-localization.php:3313
    214214#@ codestyling-localization
    215215msgid "Page Size"
    216216msgstr "Seitengröße"
    217217
    218 #: codestyling-localization.php:3114
     218#: codestyling-localization.php:3137
    219219#@ codestyling-localization
    220220msgid "Permissions"
     
    226226msgstr "Bitte warten, Dateien werden durchsucht ..."
    227227
    228 #: codestyling-localization.php:3349
     228#: codestyling-localization.php:3372
    229229#@ codestyling-localization
    230230msgid "Please wait, file content presently being loaded ..."
     
    236236msgstr "Plugin"
    237237
    238 #: codestyling-localization.php:2952
     238#: codestyling-localization.php:2975
    239239#@ codestyling-localization
    240240msgid "Plugins"
    241241msgstr "Plugins"
    242242
    243 #: codestyling-localization.php:4719
     243#: codestyling-localization.php:4742
    244244#@ codestyling-localization
    245245msgid "Plural Index Calculation:"
    246246msgstr "Plural Index Berechnung:"
    247247
    248 #: codestyling-localization.php:4232
    249 #: codestyling-localization.php:4235
    250 #: codestyling-localization.php:4692
    251 #: codestyling-localization.php:4695
    252 #: codestyling-localization.php:4698
    253 #: codestyling-localization.php:4703
     248#: codestyling-localization.php:4255
     249#: codestyling-localization.php:4258
     250#: codestyling-localization.php:4715
     251#: codestyling-localization.php:4718
     252#: codestyling-localization.php:4721
     253#: codestyling-localization.php:4726
    254254#@ codestyling-localization
    255255msgid "Plural Index Result ="
    256256msgstr "Plural Index Ergebnis ="
    257257
    258 #: codestyling-localization.php:4228
    259 #: codestyling-localization.php:4717
     258#: codestyling-localization.php:4251
     259#: codestyling-localization.php:4740
    260260#@ codestyling-localization
    261261msgid "Plural:"
     
    268268msgstr "Project-Id-Version"
    269269
    270 #: codestyling-localization.php:3147
    271 #: codestyling-localization.php:3150
    272 #: codestyling-localization.php:3179
    273 #: codestyling-localization.php:3182
    274 #: codestyling-localization.php:3218
    275 #: codestyling-localization.php:3220
    276 #: codestyling-localization.php:3224
    277 #: codestyling-localization.php:3635
    278 #: codestyling-localization.php:3638
     270#: codestyling-localization.php:3170
     271#: codestyling-localization.php:3173
     272#: codestyling-localization.php:3202
     273#: codestyling-localization.php:3205
     274#: codestyling-localization.php:3241
     275#: codestyling-localization.php:3243
     276#: codestyling-localization.php:3247
     277#: codestyling-localization.php:3658
     278#: codestyling-localization.php:3661
    279279#@ codestyling-localization
    280280msgid "Rescan"
    281281msgstr "Einlesen"
    282282
    283 #: codestyling-localization.php:3815
     283#: codestyling-localization.php:3838
    284284#@ codestyling-localization
    285285msgid "Rescanning PHP Source Files"
    286286msgstr "Einlesen der PHP Quelldateien"
    287287
    288 #: codestyling-localization.php:4723
    289 #: codestyling-localization.php:4740
     288#: codestyling-localization.php:4746
     289#: codestyling-localization.php:4763
    290290#@ codestyling-localization
    291291msgid "Save"
    292292msgstr "Speichern"
    293293
    294 #: codestyling-localization.php:4724
    295 #: codestyling-localization.php:4741
     294#: codestyling-localization.php:4747
     295#: codestyling-localization.php:4764
    296296#@ codestyling-localization
    297297msgid "Save & Next »"
     
    303303msgstr "Analyse Fortschritt"
    304304
    305 #: codestyling-localization.php:4388
     305#: codestyling-localization.php:4411
    306306#@ codestyling-localization
    307307msgid "Search"
    308308msgstr "Suche"
    309309
    310 #: codestyling-localization.php:3285
     310#: codestyling-localization.php:3308
    311311#@ codestyling-localization
    312312msgid "Search Result"
     
    319319msgstr "Server-Beschränkungen: Ändern der Datei Rechte ist nicht zulässig."
    320320
    321 #: codestyling-localization.php:4228
    322 #: codestyling-localization.php:4715
     321#: codestyling-localization.php:4251
     322#: codestyling-localization.php:4738
    323323#@ codestyling-localization
    324324msgid "Singular:"
     
    330330msgstr "Sorry, Google-Übersetzung ist nicht verfügbar."
    331331
    332 #: codestyling-localization.php:3011
    333 #: codestyling-localization.php:3055
     332#: codestyling-localization.php:3034
     333#: codestyling-localization.php:3078
    334334#@ codestyling-localization
    335335msgid "State"
    336336msgstr "Status"
    337337
    338 #: codestyling-localization.php:3003
     338#: codestyling-localization.php:3026
    339339#@ codestyling-localization
    340340msgid "Textdomain"
    341341msgstr "Textdomain"
    342342
    343 #: codestyling-localization.php:3067
     343#: codestyling-localization.php:3090
    344344#@ codestyling-localization
    345345msgid "The original US version doesn't contain the language directory."
     
    351351msgstr "Theme"
    352352
    353 #: codestyling-localization.php:2955
     353#: codestyling-localization.php:2978
    354354#@ codestyling-localization
    355355msgid "Themes"
    356356msgstr "Themes"
    357357
    358 #: codestyling-localization.php:3242
     358#: codestyling-localization.php:3265
    359359#@ codestyling-localization
    360360msgid "Translate Language File"
    361361msgstr "Sprachdatei übersetzen"
    362362
    363 #: codestyling-localization.php:3333
    364 #: codestyling-localization.php:4733
    365 #: codestyling-localization.php:4735
     363#: codestyling-localization.php:3356
     364#: codestyling-localization.php:4756
     365#: codestyling-localization.php:4758
    366366#@ codestyling-localization
    367367msgid "Translation:"
    368368msgstr "Übersetzung:"
    369369
    370 #: codestyling-localization.php:2986
     370#: codestyling-localization.php:3009
    371371#@ codestyling-localization
    372372msgid "Type"
    373373msgstr "Typ"
    374374
    375 #: codestyling-localization.php:3007
    376 #: codestyling-localization.php:3051
     375#: codestyling-localization.php:3030
     376#: codestyling-localization.php:3074
    377377#@ codestyling-localization
    378378msgid "Version"
     
    380380
    381381#: codestyling-localization.php:370
    382 #: codestyling-localization.php:2944
     382#: codestyling-localization.php:2967
    383383#@ codestyling-localization
    384384msgid "WordPress"
    385385msgstr "WordPress"
    386386
    387 #: codestyling-localization.php:2782
     387#: codestyling-localization.php:2805
    388388#@ codestyling-localization
    389389msgid "WordPress Localization"
     
    402402
    403403#: codestyling-localization.php:1531
    404 #: codestyling-localization.php:2009
     404#: codestyling-localization.php:2008
    405405#, php-format
    406406#@ codestyling-localization
     
    446446#: codestyling-localization.php:888
    447447#: codestyling-localization.php:929
    448 #: codestyling-localization.php:2997
     448#: codestyling-localization.php:3020
    449449#@ codestyling-localization
    450450msgid "activated"
     
    456456msgstr "aktuell"
    457457
    458 #: codestyling-localization.php:3048
     458#: codestyling-localization.php:3071
    459459#@ codestyling-localization
    460460msgid "by"
    461461msgstr "&copy;"
    462462
    463 #: codestyling-localization.php:3371
     463#: codestyling-localization.php:3394
    464464#@ codestyling-localization
    465465msgid "close"
     
    479479msgstr "deaktiviert"
    480480
    481 #: codestyling-localization.php:3004
     481#: codestyling-localization.php:3027
    482482#@ codestyling-localization
    483483msgid "defined by constant"
     
    489489msgstr "Dateien löschen"
    490490
    491 #: codestyling-localization.php:3842
    492 #: codestyling-localization.php:3879
    493 #: codestyling-localization.php:3926
     491#: codestyling-localization.php:3865
     492#: codestyling-localization.php:3902
     493#: codestyling-localization.php:3949
    494494#@ codestyling-localization
    495495msgid "finished"
    496496msgstr "fertig"
    497497
    498 #: codestyling-localization.php:3273
     498#: codestyling-localization.php:3296
    499499#@ codestyling-localization
    500500msgid "generate mo-file"
     
    519519msgstr "d.m.Y H:i:s"
    520520
    521 #: codestyling-localization.php:3322
    522 #: codestyling-localization.php:3337
     521#: codestyling-localization.php:3345
     522#: codestyling-localization.php:3360
    523523#@ codestyling-localization
    524524msgid "non case-sensitive"
    525525msgstr "nicht sensitiv"
    526526
    527 #: codestyling-localization.php:3072
    528 #: codestyling-localization.php:3093
     527#: codestyling-localization.php:3095
     528#: codestyling-localization.php:3116
    529529#@ codestyling-localization
    530530msgid "or create the missing directory using FTP Access as:"
     
    541541msgstr "analysieren"
    542542
    543 #: codestyling-localization.php:3353
     543#: codestyling-localization.php:3376
    544544#@ codestyling-localization
    545545msgid "scroll to top"
    546546msgstr "nach oben springen"
    547547
    548 #: codestyling-localization.php:3069
     548#: codestyling-localization.php:3092
    549549#@ codestyling-localization
    550550msgid "try to create the WordPress language directory"
    551551msgstr "versuche, den Sprachdatei-Ordner anzulegen"
    552552
    553 #: codestyling-localization.php:2550
    554 #: codestyling-localization.php:2609
    555 #: codestyling-localization.php:2624
    556 #: codestyling-localization.php:3244
    557 #: codestyling-localization.php:3274
     553#: codestyling-localization.php:2573
     554#: codestyling-localization.php:2632
     555#: codestyling-localization.php:2647
     556#: codestyling-localization.php:3267
     557#: codestyling-localization.php:3297
    558558#: includes/class-translationfile.php:929
    559559#@ codestyling-localization
     
    561561msgstr "unbekannt"
    562562
    563 #: codestyling-localization.php:4722
    564 #: codestyling-localization.php:4739
     563#: codestyling-localization.php:4745
     564#: codestyling-localization.php:4762
    565565#@ codestyling-localization
    566566msgid "« Save & Previous"
     
    572572msgstr "μ Plugin"
    573573
    574 #: codestyling-localization.php:2948
     574#: codestyling-localization.php:2971
    575575#@ codestyling-localization
    576576msgid "μ Plugins"
    577577msgstr "μ Plugins"
    578578
    579 #: codestyling-localization.php:3274
     579#: codestyling-localization.php:3297
    580580#@ codestyling-localization
    581581msgid "last written:"
    582582msgstr "Zuletzt geschrieben:"
    583583
    584 #: codestyling-localization.php:3278
     584#: codestyling-localization.php:3301
    585585#@ codestyling-localization
    586586msgid "Total"
    587587msgstr "Insgesamt"
    588588
    589 #: codestyling-localization.php:3279
     589#: codestyling-localization.php:3302
    590590#@ codestyling-localization
    591591msgid "Plural"
    592592msgstr "Plural"
    593593
    594 #: codestyling-localization.php:3280
    595 #: codestyling-localization.php:4224
     594#: codestyling-localization.php:3303
     595#: codestyling-localization.php:4247
    596596#@ codestyling-localization
    597597msgid "Context"
    598598msgstr "Kontext"
    599599
    600 #: codestyling-localization.php:3281
     600#: codestyling-localization.php:3304
    601601#@ codestyling-localization
    602602msgid "Not translated"
    603603msgstr "Nicht übersetzt"
    604604
    605 #: codestyling-localization.php:3282
     605#: codestyling-localization.php:3305
    606606#@ codestyling-localization
    607607msgid "Comments"
    608608msgstr "Kommentare"
    609609
    610 #: codestyling-localization.php:3283
    611 #: codestyling-localization.php:4206
     610#: codestyling-localization.php:3306
     611#: codestyling-localization.php:4229
    612612#@ codestyling-localization
    613613msgid "Code Hint"
    614614msgstr "Code Hinweise"
    615615
    616 #: codestyling-localization.php:4205
     616#: codestyling-localization.php:4228
    617617#@ codestyling-localization
    618618msgid "Comment"
    619619msgstr "Kommentar"
    620620
    621 #: codestyling-localization.php:3250
     621#: codestyling-localization.php:3273
    622622#@ codestyling-localization
    623623msgid "<b>Hint:</b> The extended feature for textdomain separation shows at dropdown box <i>Textdomain</i> the pre-selected primary textdomain."
    624624msgstr "<b>Hinweis:</b> Die erweiterte Funktion für Textdomain-Trennung zeigt im Auswahlfeld <i>Textdomain</i> die primäre Textdomain der Komponente an."
    625625
    626 #: codestyling-localization.php:2159
    627 #: codestyling-localization.php:3251
     626#: codestyling-localization.php:2158
     627#: codestyling-localization.php:3274
    628628#@ codestyling-localization
    629629msgid "All other additional contained textdomains occur at the source but will not be used, if not explicitely supported by this component!"
    630630msgstr "Alle anderen zusätzlichen Textdomains treten im Quelltext auf, werden aber nicht benutzt, wenn die Komponente sie nicht explizit unterstützt!"
    631631
    632 #: codestyling-localization.php:2160
    633 #: codestyling-localization.php:3252
     632#: codestyling-localization.php:2159
     633#: codestyling-localization.php:3275
    634634#@ codestyling-localization
    635635msgid "Please contact the author, if some of the non primary textdomain based phrases will not show up translated at the required position!"
    636636msgstr "Bitte wenden Sie sich an den Autor, wenn einige der Begriffe nicht übersetzt erscheinen, weil sie nicht in der primären Textdomain sind!"
    637637
    638 #: codestyling-localization.php:2161
    639 #: codestyling-localization.php:3253
     638#: codestyling-localization.php:2160
     639#: codestyling-localization.php:3276
    640640#@ codestyling-localization
    641641msgid "The Textdomain <i><b>default</b></i> always stands for the WordPress main language file, this could be either intentionally or accidentally!"
    642642msgstr "Die Textdomain <b><i>default</i></b> immer steht für die WordPress-Sprachdatei, dies könnte entweder absichtlich oder unabsichtlich sein!"
    643643
    644 #: codestyling-localization.php:3272
     644#: codestyling-localization.php:3295
    645645#@ codestyling-localization
    646646msgid "Textdomain:"
     
    847847msgstr "bbPress"
    848848
    849 #: codestyling-localization.php:3088
     849#: codestyling-localization.php:3111
    850850#@ codestyling-localization
    851851msgid "The original bbPress component doesn't contain a language directory."
    852852msgstr "Die originale bbPress Komponente enthält kein Sprachdatei-Verzeichnis."
    853853
    854 #: codestyling-localization.php:3090
     854#: codestyling-localization.php:3113
    855855#@ codestyling-localization
    856856msgid "try to create the bbPress language directory"
    857857msgstr "versuche das bbPress Sparchdatei-Verzeichnis erstellen"
    858858
    859 #: codestyling-localization.php:1975
     859#: codestyling-localization.php:1974
    860860#@ codestyling-localization
    861861msgid "You do not have the permission to create a new Language File Path.<br/>Please create the appropriated path using your FTP access."
     
    873873msgstr "<strong>Benennungsproblem: </strong>Der Autor nutzt nicht unterstützte Sprachdatei-Namenkonvention! Anstatt beispielsweise <em>de_DE.po</em> im Thema zu verwenden, wird die nicht standardisierte Form <em>%s</em> verwendet. Wenn Sie dieses Thema übersetzen, werden nur manuell umbenannte Sprachdateien funktionieren!"
    874874
    875 #: codestyling-localization.php:2719
    876 #: codestyling-localization.php:2958
    877 #: codestyling-localization.php:3020
     875#: codestyling-localization.php:2742
     876#: codestyling-localization.php:2981
     877#: codestyling-localization.php:3043
    878878#@ codestyling-localization
    879879msgid "Compatibility"
     
    890890msgstr "<strong>WooThemes Problem:</strong> Der Autor ist bekannt für nicht durchgeführte Übersetzung der Administrationsoberfläche seines Themes. Bitte erwarten Sie nur Übersetzungen für Frontend Ansichten oder kontaktieren Sie den Autor für weitere Unterstützung!"
    891891
    892 #: codestyling-localization.php:2965
     892#: codestyling-localization.php:2988
    893893#@ codestyling-localization
    894894msgid "You like it?"
    895895msgstr "Gefällt es Ihnen?"
    896896
    897 #: codestyling-localization.php:3034
     897#: codestyling-localization.php:3057
    898898#@ codestyling-localization
    899899msgid "Memory Warning"
    900900msgstr "Speicherwarnung"
    901901
    902 #: codestyling-localization.php:3035
     902#: codestyling-localization.php:3058
    903903#@ codestyling-localization
    904904msgid "Since WordPress 3.x version it may require at least <strong>58MB</strong> PHP memory_limit! The reason is still unclear but it doesn't freeze anymore. Instead a error message will be shown and the scanning process aborts while reaching your limits."
    905905msgstr "Seit WordPress Version 3.x werden mindestens <strong>58MB</strong> PHP memory_limit benötigt! Der Grund ist noch unklar, aber der Einlesevorgang friert nicht mehr ein. Stattdessen wird eine Fehlermeldung angezeigt und der Scan-Vorgang beim Überschreiten des Limits abgebrochen."
    906906
    907 #: codestyling-localization.php:3041
     907#: codestyling-localization.php:3064
    908908#@ codestyling-localization
    909909msgid "Language Folder"
    910910msgstr "Sprachdatei-Ordner"
    911911
    912 #: codestyling-localization.php:3042
     912#: codestyling-localization.php:3065
    913913#@ codestyling-localization
    914914msgid "The translation file folder is ambiguous, please select by clicking the appropriated language file folder or ask the Author about!"
    915915msgstr "Der Sprachdateiordner ist nicht eindeutig, wählen Sie bitte durch Anklicken den geeigneten Dateiordner oder fragen Sie den Autor dieser Komponente!"
    916916
    917 #: codestyling-localization.php:4714
    918 #: codestyling-localization.php:4729
     917#: codestyling-localization.php:4737
     918#: codestyling-localization.php:4752
    919919#@ codestyling-localization
    920920msgid "Access Keys:"
     
    955955msgstr "<strong>Textdomain Definition:</strong> Dieses Plugin hat eine Plugin-Textdomain Definition in den Header-Felder, scheint aber keine Übersetzung zu laden. Wenn es nicht Ihre Übersetzung anzeigt, kontaktieren Sie bitte den Plugin-Autor."
    956956
    957 #: codestyling-localization.php:2961
    958 #: codestyling-localization.php:3027
     957#: codestyling-localization.php:2984
     958#: codestyling-localization.php:3050
    959959#@ codestyling-localization
    960960msgid "Security Risk"
    961961msgstr "Sicherheitsrisiko"
    962962
    963 #: codestyling-localization.php:3284
     963#: codestyling-localization.php:3307
    964964#@ codestyling-localization
    965965msgid "Trailing Space"
     
    971971msgstr "Deine Übersetzungdatei unterstützt nicht Erweiterung <em>mehrfache Textdomains in einer Übersetzungsdatei</em>.<br/>Bitte lesen Sie die Quelldateien auf der Übersichtsseite der Komponente neu ein, um die Erweiterung zu nutzen."
    972972
    973 #: codestyling-localization.php:2864
     973#: codestyling-localization.php:2887
    974974#@ codestyling-localization
    975975msgid "enable low memory mode"
    976976msgstr "Low-Memory-Modus einschalten"
    977977
    978 #: codestyling-localization.php:2113
    979 #: codestyling-localization.php:2866
     978#: codestyling-localization.php:2112
     979#: codestyling-localization.php:2889
    980980#@ codestyling-localization
    981981msgid "If your Installation is running under low remaining memory conditions, you will face the memory limit error during scan process or opening catalog content. If you hitting your limit, you can enable this special mode. This will try to perform the actions in a slightly different way but that will lead to a considerably slower response times but nevertheless gives no warranty, that it will solve your memory related problems at all cases."
    982982msgstr "Wenn Ihre Installation unter niedrigen Speicherbedingungen ausgeführt wird, werden Sie möglicherweise mit einen Speicher Limit Fehler konfrontiert werden, während Sie eine Komponente einlesen oder übersetzen wollen. Wenn Sie an Ihr Limit anschlagen, können Sie diesen speziellen Modus aktivieren. Es wird versucht, die Aktionen auf einen anderen Wege auszuführen. Dies wird aber zu viel langsameren Reaktionszeiten führen und gibt dennoch keine Garantie, dass es Ihre Speicherprobleme in allen Fällen löst."
    983983
    984 #: codestyling-localization.php:3242
     984#: codestyling-localization.php:3265
    985985#@ codestyling-localization
    986986msgid "back to overview page &raquo;"
    987987msgstr "Zurück zur Übersicht »"
    988988
    989 #: codestyling-localization.php:3884
     989#: codestyling-localization.php:3907
    990990#, php-format
    991991#@ codestyling-localization
     
    993993msgstr "Sie versuchen Dateien einzulesen, die Ihr PHP Memory Limit bei %s MB während der Analyse übersteigen.<br/>Bitte aktivieren Sie den <em>Low-Memory-Modus</em>."
    994994
    995 #: codestyling-localization.php:4115
     995#: codestyling-localization.php:4138
    996996#, php-format
    997997#@ codestyling-localization
     
    10101010msgstr "Sie versuchen, eine leere mo-Datei ohne Übersetzungen erstellen. Dies ist nicht möglich, bitte übersetzen Sie mindestens einen Eintrag."
    10111011
    1012 #: codestyling-localization.php:2889
    1013 #: codestyling-localization.php:2895
    1014 #: codestyling-localization.php:2913
    1015 #: codestyling-localization.php:2921
     1012#: codestyling-localization.php:2912
     1013#: codestyling-localization.php:2918
     1014#: codestyling-localization.php:2936
     1015#: codestyling-localization.php:2944
    10161016#@ codestyling-localization
    10171017msgid "Attention:"
     
    10331033msgstr "<strong>Ares Theme Problem: </strong>Dieses Theme definiert seine Textdomain durch Stringverkettung im Code. Die Textdomain wurde auf 'AresLanguage' angepasst, bitte benachrichtige den Theme Author, damit er das in eine feste Konstante ändern kann! "
    10341034
    1035 #: codestyling-localization.php:2873
     1035#: codestyling-localization.php:2896
    10361036#@ codestyling-localization
    10371037msgid "None"
    10381038msgstr "Keine"
    10391039
    1040 #: codestyling-localization.php:2874
     1040#: codestyling-localization.php:2897
    10411041#@ codestyling-localization
    10421042msgid "Google"
    10431043msgstr "Google"
    10441044
    1045 #: codestyling-localization.php:2875
     1045#: codestyling-localization.php:2898
    10461046#@ codestyling-localization
    10471047msgid "Microsoft"
    10481048msgstr "Microsoft"
    10491049
    1050 #: codestyling-localization.php:2881
     1050#: codestyling-localization.php:2904
    10511051#@ codestyling-localization
    10521052msgid "How to use translation API services..."
    10531053msgstr "Wie benutzt man die Übersetzungs-APIs..."
    10541054
    1055 #: codestyling-localization.php:2896
     1055#: codestyling-localization.php:2919
    10561056#, php-format
    10571057#@ codestyling-localization
     
    10591059msgstr "Dieser Service ist nicht länger kostenfrei, seit Google die neue Version 2 seiner API veröffentlicht hat. Bitte lesen Sie sich zuerst die entsprechende Erklärung unter %s durch."
    10601060
    1061 #: codestyling-localization.php:2897
     1061#: codestyling-localization.php:2920
    10621062#@ codestyling-localization
    10631063msgid "Using this API within <em>Codestyling Localization</em> requires an API Key to be created at your Google account first. Once you have such a key, you can activate this API by defining a new constant at your <b>wp-config.php</b> file:"
    10641064msgstr "Die Benutzung dieser API innerhalb von <em>Codestyling Localization</em> erfordert, daß Sie zuerst einen API Schlüssel in Ihrem Google Account erzeugen. Wenn Sie diesen haben, können Sie diese API freischalten, indem Sie in der <b>wp-config.php</b> folgendes einfügen:"
    10651065
    1066 #: codestyling-localization.php:2905
     1066#: codestyling-localization.php:2928
    10671067#, php-format
    10681068#@ codestyling-localization
     
    10701070msgstr "Microsoft stellt einen Übersetzungdienst bereit, der 2 Millionen Zeichen pro Monat kostenfrei übersetzen lässt. Aber dafür ist trotzdem eine Subscription auf %s notwendig egal ob kostenfrei oder als bezahlter Volumendienst."
    10711071
    1072 #: codestyling-localization.php:2906
     1072#: codestyling-localization.php:2929
    10731073#@ codestyling-localization
    10741074msgid "Using this API within <em>Codestyling Localization</em> requires <em>client_id</em> and <em>client_secret</em> to be created at your Azure subscription first. Once you have this values, you can activate this API by defining new constants at your <b>wp-config.php</b> file:"
    10751075msgstr "Die Benutzung dieser API innerhalb von <em>Codestyling Localization</em> erfordert, daß Sie zuerst eine <em>client_id</em> und ein <em>client_secret</em> in Ihrer Azure Subscription generieren. Wenn Sie diese Daten haben, können Sie diese API freischalten, wenn Sie in Ihrer <b>wp-config.php</b> folgende Einträge hinzufügen:"
    10761076
    1077 #: codestyling-localization.php:2913
     1077#: codestyling-localization.php:2936
    10781078#@ codestyling-localization
    10791079msgid "This API additionally requires PHP curl functions and will not be available without. Current curl version:"
    10801080msgstr "Dieser Dienst erfordert zusätzlich, das in PHP die curl Funktionen installiert sind und wird sonst nicht verfügbar sein. Aktuelle Curl Version:"
    10811081
    1082 #: codestyling-localization.php:2914
     1082#: codestyling-localization.php:2937
    10831083#@ codestyling-localization
    10841084msgid "not installed"
    10851085msgstr "nicht installiert"
    10861086
    1087 #: codestyling-localization.php:2889
     1087#: codestyling-localization.php:2912
    10881088#@ codestyling-localization
    10891089msgid "Keep in mind, that any WordPress administrator can use the service for translation purpose and may raise your costs in case of paid option used."
    10901090msgstr "Bitte denken Sie darüber nach, daß jeder WordPress Administrator die Übersetzungsdienste benutzen und somit die Kosten in die Höhe treiben kann, sofern der Dienst kostenpflichtig ist."
    10911091
    1092 #: codestyling-localization.php:3258
     1092#: codestyling-localization.php:3281
    10931093#@ codestyling-localization
    10941094msgid "<strong>Error</strong>: The actual loaded translation content does not match the textdomain:"
    10951095msgstr "<strong>Fehler</strong>: Die aktuell geladenen Texte gehören nicht zur Texdomain:"
    10961096
    1097 #: codestyling-localization.php:3260
     1097#: codestyling-localization.php:3283
    10981098#@ codestyling-localization
    10991099msgid "Expect, that any text you translate will not occure as long as the textdomain is mismatching!"
    11001100msgstr "Erwarten Sie, dass jeder Text, der nun übersetzt wird, nicht erscheinen wird, solange die Textdomains nicht übereinstimmen."
    11011101
    1102 #: codestyling-localization.php:3262
     1102#: codestyling-localization.php:3285
    11031103#@ codestyling-localization
    11041104msgid "This is a coding issue at the source files you try to translate, please contact the original Author and explain this mismatch."
    11051105msgstr "Dies ist ein Problem in der Programmierung der Quelldateien, die Sie zu übersetzen versuchen. Kontaktieren Sie den Autor und erklären Sie das Problem."
    11061106
    1107 #: codestyling-localization.php:3265
     1107#: codestyling-localization.php:3288
    11081108#@ codestyling-localization
    11091109msgid "<strong>Warning</strong>: The actual loaded translation content contains mixed textdomains and is not pure translateable within one textdomain."
    11101110msgstr "<strong>Warnung</strong>: Die aktuell verfügbaren Text kommen aus verschiedenen Textdomains und können nicht einheitlich in einer Textdomain übersetzt werden."
    11111111
    1112 #: codestyling-localization.php:3269
     1112#: codestyling-localization.php:3292
    11131113#@ codestyling-localization
    11141114msgid "The affected unknown textdomains are:"
    11151115msgstr "Die betroffenen, unbekannten Textdomains sind:"
    11161116
    1117 #: codestyling-localization.php:4692
    1118 #: codestyling-localization.php:4695
    1119 #: codestyling-localization.php:4735
     1117#: codestyling-localization.php:4715
     1118#: codestyling-localization.php:4718
     1119#: codestyling-localization.php:4758
    11201120#@ codestyling-localization
    11211121msgid "translate with API Service by"
    11221122msgstr "übersetzen mit API-Service von"
    11231123
    1124 #: codestyling-localization.php:2872
     1124#: codestyling-localization.php:2895
    11251125#@ codestyling-localization
    11261126msgid "Translation Service-APIs:"
    11271127msgstr "Übersetzungs-Service-APIs:"
    11281128
    1129 #: codestyling-localization.php:3267
     1129#: codestyling-localization.php:3290
    11301130#@ codestyling-localization
    11311131msgid "It seems, that there is code contained extracted out of other plugins, themes or widgets and used by copy & paste inside some source files."
    11321132msgstr "Es scheint so, daß in den Quelldateien Code enthalten ist, der per Copy & Paste aus anderen Plugins, Themes oder Widgets stammt."
    11331133
    1134 #: codestyling-localization.php:2797
     1134#: codestyling-localization.php:2820
    11351135#@ codestyling-localization
    11361136msgid "Translation API Keys"
    11371137msgstr "Übersetzung API Schlüssel"
    11381138
    1139 #: codestyling-localization.php:2800
     1139#: codestyling-localization.php:2823
    11401140#@ codestyling-localization
    11411141msgid "Google Translate API Key"
    11421142msgstr "Google Translate API-Schlüssel"
    11431143
    1144 #: codestyling-localization.php:2804
     1144#: codestyling-localization.php:2827
    11451145#@ codestyling-localization
    11461146msgid "Microsoft Translator - Client ID"
    11471147msgstr "Microsoft Translator - Client-ID"
    11481148
    1149 #: codestyling-localization.php:2808
     1149#: codestyling-localization.php:2831
    11501150#@ codestyling-localization
    11511151msgid "Microsoft Translator - Client Secret"
    11521152msgstr "Microsoft Translator - Client Secret"
    11531153
    1154 #: codestyling-localization.php:2886
     1154#: codestyling-localization.php:2909
    11551155#@ codestyling-localization
    11561156msgid "a) Global Unique Keys - single user configuration"
    11571157msgstr "a) Global eindeutige Schlüssel - Einzelnutzer-Konfiguration"
    11581158
    1159 #: codestyling-localization.php:2918
     1159#: codestyling-localization.php:2941
    11601160#@ codestyling-localization
    11611161msgid "b) User Dedicated Keys - multiple user configurations"
    11621162msgstr "b) dedizierte Benutzerschlüssel - Mehrbenutzerkonfigurationen"
    11631163
    1164 #: codestyling-localization.php:2921
     1164#: codestyling-localization.php:2944
    11651165#@ codestyling-localization
    11661166msgid "This will extends all <em>User Profile</em> pages with a new section to enter all required translation key data. Keep im mind, that this data are stored at the database and are contained at SQL backups."
    11671167msgstr "Dies erweitert alle <em>Benutzerprofil</em> -Seiten mit einem neuen Abschnitt, in dem alle für die Übersetzung erforderlichen Daten eingeben werden können. Beachten Sie bitte, daß diese Daten in der Datenbank gespeichert und in SQL-Sicherungen enthalten sind."
    11681168
    1169 #: codestyling-localization.php:2925
     1169#: codestyling-localization.php:2948
    11701170#@ codestyling-localization
    11711171msgid "You can activate the per user behavoir, if you define only a single constant at your <b>wp-config.php</b> file. This enables the new section at each <a target=\"_blank\" href=\"profile.php?#translations\">User Profile</a> with sufficiant permissions and is only editable by the releated logged in user."
    11721172msgstr "Sie können die <em>pro Benutzer</em> Verhaltensweise aktivieren, wenn Sie nur eine Konstante in der <b>wp-config.php</b> -Datei definieren. Das schaltet einen neuen Abschnitt im <a target=\"_blank\" href=\"profile.php?#translations\">Benutzerprofil</a> bei ausreichender Berechtigung frei und kann nur durch den dazugehörigen eingeloggten Benutzer angepasst werden."
    11731173
    1174 #: codestyling-localization.php:2878
     1174#: codestyling-localization.php:2901
    11751175#@ codestyling-localization
    11761176msgid "User Profile settings..."
    11771177msgstr "Benutzerprofileinstellungen..."
    11781178
    1179 #: codestyling-localization.php:2930
     1179#: codestyling-localization.php:2953
    11801180#@ codestyling-localization
    11811181msgid "Special Hosting Configuration"
    11821182msgstr "Spezielle Hosting-Konfiguration"
    11831183
    1184 #: codestyling-localization.php:2933
     1184#: codestyling-localization.php:2956
    11851185#@ codestyling-localization
    11861186msgid "If your are a provider and you are hosting WordPress installations for your customer, it is possible to deactivate this help information using an additional constant at your <b>wp-config.php</b> file. At single user mode (a) this simply does not show any help for API configuration, at multiuser mode (b) it shows the link to the profile page."
    11871187msgstr "Wenn Sie ein Dienstleister sind und Sie WordPress-Installationen für Ihre Kunden hosten, ist es möglich, diese Hilfeinformation über eine zusätzliche Konstante in Ihrer <b>wp-config.php</b> Datei zu deaktivieren. Im Einzelnutzer-Modus (a) zeigt es diese Hilfe einfach nicht mehr an, im Mehrbenutzer-Modus (b) wird der Link zur Profileseite angezeigt."
    11881188
    1189 #: codestyling-localization.php:3191
     1189#: codestyling-localization.php:3214
    11901190#@ codestyling-localization
    11911191msgid "Warning"
    11921192msgstr "Warnung"
    11931193
    1194 #: codestyling-localization.php:3128
     1194#: codestyling-localization.php:3151
    11951195#@ codestyling-localization
    11961196msgid "(informal)"
    11971197msgstr "(Du)"
    11981198
    1199 #: codestyling-localization.php:3160
     1199#: codestyling-localization.php:3183
    12001200#@ codestyling-localization
    12011201msgid "(formal)"
    12021202msgstr "(Sie)"
    12031203
    1204 #: codestyling-localization.php:3191
     1204#: codestyling-localization.php:3214
    12051205#@ codestyling-localization
    12061206msgid "German translations are currently supported by a temporary workaround only, because they will be handled completely uncommon beside WordPress standards!"
     
    12131213msgstr "Sie können alle Gettext Übersetzungsdateien (*.po/*.mo) direkt von Ihrem WordPress Admin Center ohne jede Notwendigkeit eines externen Editors verwalten und bearbeiten. Es erkennt automatisch die Gettext vorbereiteten Komponenten wie <b>WordPress</b> selbst oder jedes <b>Plugin</b> / <b>Theme</b> mit Gettext Unterstützung, ist in der Lage, die zugehörigen Quelldateien zu scannen und unterstützt Sie mithilfe von <b>Google Translate API</b> oder <b>Microsoft Translator API</b> während der Übersetzung. Dieses Plugin unterstützt <b>WordPress MU</b> und ermöglicht explizite <b>WPMU Plugin</b> -Übersetzung. Die Suche funktioniert sowohl mit ignore-case als auch mit regulären Ausdrücken während der Übersetzung. <b>BuddyPress</b> und <b>bbPress</b> als Teil von BuddyPress können auch übersetzt werden. Produzierte Übersetzungsdateien sind 100 % kompatibel zu <b>PoEdit</b>."
    12141214
    1215 #: codestyling-localization.php:2127
     1215#: codestyling-localization.php:2126
    12161216#@ codestyling-localization
    12171217msgid "If you get compatibility warnings, than they are often related to a wrong usage of WordPress core functionality by the authors of the affected Themes or Plugins."
    12181218msgstr "Wenn Sie Kompatibilitätswarnungen erhalten, können diese oft auf eine falsche Verwendung von WordPress Kern-Funktionalität durch den Autor des betroffenen Themes oder Plugins zurückgeführt werden."
    12191219
    1220 #: codestyling-localization.php:2128
     1220#: codestyling-localization.php:2127
    12211221#@ codestyling-localization
    12221222msgid "There are several reason for such reports, but in each of this cases only the original author can solve it:"
    12231223msgstr "Es gibt mehrere Gründe für solche Berichte, aber in jedem dieser Fälle kann nur der ursprüngliche Autor es lösen:"
    12241224
    1225 #: codestyling-localization.php:2133
     1225#: codestyling-localization.php:2132
    12261226#@ codestyling-localization
    12271227msgid "Loading of translation files will be performed beside the WordPress standard functionality."
    12281228msgstr "Laden von Übersetzungsdateien wird abseits der standard-WordPress-Funktionen ausgeführt."
    12291229
    1230 #: codestyling-localization.php:2136
     1230#: codestyling-localization.php:2135
    12311231#@ codestyling-localization
    12321232msgid "Textdomains can not be parsed from source files because of used coding syntax."
    12331233msgstr "Textdomains können aus Quelldateien aufgrund der verwendete Codierungssyntax nicht analysiert werden."
    12341234
    1235 #: codestyling-localization.php:2139
     1235#: codestyling-localization.php:2138
    12361236#@ codestyling-localization
    12371237msgid "Component seems to be translatable but doesn't use a translation file load call."
    12381238msgstr "Komponente scheint übersetzbar zu sein, lädt aber keine Übersetzungsdatei."
    12391239
    1240 #: codestyling-localization.php:2757
     1240#: codestyling-localization.php:2780
    12411241#@ codestyling-localization
    12421242msgid "For more information:"
    12431243msgstr "Weitere Informationen:"
    12441244
    1245 #: codestyling-localization.php:2759
     1245#: codestyling-localization.php:2782
    12461246#@ codestyling-localization
    12471247msgid "Trac Development Log"
    12481248msgstr ""
    12491249
    1250 #: codestyling-localization.php:2760
     1250#: codestyling-localization.php:2783
    12511251#@ codestyling-localization
    12521252msgid "Plugin Support Forum"
    12531253msgstr ""
    12541254
    1255 #: codestyling-localization.php:3244
     1255#: codestyling-localization.php:3267
    12561256#@ codestyling-localization
    12571257msgid "Project-Id-Version:"
    12581258msgstr ""
    12591259
    1260 #: codestyling-localization.php:2095
     1260#: codestyling-localization.php:2094
    12611261#@ codestyling-localization
    12621262msgid "While get in touch with WordPress you will find out, that the initial delivery package comes only with english localization. If you want WordPress to show your native language, you have to provide the appropriated language file at languages folder. This files will be used to replace the english text phrases during the process of page generation. This translation capability has the origin at the gettext functionality which currently been used across a wide range of open source projects."
     
    12651265"Diese Übersetzungfähigkeiten basieren auf der Verwendung der gettext Funktionalität, die in sehr vielen Open Source Projekten zum Einsatz kommt."
    12661266
    1267 #: codestyling-localization.php:2144
    1268 #: codestyling-localization.php:2174
     1267#: codestyling-localization.php:2143
     1268#: codestyling-localization.php:2173
    12691269#@ codestyling-localization
    12701270msgid "Reported issues are not a problem of <em>Codestyling Localization</em>, it's caused by the author of the affected component within it's code."
    12711271msgstr "Gemeldete Probleme sind kein Problem von <em>Codestyling Lokalisierung</em>, es wird vom Autor der betroffenen Komponente innerhalb des Codes verursacht."
    12721272
    1273 #: codestyling-localization.php:2155
     1273#: codestyling-localization.php:2154
    12741274#@ codestyling-localization
    12751275msgid "Textdomains are used to specified the context for the translation file to be loaded and processed. If a component tries to load a translation file using a textdomain, all texts assigned to this domain gets translated during page creation."
    12761276msgstr "Textdomains spezifizieren den Kontext für die Übersetzungsdatei, die geladen und verarbeitet werden soll. Wenn eine Komponente versucht, eine Übersetzungsdatei mit einem Textdomain zu laden, werden alle Texte, die dieser Domäne zugewiesen sind, während der Seitenerstellung übersetzt."
    12771277
    1278 #: codestyling-localization.php:2158
     1278#: codestyling-localization.php:2157
    12791279#@ codestyling-localization
    12801280msgid "The extended feature for textdomain separation shows at dropdown box <i>Textdomain</i> the pre-selected primary textdomain."
    12811281msgstr "Die erweiterte Funktion für Textdomain Trennung zeigt in der Dropdown-Box <i>Textdomain</i> die vorausgewählten primäre Textdomain."
    12821282
    1283 #: codestyling-localization.php:2167
     1283#: codestyling-localization.php:2166
    12841284#@ codestyling-localization
    12851285msgid "If you get warnings either at the overview page or at the editor page, somethings is wrong within the analysed component."
    12861286msgstr "Wenn Sie Warnungen entweder auf der Übersichtsseite oder auf die Editor-Seite erhalten, stimmt etwas innerhalb der untersuchten Komponente nicht."
    12871287
    1288 #: codestyling-localization.php:2168
     1288#: codestyling-localization.php:2167
    12891289#@ codestyling-localization
    12901290msgid "The overview page will show warnings, if the textdomain can not be found clearly. In this case the author has written the components code in a way make it hard to detect."
    12911291msgstr "Die Übersichtsseite zeigt Warnungen an, wenn die Textdomain nicht eindeutig gefunden werden kann. In diesem Fall hat der Autor der Komponente Code in einer Art und Weise geschrieben, die schwer zu erkennen ist."
    12921292
    1293 #: codestyling-localization.php:2171
     1293#: codestyling-localization.php:2170
    12941294#@ codestyling-localization
    12951295msgid "Warnings at the editors view will show up, if the component is using badly coded textdomains. This could be either by integration of other plugins code or accidentally by typing mistakes."
    12961296msgstr "Warnungen in der Editoransicht werden angezeigt, wenn die Komponente schlecht codierten Textdomains verwendet. Dies könnte entweder durch Integration von Code anderer Plugins oder versehentlich durch Tippfehler entstanden sein."
    12971297
    1298 #: codestyling-localization.php:2705
     1298#: codestyling-localization.php:2728
    12991299#@ codestyling-localization
    13001300msgid "Overview"
    13011301msgstr "Übersicht"
    13021302
    1303 #: codestyling-localization.php:2711
     1303#: codestyling-localization.php:2734
    13041304#@ codestyling-localization
    13051305msgid "Low Memory Mode"
    13061306msgstr "Low-Memory-Modus"
    13071307
    1308 #: codestyling-localization.php:2164
     1308#: codestyling-localization.php:2163
    13091309#@ codestyling-localization
    13101310msgid "Warning Messages"
    13111311msgstr "Warnmeldungen"
    13121312
    1313 #: codestyling-localization.php:2102
     1313#: codestyling-localization.php:2101
    13141314#@ codestyling-localization
    13151315msgid "Dashboard in your Language"
    13161316msgstr "Dashboard in Ihrer Sprache"
    13171317
    1318 #: codestyling-localization.php:2185
     1318#: codestyling-localization.php:2184
    13191319#@ codestyling-localization
    13201320msgid "Your provider does not permit the ability to modify files at your installation by executed scripts. This translation plugins requires this permission to work properly. WordPress solves this at updates by presenting a dialog for your FTP parameters. This plugin will prompt for your FTP credentials if they are required."
    13211321msgstr "Ihr Provider gestattet nicht die Möglichkeit, Dateien in Ihrer Installation von ausgeführten Skripts ändern zu lassen. Dieses Übersetzungsplugins benötigt diese Berechtigung um richtig zu arbeiten. WordPress löst dieses Problem bei Updates durch das Anzeigen eines Dialogfelds für die FTP-Parameter. Dieses Plugin wird nun ggf. Ihre FTP-Anmeldeinformationen anfordern, wenn sie benötigt werden."
    13221322
    1323 #: codestyling-localization.php:2188
     1323#: codestyling-localization.php:2187
    13241324#@ codestyling-localization
    13251325msgid "Permit File Modifications without prompting for User Credentials"
    13261326msgstr "Dateiänderungen ohne Eingabeaufforderung für Benutzeranmeldeinformationen ermöglichen"
    13271327
    1328 #: codestyling-localization.php:2738
     1328#: codestyling-localization.php:2761
    13291329#@ codestyling-localization
    13301330msgid "File Permissions"
    13311331msgstr "Dateiberechtigungen"
    13321332
    1333 #: codestyling-localization.php:2860
     1333#: codestyling-localization.php:2883
    13341334#@ codestyling-localization
    13351335msgid "File Permission Problem:"
    13361336msgstr "Dateiberechtigungsproblem:"
    13371337
    1338 #: codestyling-localization.php:2860
     1338#: codestyling-localization.php:2883
    13391339#@ codestyling-localization
    13401340msgid "Your WordPress installation does not permit the modification of translation files directly. You will be prompt for FTP credentials if required."
    13411341msgstr "Ihre WordPress-Installation erlaubt die Änderung der Übersetzungs-Dateien nicht direkt. FTP-Anmeldeinformationen werden bei Bedarf angefordert."
    13421342
    1343 #: codestyling-localization.php:2110
     1343#: codestyling-localization.php:2109
    13441344#@ codestyling-localization
    13451345msgid "PHP Memory Limit Problems"
    13461346msgstr "PHP Memory Limit Probleme"
    13471347
    1348 #: codestyling-localization.php:2124
     1348#: codestyling-localization.php:2123
    13491349#@ codestyling-localization
    13501350msgid "Compatibility - Hints and Errors"
    13511351msgstr "Kompatibilität - Hinweise und Fehler"
    13521352
    1353 #: codestyling-localization.php:2152
     1353#: codestyling-localization.php:2151
    13541354#@ codestyling-localization
    13551355msgid "What is a textdomain?"
    13561356msgstr "Was ist ein Textdomain?"
    13571357
    1358 #: codestyling-localization.php:2182
     1358#: codestyling-localization.php:2181
    13591359#@ codestyling-localization
    13601360msgid "File Permission and Access Rights"
    13611361msgstr "Dateiberechtigungen und Zugriffsrechte"
    13621362
    1363 #: codestyling-localization.php:2200
     1363#: codestyling-localization.php:2199
    13641364#@ codestyling-localization
    13651365msgid "Extended Translation File Format"
    13661366msgstr "Erweitertes Übersetzungsdateiformat"
    13671367
    1368 #: codestyling-localization.php:2203
     1368#: codestyling-localization.php:2202
    13691369#@ codestyling-localization
    13701370msgid "You may get an error message if you try to open a translation file for editing. The reason behind is the necessary separation of contained textdomains within your components code to be translated."
    13711371msgstr "Sie erhalten möglicherweise eine Fehlermeldung, wenn Sie versuchen, eine Übersetzungsdatei zur Bearbeitung zu öffnen. Der Grund ist die notwendige Trennung der enthaltenen Textdomains innerhalb des Komponenten-Codes um übersetzt werden zu können."
    13721372
    1373 #: codestyling-localization.php:2206
     1373#: codestyling-localization.php:2205
    13741374#@ codestyling-localization
    13751375msgid "Many authors do not care, if they mix up textdomains during code writing. Furthermore the textdomain <b><em>default</em></b> will be used by WordPress itself only. Any text assigned to the textdomain <b><em>default</em></b> will become untranslated at output even if you would translate it. Thats why this plugin separates this textdomains to show up possible mistakes."
    13761376msgstr "Viele Autoren interessieren sich nicht dafür, dass sie während des Schreibens von Code Textdomains mischen. Darüber hinaus wird die Textdomain <b><em>default</em></b> nur von WordPress selbst verwendet. Jeder beliebige Text, welcher der Textdomain <b><em>default</em></b> zugewiesen wurde, bleibt in der Anzeige unübersetzt, auch wenn Sie es übersetzen würden (Ausnahme WordPress selbst). Deshalb trennt dieses Plugin die Textdomains, um mögliche Fehler aufzeigen zu können."
    13771377
    1378 #: codestyling-localization.php:2209
     1378#: codestyling-localization.php:2208
    13791379#@ codestyling-localization
    13801380msgid "How to edit files with this error message ?"
    13811381msgstr "Wie bearbeitet man Dateien mit dieser Fehlermeldung?"
    13821382
    1383 #: codestyling-localization.php:2212
     1383#: codestyling-localization.php:2211
    13841384#@ codestyling-localization
    13851385msgid "Just go back the the overview page, search your affected plugin/theme and re-scan the translation content. Afterwards it will be possible to open the translation file for editing."
    13861386msgstr "Gehen Sie einfach zurück die Übersichtsseite, suchen Sie Ihre betroffenes Plugin/Theme und lesen sie die Inhalte neu ein. Danach ist es möglich, die Übersetzungsdatei zur Bearbeitung zu öffnen."
    13871387
    1388 #: codestyling-localization.php:2725
     1388#: codestyling-localization.php:2748
    13891389#@ codestyling-localization
    13901390msgid "Textdomains"
    13911391msgstr "Textdomains"
    13921392
    1393 #: codestyling-localization.php:2731
     1393#: codestyling-localization.php:2754
    13941394#@ codestyling-localization
    13951395msgid "Translation Format"
    13961396msgstr "Übersetzung-Format"
    13971397
    1398 #: codestyling-localization.php:3457
    1399 #: codestyling-localization.php:3552
    1400 #: codestyling-localization.php:3660
    1401 #: codestyling-localization.php:3764
    1402 #: codestyling-localization.php:3903
    1403 #: codestyling-localization.php:4139
    1404 #: codestyling-localization.php:4554
    1405 #: codestyling-localization.php:4651
    1406 #: codestyling-localization.php:4822
    1407 #: codestyling-localization.php:4883
    1408 #: codestyling-localization.php:4940
     1398#: codestyling-localization.php:3480
     1399#: codestyling-localization.php:3575
     1400#: codestyling-localization.php:3683
     1401#: codestyling-localization.php:3787
     1402#: codestyling-localization.php:3926
     1403#: codestyling-localization.php:4162
     1404#: codestyling-localization.php:4577
     1405#: codestyling-localization.php:4674
     1406#: codestyling-localization.php:4845
     1407#: codestyling-localization.php:4906
     1408#: codestyling-localization.php:4963
    14091409#@ codestyling-localization
    14101410msgid "User Credentials required"
    14111411msgstr "Benutzeranmeldeinformationen erforderlich"
    14121412
    1413 #: codestyling-localization.php:3459
    1414 #: codestyling-localization.php:3554
    1415 #: codestyling-localization.php:3662
    1416 #: codestyling-localization.php:3766
    1417 #: codestyling-localization.php:3905
    1418 #: codestyling-localization.php:4141
    1419 #: codestyling-localization.php:4556
    1420 #: codestyling-localization.php:4653
    1421 #: codestyling-localization.php:4824
    1422 #: codestyling-localization.php:4885
    1423 #: codestyling-localization.php:4942
     1413#: codestyling-localization.php:3482
     1414#: codestyling-localization.php:3577
     1415#: codestyling-localization.php:3685
     1416#: codestyling-localization.php:3789
     1417#: codestyling-localization.php:3928
     1418#: codestyling-localization.php:4164
     1419#: codestyling-localization.php:4579
     1420#: codestyling-localization.php:4676
     1421#: codestyling-localization.php:4847
     1422#: codestyling-localization.php:4908
     1423#: codestyling-localization.php:4965
    14241424#@ codestyling-localization
    14251425msgid "Ok"
    14261426msgstr "Ok"
    14271427
    1428 #: codestyling-localization.php:3463
    1429 #: codestyling-localization.php:3558
    1430 #: codestyling-localization.php:3666
    1431 #: codestyling-localization.php:3770
    1432 #: codestyling-localization.php:3909
    1433 #: codestyling-localization.php:4145
    1434 #: codestyling-localization.php:4560
    1435 #: codestyling-localization.php:4657
    1436 #: codestyling-localization.php:4828
    1437 #: codestyling-localization.php:4889
    1438 #: codestyling-localization.php:4946
     1428#: codestyling-localization.php:3486
     1429#: codestyling-localization.php:3581
     1430#: codestyling-localization.php:3689
     1431#: codestyling-localization.php:3793
     1432#: codestyling-localization.php:3932
     1433#: codestyling-localization.php:4168
     1434#: codestyling-localization.php:4583
     1435#: codestyling-localization.php:4680
     1436#: codestyling-localization.php:4851
     1437#: codestyling-localization.php:4912
     1438#: codestyling-localization.php:4969
    14391439#@ codestyling-localization
    14401440msgid "Cancel"
     
    14421442
    14431443#: codestyling-localization.php:1775
    1444 #: codestyling-localization.php:2542
    1445 #: codestyling-localization.php:2860
    1446 #: codestyling-localization.php:2868
    1447 #: codestyling-localization.php:3020
    1448 #: codestyling-localization.php:3105
    1449 #: codestyling-localization.php:3263
    1450 #: codestyling-localization.php:3271
    1451 #: codestyling-localization.php:3272
     1444#: codestyling-localization.php:2565
     1445#: codestyling-localization.php:2883
     1446#: codestyling-localization.php:2891
     1447#: codestyling-localization.php:3043
     1448#: codestyling-localization.php:3128
     1449#: codestyling-localization.php:3286
     1450#: codestyling-localization.php:3294
     1451#: codestyling-localization.php:3295
    14521452#@ codestyling-localization
    14531453msgid "What does that mean?"
    14541454msgstr "Was bedeutet das?"
    14551455
    1456 #: codestyling-localization.php:2092
     1456#: codestyling-localization.php:2091
    14571457#@ codestyling-localization
    14581458msgid "... translate your WordPress, Plugins and Themes"
    14591459msgstr "... übersetzen Sie WordPress, Plugins und Themes"
    14601460
    1461 #: codestyling-localization.php:2116
     1461#: codestyling-localization.php:2115
    14621462#@ codestyling-localization
    14631463msgid "It could be, that your provider confirms, that you have enough PHP memory for your installation but it is not. You can detect your real available memory limit using the plugin <a href=\"http://wordpress.org/extend/plugins/wp-system-health/\" target=\"_blank\">WP System Health</a>. It has a build in feature (called <em>Test Suite</em>) to evaluate correctly the memory limit the server will permit."
    14641464msgstr "Es könnte sein, dass Ihr Provider bestätigt, dass Sie genügend PHP Speicher für die Installation haben, aber möglicherweise ist es nicht so. Sie können Ihre real verfügbare Arbeitsspeicherbegrenzung mit dem Plugin <a href=\\\"http://wordpress.org/extend/plugins/wp-system-health/\\\" target=\\\"_blank\\\">WP System Health</a> erkennen. Es hat eine eingebaute Funktion (namens <em>Test Suite</em>), die ihre Speichergrenze ermitteln kann, die der Server zulässt."
    14651465
    1466 #: codestyling-localization.php:2191
     1466#: codestyling-localization.php:2190
    14671467#@ codestyling-localization
    14681468msgid "You can define the necessary constants at your <em>wp-config.php</em> file as described at the <a href=\"http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants\" target=\"_blank\">WordPress Codex Page - Upgrade Constants</a> to get it working at your installation without recurrently occuring credential requests. If your constants are properly defined, this plugin will work smoothly and the WordPress Automatic Updates will work without any further question about FTP User Credentials too."
    14691469msgstr "Sie können die erforderlichen Konstanten in Ihrer <em>wp-config.php</em> Datei definieren, wie beschrieben auf der <a href=\\\"http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants\\\" target=\\\"_blank\\\">WordPress Codex Seite - Upgrade Constants</a>, um wiederkehrende Nachfragen zu Ihren  Anmeldeinformationen zu vermeiden. Wenn Ihre Konstanten korrekt definiert sind, funktioniert dieses Plugin  reibungslos und die automatischen Updates von WordPress funktionieren ohne jede weitere Frage zu FTP-Benutzer-Anmeldeinformationen ebenfalls."
    14701470
    1471 #: codestyling-localization.php:2247
     1471#: codestyling-localization.php:2246
    14721472#@ codestyling-localization
    14731473msgid "Scripting Guard - hardening against plugin/theme based malformed script injections"
    14741474msgstr "Scripting Guard - Härten gegen Plugin/Theme basierte, fehlerhafte Skript Einbindungen"
    14751475
    1476 #: codestyling-localization.php:2250
     1476#: codestyling-localization.php:2249
    14771477#@ codestyling-localization
    14781478msgid "Some authors of plugins and themes does not care about how they attach javascripts into WordPress backend pages. They pollute pages from other plugins with their own script code and damage the proper function of those plugins."
    14791479msgstr "Einige Autoren von Plugins und Themes kümmert sich nicht darum, wie sie Javascripts in WordPress Backend Seiten korrekt einbinden. Sie verschmutzen Seiten aus anderen Plugins mit eigenem Skriptcode und beschädigen damit die einwandfreie Funktion dieser Plugins."
    14801480
    1481 #: codestyling-localization.php:2253
     1481#: codestyling-localization.php:2252
    14821482#@ codestyling-localization
    14831483msgid "The plugin <em>Codestyling Localization</em> introduced a high sophisticated inject detection and will show error messages, if themes or plugins try to inject their own scripts into this plugin pages. Furthermore all embedded scripts will be safe guarded and traced in case they will raise runtime exceptions. Doing so this plugin protects itself of malfunction caused by 3rd party plugin/theme authors. This will ensure the correct behavoir for this page, but expect at other backend pages malfunctioning code, because this is a global issue."
    14841484msgstr "Das Plugin <em>Codestyling Lokalisierung</em> führt eine qualitativ anspruchsvolle Injection-Erkennung ein und zeigt Fehlermeldungen, wenn Themen oder Plugins versuchen, ihre eigenen Skripts in diese Plugin-Seiten zu injizieren. Außerdem werden alle eingebetteten Skripts abgesichert, bewacht und verfolgt, für den Fall, dass sie Javascript Runtime-Ausnahmen auslösen. Damit schützt sich dieses Plugin gegen Fehlfunktionen verursacht durch 3rd party Plugin/Theme Autoren. Dies sichert das richtige Verhalten für diese Seite aber andere Backend Seiten  sind möglicherweise weiter gestört, denn dies ist ein globales Problem."
    14851485
    1486 #: codestyling-localization.php:2262
     1486#: codestyling-localization.php:2261
    14871487#@ codestyling-localization
    14881488msgid "What can I do, if I get this protection message alert?"
    14891489msgstr "Was kann ich tun, wenn ich diese Schutz-Warnmeldung erhalte?"
    14901490
    1491 #: codestyling-localization.php:2265
     1491#: codestyling-localization.php:2264
    14921492#@ codestyling-localization
    14931493msgid "If your Installation has this kind of problems, please contact the author of theme or plugin(s) which inject their script code either accidentally or intentionally (click message details). He/she must repair the affected theme/plugin to play nicely with other plugins at WordPress backend and/or restrict its scripts to the 3rd party theme/plugin pages only."
    14941494msgstr "Wenn Ihre Installation diese Art von Problemen hat, kontaktieren Sie bitte den Autor des Themes oder Plugins, welches seinen Skriptcode entweder versehentlich oder absichtlich injiziert (Details anklicken). Er/sie muss das betroffene Theme/Plugin reparieren, um korrekt mit anderen Plugins im WordPress-Backend zu arbeiten oder die Skripte auf seine 3rd party Theme/Plugin Seiten beschränken."
    14951495
    1496 #: codestyling-localization.php:2542
    1497 #: codestyling-localization.php:2751
     1496#: codestyling-localization.php:2565
     1497#: codestyling-localization.php:2774
    14981498#@ codestyling-localization
    14991499msgid "Scripting Guard"
    15001500msgstr ""
    15011501
    1502 #: codestyling-localization.php:2542
     1502#: codestyling-localization.php:2565
    15031503#@ codestyling-localization
    15041504msgid "details"
    15051505msgstr "Details"
    15061506
    1507 #: codestyling-localization.php:2563
     1507#: codestyling-localization.php:2586
    15081508#@ codestyling-localization
    15091509msgid "Malfunction at current Theme detected!"
    15101510msgstr "Fehlfunktionen im aktuellen Theme erkannt!"
    15111511
    1512 #: codestyling-localization.php:2564
    1513 #: codestyling-localization.php:2592
     1512#: codestyling-localization.php:2587
     1513#: codestyling-localization.php:2615
    15141514#@ codestyling-localization
    15151515msgid "Name:"
    15161516msgstr "Name:"
    15171517
    1518 #: codestyling-localization.php:2565
    1519 #: codestyling-localization.php:2593
     1518#: codestyling-localization.php:2588
     1519#: codestyling-localization.php:2616
    15201520#@ codestyling-localization
    15211521msgid "Author:"
    15221522msgstr "Autor:"
    15231523
    1524 #: codestyling-localization.php:2566
    1525 #: codestyling-localization.php:2594
     1524#: codestyling-localization.php:2589
     1525#: codestyling-localization.php:2617
    15261526#@ codestyling-localization
    15271527msgid "Below listed scripts has been automatically stripped because of injection:"
    15281528msgstr "Die unten aufgeführten Skripts wurden automatisch aufgrund der Injektion entfernt:"
    15291529
    1530 #: codestyling-localization.php:2591
     1530#: codestyling-localization.php:2614
    15311531#@ codestyling-localization
    15321532msgid "Malfunction at 3rd party Plugin detected!"
    15331533msgstr "Fehlfunktionen in 3rd Party Plugin erkannt!"
    15341534
    1535 #: codestyling-localization.php:2607
     1535#: codestyling-localization.php:2630
    15361536#@ codestyling-localization
    15371537msgid "Malfunction at 3rd party inlined Javascript(s) detected!"
    15381538msgstr "Fehlfunktionen in 3rd Party, Inline Javascript(s) erkannt!"
    15391539
    1540 #: codestyling-localization.php:2549
    1541 #: codestyling-localization.php:2608
    1542 #: codestyling-localization.php:2623
     1540#: codestyling-localization.php:2572
     1541#: codestyling-localization.php:2631
     1542#: codestyling-localization.php:2646
    15431543#@ codestyling-localization
    15441544msgid "Reason:"
    15451545msgstr "Grund:"
    15461546
    1547 #: codestyling-localization.php:2608
     1547#: codestyling-localization.php:2631
    15481548#@ codestyling-localization
    15491549msgid "javascript runtime exception"
    15501550msgstr "JavaScript-Runtime-Ausnahme"
    15511551
    1552 #: codestyling-localization.php:2610
     1552#: codestyling-localization.php:2633
    15531553#@ codestyling-localization
    15541554msgid "Below listed exception(s) has been caught and traced:"
    15551555msgstr "Die unten aufgeführten Ausnahme(n) wurden gefangen und verfolgt:"
    15561556
    1557 #: codestyling-localization.php:2542
     1557#: codestyling-localization.php:2565
    15581558#, php-format
    15591559#@ codestyling-localization
     
    15611561msgstr "Das Plugin <em>Codestyling Lokalisierung</em> war gezwungen, seinen eigenen Seiten Rendering-Prozess gegen <b>%s</b> %s zu schützen!"
    15621562
    1563 #: codestyling-localization.php:2542
     1563#: codestyling-localization.php:2565
    15641564#@ codestyling-localization
    15651565msgid "incident"
     
    15681568msgstr[1] "Vorfälle"
    15691569
    1570 #: codestyling-localization.php:2548
     1570#: codestyling-localization.php:2571
    15711571#@ codestyling-localization
    15721572msgid "Malfunction at admin script core detected !"
    15731573msgstr "Fehlfunktionen im Admin Skript Kern erkannt!"
    15741574
    1575 #: codestyling-localization.php:2549
     1575#: codestyling-localization.php:2572
    15761576#@ codestyling-localization
    15771577msgid "misplaced core file(s) enqueued"
    15781578msgstr "deplazierte Core Datei(en) in die Queue eingereiht"
    15791579
    1580 #: codestyling-localization.php:2550
    1581 #: codestyling-localization.php:2609
    1582 #: codestyling-localization.php:2624
     1580#: codestyling-localization.php:2573
     1581#: codestyling-localization.php:2632
     1582#: codestyling-localization.php:2647
    15831583#@ codestyling-localization
    15841584msgid "Polluter:"
    15851585msgstr "Verursacher:"
    15861586
    1587 #: codestyling-localization.php:2550
    1588 #: codestyling-localization.php:2624
     1587#: codestyling-localization.php:2573
     1588#: codestyling-localization.php:2647
    15891589#@ codestyling-localization
    15901590msgid "probably by Theme or Plugin"
    15911591msgstr "vermutlich durch Theme oder Plugin"
    15921592
    1593 #: codestyling-localization.php:2551
     1593#: codestyling-localization.php:2574
    15941594#@ codestyling-localization
    15951595msgid "Below listed scripts has been dequeued because of injection:"
    15961596msgstr "Die unten aufgeführten Skripts wurden aufgrund der Injektion aus der Queue entfernt:"
    15971597
    1598 #: codestyling-localization.php:2220
     1598#: codestyling-localization.php:2219
    15991599#@ codestyling-localization
    16001600msgid "Working with Child Theme Translations"
    16011601msgstr "Arbeiten mit Child Theme Übersetzungen"
    16021602
    1603 #: codestyling-localization.php:2223
     1603#: codestyling-localization.php:2222
    16041604#@ codestyling-localization
    16051605msgid "Child Themes are using in normal cases the translation files of the main theme. In some cases it could be necessary to have a separate language file handling at the Child Theme itself."
    16061606msgstr "Child Themes verweden im Normalfall die Übersetzungsdateien des Haupt Themes. In einigen Fällen könnte es notwendig sein, eine eigene Sprachdatei im Child Theme selbst zu haben."
    16071607
    1608 #: codestyling-localization.php:2226
     1608#: codestyling-localization.php:2225
    16091609#@ codestyling-localization
    16101610msgid "How to make your Child Theme ready to use its own translation files?"
    16111611msgstr "Wie können Sie Ihr Child Theme für eigene Übersetzungsdateien vorbereiten?"
    16121612
    1613 #: codestyling-localization.php:2229
     1613#: codestyling-localization.php:2228
    16141614#@ codestyling-localization
    16151615msgid "First of all you have to modify your Child Themes <em>functions.php</em> file and call the appropriated load method as shown below. Assume the textdomain is defined at the Main Theme as <b>supertheme</b> the load function should look like:"
    16161616msgstr "Zunächst einmal müssen Sie Ihre Child Theme <em>functions.php</em> Datei ändern und die geeignete Load-Methode aufrufen, wie unten gezeigt. Angenommen die Textdomain im Main Theme ist als <b>supertheme</b> definiert, sollte die Load-Funktion zum Beispiel so aussehen:"
    16171617
    1618 #: codestyling-localization.php:2233
     1618#: codestyling-localization.php:2232
    16191619#@ codestyling-localization
    16201620msgid "The path has been defined as subdirectory within the Child Themes directory but you can skip the directory parameter and place the language files at the Child Themes main folder."
    16211621msgstr "Der Pfad wurde als Unterverzeichnis innerhalb des Child Theme Verzeichnisses definiert, aber Sie können den Directory-Parameter auch weglassen und die Sprachdateien im Hauptordner des Child Themes plazieren."
    16221622
    1623 #: codestyling-localization.php:2236
     1623#: codestyling-localization.php:2235
    16241624#@ codestyling-localization
    16251625msgid "(Re)scan process and Synchronization at Child Themes"
    16261626msgstr "(Re)scanprozess und die Synchronisierung des Child Themes"
    16271627
    1628 #: codestyling-localization.php:2239
     1628#: codestyling-localization.php:2238
    16291629#@ codestyling-localization
    16301630msgid "Scanning a Child Theme always includes the files from Main Theme too. So you always get the mixed translation from Main and Child Theme. Doing a Synchronization with the Main Theme will preserve the texts from Child Theme and will attach new texts from Main Theme only."
    16311631msgstr "Beim Scannen eines Child Themes werden immer auch die Dateien aus dem Main Theme mit berücksichtigt. So erhalten Sie immer die gemischte Übersetzung von Main und Child Theme. Die Synchronisation mit dem Main Theme wird die Texte des Child Themes erhalten und nur die neuen Texte aus dem Main Theme hinzufügen."
    16321632
    1633 #: codestyling-localization.php:2256
     1633#: codestyling-localization.php:2255
    16341634#@ codestyling-localization
    16351635msgid "CDN - Javascripts loaded using Content Delivery Networks instead of WordPress provide files"
    16361636msgstr "CDN - Javascripts aus Content Delivery Networks laden lassen statt der von WordPress bereitgestellten Dateien"
    16371637
    1638 #: codestyling-localization.php:2259
     1638#: codestyling-localization.php:2258
    16391639#@ codestyling-localization
    16401640msgid "Some Blog owner decide to replace the location where the Javascripts will be loaded from by using a Plugin. In normal cases this should work proper but sometimes WordPress includes versions of Scripts not yet hosted at CDN provider. The Guard will threat CDN usage as warning and checks if all files can be load from CDN. If not possible to load at least one file, additionally an error message will be issued to show, that this page will not work as expected."
    16411641msgstr "Einige Blog-Eigentümer entscheiden sich dafür, die Javascripts per Plugin von einem anderen Ort aus dem Netz laden zu lassen. Im Normalfall sollte dies richtig funktionieren. Manchmal enthalten neuere WordPress Versionen Skripte, die noch nicht beim CDN-Anbieter gehostet sind. Der Guard wird CDN Verwendung als Warnung ausgeben und prüfen, ob alle betroffenen Dateien vom CDN geladen werden können. Wenn dies für mindestens eine Datei nicht möglich ist, wird zusätzlich eine Fehlermeldung ausgegeben, um zu zeigen, dass diese Seite nicht wie erwartet funktionieren wird."
    16421642
    1643 #: codestyling-localization.php:2268
     1643#: codestyling-localization.php:2267
    16441644#@ codestyling-localization
    16451645msgid "Theme & Plugin Authors - exclusion from Guard for developers"
    16461646msgstr "Theme & Plugin-Autoren - Ausschluss vom Guard für Entwickler"
    16471647
    1648 #: codestyling-localization.php:2271
     1648#: codestyling-localization.php:2270
    16491649#@ codestyling-localization
    16501650msgid "You may have written a Plugin or Theme that requires scripts at all pages but play nicely at backend pages. In those cases please send me an email with your repository link. I will check this Plugin or Theme and exclude it from trace, if the test will show, that it is working well."
    16511651msgstr "Sie könnten ein Plugin oder Theme geschrieben haben, welches Skripts auf allen Backend Seiten benötigt und korrekt geschrieben ist. In diesen Fällen senden Sie mir bitte eine e-Mail mit Ihrem Repository-Link. Ich werde dieses Plugin oder Theme überprüfen und es von der Ablaufverfolgung ausschliessen, wenn ein Test zeigt, dass es gut funktioniert."
    16521652
    1653 #: codestyling-localization.php:2650
     1653#: codestyling-localization.php:2673
    16541654#@ codestyling-localization
    16551655msgid "CDN based script loading redirection detected!"
    16561656msgstr "CDN-basierte Skript Umleitung erkannt!"
    16571657
    1658 #: codestyling-localization.php:2651
     1658#: codestyling-localization.php:2674
    16591659#@ codestyling-localization
    16601660msgid "Warning:"
    16611661msgstr "Warnung:"
    16621662
    1663 #: codestyling-localization.php:2651
     1663#: codestyling-localization.php:2674
    16641664#@ codestyling-localization
    16651665msgid "may break the dependency script loading feature within WordPress core files."
    16661666msgstr "kann die Abhängigkeiten der Skript Lade-Funktion in WordPress Core-Dateien brechen."
    16671667
    1668 #: codestyling-localization.php:2652
     1668#: codestyling-localization.php:2675
    16691669#@ codestyling-localization
    16701670msgid "Below listed redirects have been traced and verified but not revoked:"
    16711671msgstr "Die unten aufgeführten Umleitungen wurden verfolgt und überprüft aber nicht aufgehoben:"
    16721672
    1673 #: codestyling-localization.php:2640
    1674 #: codestyling-localization.php:2667
     1673#: codestyling-localization.php:2663
     1674#: codestyling-localization.php:2690
    16751675#, php-format
    16761676#@ codestyling-localization
     
    16801680msgstr[1] "%d Dateien"
    16811681
    1682 #: codestyling-localization.php:2641
    1683 #: codestyling-localization.php:2668
     1682#: codestyling-localization.php:2664
     1683#: codestyling-localization.php:2691
    16841684#, php-format
    16851685#@ codestyling-localization
     
    16871687msgstr "Diese Seite funktioniert nicht wie erwartet, weil %s nicht vom CDN abgerufen werden konnten. Überprüfen und aktualisieren Sie das Plugin, welches Ihre CDN-Umleitung bereitstellt."
    16881688
    1689 #: codestyling-localization.php:2745
     1689#: codestyling-localization.php:2768
    16901690#@ codestyling-localization
    16911691msgid "Child Themes"
    16921692msgstr ""
    16931693
    1694 #: codestyling-localization.php:3104
     1694#: codestyling-localization.php:3127
    16951695#@ codestyling-localization
    16961696msgid "Sync Files with Main Theme"
    16971697msgstr "Synchronisieren mit Main Theme"
    16981698
    1699 #: codestyling-localization.php:2622
     1699#: codestyling-localization.php:2645
    17001700#@ codestyling-localization
    17011701msgid "Malfunction at dubious external scripts detected !"
    17021702msgstr "Fehlfunktionen bei zweifelhaften externen Skripts erkannt!"
    17031703
    1704 #: codestyling-localization.php:2623
     1704#: codestyling-localization.php:2646
    17051705#@ codestyling-localization
    17061706msgid "unknown external script has been enqueued or hardly attached."
    17071707msgstr "Unbekanntes externes Skript wurde gequeued oder direkt eingefügt."
    17081708
    1709 #: codestyling-localization.php:2625
     1709#: codestyling-localization.php:2648
    17101710#@ codestyling-localization
    17111711msgid "Below listed external scripts have been traced, verified and automatically stripped because of injection:"
     
    17181718msgstr ""
    17191719
     1720#: codestyling-localization.php:2273
     1721#@ codestyling-localization
     1722msgid "Plugins currently supported by Scripting Guard:"
     1723msgstr "Aktuell durch Scripting Guard unterstützte Plugins:"
     1724
  • codestyling-localization/trunk/languages/codestyling-localization-pt_BR.po

    r555692 r629816  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: CodeStyling Localization v1.99.21-beta\n"
     3"Project-Id-Version: CodeStyling Localization v1.99.24\n"
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2012-06-02 11:48:00+0000\n"
    7 "Last-Translator: Gilba <[email protected]>\n"
     6"PO-Revision-Date: 2012-06-29 01:00:51+0000\n"
     7"Last-Translator: Diana K. Cury <[email protected]>\n"
    88"Language-Team: Giba\n"
    99"MIME-Version: 1.0\n"
     
    2323#@ codestyling-localization
    2424msgid "required"
    25 msgstr "necessário"
     25msgstr "obrigatório"
    2626
    2727#: codestyling-localization.php:143
     
    3636
    3737#: codestyling-localization.php:370
    38 #: codestyling-localization.php:2336
     38#: codestyling-localization.php:2944
    3939#@ codestyling-localization
    4040msgid "WordPress"
     
    4444#: codestyling-localization.php:426
    4545#: codestyling-localization.php:615
    46 #: codestyling-localization.php:713
    47 #: codestyling-localization.php:885
    48 #: codestyling-localization.php:926
    49 #: codestyling-localization.php:2389
     46#: codestyling-localization.php:715
     47#: codestyling-localization.php:888
     48#: codestyling-localization.php:929
     49#: codestyling-localization.php:2997
    5050#@ codestyling-localization
    5151msgid "activated"
     
    5858#: codestyling-localization.php:571
    5959#: codestyling-localization.php:671
    60 #: codestyling-localization.php:778
    61 #: codestyling-localization.php:906
    62 #: codestyling-localization.php:950
    63 #: codestyling-localization.php:1518
    64 #: codestyling-localization.php:1654
    65 #: codestyling-localization.php:1693
    66 #: codestyling-localization.php:1934
    67 #: includes/class-translationfile.php:807
     60#: codestyling-localization.php:781
     61#: codestyling-localization.php:909
     62#: codestyling-localization.php:953
     63#: codestyling-localization.php:1548
     64#: codestyling-localization.php:1683
     65#: codestyling-localization.php:1711
     66#: codestyling-localization.php:1955
     67#: includes/class-translationfile.php:929
    6868#@ codestyling-localization
    6969msgid "m/d/Y H:i:s"
    70 msgstr "d / m / YH: i: s"
     70msgstr "d / m / Y H: i: s"
    7171
    7272#: codestyling-localization.php:417
     
    7676
    7777#: codestyling-localization.php:426
    78 #: codestyling-localization.php:713
    79 #: codestyling-localization.php:885
    80 #: codestyling-localization.php:926
     78#: codestyling-localization.php:715
     79#: codestyling-localization.php:888
     80#: codestyling-localization.php:929
    8181#@ codestyling-localization
    8282msgid "deactivated"
    8383msgstr "desativada"
    8484
    85 #: codestyling-localization.php:708
     85#: codestyling-localization.php:710
    8686#@ codestyling-localization
    8787msgid "Theme"
    8888msgstr "Tema"
    8989
    90 #: codestyling-localization.php:1135
    91 #: codestyling-localization.php:1270
     90#: codestyling-localization.php:1140
     91#: codestyling-localization.php:1278
    9292#@ codestyling-localization
    9393msgid "Project-Id-Version"
    94 msgstr "Project-Id-Version"
    95 
    96 #: codestyling-localization.php:1139
     94msgstr "Projeto, ID e versão"
     95
     96#: codestyling-localization.php:1144
    9797#@ codestyling-localization
    9898msgid "Creation-Date"
    99 msgstr "Data da Criação"
    100 
    101 #: codestyling-localization.php:1143
     99msgstr "Data de criação"
     100
     101#: codestyling-localization.php:1148
    102102#@ codestyling-localization
    103103msgid "Last-Translator"
    104 msgstr "Último Tradutor"
    105 
    106 #: codestyling-localization.php:1182
     104msgstr "Último a traduzir"
     105
     106#: codestyling-localization.php:1187
    107107#@ codestyling-localization
    108108msgid "create po-file"
    109 msgstr "criar o arquivo-po"
    110 
    111 #: codestyling-localization.php:1193
     109msgstr "Criar arquivo .po"
     110
     111#: codestyling-localization.php:1198
    112112#, php-format
    113113#@ codestyling-localization
    114114msgid "You are about to delete <strong>%s</strong> from \"<strong>%s</strong>\" permanently.<br/>Are you sure you wish to delete these files?"
    115 msgstr "Você está prestes a excluir <strong>%s</strong> de \"<strong>%s</strong>\" permanentemente. <br/>Tem certeza de que deseja excluir esses arquivos?"
    116 
    117 #: codestyling-localization.php:1194
     115msgstr "Você está prestes a excluir os arquivos de idioma <strong>%s</strong> de \"<strong>%s</strong>\". Tem certeza que quer fazer isso?"
     116
     117#: codestyling-localization.php:1199
    118118#@ codestyling-localization
    119119msgid "delete files"
    120 msgstr "apagar arquivos"
    121 
    122 #: codestyling-localization.php:1274
     120msgstr "Excluir arquivos"
     121
     122#: codestyling-localization.php:1282
    123123#@ codestyling-localization
    124124msgid "Language Target"
    125 msgstr "Idioma de Destino"
    126 
    127 #: codestyling-localization.php:1279
     125msgstr "Idioma"
     126
     127#: codestyling-localization.php:1287
    128128#@ codestyling-localization
    129129msgid "Affected Total Files"
    130 msgstr "Afeta Todos os Arquivos"
    131 
    132 #: codestyling-localization.php:1284
     130msgstr "Arquivos alcançados"
     131
     132#: codestyling-localization.php:1292
    133133#@ codestyling-localization
    134134msgid "Scanning Progress"
    135 msgstr "Escaneando"
    136 
    137 #: codestyling-localization.php:1292
     135msgstr "Progresso da análise"
     136
     137#: codestyling-localization.php:1300
    138138#@ codestyling-localization
    139139msgid "scan now"
    140 msgstr "Escanear agora"
    141 
    142 #: codestyling-localization.php:1292
     140msgstr "Analisar"
     141
     142#: codestyling-localization.php:1300
    143143#@ codestyling-localization
    144144msgid "Please standby, files presently being scanned ..."
    145 msgstr "Por favor, espere, arquivos atualmente sendo examinado ..."
    146 
    147 #: codestyling-localization.php:1501
     145msgstr "Aguarde. os arquivos estão sendo analisado..."
     146
     147#: codestyling-localization.php:1531
     148#: codestyling-localization.php:2009
    148149#, php-format
    149150#@ codestyling-localization
     
    151152msgstr "Você não tem permissão para criar o arquivo '%s'."
    152153
    153 #: codestyling-localization.php:1509
    154 #: codestyling-localization.php:1547
    155 #: codestyling-localization.php:2496
     154#: codestyling-localization.php:1539
     155#: codestyling-localization.php:1576
     156#: codestyling-localization.php:3108
    156157#, php-format
    157158#@ codestyling-localization
     
    161162msgstr[1] "<strong>%d</strong> Idiomas"
    162163
    163 #: codestyling-localization.php:1534
    164 #: codestyling-localization.php:1535
     164#: includes/class-filesystem-translationfile.php:60
     165#: includes/class-filesystem-translationfile.php:63
     166#: includes/class-filesystem-translationfile.php:115
     167#: includes/class-filesystem-translationfile.php:118
    165168#, php-format
    166169#@ codestyling-localization
     
    168171msgstr "Você não tem permissão para apagar o arquivo '%s'."
    169172
    170 #: codestyling-localization.php:1665
    171 #: codestyling-localization.php:1872
    172 #: codestyling-localization.php:1887
     173#: codestyling-localization.php:1694
     174#: codestyling-localization.php:1892
     175#: codestyling-localization.php:1908
    173176#, php-format
    174177#@ codestyling-localization
     
    176179msgstr "Você não tem permissão para ler o arquivo '%s'."
    177180
    178 #: codestyling-localization.php:1682
     181#: includes/class-filesystem-translationfile.php:226
     182#: includes/class-filesystem-translationfile.php:239
    179183#@ codestyling-localization
    180184msgid "Server Restrictions: Changing file rights is not permitted."
    181185msgstr "Restrições do Servidor: Alterar os direitos do arquivo não é permitido."
    182186
    183 #: codestyling-localization.php:1685
     187#: includes/class-filesystem-translationfile.php:229
     188#: includes/class-filesystem-translationfile.php:242
    184189#, php-format
    185190#@ codestyling-localization
     
    187192msgstr "Você não tem permissão para modificar os direitos de arquivo para um arquivo não existente '%s'."
    188193
    189 #: codestyling-localization.php:1782
     194#: codestyling-localization.php:1801
    190195#@ codestyling-localization
    191196msgid "Sorry, Google Translation is not available."
    192197msgstr "Desculpe, Tradução do Google não está disponível."
    193198
    194 #: codestyling-localization.php:2174
     199#: codestyling-localization.php:2782
    195200#@ codestyling-localization
    196201msgid "WordPress Localization"
    197 msgstr "Localização do WordPress"
    198 
    199 #: codestyling-localization.php:2174
     202msgstr "Tradução do WordPress"
     203
     204#: codestyling-localization.php:2782
    200205#@ codestyling-localization
    201206msgid "Localization"
    202 msgstr "Localização"
    203 
    204 #: codestyling-localization.php:2249
     207msgstr "Tradução"
     208
     209#: codestyling-localization.php:2857
    205210#@ codestyling-localization
    206211msgid "Manage Language Files"
    207212msgstr "Gerenciar Arquivos de Idioma"
    208213
    209 #: codestyling-localization.php:2333
     214#: codestyling-localization.php:2941
    210215#@ codestyling-localization
    211216msgid "All Translations"
    212217msgstr "Todas as traduções"
    213218
    214 #: codestyling-localization.php:2344
     219#: codestyling-localization.php:2952
    215220#@ codestyling-localization
    216221msgid "Plugins"
    217222msgstr "Plugins"
    218223
    219 #: codestyling-localization.php:2347
     224#: codestyling-localization.php:2955
    220225#@ codestyling-localization
    221226msgid "Themes"
    222227msgstr "Temas"
    223228
    224 #: codestyling-localization.php:2378
     229#: codestyling-localization.php:2986
    225230#@ codestyling-localization
    226231msgid "Type"
    227232msgstr "Tipo"
    228233
    229 #: codestyling-localization.php:2379
     234#: codestyling-localization.php:2987
    230235#@ codestyling-localization
    231236msgid "Description"
    232237msgstr "Descrição"
    233238
    234 #: codestyling-localization.php:2380
     239#: codestyling-localization.php:2988
    235240#@ codestyling-localization
    236241msgid "Languages"
    237242msgstr "Idiomas"
    238243
    239 #: codestyling-localization.php:2395
     244#: codestyling-localization.php:3003
    240245#@ codestyling-localization
    241246msgid "Textdomain"
    242247msgstr "Textdomain"
    243248
    244 #: codestyling-localization.php:2396
     249#: codestyling-localization.php:3004
    245250#@ codestyling-localization
    246251msgid "defined by constant"
    247252msgstr "definida pela constante"
    248253
    249 #: codestyling-localization.php:2399
    250 #: codestyling-localization.php:2443
     254#: codestyling-localization.php:3007
     255#: codestyling-localization.php:3051
    251256#@ codestyling-localization
    252257msgid "Version"
    253258msgstr "Versão"
    254259
    255 #: codestyling-localization.php:2403
    256 #: codestyling-localization.php:2447
     260#: codestyling-localization.php:3011
     261#: codestyling-localization.php:3055
    257262#@ codestyling-localization
    258263msgid "State"
    259264msgstr "Estado"
    260265
    261 #: codestyling-localization.php:2440
     266#: codestyling-localization.php:3048
    262267#@ codestyling-localization
    263268msgid "by"
    264269msgstr "por"
    265270
    266 #: codestyling-localization.php:2494
    267 #: codestyling-localization.php:2818
     271#: codestyling-localization.php:3102
     272#: codestyling-localization.php:3506
    268273#@ codestyling-localization
    269274msgid "Add New Language"
    270 msgstr "Adicionar Novo Idioma"
    271 
    272 #: codestyling-localization.php:2501
     275msgstr "Adicionar Idioma"
     276
     277#: codestyling-localization.php:3113
    273278#@ codestyling-localization
    274279msgid "Language"
    275280msgstr "Idioma"
    276281
    277 #: codestyling-localization.php:2502
     282#: codestyling-localization.php:3114
    278283#@ codestyling-localization
    279284msgid "Permissions"
    280285msgstr "Permissões"
    281286
    282 #: codestyling-localization.php:2503
    283 #: codestyling-localization.php:2729
     287#: codestyling-localization.php:3115
     288#: codestyling-localization.php:3345
    284289#@ codestyling-localization
    285290msgid "Actions"
    286291msgstr "Ações"
    287292
    288 #: codestyling-localization.php:2516
    289 #: codestyling-localization.php:2548
    290 #: codestyling-localization.php:2586
    291 #: codestyling-localization.php:2859
     293#: codestyling-localization.php:3128
     294#: codestyling-localization.php:3160
     295#: codestyling-localization.php:3198
     296#: codestyling-localization.php:3621
    292297#@ codestyling-localization
    293298msgid "Locale"
    294 msgstr "Localidade"
    295 
    296 #: codestyling-localization.php:2522
    297 #: codestyling-localization.php:2527
    298 #: codestyling-localization.php:2554
    299 #: codestyling-localization.php:2559
    300 #: codestyling-localization.php:2592
    301 #: codestyling-localization.php:2597
    302 #: codestyling-localization.php:2867
     299msgstr "Locale"
     300
     301#: codestyling-localization.php:3134
     302#: codestyling-localization.php:3139
     303#: codestyling-localization.php:3166
     304#: codestyling-localization.php:3171
     305#: codestyling-localization.php:3204
     306#: codestyling-localization.php:3209
     307#: codestyling-localization.php:3629
    303308#@ codestyling-localization
    304309msgid "-n.a.-"
    305 msgstr "-n.a.-"
    306 
    307 #: codestyling-localization.php:2532
    308 #: codestyling-localization.php:2564
    309 #: codestyling-localization.php:2602
    310 #: codestyling-localization.php:2871
    311 #: codestyling-localization.php:3330
     310msgstr "n/d"
     311
     312#: codestyling-localization.php:3144
     313#: codestyling-localization.php:3176
     314#: codestyling-localization.php:3214
     315#: codestyling-localization.php:3633
     316#: codestyling-localization.php:4247
    312317#@ codestyling-localization
    313318msgid "Edit"
    314319msgstr "Editar"
    315320
    316 #: codestyling-localization.php:2535
    317 #: codestyling-localization.php:2538
    318 #: codestyling-localization.php:2567
    319 #: codestyling-localization.php:2570
    320 #: codestyling-localization.php:2605
    321 #: codestyling-localization.php:2608
    322 #: codestyling-localization.php:2873
    323 #: codestyling-localization.php:2876
     321#: codestyling-localization.php:3147
     322#: codestyling-localization.php:3150
     323#: codestyling-localization.php:3179
     324#: codestyling-localization.php:3182
     325#: codestyling-localization.php:3218
     326#: codestyling-localization.php:3220
     327#: codestyling-localization.php:3224
     328#: codestyling-localization.php:3635
     329#: codestyling-localization.php:3638
    324330#@ codestyling-localization
    325331msgid "Rescan"
    326 msgstr "Reescanear"
    327 
    328 #: codestyling-localization.php:2541
    329 #: codestyling-localization.php:2573
    330 #: codestyling-localization.php:2611
    331 #: codestyling-localization.php:2879
     332msgstr "Analisar"
     333
     334#: codestyling-localization.php:3153
     335#: codestyling-localization.php:3185
     336#: codestyling-localization.php:3227
     337#: codestyling-localization.php:3641
    332338#@ codestyling-localization
    333339msgid "Delete"
    334340msgstr "Excluir"
    335341
    336 #: codestyling-localization.php:2626
     342#: codestyling-localization.php:3242
    337343#@ codestyling-localization
    338344msgid "Translate Language File"
    339345msgstr "Traduzir Arquivo de Idioma"
    340346
    341 #: codestyling-localization.php:2628
    342 #: codestyling-localization.php:3048
    343 #: codestyling-localization.php:3783
     347#: codestyling-localization.php:3244
     348#: codestyling-localization.php:3893
     349#: codestyling-localization.php:4779
    344350#@ codestyling-localization
    345351msgid "File:"
    346352msgstr "Arquivo:"
    347353
    348 #: codestyling-localization.php:2628
    349 #: codestyling-localization.php:2658
    350 #: includes/class-translationfile.php:807
     354#: codestyling-localization.php:2550
     355#: codestyling-localization.php:2609
     356#: codestyling-localization.php:2624
     357#: codestyling-localization.php:3244
     358#: codestyling-localization.php:3274
     359#: includes/class-translationfile.php:929
    351360#@ codestyling-localization
    352361msgid "unknown"
    353362msgstr "desconhecido"
    354363
    355 #: codestyling-localization.php:2669
     364#: codestyling-localization.php:3285
    356365#@ codestyling-localization
    357366msgid "Search Result"
    358367msgstr "Resultado da Pesquisa"
    359368
    360 #: codestyling-localization.php:2657
     369#: codestyling-localization.php:3273
    361370#@ codestyling-localization
    362371msgid "generate mo-file"
    363 msgstr "gerar mo-file"
    364 
    365 #: codestyling-localization.php:2674
     372msgstr "Gerar arquivo .mo"
     373
     374#: codestyling-localization.php:3290
    366375#@ codestyling-localization
    367376msgid "Page Size"
    368 msgstr "Tamanho da página"
    369 
    370 #: codestyling-localization.php:2686
    371 #: codestyling-localization.php:2739
    372 #: codestyling-localization.php:3271
     377msgstr "Itens por página"
     378
     379#: codestyling-localization.php:3302
     380#: codestyling-localization.php:3355
     381#: codestyling-localization.php:4188
    373382#@ codestyling-localization
    374383msgid "&laquo; Previous"
    375384msgstr "&laquo; Anterior"
    376385
    377 #: codestyling-localization.php:2691
    378 #: codestyling-localization.php:2744
    379 #: codestyling-localization.php:3278
     386#: codestyling-localization.php:3307
     387#: codestyling-localization.php:3360
     388#: codestyling-localization.php:4195
    380389#@ codestyling-localization
    381390msgid "Next &raquo;"
    382391msgstr "Seguinte &raquo;"
    383392
    384 #: codestyling-localization.php:2698
     393#: codestyling-localization.php:3314
    385394#@ codestyling-localization
    386395msgid "Infos"
    387 msgstr "Infos"
    388 
    389 #: codestyling-localization.php:2702
    390 #: codestyling-localization.php:3734
     396msgstr "Info"
     397
     398#: codestyling-localization.php:3318
     399#: codestyling-localization.php:4730
    391400#@ codestyling-localization
    392401msgid "Original:"
    393402msgstr "Original:"
    394403
    395 #: codestyling-localization.php:2717
    396 #: codestyling-localization.php:3737
    397 #: codestyling-localization.php:3739
     404#: codestyling-localization.php:3333
     405#: codestyling-localization.php:4733
     406#: codestyling-localization.php:4735
    398407#@ codestyling-localization
    399408msgid "Translation:"
    400409msgstr "Tradução:"
    401410
    402 #: codestyling-localization.php:2733
     411#: codestyling-localization.php:3349
    403412#@ codestyling-localization
    404413msgid "Please wait, file content presently being loaded ..."
    405 msgstr "Por favor aguarde, o conteúdo do arquivo está sendo carregado ..."
    406 
    407 #: codestyling-localization.php:2754
    408 #: codestyling-localization.php:3689
     414msgstr "Aguarde, o conteúdo do arquivo está sendo carregado..."
     415
     416#: codestyling-localization.php:3370
     417#: codestyling-localization.php:4685
    409418#@ codestyling-localization
    410419msgid "Edit Catalog Entry"
    411 msgstr "Editar entrada de catálogo"
    412 
    413 #: codestyling-localization.php:2755
     420msgstr "Editando item do catálogo"
     421
     422#: codestyling-localization.php:3371
    414423#@ codestyling-localization
    415424msgid "close"
    416425msgstr "fechar"
    417426
    418 #: codestyling-localization.php:2914
     427#: codestyling-localization.php:3705
    419428#@ codestyling-localization
    420429msgid "Confirm Delete Language"
    421430msgstr "Confirme a Exclusão do Idioma"
    422431
    423 #: codestyling-localization.php:2984
     432#: codestyling-localization.php:3815
    424433#@ codestyling-localization
    425434msgid "Rescanning PHP Source Files"
    426 msgstr "Rescanning PHP Source Files"
    427 
    428 #: codestyling-localization.php:3010
    429 #: codestyling-localization.php:3036
    430 #: codestyling-localization.php:3053
     435msgstr "Analisando arquivos .php"
     436
     437#: codestyling-localization.php:3842
     438#: codestyling-localization.php:3879
     439#: codestyling-localization.php:3926
    431440#@ codestyling-localization
    432441msgid "finished"
    433 msgstr "terminado"
    434 
    435 #: codestyling-localization.php:3191
     442msgstr "Concluído"
     443
     444#: codestyling-localization.php:4066
    436445#@ codestyling-localization
    437446msgid "Access Error"
    438447msgstr "Erro de acesso"
    439448
    440 #: codestyling-localization.php:3297
     449#: codestyling-localization.php:4214
    441450#@ codestyling-localization
    442451msgid "Files:"
    443452msgstr "Arquivos:"
    444453
    445 #: codestyling-localization.php:3311
    446 #: codestyling-localization.php:3719
     454#: codestyling-localization.php:4228
     455#: codestyling-localization.php:4715
    447456#@ codestyling-localization
    448457msgid "Singular:"
    449458msgstr "Singular:"
    450459
    451 #: codestyling-localization.php:3311
    452 #: codestyling-localization.php:3721
     460#: codestyling-localization.php:4228
     461#: codestyling-localization.php:4717
    453462#@ codestyling-localization
    454463msgid "Plural:"
    455464msgstr "Plural:"
    456465
    457 #: codestyling-localization.php:3315
    458 #: codestyling-localization.php:3318
    459 #: codestyling-localization.php:3696
    460 #: codestyling-localization.php:3699
    461 #: codestyling-localization.php:3702
    462 #: codestyling-localization.php:3707
     466#: codestyling-localization.php:4232
     467#: codestyling-localization.php:4235
     468#: codestyling-localization.php:4692
     469#: codestyling-localization.php:4695
     470#: codestyling-localization.php:4698
     471#: codestyling-localization.php:4703
    463472#@ codestyling-localization
    464473msgid "Plural Index Result ="
    465474msgstr "Resultado do índice Plural ="
    466475
    467 #: codestyling-localization.php:3331
     476#: codestyling-localization.php:4248
    468477#@ codestyling-localization
    469478msgid "Copy"
    470479msgstr "Copiar"
    471480
    472 #: codestyling-localization.php:3723
     481#: codestyling-localization.php:4719
    473482#@ codestyling-localization
    474483msgid "Plural Index Calculation:"
    475484msgstr "Cálculo do índice de Plural:"
    476485
    477 #: codestyling-localization.php:3727
    478 #: codestyling-localization.php:3744
     486#: codestyling-localization.php:4723
     487#: codestyling-localization.php:4740
    479488#@ codestyling-localization
    480489msgid "Save"
     
    484493#@ codestyling-localization
    485494msgid "μ Plugin"
    486 msgstr "μ Plugin"
    487 
    488 #: codestyling-localization.php:2340
     495msgstr "Plugin μ"
     496
     497#: codestyling-localization.php:2948
    489498#@ codestyling-localization
    490499msgid "μ Plugins"
    491 msgstr "μ Plugins"
    492 
    493 #: codestyling-localization.php:2459
     500msgstr "Plugins μ"
     501
     502#: codestyling-localization.php:3067
    494503#@ codestyling-localization
    495504msgid "The original US version doesn't contain the language directory."
    496 msgstr "A versão original E.U. não contém o diretório de idioma."
    497 
    498 #: codestyling-localization.php:2461
     505msgstr "A versão original em inglês não contém o diretório de idioma."
     506
     507#: codestyling-localization.php:3069
    499508#@ codestyling-localization
    500509msgid "try to create the WordPress language directory"
    501 msgstr "tentar criar o diretrio de linguagem WordPress"
    502 
    503 #: codestyling-localization.php:2464
    504 #: codestyling-localization.php:2485
     510msgstr "tentar criar o diretório de idioma WordPress"
     511
     512#: codestyling-localization.php:3072
     513#: codestyling-localization.php:3093
    505514#@ codestyling-localization
    506515msgid "or create the missing directory using FTP Access as:"
    507516msgstr "ou crie o diretório em falta utilizando o acesso FTP como:"
    508517
    509 #: codestyling-localization.php:2469
     518#: codestyling-localization.php:3077
    510519#@ codestyling-localization
    511520msgid "Available Directories:"
    512521msgstr "Diretórios disponíveis:"
    513522
    514 #: codestyling-localization.php:2634
     523#: codestyling-localization.php:3250
    515524#@ codestyling-localization
    516525msgid "<b>Hint:</b> The extended feature for textdomain separation shows at dropdown box <i>Textdomain</i> the pre-selected primary textdomain."
    517 msgstr "<b>Dica:</b> O recurso estendido para a separação de textdomain aparece na caixa dropdown <i>Textdomain</i> dos textdomain pré-selecionados primários."
    518 
    519 #: codestyling-localization.php:2077
    520 #: codestyling-localization.php:2635
     526msgstr "<b>Dica:</b> O recurso estendido para a separação de textdomain aparece na lista suspensa <i>Textdomain</i> do textdomain pré-selecionado."
     527
     528#: codestyling-localization.php:2159
     529#: codestyling-localization.php:3251
    521530#@ codestyling-localization
    522531msgid "All other additional contained textdomains occur at the source but will not be used, if not explicitely supported by this component!"
    523532msgstr "Todos os outros textdomains adicionais contidos ocorrem na fonte, mas não serão utilizados, a não ser que seja explicitamente exigido por este componente!"
    524533
    525 #: codestyling-localization.php:2078
    526 #: codestyling-localization.php:2636
     534#: codestyling-localization.php:2160
     535#: codestyling-localization.php:3252
    527536#@ codestyling-localization
    528537msgid "Please contact the author, if some of the non primary textdomain based phrases will not show up translated at the required position!"
    529538msgstr "Entre em contato com o autor, se algumas frases no textdomain básico traduzidas não forem exibidas na posição desejada!"
    530539
    531 #: codestyling-localization.php:2079
    532 #: codestyling-localization.php:2637
     540#: codestyling-localization.php:2161
     541#: codestyling-localization.php:3253
    533542#@ codestyling-localization
    534543msgid "The Textdomain <i><b>default</b></i> always stands for the WordPress main language file, this could be either intentionally or accidentally!"
    535544msgstr "O Textdomain <i><b>default</b></i> sempre representa o arquivo de idioma principal do WordPress, isso pode ser intencional ou acidentalmente!"
    536545
    537 #: codestyling-localization.php:2656
     546#: codestyling-localization.php:3272
    538547#@ codestyling-localization
    539548msgid "Textdomain:"
    540549msgstr "Textdomain:"
    541550
    542 #: codestyling-localization.php:2658
     551#: codestyling-localization.php:3274
    543552#@ codestyling-localization
    544553msgid "last written:"
    545 msgstr "último escrito:"
    546 
    547 #: codestyling-localization.php:2662
     554msgstr "Data da última criação:"
     555
     556#: codestyling-localization.php:3278
    548557#@ codestyling-localization
    549558msgid "Total"
    550559msgstr "Total"
    551560
    552 #: codestyling-localization.php:2663
     561#: codestyling-localization.php:3279
    553562#@ codestyling-localization
    554563msgid "Plural"
    555564msgstr "Plural"
    556565
    557 #: codestyling-localization.php:2664
    558 #: codestyling-localization.php:3307
     566#: codestyling-localization.php:3280
     567#: codestyling-localization.php:4224
    559568#@ codestyling-localization
    560569msgid "Context"
    561570msgstr "Contexto"
    562571
    563 #: codestyling-localization.php:2665
     572#: codestyling-localization.php:3281
    564573#@ codestyling-localization
    565574msgid "Not translated"
    566575msgstr "Não traduzido"
    567576
    568 #: codestyling-localization.php:2666
     577#: codestyling-localization.php:3282
    569578#@ codestyling-localization
    570579msgid "Comments"
    571580msgstr "Comentários"
    572581
    573 #: codestyling-localization.php:2667
    574 #: codestyling-localization.php:3289
     582#: codestyling-localization.php:3283
     583#: codestyling-localization.php:4206
    575584#@ codestyling-localization
    576585msgid "Code Hint"
    577 msgstr "Code Hint"
    578 
    579 #: codestyling-localization.php:2670
     586msgstr "Dica no Código"
     587
     588#: codestyling-localization.php:3286
    580589#@ codestyling-localization
    581590msgid "Expression Result"
    582591msgstr "Resultado da expressão"
    583592
    584 #: codestyling-localization.php:2706
    585 #: codestyling-localization.php:2721
     593#: codestyling-localization.php:3322
     594#: codestyling-localization.php:3337
    586595#@ codestyling-localization
    587596msgid "non case-sensitive"
    588 msgstr "não case-sensitive"
    589 
    590 #: codestyling-localization.php:2737
     597msgstr "Não diferenciar maiúsc. /minúsc."
     598
     599#: codestyling-localization.php:3353
    591600#@ codestyling-localization
    592601msgid "scroll to top"
    593 msgstr "rolar para cima"
    594 
    595 #: codestyling-localization.php:3288
     602msgstr "Voltar ao Topo"
     603
     604#: codestyling-localization.php:4205
    596605#@ codestyling-localization
    597606msgid "Comment"
    598607msgstr "Comentário"
    599608
    600 #: codestyling-localization.php:3462
     609#: codestyling-localization.php:4379
    601610#@ codestyling-localization
    602611msgid "Extended Expression Search"
    603612msgstr "Pesquisa de Expressão Estendida"
    604613
    605 #: codestyling-localization.php:3464
     614#: codestyling-localization.php:4381
    606615#@ codestyling-localization
    607616msgid "Expression:"
    608617msgstr "Expressão:"
    609618
    610 #: codestyling-localization.php:3466
     619#: codestyling-localization.php:4383
    611620#@ codestyling-localization
    612621msgid "Examples: <small>Please refer to official Perl regular expression descriptions</small>"
    613622msgstr "Exemplos: <small>Consulte a descrição oficial Perl expressão regular</small>"
    614623
    615 #: codestyling-localization.php:3471
     624#: codestyling-localization.php:4388
    616625#@ codestyling-localization
    617626msgid "Search"
    618 msgstr "Pesquisa"
    619 
    620 #: codestyling-localization.php:3726
    621 #: codestyling-localization.php:3743
     627msgstr "Pesquisar"
     628
     629#: codestyling-localization.php:4722
     630#: codestyling-localization.php:4739
    622631#@ codestyling-localization
    623632msgid "« Save & Previous"
    624 msgstr "« Salve & Anterior"
    625 
    626 #: codestyling-localization.php:3728
    627 #: codestyling-localization.php:3745
     633msgstr "« Salvar & Anterior"
     634
     635#: codestyling-localization.php:4724
     636#: codestyling-localization.php:4741
    628637#@ codestyling-localization
    629638msgid "Save & Next »"
    630 msgstr "Salve & Seguinte »"
     639msgstr "Salvar & Seguinte »"
    631640
    632641#: includes/js-help-perlreg.php:4
     
    670679msgctxt "pcre"
    671680msgid "matches \"out\", but also \"timeout\", \"outbreak\", \"Route\" and \"gouty\"."
    672 msgstr "Combine \"out\", mas também \"timeout\", \"outbreak\", \"Route\" e \"gouty\"."
     681msgstr "Corresponde a \"out\", mas também \"timeout\", \"outbreak\", \"Route\" e \"gouty\"."
    673682
    674683#: includes/js-help-perlreg.php:18
     
    676685msgctxt "pcre"
    677686msgid "matches \"out\" at start of string like \"out\", \"outbreak\", as long as this are the first words at string."
    678 msgstr "Combine \"out\" no início do string como \"out\", \"outbreak\", enquanto forem as primeiras palavras em seqüência."
     687msgstr "Corresponde a \"out\" no início do string como em \"out\", \"outbreak\"."
    679688
    680689#: includes/js-help-perlreg.php:23
     
    682691msgctxt "pcre"
    683692msgid "matches \"out\" at end of string like \"out\", \"timeout\" and \"burnout\" as long as this are the last words at string."
    684 msgstr "Combine \"out\" no início do string como \"out\", \"outbreak\", enquanto forem as últimas palavras em seqüência."
     693msgstr "Corresponde a \"out\" no fim da string como em \"out\", \"timeout\" e \"burnout\"."
    685694
    686695#: includes/js-help-perlreg.php:28
     
    688697msgctxt "pcre"
    689698msgid "matches \"ou\", \"out\", \"outt\" and \"outttttt\", the char prior to asterisk can be repeated 0 to unlimited times."
    690 msgstr "Combine \"ou\", \"out\", \"outt\" and \"outttttt\", o char antes do asterisco pode ser repetido de 0 a ilimitado."
     699msgstr "Corresponde a \"ou\", \"out\", \"outt\" e\"outttttt\", o caractere antes do asterisco pode ser repetido de 0 a ilimitado."
    691700
    692701#: includes/js-help-perlreg.php:33
     
    694703msgctxt "pcre"
    695704msgid "matches \"outt\" and \"outttt\", the char prior to plus char have to be repeated at least one time or more often."
    696 msgstr "Combine \"outt\" and \"outttt\", o char antes de char mais tem que ser repetido pelo menos uma vez ou mais vezes."
     705msgstr "Corresponde a \"outt\" e \"outttt\", o caractere antes dele mais uma ou mais vezes o mesmo caractere."
    697706
    698707#: includes/js-help-perlreg.php:38
     
    700709msgctxt "pcre"
    701710msgid "matches \"rout\" and \"gout\", any char can be placed at this position."
    702 msgstr "Combine \"rout\" and \"gout\", qualquer char pode ser colocado nessa posição."
     711msgstr "Corresponde a \"rout\" e \"gout\", qualquer caractere pode ser colocado nessa posição."
    703712
    704713#: includes/js-help-perlreg.php:43
     
    706715msgctxt "pcre"
    707716msgid "matches \"timeout\" and \"Fallout\", any char sequence at this position. Is a combination of any char and 1 but upto many times."
    708 msgstr "Combine \"timeout\" and \"Fallout\", qualquer seqüência char nessa posição. É uma combinação de qualquer char e 1 mas muitas vezes."
     717msgstr "Corresponde a \"timeout\" e \"Fallout\", qualquer sequência de caracteres nessa posição. É uma combinação de qualquer caracteres e 1 mais muitas vezes."
    709718
    710719#: includes/js-help-perlreg.php:48
     
    712721msgctxt "pcre"
    713722msgid "matches \"out\" as single word. \\b means word break."
    714 msgstr "Combine \"out\" as single word. \\b significa quebra de palavra."
     723msgstr "Corresponde a \"out\" como palavras única. \\b significa quebra de palavra."
    715724
    716725#: includes/js-help-perlreg.php:53
     
    718727msgctxt "pcre"
    719728msgid "matches \"out\" only inside words, like \"Route\" or \"gouty\". \\B means not word break."
    720 msgstr "Combine \"out\" somente palavras, como \"Route\" ou \"gouty\". \\B significa not word break."
     729msgstr "Corresponde a \"out\" somente dentro de palavras, como \"Route\" ou \"gouty\". \\B não significa quebra de palavras."
    721730
    722731#: includes/js-help-perlreg.php:58
     
    724733msgctxt "pcre"
    725734msgid "matches any number. \\d means a numerical digit (0 to 9)"
    726 msgstr "combine com qualquer número. \\d significa um dígito numérico de (0 a 9)"
     735msgstr "Corresponde a qualquer número. \\d significa um dígito numérico (0 a 9)"
    727736
    728737#: includes/js-help-perlreg.php:63
     
    730739msgctxt "pcre"
    731740msgid "matches \"-out\" at \"3-out\", any non number."
    732 msgstr "combine \"-out\" at \"3-out\", any non number."
     741msgstr "Corresponde a \"-out\" em \"3-out\", qualquer não numérico"
    733742
    734743#: includes/js-help-perlreg.php:68
     
    736745msgctxt "pcre"
    737746msgid "matches form feed char."
    738 msgstr "combine form feed char."
     747msgstr "Corresponde a caracteres de alimentação de formulários."
    739748
    740749#: includes/js-help-perlreg.php:73
     
    742751msgctxt "pcre"
    743752msgid "matches line feed char."
    744 msgstr "combine line feed char"
     753msgstr "Corresponde a caracteres de nova linha."
    745754
    746755#: includes/js-help-perlreg.php:78
     
    748757msgctxt "pcre"
    749758msgid "matches carriage return char."
    750 msgstr "combine carriage return char."
     759msgstr "Corresponde a caractere de retorno."
    751760
    752761#: includes/js-help-perlreg.php:83
     
    754763msgctxt "pcre"
    755764msgid "matches tabulator char."
    756 msgstr "combine tabulador char"
     765msgstr "Corresponde a caractere de tabulação."
    757766
    758767#: includes/js-help-perlreg.php:88
     
    760769msgctxt "pcre"
    761770msgid "matches vertical tabulator char."
    762 msgstr "combine tabulador vertical char"
     771msgstr "Corresponde a caractere de tabulador vertical"
    763772
    764773#: includes/js-help-perlreg.php:93
     
    766775msgctxt "pcre"
    767776msgid "matches any kind of whitespace and space char."
    768 msgstr "combine qualquer tipo de whitespace e space char."
     777msgstr "Corresponde a qualquer tipo de caractere de espaço em branco."
    769778
    770779#: includes/js-help-perlreg.php:98
     
    772781msgctxt "pcre"
    773782msgid "matches any char, that is not a whitespace char."
    774 msgstr "combine qualquer char, que não seja whitespace char."
     783msgstr "Corresponde a qualquer caractere que não seja de espaço em branco."
    775784
    776785#: includes/js-help-perlreg.php:103
     
    778787msgctxt "pcre"
    779788msgid "matches any alphanumerical char and underscore (typical for programming syntax)."
    780 msgstr "combine qualquer char alfanumérico e underscore (tipico para programação syntax)."
     789msgstr "Corresponde a qualquer caractere alfanumérico e sublinhado (típico de sintaxe de programação)."
    781790
    782791#: includes/js-help-perlreg.php:108
     
    784793msgctxt "pcre"
    785794msgid "matches any char, that is not alphanumerical char and underscore (typical for illegal char detection at programming)."
    786 msgstr "combine qualquer char, que não seja char alfanumérico e underscore (típico para detectar char ilegal em programação)"
     795msgstr "Corresponde a qualquer caracteres, não alfanumérico e sublinhado (típico de detecção de caracteres ilegais em programação)."
    787796
    788797#: includes/js-help-perlreg.php:113
     
    790799msgctxt "pcre"
    791800msgid "matches \"out\" and remembers matches internally. Upto 9 brackets are allowed per expression."
    792 msgstr "combine \"out\" e lembre combinação interna. Até 9 brackets são permitidas por expressão"
     801msgstr "Corresponde a \"out\" e relembra coincidências internas. Até 9 chaves são permitidas por expressão"
    793802
    794803#: includes/js-help-perlreg.php:118
     
    796805msgctxt "pcre"
    797806msgid "matches \"aus\" as often it is contained at string. The match positions will be stored internally as array."
    798 msgstr "combine \"aus\" quantas vezês estiver no string. As posições de partida serão armazenadas internamente como uma matriz."
     807msgstr "Corresponde a  \"idade\" quantas vezes estiver na string. As posições de coincidências serão armazenadas internamente como uma matriz."
    799808
    800809#: includes/js-help-perlreg.php:123
     
    802811msgctxt "pcre"
    803812msgid "matches \"out\", \"Out\" and \"OUT\", not case-sensitive match."
    804 msgstr "combine \"out\", \"Out\" e \"OUT\", not case-sensitive match."
     813msgstr "Corresponde a \"ida\", \"IdA\" e \"IDA\", coincide sem diferenciar maiúsc. ou minúsc."
    805814
    806815#: includes/js-help-perlreg.php:128
     
    808817msgctxt "pcre"
    809818msgid "matches \"out\", as ofter occurs (g) and also non case-sensitive."
    810 msgstr "combine \"out\", quantas vezes ocorrerem (g) e também não case-sensitive."
    811 
    812 #: codestyling-localization.php:708
     819msgstr "Corresponde a \"ida\", quantas vezes ocorrerem (g) e também não diferencia maiúsc. e minúsc."
     820
     821#: codestyling-localization.php:710
    813822#@ codestyling-localization
    814823msgid "Childtheme"
    815 msgstr ""
    816 
    817 #: codestyling-localization.php:715
     824msgstr "Tema Filho"
     825
     826#: codestyling-localization.php:718
    818827#@ codestyling-localization
    819828msgid "child theme of"
    820 msgstr ""
     829msgstr "tema filho de"
    821830
    822831#. translators: plugin header field 'Name'
     
    824833#@ codestyling-localization
    825834msgid "CodeStyling Localization"
    826 msgstr ""
     835msgstr "CodeStyling Localization"
    827836
    828837#. translators: plugin header field 'PluginURI'
     
    830839#@ codestyling-localization
    831840msgid "http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en"
    832 msgstr ""
     841msgstr "http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en"
    833842
    834843#. translators: plugin header field 'Description'
     
    836845#@ codestyling-localization
    837846msgid "You can manage and edit all gettext translation files (*.po/*.mo) directly out of your WordPress Admin Center without any need of an external editor. It automatically detects the gettext ready components like <b>WordPress</b> itself or any <b>Plugin</b> / <b>Theme</b> supporting gettext, is able to scan the related source files and can assists you using <b>Google Translate API</b> or <b>Microsoft Translator API</b> during translation.This plugin supports <b>WordPress MU</b> and allows explicit <b>WPMU Plugin</b> translation too. It newly introduces ignore-case and regular expression search during translation. <b>BuddyPress</b> and <b>bbPress</b> as part of BuddyPress can be translated too. Produces transalation files are 100% compatible to <b>PoEdit</b>."
    838 msgstr ""
     847msgstr "Você pode gerenciar e editar todos os arquivos de tradução getText  (*.po/*.mo) diretamente do seu painel WordPress sem a necessidade de um editor externo. O Codestyling detecta automaticamente o próprio WordPress e outros componentes como <b>Plugin</b> e <b>Temas</b>preparados para tradução além de oferecer suporte às APIs  do <b>Google Translate</b> ou <b>Microsoft Translator</b>."
    839848
    840849#. translators: plugin header field 'Author'
     
    842851#@ codestyling-localization
    843852msgid "Heiko Rabe"
    844 msgstr ""
     853msgstr "Heiko Rabe"
    845854
    846855#. translators: plugin header field 'AuthorURI'
     
    848857#@ codestyling-localization
    849858msgid "http://www.code-styling.de/english/"
    850 msgstr ""
     859msgstr "http://www.code-styling.de/english/"
     860
     861#: codestyling-localization.php:459
     862#@ codestyling-localization
     863msgid "<strong>Loading Issue: </strong>Author is using <em>load_textdomain</em> instead of <em>load_plugin_textdomain</em> function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that."
     864msgstr "<strong>Problema de carregamento: </strong>Autor está usando <em>load_textdomain</em> em vez da função <em>load_plugin_textdomain</em>. Isso pode quebrar o WordPress, porque alguns filtros e ações não serão mais executados. Entre em contato com o autor sobre isso."
     865
     866#: codestyling-localization.php:508
     867#@ codestyling-localization
     868msgid "<strong>Full Encryped PHP Code: </strong>This plugin consists out of encryped code will be <strong>eval</strong>'d at runtime! It can't be checked against exploitable code pieces. That's why it will become potential target of hidden intrusion."
     869msgstr "<strong>Código PHP totalmente criptografado:</strong> Este plugin consiste de código criptografado que será <strong>avaliado</ strong> em tempo de execução! Não pode ser verificado contra pedaços de código exploráveis, por isso pode ser alvo de invasões."
     870
     871#: codestyling-localization.php:513
     872#@ codestyling-localization
     873msgid "<strong>Textdomain definition: </strong>This plugin provides a textdomain definition at plugin header fields but seems not to load any translation file. If it doesn't show your translation, please contact the plugin Author."
     874msgstr "<strong>Definição de textdomain:</strong> Este plugin oferece uma definição de textdomain em campos de cabeçalho do plugin, mas parece não carregar qualquer arquivo de tradução. Se ele não mostrar sua tradução, por favor contacte o autor do plugin."
     875
     876#: codestyling-localization.php:541
     877#: codestyling-localization.php:567
     878#@ codestyling-localization
     879msgid "<strong>Textdomain definition: </strong>There are problems to find the used textdomain. It has been taken from existing translation files. If it doesn't work with your install, please contact the Author of this plugin."
     880msgstr "<strong>Definição do textdomain</strong> Há problemas em encontrar o textdomain usado. Parece ter sido obtido de outros arquivos de tradução existentes. Se não funcionar com sua instalação, entre em contato com o autor deste plugin."
     881
     882#: codestyling-localization.php:740
     883#@ codestyling-localization
     884msgid "<strong>Loading Issue: </strong>Author is using <em>load_textdomain</em> instead of <em>load_theme_textdomain</em> or <em>load_child_theme_textdomain</em> function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that."
     885msgstr "<strong>Problema no carregamento:</strong> O autor está usando <em>load_textdomain</em> em vez de <em>load_theme_textdomain</em> ou a função <em>load_child_theme_textdomain</em>. Isso pode quebrar o WordPress, já que alguns filtros e ações não mais serão executados. Entre em contato com o autor sobre isso."
     886
     887#: codestyling-localization.php:746
     888#@ codestyling-localization
     889msgid "<strong>Textdomain Naming Issue: </strong>Author uses a variable to load the textdomain. It will be assumed to be equal to theme name now."
     890msgstr "<strong>Problema com a nomenclatura do textdomain: </strong> O autor está usando uma variável para carregar o textdomain. Será assumido como sendo igual ao nome do tema atual."
     891
     892#: codestyling-localization.php:791
     893#, php-format
     894#@ codestyling-localization
     895msgid "<strong>Naming Issue: </strong>Author uses unsupported language file naming convention! Instead of example <em>de_DE.po</em> the non theme standard version <em>%s</em> has been used. If you translate this Theme, only renamed language files will be working!"
     896msgstr "<strong>Problemas com a nomenclatura:</strong>O autor está usando um nome de arquivo de idioma não suportado pela convenção de nomenclatura! Em vez de exemplo <em>pt_BR.po</em> a versão <em>%s</em> foi usada. Se traduzir este tema, apenas arquivos de idioma renomeados vão funcionar!"
     897
     898#: codestyling-localization.php:853
     899#@ codestyling-localization
     900msgid "<strong>Textdomain Naming Issue: </strong>Author uses a variable to define the textdomain constant. It will be assumed to be equal to theme name now."
     901msgstr "<strong>Problema com a nomenclatura do textdomain: </strong> O autor está usando uma variável para definir a constante do textdomain. Será assumido como sendo igual ao nome do tema atual."
     902
     903#: codestyling-localization.php:860
     904#@ codestyling-localization
     905msgid "<strong>WooThemes Issue: </strong>The Author is known for not supporting a translatable backend. Please expect only translations for frontend or contact the Author for support!"
     906msgstr "<strong>Problema com Tema WooThemes</strong> O autor é conhecido por não oferecer suporte a painel traduzível. As traduções podem afetar apena o site ou entre em contato com o autor para mais suporte."
     907
     908#: codestyling-localization.php:864
     909#@ codestyling-localization
     910msgid "<strong>Ares Theme Issue: </strong>This theme uses a textdomain defined by string concatination code. The textdomain will be patched to 'AresLanguage', please contact the theme author to change this into a fix constant value! "
     911msgstr "<strong>Problema no Tema Ares:</strong> Este tema usa um textdomain definido por código de concatenação de string. O textdomain será corrigido para \\\"AresLanguage ', por favor contacte o autor do tema para que mude isso para um valor fixo e constante!"
     912
     913#: codestyling-localization.php:879
     914#@ codestyling-localization
     915msgid "BuddyPress"
     916msgstr "BuddyPress"
     917
     918#: codestyling-localization.php:924
     919#@ codestyling-localization
     920msgid "bbPress"
     921msgstr "bbPress"
     922
     923#: codestyling-localization.php:1688
     924#: codestyling-localization.php:1879
     925#: codestyling-localization.php:1948
     926#, php-format
     927#@ codestyling-localization
     928msgid "You do not have the permission to write to the file '%s'."
     929msgstr "Você não tem a permissão para gravar o arquivo '%s'."
     930
     931#: codestyling-localization.php:1774
     932#@ codestyling-localization
     933msgid "Your translation file doesn't support the <em>multiple textdomains in one translation file</em> extension.<br/>Please re-scan the related source files at the overview page to enable this feature."
     934msgstr "Seu arquivo de tradução não suporta arquivos com extensão de <em>múltiplos textdomains em um só arquivo</em>. <br/> Analise novamente os arquivos de origem relacionados na página de visão geral para ativar esse recurso."
     935
     936#: codestyling-localization.php:1941
     937#@ codestyling-localization
     938msgid "You are trying to create an empty mo-file without any translations. This is not possible, please translate at least one entry."
     939msgstr "Você está tentando criar um arquivo .mo vazio, sem qualquer tradução. Isto não é possível, por favor, traduza pelo menos uma entrada."
     940
     941#: codestyling-localization.php:1975
     942#@ codestyling-localization
     943msgid "You do not have the permission to create a new Language File Path.<br/>Please create the appropriated path using your FTP access."
     944msgstr "Você não tem permissão para criar um novo destino para o arquivo de idioma. <br/> Crie o destino apropriado usando seu acesso FTP."
     945
     946#: codestyling-localization.php:2095
     947#@ codestyling-localization
     948msgid "While get in touch with WordPress you will find out, that the initial delivery package comes only with english localization. If you want WordPress to show your native language, you have to provide the appropriated language file at languages folder. This files will be used to replace the english text phrases during the process of page generation. This translation capability has the origin at the gettext functionality which currently been used across a wide range of open source projects."
     949msgstr "Antes de existir uma distribuição WordPress para nosso idioma, o software era oferecido somente em inglês. A criação de comunidades de idiomas oferece o WordPress em várias linguagens mas alguns temas e plugins podem estar disponíveis somente em inglês, sendo assim, o plugin CodeStyling foi criado para permitir a criação de arquivos de idiomas para plugins e temas adaptados para tradução."
     950
     951#: codestyling-localization.php:2102
     952#@ codestyling-localization
     953msgid "Dashboard in your Language"
     954msgstr "Painel em seu idioma"
     955
     956#: codestyling-localization.php:2113
     957#: codestyling-localization.php:2866
     958#@ codestyling-localization
     959msgid "If your Installation is running under low remaining memory conditions, you will face the memory limit error during scan process or opening catalog content. If you hitting your limit, you can enable this special mode. This will try to perform the actions in a slightly different way but that will lead to a considerably slower response times but nevertheless gives no warranty, that it will solve your memory related problems at all cases."
     960msgstr "Se sua instalação está sendo executado sob condições de memória reduzida, você pode se deparar com o erro de limite de memória durante o processo de análise ou durante a abertura do conteúdo do catálogo. Se atingir o limite, você pode ativar esse modo especial. Isto irá tentar executar as ações de uma forma ligeiramente diferente que levará a um tempo de resposta consideravelmente mais lento. Não é garantido que esta opção resolverá o problema de memória ao analisar arquivos."
     961
     962#: codestyling-localization.php:2127
     963#@ codestyling-localization
     964msgid "If you get compatibility warnings, than they are often related to a wrong usage of WordPress core functionality by the authors of the affected Themes or Plugins."
     965msgstr "Se receber avisos de compatibilidade, eles geralmente são relacionados ao uso errado de funcionalidade do núcleo WordPress pelos autores dos temas ou plugins afetados."
     966
     967#: codestyling-localization.php:2128
     968#@ codestyling-localization
     969msgid "There are several reason for such reports, but in each of this cases only the original author can solve it:"
     970msgstr "Há várias razões para tais relatórios, mas em cada um desses casos, apenas o autor original pode resolvê-lo:"
     971
     972#: codestyling-localization.php:2133
     973#@ codestyling-localization
     974msgid "Loading of translation files will be performed beside the WordPress standard functionality."
     975msgstr "O carregamento de arquivos de tradução será realizado junto a funcionalidade padrão do WordPress."
     976
     977#: codestyling-localization.php:2136
     978#@ codestyling-localization
     979msgid "Textdomains can not be parsed from source files because of used coding syntax."
     980msgstr "Textdomains não podem ser analisado a partir de arquivos de origem por causa de uma sintaxe de codificação usada."
     981
     982#: codestyling-localization.php:2139
     983#@ codestyling-localization
     984msgid "Component seems to be translatable but doesn't use a translation file load call."
     985msgstr "O componente parece ser traduzível, mas não usa uma chamada de carregamento de arquivos de tradução."
     986
     987#: codestyling-localization.php:2144
     988#: codestyling-localization.php:2174
     989#@ codestyling-localization
     990msgid "Reported issues are not a problem of <em>Codestyling Localization</em>, it's caused by the author of the affected component within it's code."
     991msgstr "Problemas relatados não são problemas do <em>Codestyling Localization</em>, mas causados pelo autor do componente afetado dentro de seu código."
     992
     993#: codestyling-localization.php:2155
     994#@ codestyling-localization
     995msgid "Textdomains are used to specified the context for the translation file to be loaded and processed. If a component tries to load a translation file using a textdomain, all texts assigned to this domain gets translated during page creation."
     996msgstr "Os textdomains são utilizados para especificar o contexto do arquivo de tradução a ser carregado e processado. Se um componente tenta carregar um arquivo de tradução usando um textdomain, todos os textos atribuídos a este domínio são traduzido durante a criação da página."
     997
     998#: codestyling-localization.php:2158
     999#@ codestyling-localization
     1000msgid "The extended feature for textdomain separation shows at dropdown box <i>Textdomain</i> the pre-selected primary textdomain."
     1001msgstr "O recurso estendido para a separação de textdomain mostra na caixa suspensa <i>Textdomain</i>o texdomain principal já selecionado."
     1002
     1003#: codestyling-localization.php:2164
     1004#@ codestyling-localization
     1005msgid "Warning Messages"
     1006msgstr "Mensagens de Aviso"
     1007
     1008#: codestyling-localization.php:2167
     1009#@ codestyling-localization
     1010msgid "If you get warnings either at the overview page or at the editor page, somethings is wrong within the analysed component."
     1011msgstr "Se receber avisos na página Visão Geral ou na página do editor, alguma coisa é errado dentro do componente analisado."
     1012
     1013#: codestyling-localization.php:2168
     1014#@ codestyling-localization
     1015msgid "The overview page will show warnings, if the textdomain can not be found clearly. In this case the author has written the components code in a way make it hard to detect."
     1016msgstr "A página de resumo mostrará avisos, se o textdomain não pode ser encontrado de forma clara. Neste caso, o autor escreveu o código do componente de forma difícil de detectar."
     1017
     1018#: codestyling-localization.php:2171
     1019#@ codestyling-localization
     1020msgid "Warnings at the editors view will show up, if the component is using badly coded textdomains. This could be either by integration of other plugins code or accidentally by typing mistakes."
     1021msgstr "Advertências ao ver editores aparecerão se o componente está usando textdomains mal codificados. Isso pode ser tanto através da integração do código de outros plugins ou acidentalmente por erros de digitação."
     1022
     1023#: codestyling-localization.php:2705
     1024#@ codestyling-localization
     1025msgid "Overview"
     1026msgstr "Visão Geral"
     1027
     1028#: codestyling-localization.php:2711
     1029#@ codestyling-localization
     1030msgid "Low Memory Mode"
     1031msgstr "Memória reduzida"
     1032
     1033#: codestyling-localization.php:2757
     1034#@ codestyling-localization
     1035msgid "For more information:"
     1036msgstr "Para mais informações:"
     1037
     1038#: codestyling-localization.php:2759
     1039#@ codestyling-localization
     1040msgid "Trac Development Log"
     1041msgstr "Trac do log de desenvolvimento"
     1042
     1043#: codestyling-localization.php:2760
     1044#@ codestyling-localization
     1045msgid "Plugin Support Forum"
     1046msgstr "Fórum de suporte (em inglês)"
     1047
     1048#: codestyling-localization.php:2797
     1049#@ codestyling-localization
     1050msgid "Translation API Keys"
     1051msgstr "Chaves de API"
     1052
     1053#: codestyling-localization.php:2800
     1054#@ codestyling-localization
     1055msgid "Google Translate API Key"
     1056msgstr "Chave da API Google Translate"
     1057
     1058#: codestyling-localization.php:2804
     1059#@ codestyling-localization
     1060msgid "Microsoft Translator - Client ID"
     1061msgstr "Chave da API Microsoft Translator"
     1062
     1063#: codestyling-localization.php:2808
     1064#@ codestyling-localization
     1065msgid "Microsoft Translator - Client Secret"
     1066msgstr "Microsoft Translator - Client Secret"
     1067
     1068#: codestyling-localization.php:2864
     1069#@ codestyling-localization
     1070msgid "enable low memory mode"
     1071msgstr "Ativar modo de memória reduzida"
     1072
     1073#: codestyling-localization.php:2872
     1074#@ codestyling-localization
     1075msgid "Translation Service-APIs:"
     1076msgstr "Chaves de API de serviços de tradução"
     1077
     1078#: codestyling-localization.php:2873
     1079#@ codestyling-localization
     1080msgid "None"
     1081msgstr "Nenhum"
     1082
     1083#: codestyling-localization.php:2874
     1084#@ codestyling-localization
     1085msgid "Google"
     1086msgstr "Google"
     1087
     1088#: codestyling-localization.php:2875
     1089#@ codestyling-localization
     1090msgid "Microsoft"
     1091msgstr "Microsoft"
     1092
     1093#: codestyling-localization.php:2878
     1094#@ codestyling-localization
     1095msgid "User Profile settings..."
     1096msgstr "Configurações do perfil do usuário..."
     1097
     1098#: codestyling-localization.php:2881
     1099#@ codestyling-localization
     1100msgid "How to use translation API services..."
     1101msgstr "Como usar a API de serviços de tradução..."
     1102
     1103#: codestyling-localization.php:2886
     1104#@ codestyling-localization
     1105msgid "a) Global Unique Keys - single user configuration"
     1106msgstr "a) Chaves globais únicas - configuração única de usuário"
     1107
     1108#: codestyling-localization.php:2889
     1109#: codestyling-localization.php:2895
     1110#: codestyling-localization.php:2913
     1111#: codestyling-localization.php:2921
     1112#@ codestyling-localization
     1113msgid "Attention:"
     1114msgstr "Atenção:"
     1115
     1116#: codestyling-localization.php:2889
     1117#@ codestyling-localization
     1118msgid "Keep in mind, that any WordPress administrator can use the service for translation purpose and may raise your costs in case of paid option used."
     1119msgstr "Tenha em mente que qualquer administrador WordPress pode usar o serviço para fins de tradução e pode elevar os custos em caso da opção paga usada."
     1120
     1121#: codestyling-localization.php:2896
     1122#, php-format
     1123#@ codestyling-localization
     1124msgid "This API is not longer a free service, Google has relaunched the API in version 2 as a pay per use service. Please read the explantions at %s first."
     1125msgstr "Esta API não é mais um serviço gratuito, o Google relançou a API na versão 2 como um serviço pago por uso. Por favor, leia as explicações em% s primeiro."
     1126
     1127#: codestyling-localization.php:2897
     1128#@ codestyling-localization
     1129msgid "Using this API within <em>Codestyling Localization</em> requires an API Key to be created at your Google account first. Once you have such a key, you can activate this API by defining a new constant at your <b>wp-config.php</b> file:"
     1130msgstr "Usar esta API no <em>Codestyling Localization</em> exige que uma chave de API seja criada em sua conta do Google primeiro. Assim que tiver essa chave, você pode ativar esta API através da definição de uma nova constante em seu arquivo <b>wp-config.php</b> assim:"
     1131
     1132#: codestyling-localization.php:2905
     1133#, php-format
     1134#@ codestyling-localization
     1135msgid "Microsoft provides the translation services with a free option of 2 million characters per month. But this also requires a subscription at %s either for free or for extended payed service volumes."
     1136msgstr "A Microsoft oferece serviços de tradução com uma opção gratuita de 2 milhões de caracteres por mês. Mas isso também requer uma assinatura em % s seja a versão gratuita ou para grandes volumes de caracteres."
     1137
     1138#: codestyling-localization.php:2906
     1139#@ codestyling-localization
     1140msgid "Using this API within <em>Codestyling Localization</em> requires <em>client_id</em> and <em>client_secret</em> to be created at your Azure subscription first. Once you have this values, you can activate this API by defining new constants at your <b>wp-config.php</b> file:"
     1141msgstr "Usar esta API no <em>Codestyling Localization</em> exige que um <em>client_id</em> e um <em>client_secret</em> sejam criados em sua conta do Azure primeiro. Assim que tiver essa chave, você pode ativar esta API através da definição de uma nova constante em seu arquivo <b>wp-config.php</b> assim:"
     1142
     1143#: codestyling-localization.php:2913
     1144#@ codestyling-localization
     1145msgid "This API additionally requires PHP curl functions and will not be available without. Current curl version:"
     1146msgstr "Esta API requer adicionalmente funções PHP cURL e não estará disponível sem ela. Versão atual do cURL:"
     1147
     1148#: codestyling-localization.php:2914
     1149#@ codestyling-localization
     1150msgid "not installed"
     1151msgstr "Não instalado"
     1152
     1153#: codestyling-localization.php:2918
     1154#@ codestyling-localization
     1155msgid "b) User Dedicated Keys - multiple user configurations"
     1156msgstr "b) Chaves dedicadas por usuário - várias configurações por usuário"
     1157
     1158#: codestyling-localization.php:2921
     1159#@ codestyling-localization
     1160msgid "This will extends all <em>User Profile</em> pages with a new section to enter all required translation key data. Keep im mind, that this data are stored at the database and are contained at SQL backups."
     1161msgstr "Essa opção vai estender a página do <em>Perfil do Usuário</em> com uma nova seção para inserir todos os dados de tradução necessários. Estes dados são armazenados no banco de dados."
     1162
     1163#: codestyling-localization.php:2925
     1164#@ codestyling-localization
     1165msgid "You can activate the per user behavoir, if you define only a single constant at your <b>wp-config.php</b> file. This enables the new section at each <a target=\"_blank\" href=\"profile.php?#translations\">User Profile</a> with sufficiant permissions and is only editable by the releated logged in user."
     1166msgstr "Você pode ativar o comportamento por usuário, se definir apenas uma única constante em seu arquivo <b>wp-config.php</b>. Isso ativa uma nova seção no <a target=\"_blank\" href=\"profile.php?#translations\">Perfil do Usuário</a> com permissão suficiente e apenas editável por usuário autenticado."
     1167
     1168#: codestyling-localization.php:2930
     1169#@ codestyling-localization
     1170msgid "Special Hosting Configuration"
     1171msgstr "Configuração de hospedagem especial"
     1172
     1173#: codestyling-localization.php:2933
     1174#@ codestyling-localization
     1175msgid "If your are a provider and you are hosting WordPress installations for your customer, it is possible to deactivate this help information using an additional constant at your <b>wp-config.php</b> file. At single user mode (a) this simply does not show any help for API configuration, at multiuser mode (b) it shows the link to the profile page."
     1176msgstr "Se você é um provedor e está hospedando instalações do WordPress para seus clientes, é possível desativar esta informação sobre como usar uma constante adicional em seu arquivo<b>wp-config.php</b>. No modo de usuário único (A) nenhum tipo de ajuda para configuração API será mostrada, em modo multiusuário (B) mostrará o link para a página de perfil."
     1177
     1178#: codestyling-localization.php:2719
     1179#: codestyling-localization.php:2958
     1180#: codestyling-localization.php:3020
     1181#@ codestyling-localization
     1182msgid "Compatibility"
     1183msgstr "Compatibilidade"
     1184
     1185#: codestyling-localization.php:2961
     1186#: codestyling-localization.php:3027
     1187#@ codestyling-localization
     1188msgid "Security Risk"
     1189msgstr "Risco de segurança"
     1190
     1191#: codestyling-localization.php:2965
     1192#@ codestyling-localization
     1193msgid "You like it?"
     1194msgstr "Gostou?"
     1195
     1196#: codestyling-localization.php:3034
     1197#@ codestyling-localization
     1198msgid "Memory Warning"
     1199msgstr "Aviso sobre memória"
     1200
     1201#: codestyling-localization.php:3035
     1202#@ codestyling-localization
     1203msgid "Since WordPress 3.x version it may require at least <strong>58MB</strong> PHP memory_limit! The reason is still unclear but it doesn't freeze anymore. Instead a error message will be shown and the scanning process aborts while reaching your limits."
     1204msgstr "Desde a versão 3.x do WordPress, a memória para o PHP deve ser de pelo menos <strong>58MB</strong>. Se atingir este limite durante uma anaálise, uma mensagem de erro aparecerá informando sobre isso."
     1205
     1206#: codestyling-localization.php:3041
     1207#@ codestyling-localization
     1208msgid "Language Folder"
     1209msgstr "Pasta do idioma"
     1210
     1211#: codestyling-localization.php:3042
     1212#@ codestyling-localization
     1213msgid "The translation file folder is ambiguous, please select by clicking the appropriated language file folder or ask the Author about!"
     1214msgstr "A pasta de arquivo de tradução está ambígua, clique na pasta apropriada para os arquivos de idioma ou então pergunte ao autor sobre isso."
     1215
     1216#: codestyling-localization.php:3088
     1217#@ codestyling-localization
     1218msgid "The original bbPress component doesn't contain a language directory."
     1219msgstr "O componente original bbPress não contém um diretório de idioma."
     1220
     1221#: codestyling-localization.php:3090
     1222#@ codestyling-localization
     1223msgid "try to create the bbPress language directory"
     1224msgstr "Tente criar a pasta de idiomas do bbPress."
     1225
     1226#: codestyling-localization.php:3128
     1227#@ codestyling-localization
     1228msgid "(informal)"
     1229msgstr "(informal)"
     1230
     1231#: codestyling-localization.php:3160
     1232#@ codestyling-localization
     1233msgid "(formal)"
     1234msgstr "(formal)"
     1235
     1236#: codestyling-localization.php:3191
     1237#@ codestyling-localization
     1238msgid "Warning"
     1239msgstr "Aviso"
     1240
     1241#: codestyling-localization.php:3191
     1242#@ codestyling-localization
     1243msgid "German translations are currently supported by a temporary workaround only, because they will be handled completely uncommon beside WordPress standards!"
     1244msgstr "A traduções em alemão são atualmente suportados por uma solução temporária, porque serão tratadas completamente diferentemente pelos padrões WordPress!"
     1245
     1246#: codestyling-localization.php:3242
     1247#@ codestyling-localization
     1248msgid "back to overview page &raquo;"
     1249msgstr "&laquo; Voltar para Visão Geral"
     1250
     1251#: codestyling-localization.php:3244
     1252#@ codestyling-localization
     1253msgid "Project-Id-Version:"
     1254msgstr "Projeto, ID e versão:"
     1255
     1256#: codestyling-localization.php:3258
     1257#@ codestyling-localization
     1258msgid "<strong>Error</strong>: The actual loaded translation content does not match the textdomain:"
     1259msgstr "<strong>Erro</strong>: O conteúdo traduzido e carregado atualmente não corresponde ao textdomain:"
     1260
     1261#: codestyling-localization.php:3260
     1262#@ codestyling-localization
     1263msgid "Expect, that any text you translate will not occure as long as the textdomain is mismatching!"
     1264msgstr "Qualquer texto que traduzir não aparecerá enquanto o textdomain estiver diferente!"
     1265
     1266#: codestyling-localization.php:3262
     1267#@ codestyling-localization
     1268msgid "This is a coding issue at the source files you try to translate, please contact the original Author and explain this mismatch."
     1269msgstr "Este é um problema de codificação nos arquivos de origem que está tentando traduzir, por favor contacte o autor e explique esse erro."
     1270
     1271#: codestyling-localization.php:3265
     1272#@ codestyling-localization
     1273msgid "<strong>Warning</strong>: The actual loaded translation content contains mixed textdomains and is not pure translateable within one textdomain."
     1274msgstr "<strong>Aviso</strong>: O conteúdo de tradução carregado atualmente contém textdomains mistos e não é totalmente traduzível dentro de um textdomain."
     1275
     1276#: codestyling-localization.php:3267
     1277#@ codestyling-localization
     1278msgid "It seems, that there is code contained extracted out of other plugins, themes or widgets and used by copy & paste inside some source files."
     1279msgstr "Parece que há código extraído de outros plugins, temas ou widgets dentro de alguns arquivos de origem."
     1280
     1281#: codestyling-localization.php:3269
     1282#@ codestyling-localization
     1283msgid "The affected unknown textdomains are:"
     1284msgstr "Os textdomains desconhecidos que serão afetados são:"
     1285
     1286#: codestyling-localization.php:3284
     1287#@ codestyling-localization
     1288msgid "Trailing Space"
     1289msgstr "Espaço extra"
     1290
     1291#: codestyling-localization.php:3884
     1292#, php-format
     1293#@ codestyling-localization
     1294msgid "You are trying to rescan files which expands above your PHP Memory Limit at %s MB during the analysis.<br/>Please enable the <em>low memory mode</em> for scanning this component."
     1295msgstr "Você está tentando analisar arquivos que ultrapassam o seu limite de memória destinado ao PHP que é de % MB durante a análise. <br/>Ative o modo<em>Memória reduzida</em> para analisar este componente."
     1296
     1297#: codestyling-localization.php:4115
     1298#, php-format
     1299#@ codestyling-localization
     1300msgid "You are trying to open a translation catalog which expands above your PHP Memory Limit at %s MB during read.<br/>Please enable the <em>low memory mode</em> for opening this components catalog."
     1301msgstr "Você está tentando abrir um catálogo de tradução que ultrapassa seu limite de memória PHP em %s MB durante aleitura. <br/> Ative o <em>Modo de memória reduzida</em> para abrir este catálogo."
     1302
     1303#: codestyling-localization.php:4692
     1304#: codestyling-localization.php:4695
     1305#: codestyling-localization.php:4735
     1306#@ codestyling-localization
     1307msgid "translate with API Service by"
     1308msgstr "Traduzir com API do serviço"
     1309
     1310#: codestyling-localization.php:4714
     1311#: codestyling-localization.php:4729
     1312#@ codestyling-localization
     1313msgid "Access Keys:"
     1314msgstr "Teclas de atalho:"
    8511315
    8521316#. translators: plugin header field 'Version'
    8531317#: codestyling-localization.php:0
    8541318#@ codestyling-localization
    855 msgid "1.99.21-beta"
    856 msgstr ""
    857 
    858 #: codestyling-localization.php:459
    859 #@ codestyling-localization
    860 msgid "<strong>Loading Issue: </strong>Author is using <em>load_textdomain</em> instead of <em>load_plugin_textdomain</em> function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that."
    861 msgstr ""
    862 
    863 #: codestyling-localization.php:508
    864 #@ codestyling-localization
    865 msgid "<strong>Full Encryped PHP Code: </strong>This plugin consists out of encryped code will be <strong>eval</strong>'d at runtime! It can't be checked against exploitable code pieces. That's why it will become potential target of hidden intrusion."
    866 msgstr ""
    867 
    868 #: codestyling-localization.php:513
    869 #@ codestyling-localization
    870 msgid "<strong>Textdomain definition: </strong>This plugin provides a textdomain definition at plugin header fields but seems not to load any translation file. If it doesn't show your translation, please contact the plugin Author."
    871 msgstr ""
    872 
    873 #: codestyling-localization.php:541
    874 #: codestyling-localization.php:567
    875 #@ codestyling-localization
    876 msgid "<strong>Textdomain definition: </strong>There are problems to find the used textdomain. It has been taken from existing translation files. If it doesn't work with your install, please contact the Author of this plugin."
    877 msgstr ""
    878 
    879 #: codestyling-localization.php:737
    880 #@ codestyling-localization
    881 msgid "<strong>Loading Issue: </strong>Author is using <em>load_textdomain</em> instead of <em>load_theme_textdomain</em> or <em>load_child_theme_textdomain</em> function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that."
    882 msgstr ""
    883 
    884 #: codestyling-localization.php:743
    885 #@ codestyling-localization
    886 msgid "<strong>Textdomain Naming Issue: </strong>Author uses a variable to load the textdomain. It will be assumed to be equal to theme name now."
    887 msgstr ""
    888 
    889 #: codestyling-localization.php:788
     1319msgid "1.99.24"
     1320msgstr "1.99.24"
     1321
     1322#: codestyling-localization.php:1775
     1323#: codestyling-localization.php:2542
     1324#: codestyling-localization.php:2860
     1325#: codestyling-localization.php:2868
     1326#: codestyling-localization.php:3020
     1327#: codestyling-localization.php:3105
     1328#: codestyling-localization.php:3263
     1329#: codestyling-localization.php:3271
     1330#: codestyling-localization.php:3272
     1331#@ codestyling-localization
     1332msgid "What does that mean?"
     1333msgstr "O que significa?"
     1334
     1335#: codestyling-localization.php:2092
     1336#@ codestyling-localization
     1337msgid "... translate your WordPress, Plugins and Themes"
     1338msgstr "...traduza seu Wordpress, Plugins e Temas"
     1339
     1340#: codestyling-localization.php:2110
     1341#@ codestyling-localization
     1342msgid "PHP Memory Limit Problems"
     1343msgstr "Problemas de limite de memória para o PHP"
     1344
     1345#: codestyling-localization.php:2116
     1346#@ codestyling-localization
     1347msgid "It could be, that your provider confirms, that you have enough PHP memory for your installation but it is not. You can detect your real available memory limit using the plugin <a href=\"http://wordpress.org/extend/plugins/wp-system-health/\" target=\"_blank\">WP System Health</a>. It has a build in feature (called <em>Test Suite</em>) to evaluate correctly the memory limit the server will permit."
     1348msgstr "Pode ser que seu provedor confirme que você tem memória PHP suficiente para sua instalação, mas pode não ser verdade. Você pode detectar o limite de memória real disponível usando o plugin <a href=\"http://wordpress.org/extend/plugins/wp-system-health/\" target=\"_blank\">WP System Health</a>. Este plugin conte'm um recurso (chamado <em>Test Suite</em>) para avaliar corretamente o limite de memória permitido pelo servidor."
     1349
     1350#: codestyling-localization.php:2124
     1351#@ codestyling-localization
     1352msgid "Compatibility - Hints and Errors"
     1353msgstr "Compatibilidade - Dicas e Erros"
     1354
     1355#: codestyling-localization.php:2152
     1356#@ codestyling-localization
     1357msgid "What is a textdomain?"
     1358msgstr "O que é um textdomain?"
     1359
     1360#: codestyling-localization.php:2182
     1361#@ codestyling-localization
     1362msgid "File Permission and Access Rights"
     1363msgstr "Permissões de Arquivo e Direitos de Acesso"
     1364
     1365#: codestyling-localization.php:2185
     1366#@ codestyling-localization
     1367msgid "Your provider does not permit the ability to modify files at your installation by executed scripts. This translation plugins requires this permission to work properly. WordPress solves this at updates by presenting a dialog for your FTP parameters. This plugin will prompt for your FTP credentials if they are required."
     1368msgstr "Seu serviço de hospedagem não permite modificar arquivos de sua instalação por scripts executados. Este plugin de tradução requer essa permissão para funcionar corretamente. O WordPress resolve isto apresentando uma caixa de diálogo com seus dados de acesso FTP. O CodeStyling pode solicitar suas credenciais de FTP, se for preciso."
     1369
     1370#: codestyling-localization.php:2188
     1371#@ codestyling-localization
     1372msgid "Permit File Modifications without prompting for User Credentials"
     1373msgstr "Permitir modificações de arquivo sem solicitar credenciais do usuário"
     1374
     1375#: codestyling-localization.php:2191
     1376#@ codestyling-localization
     1377msgid "You can define the necessary constants at your <em>wp-config.php</em> file as described at the <a href=\"http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants\" target=\"_blank\">WordPress Codex Page - Upgrade Constants</a> to get it working at your installation without recurrently occuring credential requests. If your constants are properly defined, this plugin will work smoothly and the WordPress Automatic Updates will work without any further question about FTP User Credentials too."
     1378msgstr "Você pode definir as constantes necessárias em seu arquivo <em>wp-config.php</em> como descrito no Codex em <a href=\"http://codex.wordpress.org/pt-br:Editando_wp-config.php#Constantes_de_Atualização_WordPress\" target=\"_blank\">Editando o arquivo wp-config - Constantes de Atualização WordPress</a>"
     1379
     1380#: codestyling-localization.php:2200
     1381#@ codestyling-localization
     1382msgid "Extended Translation File Format"
     1383msgstr "Arquivo de tradução com formato estendido"
     1384
     1385#: codestyling-localization.php:2203
     1386#@ codestyling-localization
     1387msgid "You may get an error message if you try to open a translation file for editing. The reason behind is the necessary separation of contained textdomains within your components code to be translated."
     1388msgstr "Você pode receber uma mensagem de erro se tentar abrir um arquivo de tradução para edição. A razão por trás disso é a necessária separação dos textdomains contidos dentro do código dos componentes a serem traduzidas."
     1389
     1390#: codestyling-localization.php:2206
     1391#@ codestyling-localization
     1392msgid "Many authors do not care, if they mix up textdomains during code writing. Furthermore the textdomain <b><em>default</em></b> will be used by WordPress itself only. Any text assigned to the textdomain <b><em>default</em></b> will become untranslated at output even if you would translate it. Thats why this plugin separates this textdomains to show up possible mistakes."
     1393msgstr "Muitos autores não se importam em misturar textdomains durante a escrita de código. Além disso, o textdomain <b><em>padrão</em></b> será usado pelo WordPress. Qualquer texto atribuído ao <b><em>padrão</em></b> vai ficar sem tradução na saída, mesmo que traduzi-lo. É por isso que este plugin separa este textdomains e mostra possíveis erros."
     1394
     1395#: codestyling-localization.php:2209
     1396#@ codestyling-localization
     1397msgid "How to edit files with this error message ?"
     1398msgstr "Como editar arquivos com essa mensagem de erro?"
     1399
     1400#: codestyling-localization.php:2212
     1401#@ codestyling-localization
     1402msgid "Just go back the the overview page, search your affected plugin/theme and re-scan the translation content. Afterwards it will be possible to open the translation file for editing."
     1403msgstr "Basta voltar a página de Visão Geral, procurar seu plugin/tema afetado e e reanalisar o conteúdo da tradução. Posteriormente, será possível abrir o arquivo de tradução para a edição."
     1404
     1405#: codestyling-localization.php:2220
     1406#@ codestyling-localization
     1407msgid "Working with Child Theme Translations"
     1408msgstr "Trabalhando com traduções de Temas filhos"
     1409
     1410#: codestyling-localization.php:2223
     1411#@ codestyling-localization
     1412msgid "Child Themes are using in normal cases the translation files of the main theme. In some cases it could be necessary to have a separate language file handling at the Child Theme itself."
     1413msgstr "Temas filho também usam os mesmos arquivos de tradução do tema pari. Em alguns casos pode ser necessário ter um arquivo separado para o tema filho."
     1414
     1415#: codestyling-localization.php:2226
     1416#@ codestyling-localization
     1417msgid "How to make your Child Theme ready to use its own translation files?"
     1418msgstr "Como fazer um Tema filho usar seus próprios arquivos de tradução?"
     1419
     1420#: codestyling-localization.php:2229
     1421#@ codestyling-localization
     1422msgid "First of all you have to modify your Child Themes <em>functions.php</em> file and call the appropriated load method as shown below. Assume the textdomain is defined at the Main Theme as <b>supertheme</b> the load function should look like:"
     1423msgstr "Primeiro de tudo você tem que modificar o arquivo <em>functions.php</em> do seu tema filho para chamar o método apropriado como mostrado abaixo. Suponha que o textdomain é definido no tema pai como <b>supertheme </b> então a função de carregamento deve ser:"
     1424
     1425#: codestyling-localization.php:2233
     1426#@ codestyling-localization
     1427msgid "The path has been defined as subdirectory within the Child Themes directory but you can skip the directory parameter and place the language files at the Child Themes main folder."
     1428msgstr "O caminho é definido como subdiretório dentro do diretório do tema filho, mas você pode ignorar o parâmetro de diretório e colocar os arquivos de idioma diretamente na pasta do tema filho."
     1429
     1430#: codestyling-localization.php:2236
     1431#@ codestyling-localization
     1432msgid "(Re)scan process and Synchronization at Child Themes"
     1433msgstr "Processo de (re)análise e sincronização com temas filhos"
     1434
     1435#: codestyling-localization.php:2239
     1436#@ codestyling-localization
     1437msgid "Scanning a Child Theme always includes the files from Main Theme too. So you always get the mixed translation from Main and Child Theme. Doing a Synchronization with the Main Theme will preserve the texts from Child Theme and will attach new texts from Main Theme only."
     1438msgstr "Analisar um Tema filho também inclui os arquivos do tema pai Assim, você sempre vai obter uma tradução mista do tema para e do tema filho. A sincronização com o tema pai preserva os textos do tema filho e anexa novos textos a partir do tema pai apenas."
     1439
     1440#: codestyling-localization.php:2247
     1441#@ codestyling-localization
     1442msgid "Scripting Guard - hardening against plugin/theme based malformed script injections"
     1443msgstr "Proteção de Scriptings - protege contra injeções de scripts mal-feitas"
     1444
     1445#: codestyling-localization.php:2250
     1446#@ codestyling-localization
     1447msgid "Some authors of plugins and themes does not care about how they attach javascripts into WordPress backend pages. They pollute pages from other plugins with their own script code and damage the proper function of those plugins."
     1448msgstr "Alguns autores de temas ou plugins não se importam sobre como anexar javascripts em páginas do painel do WordPress. Eles poluem as páginas de outros plugins com seus scripts e assim podem danificar o bom funcionamento de outros plugins."
     1449
     1450#: codestyling-localization.php:2253
     1451#@ codestyling-localization
     1452msgid "The plugin <em>Codestyling Localization</em> introduced a high sophisticated inject detection and will show error messages, if themes or plugins try to inject their own scripts into this plugin pages. Furthermore all embedded scripts will be safe guarded and traced in case they will raise runtime exceptions. Doing so this plugin protects itself of malfunction caused by 3rd party plugin/theme authors. This will ensure the correct behavoir for this page, but expect at other backend pages malfunctioning code, because this is a global issue."
     1453msgstr "O <em>Codestyling Localization</em> agora tem um detector de injeções de scripts sofisticado e mostrará mensagens de erro, se temas ou plugins tentam injetar seus scripts em páginas deste plugin. Além disso todos os scripts incorporados serão vigiados e rastreado caso eles criem exceções de tempo de execução. Ao fazer isso, este plugin se protege de danos causados por plugins/temas de terceiros. Isto irá assegurar o funcionamento correto para deste painel."
     1454
     1455#: codestyling-localization.php:2256
     1456#@ codestyling-localization
     1457msgid "CDN - Javascripts loaded using Content Delivery Networks instead of WordPress provide files"
     1458msgstr "CDN - Javascripts carregados usando Redes de Entrega de Conteúdo WordPress em vez de fornecer arquivos"
     1459
     1460#: codestyling-localization.php:2259
     1461#@ codestyling-localization
     1462msgid "Some Blog owner decide to replace the location where the Javascripts will be loaded from by using a Plugin. In normal cases this should work proper but sometimes WordPress includes versions of Scripts not yet hosted at CDN provider. The Guard will threat CDN usage as warning and checks if all files can be load from CDN. If not possible to load at least one file, additionally an error message will be issued to show, that this page will not work as expected."
     1463msgstr "Alguns proprietário do Blog substituem o local de onde seus Javascripts serão carregados usando um plugin. Em situações normais, isso deve funcionar, mas às vezes o WordPress inclui versões de Scripts ainda não hospedados no provedor de CDN. A Guarda vai verificar se todos os arquivos podem obtidos a partir de CDN. Se não for possível carregar pelo menos um arquivo, uma mensagem de erro será emitida para mostrar,que a página não funcionará como esperado."
     1464
     1465#: codestyling-localization.php:2262
     1466#@ codestyling-localization
     1467msgid "What can I do, if I get this protection message alert?"
     1468msgstr "O que posso fazer se receber o aviso de proteção?"
     1469
     1470#: codestyling-localization.php:2265
     1471#@ codestyling-localization
     1472msgid "If your Installation has this kind of problems, please contact the author of theme or plugin(s) which inject their script code either accidentally or intentionally (click message details). He/she must repair the affected theme/plugin to play nicely with other plugins at WordPress backend and/or restrict its scripts to the 3rd party theme/plugin pages only."
     1473msgstr "Se sua instalação tem este tipo de problemas, entre em contato com o autor do tema ou plugin (s) que injeta o código de script acidentalmente ou intencionalmente (clique em detalhes da mensagem). O autor deve corrigir o tema/plugin afetado para que funcione bem com outros plugins no WordPress e/ou restringir seus scripts somente para a página do tem/plugin."
     1474
     1475#: codestyling-localization.php:2268
     1476#@ codestyling-localization
     1477msgid "Theme & Plugin Authors - exclusion from Guard for developers"
     1478msgstr "Autores de Tema & Plugin - exclusão da Guarda para desenvolvedores"
     1479
     1480#: codestyling-localization.php:2271
     1481#@ codestyling-localization
     1482msgid "You may have written a Plugin or Theme that requires scripts at all pages but play nicely at backend pages. In those cases please send me an email with your repository link. I will check this Plugin or Theme and exclude it from trace, if the test will show, that it is working well."
     1483msgstr "Você pode ter escrito um plugin ou tema que requer scripts em todas as páginas, mas fa,a direito nas páginas do painel. Nesses casos, por favor me envie um email (em inglês) com o link do repositório. Vou verificar o Plugin ou Tema e excluí-lo do rastreio, se o teste mostrar que ele está funcionando bem."
     1484
     1485#: codestyling-localization.php:2542
     1486#: codestyling-localization.php:2751
     1487#@ codestyling-localization
     1488msgid "Scripting Guard"
     1489msgstr "Proteção de Scriptings"
     1490
     1491#: codestyling-localization.php:2542
     1492#@ codestyling-localization
     1493msgid "details"
     1494msgstr "Detalhes"
     1495
     1496#: codestyling-localization.php:2542
    8901497#, php-format
    8911498#@ codestyling-localization
    892 msgid "<strong>Naming Issue: </strong>Author uses unsupported language file naming convention! Instead of example <em>de_DE.po</em> the non theme standard version <em>%s</em> has been used. If you translate this Theme, only renamed language files will be working!"
    893 msgstr ""
    894 
    895 #: codestyling-localization.php:850
    896 #@ codestyling-localization
    897 msgid "<strong>Textdomain Naming Issue: </strong>Author uses a variable to define the textdomain constant. It will be assumed to be equal to theme name now."
    898 msgstr ""
    899 
    900 #: codestyling-localization.php:857
    901 #@ codestyling-localization
    902 msgid "<strong>WooThemes Issue: </strong>The Author is known for not supporting a translatable backend. Please expect only translations for frontend or contact the Author for support!"
    903 msgstr ""
    904 
    905 #: codestyling-localization.php:861
    906 #@ codestyling-localization
    907 msgid "<strong>Ares Theme Issue: </strong>This theme uses a textdomain defined by string concatination code. The textdomain will be patched to 'AresLanguage', please contact the theme author to change this into a fix constant value! "
    908 msgstr ""
    909 
    910 #: codestyling-localization.php:876
    911 #@ codestyling-localization
    912 msgid "BuddyPress"
    913 msgstr ""
    914 
    915 #: codestyling-localization.php:921
    916 #@ codestyling-localization
    917 msgid "bbPress"
    918 msgstr ""
    919 
    920 #: codestyling-localization.php:1659
    921 #: codestyling-localization.php:1859
    922 #: codestyling-localization.php:1927
     1499msgid "The Plugin <em>Codestyling Localization</em> was forced to protect its own page rendering process against <b>%s</b> %s !"
     1500msgstr "O <em>Codestyling Localization</em> foi forçado a proteger seu próprio processo no painel contra <b>%s</b> %s !"
     1501
     1502#: codestyling-localization.php:2542
     1503#@ codestyling-localization
     1504msgid "incident"
     1505msgid_plural "incidents"
     1506msgstr[0] "incidente"
     1507msgstr[1] "incidentes"
     1508
     1509#: codestyling-localization.php:2548
     1510#@ codestyling-localization
     1511msgid "Malfunction at admin script core detected !"
     1512msgstr "Detectado mau funcionamento no script do núcleo do administrador!"
     1513
     1514#: codestyling-localization.php:2549
     1515#: codestyling-localization.php:2608
     1516#: codestyling-localization.php:2623
     1517#@ codestyling-localization
     1518msgid "Reason:"
     1519msgstr "Motivo:"
     1520
     1521#: codestyling-localization.php:2549
     1522#@ codestyling-localization
     1523msgid "misplaced core file(s) enqueued"
     1524msgstr "arquivo(s) de núcleos em local errado"
     1525
     1526#: codestyling-localization.php:2550
     1527#: codestyling-localization.php:2609
     1528#: codestyling-localization.php:2624
     1529#@ codestyling-localization
     1530msgid "Polluter:"
     1531msgstr "Poluidor:"
     1532
     1533#: codestyling-localization.php:2550
     1534#: codestyling-localization.php:2624
     1535#@ codestyling-localization
     1536msgid "probably by Theme or Plugin"
     1537msgstr "provavelmente por Tema ou Plugin"
     1538
     1539#: codestyling-localization.php:2551
     1540#@ codestyling-localization
     1541msgid "Below listed scripts has been dequeued because of injection:"
     1542msgstr "Os scripts listados abaixo foram removidos da fila por causa da injeção:"
     1543
     1544#: codestyling-localization.php:2563
     1545#@ codestyling-localization
     1546msgid "Malfunction at current Theme detected!"
     1547msgstr "Detectado mau funcionamento do tema atual."
     1548
     1549#: codestyling-localization.php:2564
     1550#: codestyling-localization.php:2592
     1551#@ codestyling-localization
     1552msgid "Name:"
     1553msgstr "Nome:"
     1554
     1555#: codestyling-localization.php:2565
     1556#: codestyling-localization.php:2593
     1557#@ codestyling-localization
     1558msgid "Author:"
     1559msgstr "Autor:"
     1560
     1561#: codestyling-localization.php:2566
     1562#: codestyling-localization.php:2594
     1563#@ codestyling-localization
     1564msgid "Below listed scripts has been automatically stripped because of injection:"
     1565msgstr "Os scripts listados abaixo foram removidos causa da injeção:"
     1566
     1567#: codestyling-localization.php:2591
     1568#@ codestyling-localization
     1569msgid "Malfunction at 3rd party Plugin detected!"
     1570msgstr "Detectado mau funcionamento em plugin de terceiros!"
     1571
     1572#: codestyling-localization.php:2607
     1573#@ codestyling-localization
     1574msgid "Malfunction at 3rd party inlined Javascript(s) detected!"
     1575msgstr "Detectado mau funcionamento em Javascript(s) de terceiros!"
     1576
     1577#: codestyling-localization.php:2608
     1578#@ codestyling-localization
     1579msgid "javascript runtime exception"
     1580msgstr " exceção de tempo de execução de javascript"
     1581
     1582#: codestyling-localization.php:2610
     1583#@ codestyling-localization
     1584msgid "Below listed exception(s) has been caught and traced:"
     1585msgstr "Os scripts listados abaixo foram capturados e rastreados:"
     1586
     1587#: codestyling-localization.php:2622
     1588#@ codestyling-localization
     1589msgid "Malfunction at dubious external scripts detected !"
     1590msgstr "Detectado scripts externos de conduta duvidosa!"
     1591
     1592#: codestyling-localization.php:2623
     1593#@ codestyling-localization
     1594msgid "unknown external script has been enqueued or hardly attached."
     1595msgstr "u, script externo desconhecido foi enfileirados ou mal inserido."
     1596
     1597#: codestyling-localization.php:2625
     1598#@ codestyling-localization
     1599msgid "Below listed external scripts have been traced, verified and automatically stripped because of injection:"
     1600msgstr "Os scripts listados abaixo foram rastreados, verificados e automaticamente e removidos por causa da injeção:"
     1601
     1602#: codestyling-localization.php:2640
     1603#: codestyling-localization.php:2667
    9231604#, php-format
    9241605#@ codestyling-localization
    925 msgid "You do not have the permission to write to the file '%s'."
    926 msgstr ""
    927 
    928 #: codestyling-localization.php:1756
    929 #@ codestyling-localization
    930 msgid "Your translation file doesn't support the <em>multiple textdomains in one translation file</em> extension.<br/>Please re-scan the related source files at the overview page to enable this feature."
    931 msgstr ""
    932 
    933 #: codestyling-localization.php:1920
    934 #@ codestyling-localization
    935 msgid "You are trying to create an empty mo-file without any translations. This is not possible, please translate at least one entry."
    936 msgstr ""
    937 
    938 #: codestyling-localization.php:1947
    939 #@ codestyling-localization
    940 msgid "You do not have the permission to create a new Language File Path.<br/>Please create the appropriated path using your FTP access."
    941 msgstr ""
    942 
    943 #: codestyling-localization.php:1967
    944 #@ codestyling-localization
    945 msgid "You do not have the permission to choose the translation file directory<br/>Please upload at least one language file (*.mo|*.po) or an empty template file (*.pot) at the appropriated folder using FTP."
    946 msgstr ""
    947 
    948 #: codestyling-localization.php:2025
    949 #@ codestyling-localization
    950 msgid "While get in touch with WordPress you will find out, that the initial delivery package comes only with english localization. If you want WordPress to show your native language, you have to provide the appropriated language file at languages folder. This files will be used to replace the english text phrases during the process of page generation. This translation capability has the origin at the gettext functionality which currently been used across a wide range of open source projects."
    951 msgstr ""
    952 
    953 #: codestyling-localization.php:2032
    954 #@ codestyling-localization
    955 msgid "Dashboard in your Language"
    956 msgstr ""
    957 
    958 #: codestyling-localization.php:2040
    959 #: codestyling-localization.php:2253
    960 #@ codestyling-localization
    961 msgid "If your Installation is running under low remaining memory conditions, you will face the memory limit error during scan process or opening catalog content. If you hitting your limit, you can enable this special mode. This will try to perform the actions in a slightly different way but that will lead to a considerably slower response times but nevertheless gives no warranty, that it will solve your memory related problems at all cases."
    962 msgstr ""
    963 
    964 #: codestyling-localization.php:2048
    965 #@ codestyling-localization
    966 msgid "If you get compatibility warnings, than they are often related to a wrong usage of WordPress core functionality by the authors of the affected Themes or Plugins."
    967 msgstr ""
    968 
    969 #: codestyling-localization.php:2049
    970 #@ codestyling-localization
    971 msgid "There are several reason for such reports, but in each of this cases only the original author can solve it:"
    972 msgstr ""
    973 
    974 #: codestyling-localization.php:2054
    975 #@ codestyling-localization
    976 msgid "Loading of translation files will be performed beside the WordPress standard functionality."
    977 msgstr ""
    978 
    979 #: codestyling-localization.php:2057
    980 #@ codestyling-localization
    981 msgid "Textdomains can not be parsed from source files because of used coding syntax."
    982 msgstr ""
    983 
    984 #: codestyling-localization.php:2060
    985 #@ codestyling-localization
    986 msgid "Component seems to be translatable but doesn't use a translation file load call."
    987 msgstr ""
    988 
    989 #: codestyling-localization.php:2065
    990 #: codestyling-localization.php:2092
    991 #@ codestyling-localization
    992 msgid "Reported issues are not a problem of <em>Codestyling Localization</em>, it's caused by the author of the affected component within it's code."
    993 msgstr ""
    994 
    995 #: codestyling-localization.php:2073
    996 #@ codestyling-localization
    997 msgid "Textdomains are used to specified the context for the translation file to be loaded and processed. If a component tries to load a translation file using a textdomain, all texts assigned to this domain gets translated during page creation."
    998 msgstr ""
    999 
    1000 #: codestyling-localization.php:2076
    1001 #@ codestyling-localization
    1002 msgid "The extended feature for textdomain separation shows at dropdown box <i>Textdomain</i> the pre-selected primary textdomain."
    1003 msgstr ""
    1004 
    1005 #: codestyling-localization.php:2082
    1006 #@ codestyling-localization
    1007 msgid "Warning Messages"
    1008 msgstr ""
    1009 
    1010 #: codestyling-localization.php:2085
    1011 #@ codestyling-localization
    1012 msgid "If you get warnings either at the overview page or at the editor page, somethings is wrong within the analysed component."
    1013 msgstr ""
    1014 
    1015 #: codestyling-localization.php:2086
    1016 #@ codestyling-localization
    1017 msgid "The overview page will show warnings, if the textdomain can not be found clearly. In this case the author has written the components code in a way make it hard to detect."
    1018 msgstr ""
    1019 
    1020 #: codestyling-localization.php:2089
    1021 #@ codestyling-localization
    1022 msgid "Warnings at the editors view will show up, if the component is using badly coded textdomains. This could be either by integration of other plugins code or accidentally by typing mistakes."
    1023 msgstr ""
    1024 
    1025 #: codestyling-localization.php:2123
    1026 #@ codestyling-localization
    1027 msgid "Overview"
    1028 msgstr ""
    1029 
    1030 #: codestyling-localization.php:2129
    1031 #@ codestyling-localization
    1032 msgid "Low Memory Mode"
    1033 msgstr ""
    1034 
    1035 #: codestyling-localization.php:2137
    1036 #@ codestyling-localization
    1037 msgid "Compatibility / Warnings"
    1038 msgstr ""
    1039 
    1040 #: codestyling-localization.php:2149
    1041 #@ codestyling-localization
    1042 msgid "For more information:"
    1043 msgstr ""
    1044 
    1045 #: codestyling-localization.php:2151
    1046 #@ codestyling-localization
    1047 msgid "Trac Development Log"
    1048 msgstr ""
    1049 
    1050 #: codestyling-localization.php:2152
    1051 #@ codestyling-localization
    1052 msgid "Plugin Support Forum"
    1053 msgstr ""
    1054 
    1055 #: codestyling-localization.php:2189
    1056 #@ codestyling-localization
    1057 msgid "Translation API Keys"
    1058 msgstr ""
    1059 
    1060 #: codestyling-localization.php:2192
    1061 #@ codestyling-localization
    1062 msgid "Google Translate API Key"
    1063 msgstr ""
    1064 
    1065 #: codestyling-localization.php:2196
    1066 #@ codestyling-localization
    1067 msgid "Microsoft Translator - Client ID"
    1068 msgstr ""
    1069 
    1070 #: codestyling-localization.php:2200
    1071 #@ codestyling-localization
    1072 msgid "Microsoft Translator - Client Secret"
    1073 msgstr ""
    1074 
    1075 #: codestyling-localization.php:2251
    1076 #@ codestyling-localization
    1077 msgid "enable low memory mode"
    1078 msgstr ""
    1079 
    1080 #: codestyling-localization.php:2255
    1081 #: codestyling-localization.php:2412
    1082 #: codestyling-localization.php:2647
    1083 #: codestyling-localization.php:2655
    1084 #: codestyling-localization.php:2656
    1085 #@ codestyling-localization
    1086 msgid "What's this?"
    1087 msgstr ""
    1088 
    1089 #: codestyling-localization.php:2259
    1090 #@ codestyling-localization
    1091 msgid "Translation Service-APIs:"
    1092 msgstr ""
    1093 
    1094 #: codestyling-localization.php:2260
    1095 #@ codestyling-localization
    1096 msgid "None"
    1097 msgstr ""
    1098 
    1099 #: codestyling-localization.php:2261
    1100 #@ codestyling-localization
    1101 msgid "Google"
    1102 msgstr ""
    1103 
    1104 #: codestyling-localization.php:2262
    1105 #@ codestyling-localization
    1106 msgid "Microsoft"
    1107 msgstr ""
    1108 
    1109 #: codestyling-localization.php:2265
    1110 #@ codestyling-localization
    1111 msgid "User Profile settings..."
    1112 msgstr ""
    1113 
    1114 #: codestyling-localization.php:2268
    1115 #@ codestyling-localization
    1116 msgid "How to use translation API services..."
    1117 msgstr ""
    1118 
    1119 #: codestyling-localization.php:2273
    1120 #@ codestyling-localization
    1121 msgid "a) Global Unique Keys - single user configuration"
    1122 msgstr ""
    1123 
    1124 #: codestyling-localization.php:2276
    1125 #: codestyling-localization.php:2282
    1126 #: codestyling-localization.php:2300
    1127 #: codestyling-localization.php:2308
    1128 #: codestyling-localization.php:2328
    1129 #@ codestyling-localization
    1130 msgid "Attention:"
    1131 msgstr ""
    1132 
    1133 #: codestyling-localization.php:2276
    1134 #@ codestyling-localization
    1135 msgid "Keep in mind, that any WordPress administrator can use the service for translation purpose and may raise your costs in case of paid option used."
    1136 msgstr ""
    1137 
    1138 #: codestyling-localization.php:2283
     1606msgid "%d file"
     1607msgid_plural "%d files"
     1608msgstr[0] "%d arquivo"
     1609msgstr[1] "%d arquivos"
     1610
     1611#: codestyling-localization.php:2641
     1612#: codestyling-localization.php:2668
    11391613#, php-format
    11401614#@ codestyling-localization
    1141 msgid "This API is not longer a free service, Google has relaunched the API in version 2 as a pay per use service. Please read the explantions at %s first."
    1142 msgstr ""
    1143 
    1144 #: codestyling-localization.php:2284
    1145 #@ codestyling-localization
    1146 msgid "Using this API within <em>Codestyling Localization</em> requires an API Key to be created at your Google account first. Once you have such a key, you can activate this API by defining a new constant at your <b>wp-config.php</b> file:"
    1147 msgstr ""
    1148 
    1149 #: codestyling-localization.php:2292
    1150 #, php-format
    1151 #@ codestyling-localization
    1152 msgid "Microsoft provides the translation services with a free option of 2 million characters per month. But this also requires a subscription at %s either for free or for extended payed service volumes."
    1153 msgstr ""
    1154 
    1155 #: codestyling-localization.php:2293
    1156 #@ codestyling-localization
    1157 msgid "Using this API within <em>Codestyling Localization</em> requires <em>client_id</em> and <em>client_secret</em> to be created at your Azure subscription first. Once you have this values, you can activate this API by defining new constants at your <b>wp-config.php</b> file:"
    1158 msgstr ""
    1159 
    1160 #: codestyling-localization.php:2300
    1161 #@ codestyling-localization
    1162 msgid "This API additionally requires PHP curl functions and will not be available without. Current curl version:"
    1163 msgstr ""
    1164 
    1165 #: codestyling-localization.php:2301
    1166 #@ codestyling-localization
    1167 msgid "not installed"
    1168 msgstr ""
    1169 
    1170 #: codestyling-localization.php:2305
    1171 #@ codestyling-localization
    1172 msgid "b) User Dedicated Keys - multiple user configurations"
    1173 msgstr ""
    1174 
    1175 #: codestyling-localization.php:2308
    1176 #@ codestyling-localization
    1177 msgid "This will extends all <em>User Profile</em> pages with a new section to enter all required translation key data. Keep im mind, that this data are stored at the database and are contained at SQL backups."
    1178 msgstr ""
    1179 
    1180 #: codestyling-localization.php:2312
    1181 #@ codestyling-localization
    1182 msgid "You can activate the per user behavoir, if you define only a single constant at your <b>wp-config.php</b> file. This enables the new section at each <a target=\"_blank\" href=\"profile.php?#translations\">User Profile</a> with sufficiant permissions and is only editable by the releated logged in user."
    1183 msgstr ""
    1184 
    1185 #: codestyling-localization.php:2317
    1186 #@ codestyling-localization
    1187 msgid "Special Hosting Configuration"
    1188 msgstr ""
    1189 
    1190 #: codestyling-localization.php:2320
    1191 #@ codestyling-localization
    1192 msgid "If your are a provider and you are hosting WordPress installations for your customer, it is possible to deactivate this help information using an additional constant at your <b>wp-config.php</b> file. At single user mode (a) this simply does not show any help for API configuration, at multiuser mode (b) it shows the link to the profile page."
    1193 msgstr ""
    1194 
    1195 #: codestyling-localization.php:2328
    1196 #@ codestyling-localization
    1197 msgid "You have a running version of WP e-Commerce and it has been programmed to deactivate the javascript library prototype.js at each WordPress backend page! I did a work arround that, in case of issues read my article: <a href=\"http://www.code-styling.de/english/wp-e-commerce-breaks-intentionally-other-plugins-or-themes\">WP e-Commerce breaks intentionally other Plugins or Themes</a>"
    1198 msgstr ""
    1199 
    1200 #: codestyling-localization.php:2350
    1201 #: codestyling-localization.php:2412
    1202 #@ codestyling-localization
    1203 msgid "Compatibility"
    1204 msgstr ""
    1205 
    1206 #: codestyling-localization.php:2353
    1207 #: codestyling-localization.php:2419
    1208 #@ codestyling-localization
    1209 msgid "Security Risk"
    1210 msgstr ""
    1211 
    1212 #: codestyling-localization.php:2357
    1213 #@ codestyling-localization
    1214 msgid "You like it?"
    1215 msgstr ""
    1216 
    1217 #: codestyling-localization.php:2426
    1218 #@ codestyling-localization
    1219 msgid "Memory Warning"
    1220 msgstr ""
    1221 
    1222 #: codestyling-localization.php:2427
    1223 #@ codestyling-localization
    1224 msgid "Since WordPress 3.x version it may require at least <strong>58MB</strong> PHP memory_limit! The reason is still unclear but it doesn't freeze anymore. Instead a error message will be shown and the scanning process aborts while reaching your limits."
    1225 msgstr ""
    1226 
    1227 #: codestyling-localization.php:2433
    1228 #@ codestyling-localization
    1229 msgid "Language Folder"
    1230 msgstr ""
    1231 
    1232 #: codestyling-localization.php:2434
    1233 #@ codestyling-localization
    1234 msgid "The translation file folder is ambiguous, please select by clicking the appropriated language file folder or ask the Author about!"
    1235 msgstr ""
    1236 
    1237 #: codestyling-localization.php:2480
    1238 #@ codestyling-localization
    1239 msgid "The original bbPress component doesn't contain a language directory."
    1240 msgstr ""
    1241 
    1242 #: codestyling-localization.php:2482
    1243 #@ codestyling-localization
    1244 msgid "try to create the bbPress language directory"
    1245 msgstr ""
    1246 
    1247 #: codestyling-localization.php:2516
    1248 #@ codestyling-localization
    1249 msgid "(informal)"
    1250 msgstr ""
    1251 
    1252 #: codestyling-localization.php:2548
    1253 #@ codestyling-localization
    1254 msgid "(formal)"
    1255 msgstr ""
    1256 
    1257 #: codestyling-localization.php:2579
    1258 #@ codestyling-localization
    1259 msgid "Warning"
    1260 msgstr ""
    1261 
    1262 #: codestyling-localization.php:2579
    1263 #@ codestyling-localization
    1264 msgid "German translations are currently supported by a temporary workaround only, because they will be handled completely uncommon beside WordPress standards!"
    1265 msgstr ""
    1266 
    1267 #: codestyling-localization.php:2626
    1268 #@ codestyling-localization
    1269 msgid "back to overview page &raquo;"
    1270 msgstr ""
    1271 
    1272 #: codestyling-localization.php:2628
    1273 #@ codestyling-localization
    1274 msgid "Project-Id-Version:"
    1275 msgstr ""
    1276 
    1277 #: codestyling-localization.php:2642
    1278 #@ codestyling-localization
    1279 msgid "<strong>Error</strong>: The actual loaded translation content does not match the textdomain:"
    1280 msgstr ""
    1281 
    1282 #: codestyling-localization.php:2644
    1283 #@ codestyling-localization
    1284 msgid "Expect, that any text you translate will not occure as long as the textdomain is mismatching!"
    1285 msgstr ""
    1286 
    1287 #: codestyling-localization.php:2646
    1288 #@ codestyling-localization
    1289 msgid "This is a coding issue at the source files you try to translate, please contact the original Author and explain this mismatch."
    1290 msgstr ""
    1291 
    1292 #: codestyling-localization.php:2649
    1293 #@ codestyling-localization
    1294 msgid "<strong>Warning</strong>: The actual loaded translation content contains mixed textdomains and is not pure translateable within one textdomain."
    1295 msgstr ""
     1615msgid "This page will not work as expected because %s could not be get from CDN. Check and update the Plugin doing your CDN redirection!"
     1616msgstr "Esta página não vai funcionar como esperado porque %s não pôde ser começar a partir de CDN. Verifique e atualizar o Plugin fazendo o seu redirecionamento CDN!"
     1617
     1618#: codestyling-localization.php:2650
     1619#@ codestyling-localization
     1620msgid "CDN based script loading redirection detected!"
     1621msgstr "Detectado carregamento de scripts de um CDN!"
    12961622
    12971623#: codestyling-localization.php:2651
    12981624#@ codestyling-localization
    1299 msgid "It seems, that there is code contained extracted out of other plugins, themes or widgets and used by copy & paste inside some source files."
    1300 msgstr ""
    1301 
    1302 #: codestyling-localization.php:2653
    1303 #@ codestyling-localization
    1304 msgid "The affected unknown textdomains are:"
    1305 msgstr ""
    1306 
    1307 #: codestyling-localization.php:2668
    1308 #@ codestyling-localization
    1309 msgid "Trailing Space"
    1310 msgstr ""
    1311 
    1312 #: codestyling-localization.php:3041
    1313 #, php-format
    1314 #@ codestyling-localization
    1315 msgid "You are trying to rescan files which expands above your PHP Memory Limit at %s MB during the analysis.<br/>Please enable the <em>low memory mode</em> for scanning this component."
    1316 msgstr ""
    1317 
    1318 #: codestyling-localization.php:3226
    1319 #, php-format
    1320 #@ codestyling-localization
    1321 msgid "You are trying to open a translation catalog which expands above your PHP Memory Limit at %s MB during read.<br/>Please enable the <em>low memory mode</em> for opening this components catalog."
    1322 msgstr ""
    1323 
    1324 #: codestyling-localization.php:3696
    1325 #: codestyling-localization.php:3699
    1326 #: codestyling-localization.php:3739
    1327 #@ codestyling-localization
    1328 msgid "translate with API Service by"
    1329 msgstr ""
    1330 
    1331 #: codestyling-localization.php:3718
    1332 #: codestyling-localization.php:3733
    1333 #@ codestyling-localization
    1334 msgid "Access Keys:"
    1335 msgstr ""
    1336 
     1625msgid "Warning:"
     1626msgstr "Aviso:"
     1627
     1628#: codestyling-localization.php:2651
     1629#@ codestyling-localization
     1630msgid "may break the dependency script loading feature within WordPress core files."
     1631msgstr "pode quebrar a dependência de arquivos do núcleo do WordPress."
     1632
     1633#: codestyling-localization.php:2652
     1634#@ codestyling-localization
     1635msgid "Below listed redirects have been traced and verified but not revoked:"
     1636msgstr "Os redirecionamentos listados abaixo foram rastreados e verificados, mas não revogados:"
     1637
     1638#: codestyling-localization.php:2725
     1639#@ codestyling-localization
     1640msgid "Textdomains"
     1641msgstr "Textdomains"
     1642
     1643#: codestyling-localization.php:2731
     1644#@ codestyling-localization
     1645msgid "Translation Format"
     1646msgstr "Formato de tradução"
     1647
     1648#: codestyling-localization.php:2738
     1649#@ codestyling-localization
     1650msgid "File Permissions"
     1651msgstr "Permissões de Arquivos"
     1652
     1653#: codestyling-localization.php:2745
     1654#@ codestyling-localization
     1655msgid "Child Themes"
     1656msgstr "Temas filho"
     1657
     1658#: codestyling-localization.php:2860
     1659#@ codestyling-localization
     1660msgid "File Permission Problem:"
     1661msgstr "Problema com permissões de arquivos:"
     1662
     1663#: codestyling-localization.php:2860
     1664#@ codestyling-localization
     1665msgid "Your WordPress installation does not permit the modification of translation files directly. You will be prompt for FTP credentials if required."
     1666msgstr "Sua instalação do WordPress não permite a modificação de arquivos de tradução diretamente. Você pode ser questionado sobre seus dados de acesso ao FTP se preciso."
     1667
     1668#: codestyling-localization.php:3104
     1669#@ codestyling-localization
     1670msgid "Sync Files with Main Theme"
     1671msgstr "Sincronizar arquivos com tema pai"
     1672
     1673#: codestyling-localization.php:3457
     1674#: codestyling-localization.php:3552
     1675#: codestyling-localization.php:3660
     1676#: codestyling-localization.php:3764
     1677#: codestyling-localization.php:3903
     1678#: codestyling-localization.php:4139
     1679#: codestyling-localization.php:4554
     1680#: codestyling-localization.php:4651
     1681#: codestyling-localization.php:4822
     1682#: codestyling-localization.php:4883
     1683#: codestyling-localization.php:4940
     1684#@ codestyling-localization
     1685msgid "User Credentials required"
     1686msgstr "Exigência de Credenciais do Usuários"
     1687
     1688#: codestyling-localization.php:3459
     1689#: codestyling-localization.php:3554
     1690#: codestyling-localization.php:3662
     1691#: codestyling-localization.php:3766
     1692#: codestyling-localization.php:3905
     1693#: codestyling-localization.php:4141
     1694#: codestyling-localization.php:4556
     1695#: codestyling-localization.php:4653
     1696#: codestyling-localization.php:4824
     1697#: codestyling-localization.php:4885
     1698#: codestyling-localization.php:4942
     1699#@ codestyling-localization
     1700msgid "Ok"
     1701msgstr "Ok"
     1702
     1703#: codestyling-localization.php:3463
     1704#: codestyling-localization.php:3558
     1705#: codestyling-localization.php:3666
     1706#: codestyling-localization.php:3770
     1707#: codestyling-localization.php:3909
     1708#: codestyling-localization.php:4145
     1709#: codestyling-localization.php:4560
     1710#: codestyling-localization.php:4657
     1711#: codestyling-localization.php:4828
     1712#: codestyling-localization.php:4889
     1713#: codestyling-localization.php:4946
     1714#@ codestyling-localization
     1715msgid "Cancel"
     1716msgstr "Cancelar"
     1717
  • codestyling-localization/trunk/readme.txt

    r561552 r629816  
    33Tags: gettext, language, translation, poedit, localization, plugin, wpmu, buddypress, bbpress, themes, translator, l10n, i18n, google-translate, microsoft-translate, compatibility, mo, po, po-mo, polyglot
    44Requires at least: 2.5
    5 Tested up to: 3.4
     5Tested up to: 3.4.2
    66Stable tag: 1.99.24
    77
     
    8282== Changelog ==
    8383
    84 = Version 1.99.25 =
    85 * Feature: tracing PHP error messages as best as possible, STRICT currently not utilize, comming soon.
     84= Version 1.99.25 =
     85* Bugfix: trim of string borders breaks some strings like:  'Result: \'text\''
     86* Bugfix: Domain Path of plugins will be accepted if set and existing
     87* Bugfix: Uppercase letters at folders ord filenames did break the file handling
     88* Bugfix: SSL fully supported, all scripts stripped accidentally
     89* Bugfix: multisite support accidentally demaged
     90* Bugfix: accidentally written markup
     91* Bugfix: theme detection for WP >= 3.3 was broken
     92* Bugfix: statements of memory limits with 0MB indicates mostly misused translation functions at themes/plugins, handled now (e.g. target theme, single.php).
     93* Bugfix: pofile sometimes created with wrong pluralization form, repaired
     94* Bugfix: mofile didn't got the correct pofile header and loads afterwards the wrong plural form
     95* Feature: wrongly used translation functions mapped into artificial textdomain '{bug-detected}' and excluded from mo file generation
     96* Feature: Scripting Guard supports now 'debug-bar', 'debug-bar-console', 'wp-native-dashboard'
     97* Feature: Scriptiog Guard now monitors PHP script errors provoked by other plugins/themes during page generation
     98
    8699
    87100= Version 1.99.24 =
Note: See TracChangeset for help on using the changeset viewer.