+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $language){ if($lang!='code') { ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/wp-content/plugins/qtranslate/qtranslate_core.php b/src/wp-content/plugins/qtranslate/qtranslate_core.php
new file mode 100644
index 00000000..17b4669a
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/qtranslate_core.php
@@ -0,0 +1,826 @@
+ $priority) {
+ if(strlen($language)>2) $language = substr($language,0,2);
+ if(qtrans_isEnabled($language)) {
+ if($q_config['hide_default_language'] && $language == $q_config['default_language']) break;
+ $target = qtrans_convertURL(get_option('home'),$language);
+ break;
+ }
+ }
+ }
+ $target = apply_filters("qtranslate_language_detect_redirect", $target);
+ if($target !== false) {
+ wp_redirect($target);
+ exit();
+ }
+ }
+
+ /*
+ // Check for WP Secret Key Missmatch
+ global $wp_default_secret_key;
+ if(strpos($q_config['url_info']['url'],'wp-login.php')!==false && defined('AUTH_KEY') && isset($wp_default_secret_key) && $wp_default_secret_key != AUTH_KEY) {
+ global $error;
+ $error = __('Your $wp_default_secret_key is mismatchting with your AUTH_KEY. This might cause you not to be able to login anymore.','qtranslate');
+ }
+ */
+
+ // Filter all options for language tags
+ if(!defined('WP_ADMIN')) {
+ $alloptions = wp_load_alloptions();
+ foreach($alloptions as $option => $value) {
+ add_filter('option_'.$option, 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+ }
+ }
+
+ // load plugin translations
+ load_plugin_textdomain('qtranslate', false, dirname(plugin_basename( __FILE__ )).'/lang');
+
+ // remove traces of language (or better not?)
+ //unset($_GET['lang']);
+ $_SERVER['REQUEST_URI'] = $q_config['url_info']['url'];
+ $_SERVER['HTTP_HOST'] = $q_config['url_info']['host'];
+
+ // fix url to prevent xss
+ $q_config['url_info']['url'] = qtrans_convertURL(add_query_arg('lang',$q_config['default_language'],$q_config['url_info']['url']));
+}
+
+// returns cleaned string and language information
+function qtrans_extractURL($url, $host = '', $referer = '') {
+ global $q_config;
+ $home = qtrans_parseURL(get_option('home'));
+ $home['path'] = trailingslashit($home['path']);
+ $referer = qtrans_parseURL($referer);
+
+ $result = array();
+ $result['language'] = $q_config['default_language'];
+ $result['url'] = $url;
+ $result['original_url'] = $url;
+ $result['host'] = $host;
+ $result['redirect'] = false;
+ $result['internal_referer'] = false;
+ $result['home'] = $home['path'];
+
+ switch($q_config['url_mode']) {
+ case QT_URL_PATH:
+ // pre url
+ $url = substr($url, strlen($home['path']));
+ if($url) {
+ // might have language information
+ if(preg_match("#^([a-z]{2})(/.*)?$#i",$url,$match)) {
+ if(qtrans_isEnabled($match[1])) {
+ // found language information
+ $result['language'] = $match[1];
+ $result['url'] = $home['path'].substr($url, 3);
+ }
+ }
+ }
+ break;
+ case QT_URL_DOMAIN:
+ // pre domain
+ if($host) {
+ if(preg_match("#^([a-z]{2}).#i",$host,$match)) {
+ if(qtrans_isEnabled($match[1])) {
+ // found language information
+ $result['language'] = $match[1];
+ $result['host'] = substr($host, 3);
+ }
+ }
+ }
+ break;
+ }
+
+ // check if referer is internal
+ if($referer['host']==$result['host'] && qtrans_startsWith($referer['path'], $home['path'])) {
+ // user coming from internal link
+ $result['internal_referer'] = true;
+ }
+
+ if(isset($_GET['lang']) && qtrans_isEnabled($_GET['lang'])) {
+ // language override given
+ $result['language'] = $_GET['lang'];
+ $result['url'] = preg_replace("#(&|\?)lang=".$result['language']."&?#i","$1",$result['url']);
+ $result['url'] = preg_replace("#[\?\&]+$#i","",$result['url']);
+ } elseif($home['host'] == $result['host'] && $home['path'] == $result['url']) {
+ if(empty($referer['host'])||!$q_config['hide_default_language']) {
+ $result['redirect'] = true;
+ } else {
+ // check if activating language detection is possible
+ if(preg_match("#^([a-z]{2}).#i",$referer['host'],$match)) {
+ if(qtrans_isEnabled($match[1])) {
+ // found language information
+ $referer['host'] = substr($referer['host'], 3);
+ }
+ }
+ if(!$result['internal_referer']) {
+ // user coming from external link
+ $result['redirect'] = true;
+ }
+ }
+ }
+
+ return $result;
+}
+
+function qtrans_validateBool($var, $default) {
+ if($var==='0') return false; elseif($var==='1') return true; else return $default;
+}
+
+// loads config via get_option and defaults to values set on top
+function qtrans_loadConfig() {
+ global $q_config;
+
+ // Load everything
+ $language_names = get_option('qtranslate_language_names');
+ $enabled_languages = get_option('qtranslate_enabled_languages');
+ $default_language = get_option('qtranslate_default_language');
+ $flag_location = get_option('qtranslate_flag_location');
+ $flags = get_option('qtranslate_flags');
+ $locales = get_option('qtranslate_locales');
+ $na_messages = get_option('qtranslate_na_messages');
+ $date_formats = get_option('qtranslate_date_formats');
+ $time_formats = get_option('qtranslate_time_formats');
+ $use_strftime = get_option('qtranslate_use_strftime');
+ $ignore_file_types = get_option('qtranslate_ignore_file_types');
+ $url_mode = get_option('qtranslate_url_mode');
+ $detect_browser_language = get_option('qtranslate_detect_browser_language');
+ $hide_untranslated = get_option('qtranslate_hide_untranslated');
+ $auto_update_mo = get_option('qtranslate_auto_update_mo');
+ $term_name = get_option('qtranslate_term_name');
+ $hide_default_language = get_option('qtranslate_hide_default_language');
+
+ // default if not set
+ if(!is_array($date_formats)) $date_formats = $q_config['date_format'];
+ if(!is_array($time_formats)) $time_formats = $q_config['time_format'];
+ if(!is_array($na_messages)) $na_messages = $q_config['not_available'];
+ if(!is_array($locales)) $locales = $q_config['locale'];
+ if(!is_array($flags)) $flags = $q_config['flag'];
+ if(!is_array($language_names)) $language_names = $q_config['language_name'];
+ if(!is_array($enabled_languages)) $enabled_languages = $q_config['enabled_languages'];
+ if(!is_array($term_name)) $term_name = $q_config['term_name'];
+ if(empty($ignore_file_types)) $ignore_file_types = $q_config['ignore_file_types'];
+ if(empty($default_language)) $default_language = $q_config['default_language'];
+ if(empty($use_strftime)) $use_strftime = $q_config['use_strftime'];
+ if(empty($url_mode)) $url_mode = $q_config['url_mode'];
+ if(!is_string($flag_location) || $flag_location==='') $flag_location = $q_config['flag_location'];
+ $detect_browser_language = qtrans_validateBool($detect_browser_language, $q_config['detect_browser_language']);
+ $hide_untranslated = qtrans_validateBool($hide_untranslated, $q_config['hide_untranslated']);
+ $auto_update_mo = qtrans_validateBool($auto_update_mo, $q_config['auto_update_mo']);
+ $hide_default_language = qtrans_validateBool($hide_default_language, $q_config['hide_default_language']);
+
+ // url fix for upgrading users
+ $flag_location = trailingslashit(preg_replace('#^wp-content/#','',$flag_location));
+
+ // check for invalid permalink/url mode combinations
+ $permalink_structure = get_option('permalink_structure');
+ if($permalink_structure===""||strpos($permalink_structure,'?')!==false||strpos($permalink_structure,'index.php')!==false) $url_mode = QT_URL_QUERY;
+
+ // overwrite default values with loaded values
+ $q_config['date_format'] = $date_formats;
+ $q_config['time_format'] = $time_formats;
+ $q_config['not_available'] = $na_messages;
+ $q_config['locale'] = $locales;
+ $q_config['flag'] = $flags;
+ $q_config['language_name'] = $language_names;
+ $q_config['enabled_languages'] = $enabled_languages;
+ $q_config['default_language'] = $default_language;
+ $q_config['flag_location'] = $flag_location;
+ $q_config['use_strftime'] = $use_strftime;
+ $q_config['ignore_file_types'] = $ignore_file_types;
+ $q_config['url_mode'] = $url_mode;
+ $q_config['detect_browser_language'] = $detect_browser_language;
+ $q_config['hide_untranslated'] = $hide_untranslated;
+ $q_config['auto_update_mo'] = $auto_update_mo;
+ $q_config['hide_default_language'] = $hide_default_language;
+ $q_config['term_name'] = $term_name;
+
+ do_action('qtranslate_loadConfig');
+}
+
+// saves entire configuration
+function qtrans_saveConfig() {
+ global $q_config;
+
+ // save everything
+ update_option('qtranslate_language_names', $q_config['language_name']);
+ update_option('qtranslate_enabled_languages', $q_config['enabled_languages']);
+ update_option('qtranslate_default_language', $q_config['default_language']);
+ update_option('qtranslate_flag_location', $q_config['flag_location']);
+ update_option('qtranslate_flags', $q_config['flag']);
+ update_option('qtranslate_locales', $q_config['locale']);
+ update_option('qtranslate_na_messages', $q_config['not_available']);
+ update_option('qtranslate_date_formats', $q_config['date_format']);
+ update_option('qtranslate_time_formats', $q_config['time_format']);
+ update_option('qtranslate_ignore_file_types', $q_config['ignore_file_types']);
+ update_option('qtranslate_url_mode', $q_config['url_mode']);
+ update_option('qtranslate_term_name', $q_config['term_name']);
+ update_option('qtranslate_use_strftime', $q_config['use_strftime']);
+ if($q_config['detect_browser_language'])
+ update_option('qtranslate_detect_browser_language', '1');
+ else
+ update_option('qtranslate_detect_browser_language', '0');
+ if($q_config['hide_untranslated'])
+ update_option('qtranslate_hide_untranslated', '1');
+ else
+ update_option('qtranslate_hide_untranslated', '0');
+ if($q_config['auto_update_mo'])
+ update_option('qtranslate_auto_update_mo', '1');
+ else
+ update_option('qtranslate_auto_update_mo', '0');
+ if($q_config['hide_default_language'])
+ update_option('qtranslate_hide_default_language', '1');
+ else
+ update_option('qtranslate_hide_default_language', '0');
+
+ do_action('qtranslate_saveConfig');
+}
+
+function qtrans_updateGettextDatabases($force = false, $only_for_language = '') {
+ global $q_config;
+ if(!is_dir(WP_LANG_DIR)) {
+ if(!@mkdir(WP_LANG_DIR))
+ return false;
+ }
+ $next_update = get_option('qtranslate_next_update_mo');
+ if(time() < $next_update && !$force) return true;
+ update_option('qtranslate_next_update_mo', time() + 7*24*60*60);
+ foreach($q_config['locale'] as $lang => $locale) {
+ if(qtrans_isEnabled($only_for_language) && $lang != $only_for_language) continue;
+ if(!qtrans_isEnabled($lang)) continue;
+ if($ll = @fopen(trailingslashit(WP_LANG_DIR).$locale.'.mo.filepart','a')) {
+ // can access .mo file
+ fclose($ll);
+ // try to find a .mo file
+ if(!($locale == 'en_US' && $lcr = @fopen('http://www.qianqin.de/wp-content/languages/'.$locale.'.mo','r')))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.$locale.'/tags/'.$GLOBALS['wp_version'].'/messages/'.$locale.'.mo','r'))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.substr($locale,0,2).'/tags/'.$GLOBALS['wp_version'].'/messages/'.$locale.'.mo','r'))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.$locale.'/branches/'.$GLOBALS['wp_version'].'/messages/'.$locale.'.mo','r'))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.substr($locale,0,2).'/branches/'.$GLOBALS['wp_version'].'/messages/'.$locale.'.mo','r'))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.$locale.'/branches/'.$GLOBALS['wp_version'].'/'.$locale.'.mo','r'))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.substr($locale,0,2).'/branches/'.$GLOBALS['wp_version'].'/'.$locale.'.mo','r'))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.$locale.'/trunk/messages/'.$locale.'.mo','r'))
+ if(!$lcr = @fopen('http://svn.automattic.com/wordpress-i18n/'.substr($locale,0,2).'/trunk/messages/'.$locale.'.mo','r')) {
+ // couldn't find a .mo file
+ if(filesize(trailingslashit(WP_LANG_DIR).$locale.'.mo.filepart')==0) unlink(trailingslashit(WP_LANG_DIR).$locale.'.mo.filepart');
+ continue;
+ }
+ // found a .mo file, update local .mo
+ $ll = fopen(trailingslashit(WP_LANG_DIR).$locale.'.mo.filepart','w');
+ while(!feof($lcr)) {
+ // try to get some more time
+ @set_time_limit(30);
+ $lc = fread($lcr, 8192);
+ fwrite($ll,$lc);
+ }
+ fclose($lcr);
+ fclose($ll);
+ // only use completely download .mo files
+ rename(trailingslashit(WP_LANG_DIR).$locale.'.mo.filepart',trailingslashit(WP_LANG_DIR).$locale.'.mo');
+ }
+ }
+ return true;
+}
+
+function qtrans_updateTermLibrary() {
+ global $q_config;
+ if(!isset($_POST['action'])) return;
+ switch($_POST['action']) {
+ case 'editedtag':
+ case 'addtag':
+ case 'editedcat':
+ case 'addcat':
+ case 'add-cat':
+ case 'add-tag':
+ case 'add-link-cat':
+ if(isset($_POST['qtrans_term_'.$q_config['default_language']]) && $_POST['qtrans_term_'.$q_config['default_language']]!='') {
+ $default = htmlspecialchars(qtrans_stripSlashesIfNecessary($_POST['qtrans_term_'.$q_config['default_language']]), ENT_NOQUOTES);
+ if(!isset($q_config['term_name'][$default]) || !is_array($q_config['term_name'][$default])) $q_config['term_name'][$default] = array();
+ foreach($q_config['enabled_languages'] as $lang) {
+ $_POST['qtrans_term_'.$lang] = qtrans_stripSlashesIfNecessary($_POST['qtrans_term_'.$lang]);
+ if($_POST['qtrans_term_'.$lang]!='') {
+ $q_config['term_name'][$default][$lang] = htmlspecialchars($_POST['qtrans_term_'.$lang], ENT_NOQUOTES);
+ } else {
+ $q_config['term_name'][$default][$lang] = $default;
+ }
+ }
+ update_option('qtranslate_term_name',$q_config['term_name']);
+ }
+ break;
+ }
+}
+
+/* BEGIN DATE TIME FUNCTIONS */
+
+function qtrans_strftime($format, $date, $default = '', $before = '', $after = '') {
+ // don't do anything if format is not given
+ if($format=='') return $default;
+ // add date suffix ability (%q) to strftime
+ $day = intval(ltrim(strftime("%d",$date),'0'));
+ $search = array();
+ $replace = array();
+
+ // date S
+ $search[] = '/(([^%])%q|^%q)/';
+ if($day==1||$day==21||$day==31) {
+ $replace[] = '$2st';
+ } elseif($day==2||$day==22) {
+ $replace[] = '$2nd';
+ } elseif($day==3||$day==23) {
+ $replace[] = '$2rd';
+ } else {
+ $replace[] = '$2th';
+ }
+
+ $search[] = '/(([^%])%E|^%E)/'; $replace[] = '${2}'.$day; // date j
+ $search[] = '/(([^%])%f|^%f)/'; $replace[] = '${2}'.date('w',$date); // date w
+ $search[] = '/(([^%])%F|^%F)/'; $replace[] = '${2}'.date('z',$date); // date z
+ $search[] = '/(([^%])%i|^%i)/'; $replace[] = '${2}'.date('n',$date); // date i
+ $search[] = '/(([^%])%J|^%J)/'; $replace[] = '${2}'.date('t',$date); // date t
+ $search[] = '/(([^%])%k|^%k)/'; $replace[] = '${2}'.date('L',$date); // date L
+ $search[] = '/(([^%])%K|^%K)/'; $replace[] = '${2}'.date('B',$date); // date B
+ $search[] = '/(([^%])%l|^%l)/'; $replace[] = '${2}'.date('g',$date); // date g
+ $search[] = '/(([^%])%L|^%L)/'; $replace[] = '${2}'.date('G',$date); // date G
+ $search[] = '/(([^%])%N|^%N)/'; $replace[] = '${2}'.date('u',$date); // date u
+ $search[] = '/(([^%])%Q|^%Q)/'; $replace[] = '${2}'.date('e',$date); // date e
+ $search[] = '/(([^%])%o|^%o)/'; $replace[] = '${2}'.date('I',$date); // date I
+ $search[] = '/(([^%])%O|^%O)/'; $replace[] = '${2}'.date('O',$date); // date O
+ $search[] = '/(([^%])%s|^%s)/'; $replace[] = '${2}'.date('P',$date); // date P
+ $search[] = '/(([^%])%v|^%v)/'; $replace[] = '${2}'.date('T',$date); // date T
+ $search[] = '/(([^%])%1|^%1)/'; $replace[] = '${2}'.date('Z',$date); // date Z
+ $search[] = '/(([^%])%2|^%2)/'; $replace[] = '${2}'.date('c',$date); // date c
+ $search[] = '/(([^%])%3|^%3)/'; $replace[] = '${2}'.date('r',$date); // date r
+ $search[] = '/(([^%])%4|^%4)/'; $replace[] = '${2}'.$date; // date U
+ $format = preg_replace($search,$replace,$format);
+ return $before.strftime($format, $date).$after;
+}
+
+function qtrans_dateFromPostForCurrentLanguage($old_date, $format ='', $before = '', $after = '') {
+ global $post;
+ return qtrans_strftime(qtrans_convertDateFormat($format), mysql2date('U',$post->post_date), $old_date, $before, $after);
+}
+
+function qtrans_dateModifiedFromPostForCurrentLanguage($old_date, $format ='') {
+ global $post;
+ return qtrans_strftime(qtrans_convertDateFormat($format), mysql2date('U',$post->post_modified), $old_date);
+}
+
+function qtrans_timeFromPostForCurrentLanguage($old_date, $format = '', $post = null, $gmt = false) {
+ $post = get_post($post);
+
+ $post_date = $gmt? $post->post_date_gmt : $post->post_date;
+ return qtrans_strftime(qtrans_convertTimeFormat($format), mysql2date('U',$post_date), $old_date);
+}
+
+function qtrans_timeModifiedFromPostForCurrentLanguage($old_date, $format = '', $gmt = false) {
+ global $post;
+ $post_date = $gmt? $post->post_modified_gmt : $post->post_modified;
+ return qtrans_strftime(qtrans_convertTimeFormat($format), mysql2date('U',$post_date), $old_date);
+}
+
+function qtrans_dateFromCommentForCurrentLanguage($old_date, $format ='') {
+ global $comment;
+ return qtrans_strftime(qtrans_convertDateFormat($format), mysql2date('U',$comment->comment_date), $old_date);
+}
+
+function qtrans_timeFromCommentForCurrentLanguage($old_date, $format = '', $gmt = false, $translate = true) {
+ if(!$translate) return $old_date;
+ global $comment;
+ $comment_date = $gmt? $comment->comment_date_gmt : $comment->comment_date;
+ return qtrans_strftime(qtrans_convertTimeFormat($format), mysql2date('U',$comment_date), $old_date);
+}
+
+/* END DATE TIME FUNCTIONS */
+
+function qtrans_useTermLib($obj) {
+ global $q_config;
+ if(is_array($obj)) {
+ // handle arrays recursively
+ foreach($obj as $key => $t) {
+ $obj[$key] = qtrans_useTermLib($obj[$key]);
+ }
+ return $obj;
+ }
+ if(is_object($obj)) {
+ // object conversion
+ if(isset($q_config['term_name'][$obj->name][$q_config['language']])) {
+ $obj->name = $q_config['term_name'][$obj->name][$q_config['language']];
+ }
+ } elseif(isset($q_config['term_name'][$obj][$q_config['language']])) {
+ $obj = $q_config['term_name'][$obj][$q_config['language']];
+ }
+ return $obj;
+}
+
+function qtrans_convertBlogInfoURL($url, $what) {
+ if($what=='stylesheet_url') return $url;
+ if($what=='template_url') return $url;
+ if($what=='template_directory') return $url;
+ if($what=='stylesheet_directory') return $url;
+ return qtrans_convertURL($url);
+}
+
+function qtrans_convertURL($url='', $lang='', $forceadmin = false) {
+ global $q_config;
+
+ // invalid language
+ if($url=='') $url = esc_url($q_config['url_info']['url']);
+ if($lang=='') $lang = $q_config['language'];
+ if(defined('WP_ADMIN')&&!$forceadmin) return $url;
+ if(!qtrans_isEnabled($lang)) return "";
+
+ // & workaround
+ $url = str_replace('&','&',$url);
+ $url = str_replace('&','&',$url);
+
+ // check for trailing slash
+ $nottrailing = (strpos($url,'?')===false && strpos($url,'#')===false && substr($url,-1,1)!='/');
+
+ // check if it's an external link
+ $urlinfo = qtrans_parseURL($url);
+ $home = rtrim(get_option('home'),"/");
+ if($urlinfo['host']!='') {
+ // check for already existing pre-domain language information
+ if($q_config['url_mode'] == QT_URL_DOMAIN && preg_match("#^([a-z]{2}).#i",$urlinfo['host'],$match)) {
+ if(qtrans_isEnabled($match[1])) {
+ // found language information, remove it
+ $url = preg_replace("/".$match[1]."\./i","",$url, 1);
+ // reparse url
+ $urlinfo = qtrans_parseURL($url);
+ }
+ }
+ if(substr($url,0,strlen($home))!=$home) {
+ return $url;
+ }
+ // strip home path
+ $url = substr($url,strlen($home));
+ } else {
+ // relative url, strip home path
+ $homeinfo = qtrans_parseURL($home);
+ if($homeinfo['path']==substr($url,0,strlen($homeinfo['path']))) {
+ $url = substr($url,strlen($homeinfo['path']));
+ }
+ }
+
+ // check for query language information and remove if found
+ if(preg_match("#(&|\?)lang=([^&\#]+)#i",$url,$match) && qtrans_isEnabled($match[2])) {
+ $url = preg_replace("#(&|\?)lang=".$match[2]."&?#i","$1",$url);
+ }
+
+ // remove any slashes out front
+ $url = ltrim($url,"/");
+
+ // remove any useless trailing characters
+ $url = rtrim($url,"?&");
+
+ // reparse url without home path
+ $urlinfo = qtrans_parseURL($url);
+
+ // check if its a link to an ignored file type
+ $ignore_file_types = preg_split('/\s*,\s*/', strtolower($q_config['ignore_file_types']));
+ $pathinfo = pathinfo($urlinfo['path']);
+ if(isset($pathinfo['extension']) && in_array(strtolower($pathinfo['extension']), $ignore_file_types)) {
+ return $home."/".$url;
+ }
+
+ // ignore wp internal links
+ if(preg_match("#^(wp-login.php|wp-signup.php|wp-register.php|wp-admin/)#", $url)) {
+ return $home."/".$url;
+ }
+
+ switch($q_config['url_mode']) {
+ case QT_URL_PATH: // pre url
+ // might already have language information
+ if(preg_match("#^([a-z]{2})/#i",$url,$match)) {
+ if(qtrans_isEnabled($match[1])) {
+ // found language information, remove it
+ $url = substr($url, 3);
+ }
+ }
+ if(!$q_config['hide_default_language']||$lang!=$q_config['default_language']) $url = $lang."/".$url;
+ break;
+ case QT_URL_DOMAIN: // pre domain
+ if(!$q_config['hide_default_language']||$lang!=$q_config['default_language']) $home = preg_replace("#//#","//".$lang.".",$home,1);
+ break;
+ default: // query
+ if(!$q_config['hide_default_language']||$lang!=$q_config['default_language']){
+ if(strpos($url,'?')===false) {
+ $url .= '?';
+ } else {
+ $url .= '&';
+ }
+ $url .= "lang=".$lang;
+ }
+ }
+
+ // see if cookies are activated
+ if(!$q_config['cookie_enabled'] && !$q_config['url_info']['internal_referer'] && $urlinfo['path'] == '' && $lang == $q_config['default_language'] && $q_config['language'] != $q_config['default_language'] && $q_config['hide_default_language']) {
+ // :( now we have to make unpretty URLs
+ $url = preg_replace("#(&|\?)lang=".$match[2]."&?#i","$1",$url);
+ if(strpos($url,'?')===false) {
+ $url .= '?';
+ } else {
+ $url .= '&';
+ }
+ $url .= "lang=".$lang;
+ }
+
+ // & workaround
+ $complete = str_replace('&','&',$home."/".$url);
+
+ // remove trailing slash if there wasn't one to begin with
+ if($nottrailing && strpos($complete,'?')===false && strpos($complete,'#')===false && substr($complete,-1,1)=='/')
+ $complete = substr($complete,0,-1);
+
+ return $complete;
+}
+
+// splits text with language tags into array
+function qtrans_split($text, $quicktags = true) {
+ global $q_config;
+
+ //init vars
+ $split_regex = "#(|\[:[a-z]{2}\])#ism";
+ $current_language = "";
+ $result = array();
+ foreach($q_config['enabled_languages'] as $language) {
+ $result[$language] = "";
+ }
+
+ // split text at all xml comments
+ $blocks = preg_split($split_regex, $text, -1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);
+ foreach($blocks as $block) {
+ # detect language tags
+ if(preg_match("#^$#ism", $block, $matches)) {
+ if(qtrans_isEnabled($matches[1])) {
+ $current_language = $matches[1];
+ } else {
+ $current_language = "invalid";
+ }
+ continue;
+ // detect quicktags
+ } elseif($quicktags && preg_match("#^\[:([a-z]{2})\]$#ism", $block, $matches)) {
+ if(qtrans_isEnabled($matches[1])) {
+ $current_language = $matches[1];
+ } else {
+ $current_language = "invalid";
+ }
+ continue;
+ // detect ending tags
+ } elseif(preg_match("#^$#ism", $block, $matches)) {
+ $current_language = "";
+ continue;
+ // detect defective more tag
+ } elseif(preg_match("#^$#ism", $block, $matches)) {
+ foreach($q_config['enabled_languages'] as $language) {
+ $result[$language] .= $block;
+ }
+ continue;
+ }
+ // correctly categorize text block
+ if($current_language == "") {
+ // general block, add to all languages
+ foreach($q_config['enabled_languages'] as $language) {
+ $result[$language] .= $block;
+ }
+ } elseif($current_language != "invalid") {
+ // specific block, only add to active language
+ $result[$current_language] .= $block;
+ }
+ }
+ foreach($result as $lang => $lang_content) {
+ $result[$lang] = preg_replace("#(|)+$#ism","",$lang_content);
+ }
+ return $result;
+}
+
+function qtrans_join($texts) {
+ global $q_config;
+ if(!is_array($texts)) $texts = qtrans_split($texts, false);
+ $split_regex = "##ism";
+ $max = 0;
+ $text = "";
+
+ foreach($q_config['enabled_languages'] as $language) {
+ $texts[$language] = preg_split($split_regex, $texts[$language]);
+ if(sizeof($texts[$language]) > $max) $max = sizeof($texts[$language]);
+ }
+ for($i=0;$i<$max;$i++) {
+ if($i>=1) {
+ $text .= '';
+ }
+ foreach($q_config['enabled_languages'] as $language) {
+ if(isset($texts[$language][$i]) && $texts[$language][$i] !== '') {
+ $text .= ''.$texts[$language][$i].'';
+ }
+ }
+ }
+ return $text;
+}
+
+function qtrans_disableLanguage($lang) {
+ global $q_config;
+ if(qtrans_isEnabled($lang)) {
+ $new_enabled = array();
+ for($i = 0; $i < sizeof($q_config['enabled_languages']); $i++) {
+ if($q_config['enabled_languages'][$i] != $lang) {
+ $new_enabled[] = $q_config['enabled_languages'][$i];
+ }
+ }
+ $q_config['enabled_languages'] = $new_enabled;
+ return true;
+ }
+ return false;
+}
+
+function qtrans_enableLanguage($lang) {
+ global $q_config;
+ if(qtrans_isEnabled($lang) || !isset($q_config['language_name'][$lang])) {
+ return false;
+ }
+ $q_config['enabled_languages'][] = $lang;
+ // force update of .mo files
+ if ($q_config['auto_update_mo']) qtrans_updateGettextDatabases(true, $lang);
+ return true;
+}
+
+function qtrans_use($lang, $text, $show_available=false) {
+ global $q_config;
+ // return full string if language is not enabled
+ if(!qtrans_isEnabled($lang)) return $text;
+ if(is_array($text)) {
+ // handle arrays recursively
+ foreach($text as $key => $t) {
+ $text[$key] = qtrans_use($lang,$text[$key],$show_available);
+ }
+ return $text;
+ }
+
+ if(is_object($text)||@get_class($text) == '__PHP_Incomplete_Class') {
+ foreach(get_object_vars($text) as $key => $t) {
+ $text->$key = qtrans_use($lang,$text->$key,$show_available);
+ }
+ return $text;
+ }
+
+ // prevent filtering weird data types and save some resources
+ if(!is_string($text) || $text == '') {
+ return $text;
+ }
+
+ // get content
+ $content = qtrans_split($text);
+ // find available languages
+ $available_languages = array();
+ foreach($content as $language => $lang_text) {
+ $lang_text = trim($lang_text);
+ if(!empty($lang_text)) $available_languages[] = $language;
+ }
+
+ // if no languages available show full text
+ if(sizeof($available_languages)==0) return $text;
+ // if content is available show the content in the requested language
+ if(!empty($content[$lang])) {
+ return $content[$lang];
+ }
+ // content not available in requested language (bad!!) what now?
+ if(!$show_available){
+ // check if content is available in default language, if not return first language found. (prevent empty result)
+ if($lang!=$q_config['default_language'])
+ return "(".$q_config['language_name'][$q_config['default_language']].") ".qtrans_use($q_config['default_language'], $text, $show_available);
+ foreach($content as $language => $lang_text) {
+ $lang_text = trim($lang_text);
+ if(!empty($lang_text)) {
+ return "(".$q_config['language_name'][$language].") ".$lang_text;
+ }
+ }
+ }
+ // display selection for available languages
+ $available_languages = array_unique($available_languages);
+ $language_list = "";
+ if(preg_match('/%LANG:([^:]*):([^%]*)%/',$q_config['not_available'][$lang],$match)) {
+ $normal_seperator = $match[1];
+ $end_seperator = $match[2];
+ // build available languages string backward
+ $i = 0;
+ foreach($available_languages as $language) {
+ if($i==1) $language_list = $end_seperator.$language_list;
+ if($i>1) $language_list = $normal_seperator.$language_list;
+ $language_list = "
".$q_config['language_name'][$language]." ".$language_list;
+ $i++;
+ }
+ }
+ return "
".preg_replace('/%LANG:([^:]*):([^%]*)%/', $language_list, $q_config['not_available'][$lang])."
";
+}
+
+function qtrans_showAllSeperated($text) {
+ if(empty($text)) return $text;
+ global $q_config;
+ $result = "";
+ foreach(qtrans_getSortedLanguages() as $language) {
+ $result .= $q_config['language_name'][$language].":\n".qtrans_use($language, $text)."\n\n";
+ }
+ return $result;
+}
+
+?>
\ No newline at end of file
diff --git a/src/wp-content/plugins/qtranslate/qtranslate_hooks.php b/src/wp-content/plugins/qtranslate/qtranslate_hooks.php
new file mode 100644
index 00000000..92c31e38
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/qtranslate_hooks.php
@@ -0,0 +1,361 @@
+\n";
+ $css = "\n";
+ echo apply_filters('qtranslate_header_css',$css);
+ // skip the rest if 404
+ if(is_404()) return;
+ // set links to translations of current page
+ foreach($q_config['enabled_languages'] as $language) {
+ if($language != qtrans_getLanguage())
+ echo '
'."\n";
+ }
+}
+
+function qtrans_localeForCurrentLanguage($locale){
+ global $q_config;
+ // try to figure out the correct locale
+ $locale = array();
+ $locale[] = $q_config['locale'][$q_config['language']].".utf8";
+ $locale[] = $q_config['locale'][$q_config['language']]."@euro";
+ $locale[] = $q_config['locale'][$q_config['language']];
+ $locale[] = $q_config['windows_locale'][$q_config['language']];
+ $locale[] = $q_config['language'];
+
+ // return the correct locale and most importantly set it (wordpress doesn't, which is bad)
+ // only set LC_TIME as everyhing else doesn't seem to work with windows
+ setlocale(LC_TIME, $locale);
+
+ return $q_config['locale'][$q_config['language']];
+}
+
+function qtrans_optionFilter($do='enable') {
+ $options = array( 'option_widget_pages',
+ 'option_widget_archives',
+ 'option_widget_meta',
+ 'option_widget_calendar',
+ 'option_widget_text',
+ 'option_widget_categories',
+ 'option_widget_recent_entries',
+ 'option_widget_recent_comments',
+ 'option_widget_rss',
+ 'option_widget_tag_cloud'
+ );
+ foreach($options as $option) {
+ if($do!='disable') {
+ add_filter($option, 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+ } else {
+ remove_filter($option, 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage');
+ }
+ }
+}
+
+function qtrans_adminHeader() {
+ echo "\n";
+ return qtrans_optionFilter('disable');
+}
+
+function qtrans_useCurrentLanguageIfNotFoundShowAvailable($content) {
+ global $q_config;
+ return qtrans_use($q_config['language'], $content, true);
+}
+
+function qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($content) {
+ global $q_config;
+ return qtrans_use($q_config['language'], $content, false);
+}
+
+function qtrans_useDefaultLanguage($content) {
+ global $q_config;
+ return qtrans_use($q_config['default_language'], $content, false);
+}
+
+function qtrans_excludeUntranslatedPosts($where) {
+ global $q_config, $wpdb;
+ if($q_config['hide_untranslated'] && !is_singular()) {
+ $where .= " AND $wpdb->posts.post_content LIKE '%%'";
+ }
+ return $where;
+}
+
+function qtrans_excludePages($pages) {
+ global $wpdb, $q_config;
+ static $exclude = 0;
+ if(!$q_config['hide_untranslated']) return $pages;
+ if(is_array($exclude)) return array_merge($exclude, $pages);
+ $query = "SELECT id FROM $wpdb->posts WHERE post_type = 'page' AND post_status = 'publish' AND NOT ($wpdb->posts.post_content LIKE '%%')" ;
+ $hide_pages = $wpdb->get_results($query);
+ $exclude = array();
+ foreach($hide_pages as $page) {
+ $exclude[] = $page->id;
+ }
+ return array_merge($exclude, $pages);
+}
+
+function qtrans_postsFilter($posts) {
+ if(is_array($posts)) {
+ foreach($posts as $post) {
+ $post->post_content = qtrans_useCurrentLanguageIfNotFoundShowAvailable($post->post_content);
+ $post = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($post);
+ }
+ }
+ return $posts;
+}
+
+function qtrans_links($links, $file){ // copied from Sociable Plugin
+ //Static so we don't call plugin_basename on every plugin row.
+ static $this_plugin;
+ if (!$this_plugin) $this_plugin = plugin_basename(dirname(__FILE__).'/qtranslate.php');
+
+ if ($file == $this_plugin){
+ $settings_link = '
' . __('Settings', 'qtranslate') . ' ';
+ array_unshift( $links, $settings_link ); // before other links
+ }
+ return $links;
+}
+
+function qtrans_languageColumnHeader($columns){
+ $new_columns = array();
+ if(isset($columns['cb'])) $new_columns['cb'] = '';
+ if(isset($columns['title'])) $new_columns['title'] = '';
+ if(isset($columns['author'])) $new_columns['author'] = '';
+ if(isset($columns['categories'])) $new_columns['categories'] = '';
+ if(isset($columns['tags'])) $new_columns['tags'] = '';
+ $new_columns['language'] = __('Languages', 'qtranslate');
+ return array_merge($new_columns, $columns);;
+}
+
+function qtrans_languageColumn($column) {
+ global $q_config, $post;
+ if ($column == 'language') {
+ $available_languages = qtrans_getAvailableLanguages($post->post_content);
+ $missing_languages = array_diff($q_config['enabled_languages'], $available_languages);
+ $available_languages_name = array();
+ $missing_languages_name = array();
+ foreach($available_languages as $language) {
+ $available_languages_name[] = $q_config['language_name'][$language];
+ }
+ $available_languages_names = join(", ", $available_languages_name);
+
+ echo apply_filters('qtranslate_available_languages_names',$available_languages_names);
+ do_action('qtranslate_languageColumn', $available_languages, $missing_languages);
+ }
+ return $column;
+}
+
+function qtrans_versionLocale() {
+ return 'en_US';
+}
+
+function qtrans_esc_html($text) {
+ return qtrans_useDefaultLanguage($text);
+}
+
+function qtrans_useRawTitle($title, $raw_title = '', $context = 'save') {
+ if($raw_title=='') $raw_title = $title;
+ if('save'==$context) {
+ $raw_title = qtrans_useDefaultLanguage($raw_title);
+ $title = remove_accents($raw_title);
+ }
+ return $title;
+}
+
+function qtrans_checkCanonical($redirect_url, $requested_url) {
+ // fix canonical conflicts with language urls
+ if(qtrans_convertURL($redirect_url)==qtrans_convertURL($requested_url))
+ return false;
+ return $redirect_url;
+}
+
+function qtrans_fixSearchForm($form) {
+ $form = preg_replace('#action="[^"]*"#','action="'.trailingslashit(qtrans_convertURL(get_home_url())).'"',$form);
+ return $form;
+}
+
+// Hooks for Plugin compatibility
+
+function wpsupercache_supercache_dir($uri) {
+ global $q_config;
+ if(isset($q_config['url_info']['original_url'])) {
+ $uri = $q_config['url_info']['original_url'];
+ } else {
+ $uri = $_SERVER['REQUEST_URI'];
+ }
+ $uri = preg_replace('/[ <>\'\"\r\n\t\(\)]/', '', str_replace( '/index.php', '/', str_replace( '..', '', preg_replace("/(\?.*)?$/", '', $uri ) ) ) );
+ $uri = str_replace( '\\', '', $uri );
+ $uri = strtolower(preg_replace('/:.*$/', '', $_SERVER["HTTP_HOST"])) . $uri; // To avoid XSS attacs
+ return $uri;
+}
+add_filter('supercache_dir', 'wpsupercache_supercache_dir',0);
+
+// Hooks (Actions)
+add_action('wp_head', 'qtrans_header');
+add_action('category_edit_form', 'qtrans_modifyTermFormFor');
+add_action('post_tag_edit_form', 'qtrans_modifyTermFormFor');
+add_action('link_category_edit_form', 'qtrans_modifyTermFormFor');
+add_action('category_add_form', 'qtrans_modifyTermFormFor');
+add_action('post_tag_add_form', 'qtrans_modifyTermFormFor');
+add_action('link_category_add_form', 'qtrans_modifyTermFormFor');
+add_action('widgets_init', 'qtrans_widget_init');
+add_action('plugins_loaded', 'qtrans_init', 2);
+add_action('admin_head', 'qtrans_adminHeader');
+add_action('admin_menu', 'qtrans_adminMenu');
+add_action('wp_after_admin_bar_render', 'qtrans_fixSearchUrl');
+
+// Hooks (execution time critical filters)
+add_filter('the_content', 'qtrans_useCurrentLanguageIfNotFoundShowAvailable', 0);
+add_filter('the_excerpt', 'qtrans_useCurrentLanguageIfNotFoundShowAvailable', 0);
+add_filter('the_excerpt_rss', 'qtrans_useCurrentLanguageIfNotFoundShowAvailable', 0);
+add_filter('sanitize_title', 'qtrans_useRawTitle',0, 3);
+add_filter('comment_moderation_subject', 'qtrans_useDefaultLanguage',0);
+add_filter('comment_moderation_text', 'qtrans_useDefaultLanguage',0);
+add_filter('get_comment_date', 'qtrans_dateFromCommentForCurrentLanguage',0,2);
+add_filter('get_comment_time', 'qtrans_timeFromCommentForCurrentLanguage',0,4);
+add_filter('get_post_modified_time', 'qtrans_timeModifiedFromPostForCurrentLanguage',0,3);
+add_filter('get_the_time', 'qtrans_timeFromPostForCurrentLanguage',0,3);
+add_filter('get_the_date', 'qtrans_dateFromPostForCurrentLanguage',0,4);
+add_filter('locale', 'qtrans_localeForCurrentLanguage',99);
+add_filter('the_title', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage', 0);
+add_filter('term_name', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('tag_rows', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('list_cats', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('wp_list_categories', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('wp_dropdown_cats', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('wp_title', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('single_post_title', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('bloginfo', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('get_others_drafts', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('get_bloginfo_rss', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('get_wp_title_rss', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('wp_title_rss', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('the_title_rss', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('the_content_rss', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('gettext', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('get_pages', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('category_description', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('bloginfo_rss', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('the_category_rss', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('wp_generate_tag_cloud', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('term_links-post_tag', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('link_name', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('link_description', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter('pre_option_rss_language', 'qtrans_getLanguage',0);
+add_filter('the_author', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+add_filter( "_wp_post_revision_field_post_title", 'qtrans_showAllSeperated', 0);
+add_filter( "_wp_post_revision_field_post_content", 'qtrans_showAllSeperated', 0);
+add_filter( "_wp_post_revision_field_post_excerpt", 'qtrans_showAllSeperated', 0);
+
+// Hooks (execution time non-critical filters)
+add_filter('author_feed_link', 'qtrans_convertURL');
+add_filter('author_link', 'qtrans_convertURL');
+add_filter('author_feed_link', 'qtrans_convertURL');
+add_filter('day_link', 'qtrans_convertURL');
+add_filter('get_comment_author_url_link', 'qtrans_convertURL');
+add_filter('month_link', 'qtrans_convertURL');
+add_filter('page_link', 'qtrans_convertURL');
+add_filter('post_link', 'qtrans_convertURL');
+add_filter('year_link', 'qtrans_convertURL');
+add_filter('category_feed_link', 'qtrans_convertURL');
+add_filter('category_link', 'qtrans_convertURL');
+add_filter('tag_link', 'qtrans_convertURL');
+add_filter('term_link', 'qtrans_convertURL');
+add_filter('the_permalink', 'qtrans_convertURL');
+add_filter('feed_link', 'qtrans_convertURL');
+add_filter('post_comments_feed_link', 'qtrans_convertURL');
+add_filter('tag_feed_link', 'qtrans_convertURL');
+add_filter('get_pagenum_link', 'qtrans_convertURL');
+add_filter('get_search_form', 'qtrans_fixSearchForm', 10, 1);
+add_filter('manage_posts_columns', 'qtrans_languageColumnHeader');
+add_filter('manage_posts_custom_column', 'qtrans_languageColumn');
+add_filter('manage_pages_columns', 'qtrans_languageColumnHeader');
+add_filter('manage_pages_custom_column', 'qtrans_languageColumn');
+add_filter('wp_list_pages_excludes', 'qtrans_excludePages');
+add_filter('comment_notification_text', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage');
+add_filter('comment_notification_headers', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage');
+add_filter('comment_notification_subject', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage');
+
+add_filter('the_editor', 'qtrans_modifyRichEditor');
+add_filter('admin_footer', 'qtrans_modifyExcerpt');
+add_filter('bloginfo_url', 'qtrans_convertBlogInfoURL',10,2);
+add_filter('plugin_action_links', 'qtrans_links', 10, 2);
+add_filter('manage_language_columns', 'qtrans_language_columns');
+add_filter('core_version_check_locale', 'qtrans_versionLocale');
+add_filter('redirect_canonical', 'qtrans_checkCanonical', 10, 2);
+// skip this filters if on backend
+if(!defined('WP_ADMIN')) {
+ add_filter('the_posts', 'qtrans_postsFilter');
+ add_filter('wp_setup_nav_menu_item', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage');
+
+ // Compability with Default Widgets
+ qtrans_optionFilter();
+ add_filter('widget_title', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+ add_filter('widget_text', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+
+ // filter options
+ add_filter('esc_html', 'qtrans_esc_html', 0);
+ // don't filter untranslated posts in admin
+ add_filter('posts_where_request', 'qtrans_excludeUntranslatedPosts');
+
+ // leave terms in default language
+ add_filter('cat_row', 'qtrans_useTermLib',0);
+ add_filter('cat_rows', 'qtrans_useTermLib',0);
+ add_filter('wp_get_object_terms', 'qtrans_useTermLib',0);
+ add_filter('single_tag_title', 'qtrans_useTermLib',0);
+ add_filter('single_cat_title', 'qtrans_useTermLib',0);
+ add_filter('the_category', 'qtrans_useTermLib',0);
+ add_filter('get_terms', 'qtrans_useTermLib',0);
+ add_filter('get_category', 'qtrans_useTermLib',0);
+ add_filter('get_comment_author', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+ add_filter('the_author', 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage',0);
+}
+
+?>
\ No newline at end of file
diff --git a/src/wp-content/plugins/qtranslate/qtranslate_javascript.php b/src/wp-content/plugins/qtranslate/qtranslate_javascript.php
new file mode 100644
index 00000000..c5b34c46
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/qtranslate_javascript.php
@@ -0,0 +1,367 @@
+ 1) arr.push(result[1]);
+ start = _regEx.lastIndex;
+ }
+ if(start < this.length) arr.push(this.slice(start));
+ if(start == this.length) arr.push(''); //delim at the end
+ return arr;
+ };
+ ";
+
+ $q_config['js']['qtrans_is_array'] = "
+ qtrans_isArray = function(obj) {
+ if (obj.constructor.toString().indexOf('Array') == -1)
+ return false;
+ else
+ return true;
+ }
+ ";
+
+ $q_config['js']['qtrans_split'] = "
+ qtrans_split = function(text) {
+ var split_regex = /()/gi;
+ var lang_begin_regex = //gi;
+ var lang_end_regex = //gi;
+ var morenextpage_regex = /(|)+$/gi;
+ var matches = null;
+ var result = new Object;
+ var matched = false;
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_split'].= "
+ result['".$language."'] = '';
+ ";
+ $q_config['js']['qtrans_split'].= "
+
+ var blocks = text.xsplit(split_regex);
+ if(qtrans_isArray(blocks)) {
+ for (var i = 0;i
/i;
+ var text = '';
+ var max = 0;
+ var morenextpage_regex = /(|)+$/gi;
+
+ texts[lang] = lang_text;
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_integrate'].= "
+ texts['".$language."'] = texts['".$language."'].split(moreregex);
+ if(!qtrans_isArray(texts['".$language."'])) {
+ texts['".$language."'] = [texts['".$language."']];
+ }
+ if(max < texts['".$language."'].length) max = texts['".$language."'].length;
+ ";
+ $q_config['js']['qtrans_integrate'].= "
+ for(var i=0; i= 1) {
+ text += '';
+ }
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_integrate'].= "
+ if(texts['".$language."'][i] && texts['".$language."'][i]!=''){
+ text += '';
+ text += texts['".$language."'][i];
+ text += '';
+ }
+ ";
+ $q_config['js']['qtrans_integrate'].= "
+ }
+ text = text.replace(morenextpage_regex,'');
+ return text;
+ }
+ ";
+
+ $q_config['js']['qtrans_save'] = "
+ qtrans_save = function(text) {
+ var ta = document.getElementById('content');
+ ta.value = qtrans_integrate(qtrans_get_active_language(),text,ta.value);
+ return ta.value;
+ }
+ ";
+
+ $q_config['js']['qtrans_integrate_category'] = "
+ qtrans_integrate_category = function() {
+ var t = document.getElementById('cat_name');
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_integrate_category'].= "
+ if(document.getElementById('qtrans_category_".$language."').value!='')
+ t.value = qtrans_integrate('".$language."',document.getElementById('qtrans_category_".$language."').value,t.value);
+ ";
+ $q_config['js']['qtrans_integrate_category'].= "
+ }
+ ";
+
+ $q_config['js']['qtrans_integrate_tag'] = "
+ qtrans_integrate_tag = function() {
+ var t = document.getElementById('name');
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_integrate_tag'].= "
+ if(document.getElementById('qtrans_tag_".$language."').value!='')
+ t.value = qtrans_integrate('".$language."',document.getElementById('qtrans_tag_".$language."').value,t.value);
+ ";
+ $q_config['js']['qtrans_integrate_tag'].= "
+ }
+ ";
+
+ $q_config['js']['qtrans_integrate_link_category'] = "
+ qtrans_integrate_link_category = function() {
+ var t = document.getElementById('name');
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_integrate_link_category'].= "
+ if(document.getElementById('qtrans_link_category_".$language."').value!='')
+ t.value = qtrans_integrate('".$language."',document.getElementById('qtrans_link_category_".$language."').value,t.value);
+ ";
+ $q_config['js']['qtrans_integrate_link_category'].= "
+ }
+ ";
+
+ $q_config['js']['qtrans_integrate_title'] = "
+ qtrans_integrate_title = function() {
+ var t = document.getElementById('title');
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_integrate_title'].= "
+ t.value = qtrans_integrate('".$language."',document.getElementById('qtrans_title_".$language."').value,t.value);
+ ";
+ $q_config['js']['qtrans_integrate_title'].= "
+ }
+ ";
+
+ $q_config['js']['qtrans_assign'] = "
+ qtrans_assign = function(id, text) {
+ var inst = tinyMCE.get(id);
+ var ta = document.getElementById(id);
+ if(inst && ! inst.isHidden()) {
+ text = switchEditors.wpautop(text);
+ inst.execCommand('mceSetContent', null, text);
+ } else {
+ ta.value = text;
+ }
+ }
+ ";
+
+ $q_config['js']['qtrans_disable_old_editor'] = "
+ jQuery('#content').removeClass('theEditor').css('display','none');
+ if(typeof tinyMCE!='undefined') tinyMCE.execCommand('mceRemoveControl', false, 'content');
+ ";
+
+ $q_config['js']['qtrans_tinyMCEOverload'] = "
+ tinyMCE.get2 = tinyMCE.get;
+ tinyMCE.get = function(id) {
+ if(id=='content'&&this.get2('qtrans_textarea_'+id)!=undefined)
+ return this.get2('qtrans_textarea_'+id);
+ return this.get2(id);
+ }
+
+ ";
+
+ $q_config['js']['qtrans_wpOnload'] = "
+ jQuery(document).ready(function() {
+ qtrans_editorInit();
+ });
+ ";
+
+ $q_config['js']['qtrans_editorInit'] = "
+ qtrans_editorInit = function() {
+ qtrans_editorInit1();
+ qtrans_editorInit2();
+ jQuery('#qtrans_imsg').hide();
+ qtrans_editorInit3();
+
+ var h = wpCookies.getHash('TinyMCE_content_size');
+ var ta = document.getElementById('content');
+ edCanvas = document.getElementById('qtrans_textarea_content');
+
+ if ( getUserSetting( 'editor' ) == 'html' ) {
+ if ( h )
+ jQuery('#qtrans_textarea_content').css('height', h.ch - 15 + 'px');
+ jQuery('#qtrans_textarea_content').show();
+ } else {
+ jQuery('#qtrans_textarea_content').css('color', 'white');
+ jQuery('#quicktags').hide();
+ // Activate TinyMCE if it's the user's default editor
+ jQuery('#content').hide();
+ jQuery('#qtrans_textarea_content').show();
+ jQuery('#qtrans_textarea_content').val(switchEditors.wpautop(jQuery('#qtrans_textarea_content').val()));
+ qtrans_hook_on_tinyMCE();
+ }
+ }
+ ";
+
+ $q_config['js']['qtrans_hook_on_tinyMCE'] = "
+ qtrans_hook_on_tinyMCE = function() {
+ tinyMCE.execCommand('mceAddControl', false, 'qtrans_textarea_content');
+ var waitForTinyMCE = window.setInterval(function() {
+ if(tinyMCE.get('qtrans_textarea_content')!=undefined) {
+ tinyMCE.get('qtrans_textarea_content').onSaveContent.add(function(ed, o) {
+ qtrans_save(o.content);
+ });
+ window.clearInterval(waitForTinyMCE);
+ }
+ }, 250);
+ }
+ ";
+
+ $q_config['js']['qtrans_get_active_language'] = "
+
+ qtrans_get_active_language = function() {
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_get_active_language'].= "
+ if(document.getElementById('qtrans_select_".$language."').className=='edButton active')
+ return '".$language."';
+ ";
+ $q_config['js']['qtrans_get_active_language'].= "
+ }
+ ";
+
+ $q_config['js']['qtrans_switch_postbox'] = "
+ function qtrans_switch_postbox(parent, target, lang) {
+ ";
+ foreach($q_config['enabled_languages'] as $language)
+ $q_config['js']['qtrans_switch_postbox'].= "
+ jQuery('#'+target).val(qtrans_integrate('".$language."', jQuery('#qtrans_textarea_'+target+'_'+'".$language."').val(), jQuery('#'+target).val()));
+ jQuery('#'+parent+' .qtranslate_lang_div').removeClass('active');
+ if(lang!=false) jQuery('#qtrans_textarea_'+target+'_'+'".$language."').hide();
+ ";
+ $q_config['js']['qtrans_switch_postbox'].= "
+ if(lang!=false) {
+ jQuery('#qtrans_switcher_'+parent+'_'+lang).addClass('active');
+ jQuery('#qtrans_textarea_'+target+'_'+lang).show().focus();
+ }
+ }
+ ";
+
+ $q_config['js']['qtrans_switch'] = "
+ switchEditors.go = function(id, lang) {
+ var inst = tinyMCE.get('qtrans_textarea_' + id);
+ var qt = document.getElementById('quicktags');
+ var vta = document.getElementById('qtrans_textarea_' + id);
+ var ta = document.getElementById(id);
+ var pdr = document.getElementById('editorcontainer');
+
+ // update merged content
+ if(inst && ! inst.isHidden()) {
+ tinyMCE.triggerSave();
+ } else {
+ qtrans_save(vta.value);
+ }
+
+ // check if language is already active
+ if(lang!='tinymce' && lang!='html' && document.getElementById('qtrans_select_'+lang).className=='edButton active') {
+ return;
+ }
+
+ if(lang!='tinymce' && lang!='html') {
+ document.getElementById('qtrans_select_'+qtrans_get_active_language()).className='edButton';
+ document.getElementById('qtrans_select_'+lang).className='edButton active';
+ }
+
+ if(lang=='html') {
+ if ( ! inst || inst.isHidden() )
+ return false;
+ vta.style.height = inst.getContentAreaContainer().offsetHeight + 24 + 'px';
+ inst.hide();
+ qt.style.display = 'block';
+ vta.style.color = '#000';
+ document.getElementById('edButtonHTML').className = 'active';
+ document.getElementById('edButtonPreview').className = '';
+ setUserSetting( 'editor', 'html' );
+ } else if(lang=='tinymce') {
+ if(inst && ! inst.isHidden())
+ return false;
+ vta.style.color = '#fff';
+ edCloseAllTags(); // :-(
+ qt.style.display = 'none';
+ vta.value = this.wpautop(qtrans_use(qtrans_get_active_language(),ta.value));
+ if (inst) {
+ inst.show();
+ } else {
+ qtrans_hook_on_tinyMCE();
+ }
+ document.getElementById('edButtonHTML').className = '';
+ document.getElementById('edButtonPreview').className = 'active';
+ setUserSetting( 'editor', 'tinymce' );
+ } else {
+ // switch content
+ qtrans_assign('qtrans_textarea_'+id,qtrans_use(lang,ta.value));
+ }
+ }
+ ";
+}
+
+?>
\ No newline at end of file
diff --git a/src/wp-content/plugins/qtranslate/qtranslate_services.php b/src/wp-content/plugins/qtranslate/qtranslate_services.php
new file mode 100644
index 00000000..646c312d
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/qtranslate_services.php
@@ -0,0 +1,861 @@
+ $value) {
+ $var[$key] = qs_base64_serialize($value);
+ }
+ }
+ $var = serialize($var);
+ $var = strtr(base64_encode($var), '-_,', '+/=');
+ return $var;
+}
+
+function qs_base64_unserialize($var) {
+ $var = base64_decode(strtr($var, '-_,', '+/='));
+ $var = unserialize($var);
+ if(is_array($var)) {
+ foreach($var as $key => $value) {
+ $var[$key] = qs_base64_unserialize($value);
+ }
+ }
+ return $var;
+}
+
+// sends a encrypted message to qTranslate Services and decrypts the received data
+function qs_queryQS($action, $data='', $fast = false) {
+ global $qs_public_key;
+ // generate new private key
+ $key = openssl_pkey_new();
+ openssl_pkey_export($key, $private_key);
+ $public_key=openssl_pkey_get_details($key);
+ $public_key=$public_key["key"];
+ $message = qs_base64_serialize(array('key'=>$public_key, 'data'=>$data));
+ openssl_seal($message, $message, $server_key, array($qs_public_key));
+ $message = qs_base64_serialize(array('key'=>$server_key[0], 'data'=>$message));
+ $data = "message=".$message;
+
+ // connect to qts
+ if($fast) {
+ $fp = fsockopen('www.qianqin.de', 80, $errno, $errstr, QS_FAST_TIMEOUT);
+ stream_set_timeout($fp, QS_FAST_TIMEOUT);
+ } else {
+ $fp = fsockopen('www.qianqin.de', 80);
+ }
+ if(!$fp) return false;
+
+ fputs($fp, "POST /qtranslate/services/$action HTTP/1.1\r\n");
+ fputs($fp, "Host: www.qianqin.de\r\n");
+ fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
+ fputs($fp, "Content-length: ". strlen($data) ."\r\n");
+ fputs($fp, "Connection: close\r\n\r\n");
+ fputs($fp, $data);
+ $res = '';
+ while(!feof($fp)) {
+ $res .= fgets($fp, 128);
+ }
+ // check for timeout
+ $info = stream_get_meta_data($fp);
+ if($info['timed_out']) return false;
+ fclose($fp);
+
+ preg_match("#^Content-Length:\s*([0-9]+)\s*$#ism",$res, $match);
+ if(isset($match[1])) {
+ $content_length = $match[1];
+ $content = substr($res, -$content_length, $content_length);
+ } else {
+ $content = $res;
+ }
+ $debug = $content;
+ $content = qs_base64_unserialize($content);
+ openssl_open($content['data'], $content, $content['key'], $private_key);
+ if($content===false) {
+ echo "DEBUG:\n";
+ echo $debug;
+ echo " ";
+ }
+ openssl_free_key($key);
+ return qs_cleanup(qs_base64_unserialize($content), $action);
+}
+
+function qs_clean_uri($clean_uri) {
+ return preg_replace("/&(qs_delete|qs_cron)=[^]*/i","",$clean_uri);
+}
+
+function qs_translateButtons($available_languages, $missing_languages) {
+ global $q_config, $post;
+ if(sizeof($missing_languages)==0) return;
+ $missing_languages_name = array();
+ foreach($missing_languages as $language) {
+ $missing_languages_name[] = ''.$q_config['language_name'][$language].' ';
+ }
+ $missing_languages_names = join(', ', $missing_languages_name);
+ printf(__('Translate to %s
', 'qtranslate') ,$missing_languages_names);
+}
+
+function qs_css() {
+?>
+p.error {background-color:#ffebe8;border-color:#c00;border-width:1px;border-style:solid;padding:0 .6em;margin:5px 15px 2px;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
+p.error a{color:#c00;}
+#qs_boxes { margin-right:300px }
+#qs_boxes .postbox h3.hndle, #submitboxcontainer .postbox h3.hndle {cursor:auto}
+#qs_boxes div.inside {margin: 6px 6px 8px;}
+#submitboxcontainer { float:right; width:280px }
+#qs_content_preview { width:100%; height:200px }
+.service_description { margin-left:20px; margin-top:0 }
+#qtranslate-services h4 { margin-top:0 }
+#qtranslate-services h5 { margin-bottom:0 }
+#qtranslate-services .description { font-size:11px }
+#qtrans_select_translate { margin-right:11px }
+.qs_status { border:0 }
+.qs_no-bottom-border { border-bottom:0 !important }
+#submitboxcontainer p { margin:6px 6px ; }
+.qs_submit { text-align:right; background: #EAF2FA; border-top:1px solid #ddd; padding:6px }
+ $service) {
+ // make array out ouf serialized field
+ $fields = array();
+ $required_fields = explode('|',$service['service_required_fields']);
+ foreach($required_fields as $required_field) {
+ if(strpos($required_field, " ")!==false) {
+ list($fieldname, $title) = explode(' ', $required_field, 2);
+ if($fieldname!='') {
+ $fields[] = array('name' => $fieldname, 'value' => '', 'title' => $title);
+ }
+ }
+ }
+ $var[$service_id]['service_required_fields'] = $fields;
+ }
+ break;
+ }
+ if(isset($var['error']) && $var['error'] == QS_DEBUG) {
+ echo "Debug message received from Server: \n";
+ var_dump($var['message']);
+ echo " ";
+ }
+ return $var;
+}
+
+function qs_config_pre_hook($message) {
+ global $q_config;
+ if(isset($_POST['default_language'])) {
+ qtrans_checkSetting('qtranslate_services', true, QT_BOOLEAN);
+ qs_load();
+ if($q_config['qtranslate_services']) {
+ $services = qs_queryQS(QS_GET_SERVICES);
+ $service_settings = get_option('qs_service_settings');
+ if(!is_array($service_settings)) $service_settings = array();
+
+ foreach($services as $service_id => $service) {
+ // check if there are already settings for the field
+ if(!isset($service_settings[$service_id])||!is_array($service_settings[$service_id])) $service_settings[$service_id] = array();
+
+ // update fields
+ foreach($service['service_required_fields'] as $field) {
+ if(isset($_POST['qs_'.$service_id.'_'.$field['name']])) {
+ // skip empty passwords to keep the old value
+ if($_POST['qs_'.$service_id.'_'.$field['name']]=='' && $field['name']=='password') continue;
+ $service_settings[$service_id][$field['name']] = $_POST['qs_'.$service_id.'_'.$field['name']];
+ }
+ }
+ }
+ update_option('qs_service_settings', $service_settings);
+ }
+ }
+ if(isset($_GET['qs_delete'])) {
+ $_GET['qs_delete'] = intval($_GET['qs_delete']);
+ $orders = get_option('qs_orders');
+ if(is_array($orders)) {
+ foreach($orders as $key => $order) {
+ if($orders[$key]['order']['order_id'] == $_GET['qs_delete']) {
+ unset($orders[$key]);
+ update_option('qs_orders',$orders);
+ }
+ }
+ }
+ $message = __('Order deleted.','qtranslate');
+ }
+ if(isset($_GET['qs_cron'])) {
+ qs_cron();
+ $message = __('Status updated for all open orders.','qtranslate');
+ }
+ return $message;
+}
+
+function qs_translate_box($post) {
+ global $q_config;
+ $languages = qtrans_getSortedLanguages();
+?>
+
+
+
+'.__('Please save your post first.','qtranslate').'';
+ }
+ }
+?>
+
+ __('Post Title', 'qtranslate'),
+ 'service' => __('Service', 'qtranslate'),
+ 'source_language' => __('Source Language', 'qtranslate'),
+ 'target_language' => __('Target Language', 'qtranslate'),
+ 'action' => __('Action', 'qtranslate')
+ );
+}
+
+function qs_config_hook($request_uri) {
+ global $q_config;
+?>
+ ( )
+
+
+ $order) {
+ qs_UpdateOrder($order['order']['order_id']);
+ }
+}
+
+function qs_UpdateOrder($order_id) {
+ global $wpdb;
+ $orders = get_option('qs_orders');
+ if(!is_array($orders)) return false;
+ foreach($orders as $key => $order) {
+ // search for wanted order
+ if($order['order']['order_id']!=$order_id) continue;
+
+ // query server for updates
+ $order['order']['order_url'] = get_option('home');
+ $result = qs_queryQS(QS_RETRIEVE_TRANSLATION, $order['order']);
+ if(isset($result['order_comment'])) $orders[$key]['status'] = $result['order_comment'];
+ // update db if post is updated
+ if(isset($result['order_status']) && $result['order_status']==QS_STATE_CLOSED) {
+ $order['post_id'] = intval($order['post_id']);
+ $post = &get_post($order['post_id']);
+ $title = qtrans_split($post->post_title);
+ $content = qtrans_split($post->post_content);
+ $title[$order['target_language']] = $result['order_translated_title'];
+ $content[$order['target_language']] = $result['order_translated_text'];
+ $post->post_title = qtrans_join($title);
+ $post->post_content = qtrans_join($content);
+ $wpdb->show_errors();
+ $wpdb->query('UPDATE '.$wpdb->posts.' SET post_title="'.mysql_escape_string($post->post_title).'", post_content = "'.mysql_escape_string($post->post_content).'" WHERE ID = "'.$post->ID.'"');
+ wp_cache_add($post->ID, $post, 'posts');
+ unset($orders[$key]);
+ }
+ update_option('qs_orders',$orders);
+ return true;
+ }
+ return false;
+}
+
+function qs_service() {
+ global $q_config, $qs_public_key, $qs_error_messages;
+ if(!isset($_REQUEST['post'])) {
+ echo '';
+ printf(__('To translate a post, please go to the edit posts overview .','qtranslate'), 'edit.php');
+ exit();
+ }
+ $post_id = intval($_REQUEST['post']);
+ $confirm = isset($_GET['confirm'])?true:false;
+ $translate_from = '';
+ $translate_to = '';
+ $translate_from_name = '';
+ $translate_to_name = '';
+ if(isset($_REQUEST['source_language'])&&qtrans_isEnabled($_REQUEST['source_language']))
+ $translate_from = $_REQUEST['source_language'];
+ if(isset($_REQUEST['target_language'])&&qtrans_isEnabled($_REQUEST['target_language']))
+ $translate_to = $_REQUEST['target_language'];
+ if($translate_to == $translate_from) $translate_to = '';
+ $post = &get_post($post_id);
+ if(!$post) {
+ printf(__('Post with id "%s" not found!','qtranslate'), $post_id);
+ return;
+ }
+ $default_service = intval(get_option('qs_default_service'));
+ $service_settings = get_option('qs_service_settings');
+ // Detect available Languages and possible target languages
+ $available_languages = qtrans_getAvailableLanguages($post->post_content);
+ if(sizeof($available_languages)==0) {
+ $error = __('The requested Post has no content, no Translation possible.', 'qtranslate');
+ }
+
+ // try to guess source and target language
+ if(!in_array($translate_from, $available_languages)) $translate_from = '';
+ $missing_languages = array_diff($q_config['enabled_languages'], $available_languages);
+ if(empty($translate_from) && in_array($q_config['default_language'], $available_languages) && $translate_to!=$q_config['default_language']) $translate_from = $q_config['default_language'];
+ if(empty($translate_to) && sizeof($missing_languages)==1) $translate_to = $missing_languages[0];
+ if(in_array($translate_to, $available_languages)) {
+ $message = __('The Post already has content for the selected target language. If a translation request is send, the current text for the target language will be overwritten.','qtranslate');
+ }
+ if(sizeof($available_languages)==1) {
+ if($available_languages[0] == $translate_to) {
+ unset($translate_to);
+ }
+ $translate_from = $available_languages[0];
+ } elseif($translate_from == '' && sizeof($available_languages) > 1) {
+ $languages = qtrans_getSortedLanguages();
+ foreach($languages as $language) {
+ if($language != $translate_to && in_array($language, $available_languages)) {
+ $translate_from = $language;
+ break;
+ }
+ }
+ }
+
+ // link to current page with get variables
+ $url_link = add_query_arg('post', $post_id);
+ if(!empty($translate_to)) $url_link = add_query_arg('target_language', $translate_to, $url_link);
+ if(!empty($translate_from)) $url_link = add_query_arg('source_language', $translate_from, $url_link);
+
+ // get correct title and content
+ $post_title = qtrans_use($translate_from,$post->post_title);
+ $post_content = qtrans_use($translate_from,$post->post_content);
+ $post_excerpt = qtrans_use($translate_from,$post->post_excerpt);
+ if(!empty($translate_from)) $translate_from_name = $q_config['language_name'][$translate_from];
+ if(!empty($translate_to)) $translate_to_name = $q_config['language_name'][$translate_to];
+ if(!empty($translate_from) && !empty($translate_to)) {
+ $title = sprintf('Translate "%1$s" from %2$s to %3$s', htmlspecialchars($post_title), $translate_from_name, $translate_to_name);
+ } elseif(!empty($translate_from)) {
+ $title = sprintf('Translate "%1$s" from %2$s', htmlspecialchars($post_title), $translate_from_name);
+ } else {
+ $title = sprintf('Translate "%1$s"', htmlspecialchars($post_title));
+ }
+
+ // Check data
+ if(isset($_POST['service_id'])) {
+ $service_id = intval($_POST['service_id']);
+ $default_service = $service_id;
+ update_option('qs_default_service', $service_id);
+ $order_key = substr(md5(time().AUTH_KEY),0,20);
+ $request = array(
+ 'order_service_id' => $service_id,
+ 'order_url' => get_option('home'),
+ 'order_key' => $order_key,
+ 'order_title' => $post_title,
+ 'order_text' => $post_content,
+ 'order_excerpt' => $post_excerpt,
+ 'order_source_language' => $translate_from,
+ 'order_source_locale' => $q_config['locale'][$translate_from],
+ 'order_target_language' => $translate_to,
+ 'order_target_locale' => $q_config['locale'][$translate_to]
+ );
+ // check for additional fields
+ if(isset($service_settings[$service_id]) && is_array($service_settings[$service_id])) {
+ $request['order_required_field'] = array();
+ foreach($service_settings[$service_id] as $setting => $value) {
+ $request['order_required_field'][$setting] = $value;
+ }
+ }
+ if(isset($_POST['token'])) $request['order_token'] = $_POST['token'];
+ $answer = qs_queryQS(QS_INIT_TRANSLATION, $request);
+ if(isset($answer['error'])) {
+ $error = sprintf(__('An error occured: %s', 'qtranslate'), $qs_error_messages[$answer['error']]);
+ if($answer['message']!='') {
+ $error.=' '.sprintf(__('Additional information: %s', 'qtranslate'), qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($answer['message']));
+ }
+ }
+ if(isset($answer['order_id'])) {
+ $orders = get_option('qs_orders');
+ if(!is_array($orders)) $orders = array();
+ $orders[] = array('post_id'=>$post_id, 'service_id' => $service_id, 'source_language'=>$translate_from, 'target_language'=>$translate_to, 'order' => array('order_key' => $order_key, 'order_id' => $answer['order_id']));
+ update_option('qs_orders', $orders);
+ if(empty($answer['message'])) {
+ $order_completed_message = '';
+ } else {
+ $order_completed_message = htmlspecialchars($answer['message']);
+ }
+ qs_UpdateOrder($answer['order_id']);
+ }
+ }
+ if(isset($error)) {
+?>
+
+
+
+
Support Forum','qtranslate'), 'http://www.qianqin.de/qtranslate/forum/');?>
+
+
+
+
+
+
+post_title;
+ $post_content = $post->post_content;
+ $post_excerpt = $post->post_excerpt;
+ $request = array(
+ 'order_service_id' => $service_id,
+ 'order_title' => $post_title,
+ 'order_text' => $post_content,
+ 'order_excerpt' => $post_excerpt,
+ 'order_source_language' => $translate_from,
+ 'order_source_locale' => $q_config['locale'][$translate_from],
+ 'order_target_language' => $translate_to,
+ 'order_target_locale' => $q_config['locale'][$translate_to],
+ 'order_confirm_url' => get_admin_url(null, 'edit.php?page=qtranslate_services&confirm=1&post='.$_POST['post_id'].'&source_language='.$translate_from.'&target_language='.$translate_to.'&service_id='.$service_id),
+ 'order_failure_url' => get_admin_url(null, 'edit.php?page=qtranslate_services&post='.$_POST['post_id'].'&source_language='.$translate_from.'&target_language='.$translate_to.'&service_id='.$service_id)
+ );
+ $answer = qs_queryQS(QS_QUOTE, $request);
+ $price = __('unavailable', 'qtranslate');
+ $currency = '';
+ if(isset($answer['price'])) {
+ if($answer['price'] == 0) {
+ $price = __('free', 'qtranslate');
+ } else if($answer['price'] < 0) {
+ $price = __('unavailable', 'qtranslate');
+ } else {
+ $price = number_format_i18n($answer['price'],2);
+ $currency = $answer['currency'];
+ }
+ $content = sprintf(__('Price: %1$s %2$s
','qtranslate'), $currency, $price);
+ if(!empty($answer['paypalurl'])) {
+ $content .= '';
+ } else {
+ $content .= '';
+ }
+ } else {
+ $content = ''.__('An error occured!', 'qtranslate');
+ if(isset($answer['error'])) $content .= ' '.$answer['message'];
+ $content .= '
';
+ }
+ echo "jQuery('#submitbox .request').html('";
+ echo $content;
+ echo "');";
+ die();
+}
+
+function qs_toobar($content) {
+ // Create Translate Button
+ $content .= qtrans_createEditorToolbarButton('translate', 'translate', 'init_qs', __('Translate'));
+ return $content;
+}
+
+function qs_editor_js($content) {
+ $content .= "
+ init_qs = function(action, id) {
+ document.location.href = 'edit.php?page=qtranslate_services&post=".intval($_REQUEST['post'])."';
+ }
+ ";
+ return $content;
+}
+
+?>
\ No newline at end of file
diff --git a/src/wp-content/plugins/qtranslate/qtranslate_utils.php b/src/wp-content/plugins/qtranslate/qtranslate_utils.php
new file mode 100644
index 00000000..6c44cd53
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/qtranslate_utils.php
@@ -0,0 +1,245 @@
+ $out[1],
+ "host" => $out[4].(($out[5]=='')?'':':'.$out[5]),
+ "user" => $out[2],
+ "pass" => $out[3],
+ "path" => $out[6],
+ "query" => $out[7],
+ "fragment" => $out[8]
+ );
+ return $result;
+}
+
+function qtrans_stripSlashesIfNecessary($str) {
+ if(1==get_magic_quotes_gpc()) {
+ $str = stripslashes($str);
+ }
+ return $str;
+}
+
+function qtrans_insertDropDownElement($language, $url, $id){
+ global $q_config;
+ $html ="
+ var sb = document.getElementById('qtrans_select_".$id."');
+ var o = document.createElement('option');
+ var l = document.createTextNode('".$q_config['language_name'][$language]."');
+ ";
+ if($q_config['language']==$language)
+ $html .= "o.selected = 'selected';";
+ $html .= "
+ o.value = '".addslashes(htmlspecialchars_decode($url, ENT_NOQUOTES))."';
+ o.appendChild(l);
+ sb.appendChild(o);
+ ";
+ return $html;
+}
+
+function qtrans_getLanguage() {
+ global $q_config;
+ return $q_config['language'];
+}
+
+function qtrans_getLanguageName($lang = '') {
+ global $q_config;
+ if($lang=='' || !qtrans_isEnabled($lang)) $lang = $q_config['language'];
+ return $q_config['language_name'][$lang];
+}
+
+function qtrans_isEnabled($lang) {
+ global $q_config;
+ return in_array($lang, $q_config['enabled_languages']);
+}
+
+function qtrans_startsWith($s, $n) {
+ if(strlen($n)>strlen($s)) return false;
+ if($n == substr($s,0,strlen($n))) return true;
+ return false;
+}
+
+function qtrans_getAvailableLanguages($text) {
+ global $q_config;
+ $result = array();
+ $content = qtrans_split($text);
+ foreach($content as $language => $lang_text) {
+ $lang_text = trim($lang_text);
+ if(!empty($lang_text)) $result[] = $language;
+ }
+ if(sizeof($result)==0) {
+ // add default language to keep default URL
+ $result[] = $q_config['language'];
+ }
+ return $result;
+}
+
+function qtrans_isAvailableIn($post_id, $language='') {
+ global $q_config;
+ if($language == '') $language = $q_config['default_language'];
+ $post = &get_post($post_id);
+ $languages = qtrans_getAvailableLanguages($post->post_content);
+ return in_array($language,$languages);
+}
+
+function qtrans_convertDateFormatToStrftimeFormat($format) {
+ $mappings = array(
+ 'd' => '%d',
+ 'D' => '%a',
+ 'j' => '%E',
+ 'l' => '%A',
+ 'N' => '%u',
+ 'S' => '%q',
+ 'w' => '%f',
+ 'z' => '%F',
+ 'W' => '%V',
+ 'F' => '%B',
+ 'm' => '%m',
+ 'M' => '%b',
+ 'n' => '%i',
+ 't' => '%J',
+ 'L' => '%k',
+ 'o' => '%G',
+ 'Y' => '%Y',
+ 'y' => '%y',
+ 'a' => '%P',
+ 'A' => '%p',
+ 'B' => '%K',
+ 'g' => '%l',
+ 'G' => '%L',
+ 'h' => '%I',
+ 'H' => '%H',
+ 'i' => '%M',
+ 's' => '%S',
+ 'u' => '%N',
+ 'e' => '%Q',
+ 'I' => '%o',
+ 'O' => '%O',
+ 'P' => '%s',
+ 'T' => '%v',
+ 'Z' => '%1',
+ 'c' => '%2',
+ 'r' => '%3',
+ 'U' => '%4'
+ );
+
+ $date_parameters = array();
+ $strftime_parameters = array();
+ $date_parameters[] = '#%#'; $strftime_parameters[] = '%%';
+ foreach($mappings as $df => $sf) {
+ $date_parameters[] = '#(([^%\\\\])'.$df.'|^'.$df.')#'; $strftime_parameters[] = '${2}'.$sf;
+ }
+ // convert everything
+ $format = preg_replace($date_parameters, $strftime_parameters, $format);
+ // remove single backslashes from dates
+ $format = preg_replace('#\\\\([^\\\\]{1})#','${1}',$format);
+ // remove double backslashes from dates
+ $format = preg_replace('#\\\\\\\\#','\\\\',$format);
+ return $format;
+}
+
+function qtrans_convertFormat($format, $default_format) {
+ global $q_config;
+ // check for multilang formats
+ $format = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($format);
+ $default_format = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($default_format);
+ switch($q_config['use_strftime']) {
+ case QT_DATE:
+ if($format=='') $format = $default_format;
+ return qtrans_convertDateFormatToStrftimeFormat($format);
+ case QT_DATE_OVERRIDE:
+ return qtrans_convertDateFormatToStrftimeFormat($default_format);
+ case QT_STRFTIME:
+ return $format;
+ case QT_STRFTIME_OVERRIDE:
+ return $default_format;
+ }
+}
+
+function qtrans_convertDateFormat($format) {
+ global $q_config;
+ if(isset($q_config['date_format'][$q_config['language']])) {
+ $default_format = $q_config['date_format'][$q_config['language']];
+ } elseif(isset($q_config['date_format'][$q_config['default_language']])) {
+ $default_format = $q_config['date_format'][$q_config['default_language']];
+ } else {
+ $default_format = '';
+ }
+ return qtrans_convertFormat($format, $default_format);
+}
+
+function qtrans_convertTimeFormat($format) {
+ global $q_config;
+ if(isset($q_config['time_format'][$q_config['language']])) {
+ $default_format = $q_config['time_format'][$q_config['language']];
+ } elseif(isset($q_config['time_format'][$q_config['default_language']])) {
+ $default_format = $q_config['time_format'][$q_config['default_language']];
+ } else {
+ $default_format = '';
+ }
+ return qtrans_convertFormat($format, $default_format);
+}
+
+function qtrans_formatCommentDateTime($format) {
+ global $comment;
+ return qtrans_strftime(qtrans_convertFormat($format, $format), mysql2date('U',$comment->comment_date), '', $before, $after);
+}
+
+function qtrans_formatPostDateTime($format) {
+ global $post;
+ return qtrans_strftime(qtrans_convertFormat($format, $format), mysql2date('U',$post->post_date), '', $before, $after);
+}
+
+function qtrans_formatPostModifiedDateTime($format) {
+ global $post;
+ return qtrans_strftime(qtrans_convertFormat($format, $format), mysql2date('U',$post->post_modified), '', $before, $after);
+}
+
+function qtrans_realURL($url = '') {
+ global $q_config;
+ return $q_config['url_info']['original_url'];
+}
+
+function qtrans_getSortedLanguages($reverse = false) {
+ global $q_config;
+ $languages = $q_config['enabled_languages'];
+ ksort($languages);
+ // fix broken order
+ $clean_languages = array();
+ foreach($languages as $lang) {
+ $clean_languages[] = $lang;
+ }
+ if($reverse) krsort($clean_languages);
+ return $clean_languages;
+}
+
+function qtrans_fixSearchUrl($id='adminbarsearch') {
+ echo "\n";
+}
+
+?>
\ No newline at end of file
diff --git a/src/wp-content/plugins/qtranslate/qtranslate_widget.php b/src/wp-content/plugins/qtranslate/qtranslate_widget.php
new file mode 100644
index 00000000..aa023330
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/qtranslate_widget.php
@@ -0,0 +1,131 @@
+ 'widget_qtranslate', 'description' => __('Allows your visitors to choose a Language.','qtranslate') );
+ $this->WP_Widget('qtranslate', __('qTranslate Language Chooser','qtranslate'), $widget_ops);
+ }
+
+ function widget($args, $instance) {
+ extract($args);
+
+ echo $before_widget;
+ $title = empty($instance['title']) ? __('Language', 'qtranslate') : apply_filters('widget_title', $instance['title']);
+ $hide_title = empty($instance['hide-title']) ? false : 'on';
+ $type = $instance['type'];
+ if($type!='text'&&$type!='image'&&$type!='both'&&$type!='dropdown') $type='text';
+
+ if($hide_title!='on') { echo $before_title . $title . $after_title; };
+ qtrans_generateLanguageSelectCode($type, $this->id);
+ echo $after_widget;
+ }
+
+ function update($new_instance, $old_instance) {
+ $instance = $old_instance;
+ $instance['title'] = $new_instance['title'];
+ if(isset($new_instance['hide-title'])) $instance['hide-title'] = $new_instance['hide-title'];
+ $instance['type'] = $new_instance['type'];
+
+ return $instance;
+ }
+
+ function form($instance) {
+ $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'hide-title' => false, 'type' => 'text' ) );
+ $title = $instance['title'];
+ $hide_title = $instance['hide-title'];
+ $type = $instance['type'];
+?>
+
+ />
+
+ />
+ />
+ />
+ />
+';
+ foreach(qtrans_getSortedLanguages() as $language) {
+ echo ''.$q_config['language_name'][$language].' ';
+ }
+ echo "
";
+ if($style=='dropdown') {
+ echo "\n";
+ }
+ break;
+ case 'both':
+ echo '
";
+ break;
+ }
+}
+
+function qtrans_widget_init() {
+ register_widget('qTranslateWidget');
+}
+
+?>
diff --git a/src/wp-content/plugins/qtranslate/qtranslate_wphacks.php b/src/wp-content/plugins/qtranslate/qtranslate_wphacks.php
new file mode 100644
index 00000000..428d9ff0
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/qtranslate_wphacks.php
@@ -0,0 +1,358 @@
+\n// name)) {
+ $termname = $term->name;
+ } else {
+ $termname = "";
+ }
+ // create input fields for each language
+ foreach($q_config['enabled_languages'] as $language) {
+ if(isset($_GET['action']) && $_GET['action']=='edit') {
+ echo qtrans_insertTermInput2($id, $name, $termname, $language);
+ } else {
+ echo qtrans_insertTermInput($id, $name, $termname, $language);
+ }
+ }
+ // hide real category text
+ echo "ins.style.display='none';\n";
+ echo "// ]]>\n\n";
+}
+
+function qtrans_modifyTermFormFor($term) {
+ qtrans_modifyTermForm('name', __('Name'), $term);
+ qtrans_modifyTermForm('tag-name', __('Name'), $term);
+}
+
+// Modifys TinyMCE to edit multilingual content
+function qtrans_modifyRichEditor($old_content) {
+ global $q_config;
+ $init_editor = true;
+ if($GLOBALS['wp_version'] != QT_SUPPORTED_WP_VERSION) {
+ if(!(isset($_REQUEST['qtranslateincompatiblemessage'])&&$_REQUEST['qtranslateincompatiblemessage']=="shown")) {
+ echo ''.__('The qTranslate Editor has disabled itself because it hasn\'t been tested with your Wordpress version yet. This is done to prevent Wordpress from malfunctioning. You can reenable it by
clicking here (may cause
data loss ! Use at own risk!). To remove this message permanently, please update qTranslate to the
corresponding version .', 'qtranslate').'
';
+ }
+ $init_editor = false;
+ }
+ // save callback hook
+
+ preg_match("/]*id='([^']+)'/",$old_content,$matches);
+ $id = $matches[1];
+ preg_match("/cols='([^']+)'/",$old_content,$matches);
+ $cols = $matches[1];
+ preg_match("/rows='([^']+)'/",$old_content,$matches);
+ $rows = $matches[1];
+ // don't do anything if not editing the content
+ if($id!="content") return $old_content;
+
+ // don't do anything to the editor if it's not rich
+ if(!user_can_richedit()) {
+ //echo ''.__('The qTranslate Editor could not be loaded because WYSIWYG/TinyMCE is not activated in your profile.').'
';
+ return $old_content;
+ }
+
+ // fix wpautop bug
+ if($init_editor && has_filter('the_editor_content', 'wp_richedit_pre')) {
+ remove_filter('the_editor_content', 'wp_richedit_pre');
+ add_filter('the_editor_content', 'wp_htmledit_pre');
+ }
+
+ $content = "";
+ $content_append = "";
+
+ // create editing field for selected languages
+ $old_content = substr($old_content,0,26)
+ ." "
+ .substr($old_content,26);
+
+ // do some crazy js to alter the admin view
+ $content .="\n";
+
+ $content_append .="\n";
+
+ return $content.$old_content.$content_append;
+}
+
+function qtrans_modifyExcerpt() {
+ global $q_config;
+ echo "\n";
+}
+
+function qtrans_createTitlebarButton($parent, $language, $target, $id) {
+ global $q_config;
+ $html = "
+ jQuery('#".$parent." .handlediv').after(' ');
+ jQuery('#".$id."').click(function() {qtrans_switch_postbox('".$parent."','".$target."','".$language."');});
+ ";
+ return $html;
+}
+
+function qtrans_createTextArea($parent, $language, $target, $id) {
+ global $q_config;
+ $html = "
+ jQuery('#".$target."').after(' ');
+ jQuery('#qtrans_textarea_".$target."_".$language."').attr('cols', jQuery('#".$target."').attr('cols'));
+ jQuery('#qtrans_textarea_".$target."_".$language."').attr('rows', jQuery('#".$target."').attr('rows'));
+ jQuery('#qtrans_textarea_".$target."_".$language."').attr('tabindex', jQuery('#".$target."').attr('tabindex'));
+ jQuery('#qtrans_textarea_".$target."_".$language."').blur(function() {qtrans_switch_postbox('".$parent."','".$target."',false);});
+ jQuery('#qtrans_textarea_".$target."_".$language."').val(qtrans_use('".$language."',jQuery('#".$target."').val()));
+ ";
+ return $html;
+}
+
+function qtrans_insertTermInput($id,$name,$term,$language){
+ global $q_config;
+ $html ="
+ var il = document.getElementsByTagName('input');
+ var d = document.createElement('div');
+ var l = document.createTextNode('".$name." (".$q_config['language_name'][$language].")');
+ var ll = document.createElement('label');
+ var i = document.createElement('input');
+ var ins = null;
+ for(var j = 0; j < il.length; j++) {
+ if(il[j].id=='".$id."') {
+ ins = il[j];
+ break;
+ }
+ }
+ i.type = 'text';
+ i.id = i.name = ll.htmlFor ='qtrans_term_".$language."';
+ ";
+ if(isset($q_config['term_name'][$term][$language])) {
+ $html .="
+ i.value = '".addslashes(htmlspecialchars_decode($q_config['term_name'][$term][$language], ENT_NOQUOTES))."';
+ ";
+ } else {
+ $html .="
+ i.value = ins.value;
+ ";
+ }
+ if($language == $q_config['default_language']) {
+ $html .="
+ i.onchange = function() {
+ var il = document.getElementsByTagName('input');
+ var ins = null;
+ for(var j = 0; j < il.length; j++) {
+ if(il[j].id=='".$id."') {
+ ins = il[j];
+ break;
+ }
+ }
+ ins.value = document.getElementById('qtrans_term_".$language."').value;
+ };
+ ";
+ }
+ $html .="
+ ins = ins.parentNode;
+ d.className = 'form-field form-required';
+ ll.appendChild(l);
+ d.appendChild(ll);
+ d.appendChild(i);
+ ins.parentNode.insertBefore(d,ins);
+ ";
+ return $html;
+}
+
+function qtrans_insertTermInput2($id,$name,$term,$language){
+ global $q_config;
+ $html ="
+ var tr = document.createElement('tr');
+ var th = document.createElement('th');
+ var ll = document.createElement('label');
+ var l = document.createTextNode('".$name." (".$q_config['language_name'][$language].")');
+ var td = document.createElement('td');
+ var i = document.createElement('input');
+ var ins = document.getElementById('".$id."');
+ i.type = 'text';
+ i.id = i.name = ll.htmlFor ='qtrans_term_".$language."';
+ ";
+ if(isset($q_config['term_name'][$term][$language])) {
+ $html .="
+ i.value = '".addslashes(htmlspecialchars_decode($q_config['term_name'][$term][$language], ENT_QUOTES))."';
+ ";
+ } else {
+ $html .="
+ i.value = ins.value;
+ ";
+ }
+ if($language == $q_config['default_language']) {
+ $html .="
+ i.onchange = function() {
+ var il = document.getElementsByTagName('input');
+ var ins = null;
+ for(var j = 0; j < il.length; j++) {
+ if(il[j].id=='".$id."') {
+ ins = il[j];
+ break;
+ }
+ }
+ ins.value = document.getElementById('qtrans_term_".$language."').value;
+ };
+ ";
+ }
+ $html .="
+ ins = ins.parentNode.parentNode;
+ tr.className = 'form-field form-required';
+ th.scope = 'row';
+ th.vAlign = 'top';
+ ll.appendChild(l);
+ th.appendChild(ll);
+ tr.appendChild(th);
+ td.appendChild(i);
+ tr.appendChild(td);
+ ins.parentNode.insertBefore(tr,ins);
+ ";
+ return $html;
+}
+
+function qtrans_insertTitleInput($language){
+ global $q_config;
+ $html ="
+ var td = document.getElementById('titlediv');
+ var qtd = document.createElement('div');
+ var h = document.createElement('h3');
+ var l = document.createTextNode('".__("Title", 'qtranslate')." (".$q_config['language_name'][$language].")');
+ var tw = document.createElement('div');
+ var ti = document.createElement('input');
+ var slug = document.getElementById('edit-slug-box');
+
+ ti.type = 'text';
+ ti.id = 'qtrans_title_".$language."';
+ ti.tabIndex = '1';
+ ti.value = qtrans_use('".$language."', document.getElementById('title').value);
+ ti.onchange = qtrans_integrate_title;
+ ti.className = 'qtrans_title_input';
+ h.className = 'qtrans_title';
+ tw.className = 'qtrans_title_wrap';
+
+ qtd.className = 'postarea';
+
+ h.appendChild(l);
+ tw.appendChild(ti);
+ qtd.appendChild(h);
+ qtd.appendChild(tw);";
+ if($q_config['default_language'] == $language)
+ $html.="if(slug) qtd.appendChild(slug);";
+ $html.="
+ td.parentNode.insertBefore(qtd,td);
+
+ ";
+ return $html;
+}
+
+function qtrans_createEditorToolbarButton($language, $id, $js_function = 'switchEditors.go', $label = ''){
+ global $q_config;
+ $html = "
+ var bc = document.getElementById('editor-toolbar');
+ var mb = document.getElementById('media-buttons');
+ var ls = document.createElement('a');
+ var l = document.createTextNode('".(($label==='')?$q_config['language_name'][$language]:$label)."');
+ ls.id = 'qtrans_select_".$language."';
+ ls.className = 'edButton';
+ ls.onclick = function() { ".$js_function."('".$id."','".$language."'); };
+ ls.appendChild(l);
+ bc.insertBefore(ls,mb);
+ ";
+ return $html;
+}
+?>
diff --git a/src/wp-content/plugins/qtranslate/readme.txt b/src/wp-content/plugins/qtranslate/readme.txt
new file mode 100644
index 00000000..16dc4579
--- /dev/null
+++ b/src/wp-content/plugins/qtranslate/readme.txt
@@ -0,0 +1,57 @@
+=== qTranslate ===
+Contributors: chineseleper
+Tags: multilingual, language, admin, tinymce, bilingual, widget, switcher, i18n, l10n, multilanguage, professional, translation, service, human
+Requires at least: 3.1.2
+Tested up to: 3.1.2
+Stable tag: 2.5.20
+Donate Link: http://www.qianqin.de/qtranslate/contribute/
+
+Adds userfriendly multilingual content management and translation support into Wordpress.
+
+== Description ==
+
+Writing multilingual content is already hard enough, why make using a plugin even more complicated? I created qTranslate to let Wordpress have an easy to use interface for managing a fully multilingual web site.
+
+qTranslate makes creation of multilingual content as easy as working with a single language. Here are some features:
+
+- qTranslate Services - Professional human and automated machine translation with two clicks
+- One-Click-Switching between the languages - Change the language as easy as switching between Visual and HTML
+- Language customizations without changing the .mo files - Use Quick-Tags instead for easy localization
+- Multilingual dates out of the box - Translates dates and time for you
+- Comes with a lot of languages already builtin! - English, German, Simplified Chinese and a lot of others
+- No more juggling with .mo-files! - qTranslate will download them automatically for you
+- Choose one of 3 Modes to make your URLs pretty and SEO-friendly. - The everywhere compatible `?lang=en`, simple and beautiful `/en/foo/` or nice and neat `en.yoursite.com`
+- One language for each URL - Users and SEO will thank you for not mixing multilingual content
+
+qTranslate supports infinite languages, which can be easily added/modified/deleted via the comfortable Configuration Page.
+All you need to do is activate the plugin and start writing the content!
+
+For more Information visit the [Plugin Homepage](http://www.qianqin.de/qtranslate/)
+
+Flags in flags directory are made by Luc Balemans and downloaded from FOTW Flags Of The World website at
+[http://flagspot.net/flags/](http://www.crwflags.com/FOTW/FLAGS/wflags.html)
+
+== Installation ==
+
+For more detailed instructions, take a look at the [Installation Guide](http://www.qianqin.de/qtranslate/installation-guide/)
+
+Installation of this plugin is fairly easy:
+
+1. Download the plugin from [here](http://wordpress.org/extend/plugins/qtranslate/ "qTranslate").
+1. Extract all the files.
+1. Upload everything (keeping the directory structure) to the `/wp-content/plugins/` directory.
+1. There should be a `/wp-content/plugins/qtranslate` directory now with `qtranslate.php` in it.
+1. Activate the plugin through the 'Plugins' menu in WordPress.
+1. Add the qTranslate Widget to let your visitors switch the language.
+
+== Frequently Asked Questions ==
+
+The FAQ is available at the [Plugin Homepage](http://www.qianqin.de/qtranslate/)
+
+For Problems visits the [Support Forum](http://www.qianqin.de/qtranslate/forum/)
+
+== Screenshots ==
+
+1. Wordpress Editor with qTranslate
+2. Language Management Interface
+3. qTranslate Services (Translation)
diff --git a/src/wp-content/plugins/qtranslate/screenshot-1.png b/src/wp-content/plugins/qtranslate/screenshot-1.png
new file mode 100644
index 00000000..f164c695
Binary files /dev/null and b/src/wp-content/plugins/qtranslate/screenshot-1.png differ
diff --git a/src/wp-content/plugins/qtranslate/screenshot-2.png b/src/wp-content/plugins/qtranslate/screenshot-2.png
new file mode 100644
index 00000000..bd7ea80d
Binary files /dev/null and b/src/wp-content/plugins/qtranslate/screenshot-2.png differ
diff --git a/src/wp-content/plugins/qtranslate/screenshot-3.png b/src/wp-content/plugins/qtranslate/screenshot-3.png
new file mode 100644
index 00000000..1c1841ba
Binary files /dev/null and b/src/wp-content/plugins/qtranslate/screenshot-3.png differ
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-de_DE.mo b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-de_DE.mo
new file mode 100644
index 00000000..95abc45a
Binary files /dev/null and b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-de_DE.mo differ
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-de_DE.po b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-de_DE.po
new file mode 100644
index 00000000..479da08d
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-de_DE.po
@@ -0,0 +1,58 @@
+# Copyright (C) 2010 Simple Local Avatars
+# This file is distributed under the same license as the Simple Local Avatars package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Simple Local Avatars 1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-local-avatars\n"
+"POT-Creation-Date: 2011-01-18 16:36:12+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2011-01-18 14:17-0500\n"
+"Last-Translator: Jake Goldman \n"
+"Language-Team: \n"
+"X-Poedit-Language: German\n"
+
+#: simple-local-avatars.php:104
+msgid "Local Avatar Permissions"
+msgstr "Profilbild-Berechtigungen"
+
+#: simple-local-avatars.php:120
+msgid "Only allow users with file upload capabilities to upload local avatars (Authors and above)"
+msgstr "Erlaube ausschließlich Benutzern mit der Berechtigung zum Bearbeiten von Dateien das Hochladen von Profilbildern (Autoren und darüber)"
+
+#: simple-local-avatars.php:128
+msgid "Avatar"
+msgstr "Profilbild"
+
+#: simple-local-avatars.php:132
+msgid "Upload Avatar"
+msgstr "Profilbild hochladen"
+
+#: simple-local-avatars.php:148
+msgid "No local avatar is set. Use the upload field to add a local avatar."
+msgstr "Es ist kein Profilbild festgelegt. Klicke „Durchsuchen…“, um ein Profilbild hochzuladen."
+
+#: simple-local-avatars.php:151
+msgid "Delete local avatar"
+msgstr "Profilbild löschen"
+
+#: simple-local-avatars.php:152
+msgid "Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option."
+msgstr "Ersetze das Profilbild, indem du ein neues hochlädst, oder lösche das Profilbild (dann wird ggf. dein Gravatar angezeigt), indem du „Profilbild löschen“ auswählst."
+
+#: simple-local-avatars.php:158
+msgid "No local avatar is set. Set up your avatar at Gravatar.com."
+msgstr "Es ist kein Profilbild festgelegt. Lade dein Profilbild bei Gravatar.com hoch."
+
+#: simple-local-avatars.php:161
+msgid "You do not have media management permissions. To change your local avatar, contact the blog administrator."
+msgstr "Du hast keine Berechtigung zur Bearbeitung von Mediadateien. Um dein Profilbild zu ändern, kontaktiere den Administrator dieser Website."
+
+#. Plugin Name of the plugin/theme
+msgid "Simple Local Avatars"
+msgstr "Simple Local Avatars (Einfache lokale Profilbilder)"
+
+#. Description of the plugin/theme
+msgid "Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight."
+msgstr "Fügt ein Feld zum Hochladen eines Profilbilds (Avatar) hinzu, sofern der Benutzer zum Bearbeiten von Mediadateien berechtigt ist. Generiert die erforderlichen Maße, genau wie Gravatar! Einfach und schlank."
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-es_ES.mo b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-es_ES.mo
new file mode 100644
index 00000000..78833ca0
Binary files /dev/null and b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-es_ES.mo differ
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-es_ES.po b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-es_ES.po
new file mode 100644
index 00000000..d0b67eb2
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-es_ES.po
@@ -0,0 +1,59 @@
+# Copyright (C) 2010 Simple Local Avatars
+# This file is distributed under the same license as the Simple Local Avatars package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Simple Local Avatars 1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-local-avatars\n"
+"POT-Creation-Date: 2011-01-18 16:36:12+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2011-01-26 10:57+0100\n"
+"Last-Translator: KLAMM \n"
+"Language-Team: \n"
+"X-Poedit-Language: Spanish\n"
+
+#: simple-local-avatars.php:104
+msgid "Local Avatar Permissions"
+msgstr "Permisos de Local Avatar"
+
+#: simple-local-avatars.php:120
+msgid "Only allow users with file upload capabilities to upload local avatars (Authors and above)"
+msgstr "Sólo aceptar usuarios con permisos para subir avatares locales (Autores y superiores)"
+
+#: simple-local-avatars.php:128
+msgid "Avatar"
+msgstr "Avatar"
+
+#: simple-local-avatars.php:132
+msgid "Upload Avatar"
+msgstr "Subir avatar"
+
+#: simple-local-avatars.php:148
+msgid "No local avatar is set. Use the upload field to add a local avatar."
+msgstr "No se ha configurado ningún avatar. Usa el formulario para subir tu propio avatar."
+
+#: simple-local-avatars.php:151
+msgid "Delete local avatar"
+msgstr "Eliminar avatar"
+
+#: simple-local-avatars.php:152
+msgid "Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option."
+msgstr "Substituye el avatar subiendo uno nuevo, o borrando el avatar actual seleccionando la opción de eliminar (en su lugar se utilizará Gravatar.com)."
+
+#: simple-local-avatars.php:158
+msgid "No local avatar is set. Set up your avatar at Gravatar.com."
+msgstr "No se ha configurado ningún avatar. Configura tu avatar en Gravatar.com."
+
+#: simple-local-avatars.php:161
+msgid "You do not have media management permissions. To change your local avatar, contact the blog administrator."
+msgstr "No tienes los permisos necesarios. Para cambiar tu avatar contacta con el administrador del blog."
+
+#. Plugin Name of the plugin/theme
+msgid "Simple Local Avatars"
+msgstr "Simple Local Avatars"
+
+#. Description of the plugin/theme
+msgid "Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight."
+msgstr "Añade un campo para subir un avatar a los perfiles de usuario siempre que éstos tengan los permisos adecuados. Redimensiona las imágenes de la misma manera que Gravatar. Simple y ligero."
+
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-fr_FR.mo b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-fr_FR.mo
new file mode 100644
index 00000000..24596e69
Binary files /dev/null and b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-fr_FR.mo differ
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-fr_FR.po b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-fr_FR.po
new file mode 100644
index 00000000..fd0ba02d
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-fr_FR.po
@@ -0,0 +1,59 @@
+# Copyright (C) 2010 Simple Local Avatars
+# This file is distributed under the same license as the Simple Local Avatars package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Simple Local Avatars 1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-local-avatars\n"
+"POT-Creation-Date: 2011-01-18 16:36:12+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2011-01-27 00:16+0100\n"
+"Last-Translator: Valentin Brandt \n"
+"Language-Team: \n"
+"X-Poedit-Language: German\n"
+
+#: simple-local-avatars.php:104
+msgid "Local Avatar Permissions"
+msgstr "Permissions des avatars"
+
+#: simple-local-avatars.php:120
+msgid "Only allow users with file upload capabilities to upload local avatars (Authors and above)"
+msgstr "Autoriser uniquement les utilisateurs ayant les capacités d'envoyer un avatar sur le serveur (auteurs)"
+
+#: simple-local-avatars.php:128
+msgid "Avatar"
+msgstr "Avatar"
+
+#: simple-local-avatars.php:132
+msgid "Upload Avatar"
+msgstr "Envoyer un Avatar"
+
+#: simple-local-avatars.php:148
+msgid "No local avatar is set. Use the upload field to add a local avatar."
+msgstr "Il n'y aucun avatar local. Utilisez le champ de téléchargement pour ajouter un avatar local."
+
+#: simple-local-avatars.php:151
+msgid "Delete local avatar"
+msgstr "Supprimer l'avatar local"
+
+#: simple-local-avatars.php:152
+msgid "Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option."
+msgstr "Remplacer l'avatar local en envoyant un nouvel avatar, ou effacez-le (vous allez retomber à un gravatar, si disponible) en cochant l'option de suppression."
+
+#: simple-local-avatars.php:158
+msgid "No local avatar is set. Set up your avatar at Gravatar.com."
+msgstr "Aucun avatar local. Configurez votre avatar sur Gravatar.com."
+
+#: simple-local-avatars.php:161
+msgid "You do not have media management permissions. To change your local avatar, contact the blog administrator."
+msgstr "Vous n'avez pas les autorisations nécessaire pour gérer les médias. Pour changer votre avatar local, contacter l'administrateur du blog."
+
+#. Plugin Name of the plugin/theme
+msgid "Simple Local Avatars"
+msgstr "Simple Local Avatars"
+
+#. Description of the plugin/theme
+msgid "Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight."
+msgstr "Ajoute un champ d'envoi d'avatar pour les profils utilisateurs, si l'utilisateur dispose des autorisations pour gérer les médias du blog. Il est possible de générer de nouvelles tailles, à la demande ! Simple et léger."
+
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-it_IT.mo b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-it_IT.mo
new file mode 100644
index 00000000..dca4e99f
Binary files /dev/null and b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-it_IT.mo differ
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-it_IT.po b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-it_IT.po
new file mode 100644
index 00000000..283459a9
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-it_IT.po
@@ -0,0 +1,59 @@
+# Copyright (C) 2010 Simple Local Avatars
+# This file is distributed under the same license as the Simple Local Avatars package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Simple Local Avatars 1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-local-avatars\n"
+"POT-Creation-Date: 2011-01-18 16:36:12+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2011-01-18 21:35+0100\n"
+"Last-Translator: MARCO \n"
+"Language-Team: \n"
+"X-Poedit-Language: Italian\n"
+
+#: simple-local-avatars.php:104
+msgid "Local Avatar Permissions"
+msgstr "Permessi per Avatar Locali"
+
+#: simple-local-avatars.php:120
+msgid "Only allow users with file upload capabilities to upload local avatars (Authors and above)"
+msgstr "Consentire solo agli utenti con permessi di upload di caricare avatar locali (Autori e superiori) "
+
+#: simple-local-avatars.php:128
+msgid "Avatar"
+msgstr "Avatar"
+
+#: simple-local-avatars.php:132
+msgid "Upload Avatar"
+msgstr "Caricare l'Avatar"
+
+#: simple-local-avatars.php:148
+msgid "No local avatar is set. Use the upload field to add a local avatar."
+msgstr "Nessun avatar locale è stato definito. Usa il campo di upload per aggiungerne uno."
+
+#: simple-local-avatars.php:151
+msgid "Delete local avatar"
+msgstr "Cancella l'avatar locale"
+
+#: simple-local-avatars.php:152
+msgid "Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option."
+msgstr "Sostituire l'avatar locale caricandone uno nuovo, o cancellarlo (tornando al Gravatar) selezionando l'opzione di eliminazione."
+
+#: simple-local-avatars.php:158
+msgid "No local avatar is set. Set up your avatar at Gravatar.com."
+msgstr "Non è impostato alcun avatar locale. Utilizza Gravatar.com per impostarne uno."
+
+#: simple-local-avatars.php:161
+msgid "You do not have media management permissions. To change your local avatar, contact the blog administrator."
+msgstr "Non hai i permessi necessari. Per cambiare il tuo avatar locale contatta l'amministratore del blog."
+
+#. Plugin Name of the plugin/theme
+msgid "Simple Local Avatars"
+msgstr "Simple Local Avatars"
+
+#. Description of the plugin/theme
+msgid "Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight."
+msgstr "Aggiunge un campo per permettere l'upload di un avatar personalizzato agli utenti che dispongono di adeguati permessi. Ridimensiona l'immagine come Gravatar! Semplice e leggero"
+
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-nb_NO.mo b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-nb_NO.mo
new file mode 100644
index 00000000..10987c06
Binary files /dev/null and b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-nb_NO.mo differ
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-nb_NO.po b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-nb_NO.po
new file mode 100644
index 00000000..09146239
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-nb_NO.po
@@ -0,0 +1,59 @@
+# Copyright (C) 2010 Simple Local Avatars
+# This file is distributed under the same license as the Simple Local Avatars package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Simple Local Avatars 1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-local-avatars\n"
+"POT-Creation-Date: 2011-01-18 16:36:12+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2011-01-18 23:22+0100\n"
+"Last-Translator: Øyvind Enger \n"
+"Language-Team: \n"
+"X-Poedit-Language: German\n"
+
+#: simple-local-avatars.php:104
+msgid "Local Avatar Permissions"
+msgstr "Innstilling for lokale profilbilder"
+
+#: simple-local-avatars.php:120
+msgid "Only allow users with file upload capabilities to upload local avatars (Authors and above)"
+msgstr "Kun brukere med rettigheter til å laste opp filer, kan legge inn nye lokale profilbilder. (Forfattere og høyere)"
+
+#: simple-local-avatars.php:128
+msgid "Avatar"
+msgstr "Profilbilde"
+
+#: simple-local-avatars.php:132
+msgid "Upload Avatar"
+msgstr "Last opp profilbilde"
+
+#: simple-local-avatars.php:148
+msgid "No local avatar is set. Use the upload field to add a local avatar."
+msgstr "Et lokalt profilbilde er ikke definert. Bruk skjemafeltet over for å laste opp et nytt lokalt profilbilde."
+
+#: simple-local-avatars.php:151
+msgid "Delete local avatar"
+msgstr "Slett lokalt profilbilde"
+
+#: simple-local-avatars.php:152
+msgid "Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option."
+msgstr "Erstatt det lokale profilbildet ved å laste opp et nytt profilbilde, eller slett det lokale profilbildet (vil gå tilbake til å vise gravatar) ved å krysse av valget om sletting."
+
+#: simple-local-avatars.php:158
+msgid "No local avatar is set. Set up your avatar at Gravatar.com."
+msgstr "Et lokalt profilbilde er ikke definert. Definer ditt profilbilde på Gravatar.com."
+
+#: simple-local-avatars.php:161
+msgid "You do not have media management permissions. To change your local avatar, contact the blog administrator."
+msgstr "Du har ikke rettigheter til å redigere media. For å endre ditt lokale profilbilde, ta kontakt med administratoren for nettsiden."
+
+#. Plugin Name of the plugin/theme
+msgid "Simple Local Avatars"
+msgstr "Simple Local Avatars"
+
+#. Description of the plugin/theme
+msgid "Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight."
+msgstr "Legger til et felt for opplasting av lokale profilbilder dersom brukeren har rettigheter til å redigere media. Genererer riktig størrelse ved behov akkurat som Gravatar! Enkelt og greit."
+
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-ru_RU.mo b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-ru_RU.mo
new file mode 100644
index 00000000..122c72d9
Binary files /dev/null and b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-ru_RU.mo differ
diff --git a/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-ru_RU.po b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-ru_RU.po
new file mode 100644
index 00000000..28146a06
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/localization/simple-local-avatars-ru_RU.po
@@ -0,0 +1,60 @@
+# Copyright (C) 2010 Simple Local Avatars
+# This file is distributed under the same license as the Simple Local Avatars package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Simple Local Avatars 1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-local-avatars\n"
+"POT-Creation-Date: 2011-01-18 16:36:12+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2011-04-03 00:40+0200\n"
+"Last-Translator: seo-semjanin \n"
+"Language-Team: seo-semjanin \n"
+"X-Poedit-Language: Russian\n"
+"X-Poedit-Country: RUSSIAN FEDERATION\n"
+
+#: simple-local-avatars.php:104
+msgid "Local Avatar Permissions"
+msgstr "Локальные настройки аватара"
+
+#: simple-local-avatars.php:120
+msgid "Only allow users with file upload capabilities to upload local avatars (Authors and above)"
+msgstr "Только пользователи определенной категории могут загружать аватары (Авторы и выше)"
+
+#: simple-local-avatars.php:128
+msgid "Avatar"
+msgstr "Аватар"
+
+#: simple-local-avatars.php:132
+msgid "Upload Avatar"
+msgstr "Загрузить аватар"
+
+#: simple-local-avatars.php:148
+msgid "No local avatar is set. Use the upload field to add a local avatar."
+msgstr "Нет установленого локального аватара. Используйте загрузку, чтобы добавить аватар."
+
+#: simple-local-avatars.php:151
+msgid "Delete local avatar"
+msgstr "Удалить локальный аватар"
+
+#: simple-local-avatars.php:152
+msgid "Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option."
+msgstr "Заменить локальный аватар загрузив новое изображение или стереть локальный аватар обозначив опцию удаления. (по умолчанию вернется gravatar)"
+
+#: simple-local-avatars.php:158
+msgid "No local avatar is set. Set up your avatar at Gravatar.com."
+msgstr "Локальный аватар не установлен. Установить ваш аватар на Gravatar.com"
+
+#: simple-local-avatars.php:161
+msgid "You do not have media management permissions. To change your local avatar, contact the blog administrator."
+msgstr "Ваших полномочий не достаточно для смены аватара. Чтобы сменить локальный аватар, свяжитесь с администратором сайта."
+
+#. Plugin Name of the plugin/theme
+msgid "Simple Local Avatars"
+msgstr "Локальный аватар"
+
+#. Description of the plugin/theme
+msgid "Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight."
+msgstr "Добавить закачку аватара к профилю пользователя, если у текущего пользователя есть полномочия. Генерировать такие же размеры, как на Gravatar-е. Просто и легко."
+
diff --git a/src/wp-content/plugins/simple-local-avatars/readme.txt b/src/wp-content/plugins/simple-local-avatars/readme.txt
new file mode 100644
index 00000000..8e432139
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/readme.txt
@@ -0,0 +1,66 @@
+=== Simple Local Avatars ===
+Contributors: jakemgold, thinkoomph
+Donate link: http://www.get10up.com/plugins/simple-local-avatars-wordpress/
+Tags: avatar, gravatar, user photos, users, profile
+Requires at least: 3.0
+Tested up to: 3.1
+Stable tag: 1.2.3
+
+Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar!
+
+== Description ==
+
+Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight.
+
+Just edit a user profile, and scroll down to the new "Avatar" field. The plug-in will take care of cropping and sizing!
+
+Unlike other avatar plug-ins, Simple Local Avatars:
+
+1. Stores avatars in the "uploads" folder where all of your other media is kept
+1. Has a simple, native interface
+1. Fully supports Gravatar and default avatars if no local avatar is set for the user
+1. Generates the requested avatar size on demand (and stores the new size for efficiency), so it looks great, just like Gravatar!
+1. Let's you decide whether lower privilege users (subscribers, contributors) can upload their own avatar
+
+== Installation ==
+
+1. Install easily with the WordPress plugin control panel or manually download the plugin and upload the extracted folder to the `/wp-content/plugins/` directory
+1. Activate the plugin through the 'Plugins' menu in WordPress
+1. If you only want users with file upload capabilities to upload avatars, check the applicable option under Settings > Discussion
+1. Start uploading avatars by editing user profiles!
+
+== Screenshots ==
+
+1. Avatar upload field on a user profile page
+
+== Changelog ==
+
+= 1.2.3 =
+* Russion localization
+
+= 1.2.2 =
+* Fix for avatars uploaded pre-1.2.1 having a broken path after upgrade
+
+= 1.2.1 =
+* French localization
+* Simplify uninstall code
+
+= 1.2 =
+* Fix path issues on some IIS servers (resulting in missing avatar images)
+* Fix rare uninstall issues related to deleted avatars
+* Spanish localization
+* Other minor under the hood optimizations
+
+= 1.1.3 =
+* Properly deletes old avatars upon changing avatar
+* Fixes "foreach" warning in debug mode when updating avatar image
+
+= 1.1.2 =
+* Norwegian localization
+
+= 1.1.1 =
+* Italian localization
+
+= 1.1 =
+* All users (regardless of capabilities) can upload avatars by default. To limit avatar uploading to users with upload files capabilities (Authors and above), check the applicable option under Settings > Discussion. This was the default behavior in 1.0.
+* Localization support; German included
\ No newline at end of file
diff --git a/src/wp-content/plugins/simple-local-avatars/screenshot-1.png b/src/wp-content/plugins/simple-local-avatars/screenshot-1.png
new file mode 100644
index 00000000..6c448aa7
Binary files /dev/null and b/src/wp-content/plugins/simple-local-avatars/screenshot-1.png differ
diff --git a/src/wp-content/plugins/simple-local-avatars/simple-local-avatars.php b/src/wp-content/plugins/simple-local-avatars/simple-local-avatars.php
new file mode 100644
index 00000000..4cd72fa1
--- /dev/null
+++ b/src/wp-content/plugins/simple-local-avatars/simple-local-avatars.php
@@ -0,0 +1,287 @@
+ID;
+ }
+ elseif ( is_object($id_or_email) && !empty($id_or_email->user_id) )
+ $user_id = (int) $id_or_email->user_id;
+
+ if ( !empty($user_id) )
+ $local_avatars = get_user_meta( $user_id, 'simple_local_avatar', true );
+
+ if ( !isset($local_avatars) || empty($local_avatars) || !isset($local_avatars['full']) )
+ {
+ if ( !empty($avatar) ) // if called by filter
+ return $avatar;
+
+ remove_filter( 'get_avatar', 'get_simple_local_avatar' );
+ $avatar = get_avatar( $id_or_email, $size, $default );
+ add_filter( 'get_avatar', 'get_simple_local_avatar', 10, 5 );
+ return $avatar;
+ }
+
+ if ( !is_numeric($size) ) // ensure valid size
+ $size = '96';
+
+ if ( empty($alt) )
+ $alt = get_the_author_meta( 'display_name', $user_id );
+
+ // generate a new size
+ if ( empty( $local_avatars[$size] ) )
+ {
+ $upload_path = wp_upload_dir();
+ $avatar_full_path = str_replace( $upload_path['baseurl'], $upload_path['basedir'], $local_avatars['full'] );
+ $image_sized = image_resize( $avatar_full_path, $size, $size, true );
+
+ if ( is_wp_error($image_sized) ) // deal with original being >= to original image (or lack of sizing ability)
+ $local_avatars[$size] = $local_avatars['full'];
+ else
+ $local_avatars[$size] = str_replace( $upload_path['basedir'], $upload_path['baseurl'], $image_sized );
+
+ update_user_meta( $user_id, 'simple_local_avatar', $local_avatars );
+ }
+ elseif ( substr( $local_avatars[$size], 0, 4 ) != 'http' )
+ $local_avatars[$size] = site_url( $local_avatars[$size] );
+
+ $author_class = is_author( $user_id ) ? ' current-author' : '' ;
+ $avatar = " ";
+
+ return $avatar;
+ }
+
+ function admin_init()
+ {
+ load_plugin_textdomain( 'simple-local-avatars', false, dirname( plugin_basename( __FILE__ ) ) . '/localization/' );
+
+ register_setting( 'discussion', 'simple_local_avatars_caps', array( $this, 'sanitize_options' ) );
+ add_settings_field( 'simple-local-avatars-caps', __('Local Avatar Permissions','simple-local-avatars'), array( $this, 'avatar_settings_field' ), 'discussion', 'avatars' );
+ }
+
+ function sanitize_options( $input )
+ {
+ $new_input['simple_local_avatars_caps'] = empty($input['simple_local_avatars_caps']) ? 0 : 1;
+ return $new_input;
+ }
+
+ function avatar_settings_field( $args )
+ {
+ $options = get_option('simple_local_avatars_caps');
+
+ echo '
+
+
+ ' . __('Only allow users with file upload capabilities to upload local avatars (Authors and above)','simple-local-avatars') . '
+
+ ';
+ }
+
+ function edit_user_profile( $profileuser )
+ {
+ ?>
+
+
+
+
+
+ 'image/jpeg',
+ 'gif' => 'image/gif',
+ 'png' => 'image/png',
+ 'bmp' => 'image/bmp',
+ 'tif|tiff' => 'image/tiff'
+ );
+
+ $avatar = wp_handle_upload( $_FILES['simple-local-avatar'], array( 'mimes' => $mimes, 'test_form' => false ) );
+
+ if ( empty($avatar['file']) ) // handle failures
+ {
+ switch ( $avatar['error'] )
+ {
+ case 'File type does not meet security guidelines. Try another.' :
+ add_action( 'user_profile_update_errors', create_function('$a','$a->add("avatar_error",__("Please upload a valid image file for the avatar.","simple-local-avatars"));') );
+ break;
+ default :
+ add_action( 'user_profile_update_errors', create_function('$a','$a->add("avatar_error","".__("There was an error uploading the avatar:","simple-local-avatars")." ' . esc_attr( $avatar['error'] ) . '");') );
+ }
+
+ return;
+ }
+
+ $this->avatar_delete( $user_id ); // delete old images if successful
+
+ update_user_meta( $user_id, 'simple_local_avatar', array( 'full' => $avatar['url'] ) ); // save user information (overwriting old)
+ }
+ elseif ( isset($_POST['simple-local-avatar-erase']) && $_POST['simple-local-avatar-erase'] == 1 )
+ $this->avatar_delete( $user_id );
+ }
+
+ /**
+ * remove the custom get_avatar hook for the default avatar list output on options-discussion.php
+ */
+ function avatar_defaults( $avatar_defaults )
+ {
+ remove_action( 'get_avatar', array( $this, 'get_avatar' ) );
+ return $avatar_defaults;
+ }
+
+ /**
+ * delete avatars based on user_id
+ */
+ function avatar_delete( $user_id )
+ {
+ $old_avatars = get_user_meta( $user_id, 'simple_local_avatar', true );
+ $upload_path = wp_upload_dir();
+
+ if ( is_array($old_avatars) )
+ {
+ foreach ($old_avatars as $old_avatar )
+ {
+ $old_avatar_path = str_replace( $upload_path['baseurl'], $upload_path['basedir'], $old_avatar );
+ @unlink( $old_avatar_path );
+ }
+ }
+
+ delete_user_meta( $user_id, 'simple_local_avatar' );
+ }
+}
+
+$simple_local_avatars = new simple_local_avatars;
+
+if ( !function_exists('get_simple_local_avatar') ) :
+
+/**
+ * more efficient to call simple local avatar directly in theme and avoid gravatar setup
+ *
+ * @param int|string|object $id_or_email A user ID, email address, or comment object
+ * @param int $size Size of the avatar image
+ * @param string $default URL to a default image to use if no avatar is available
+ * @param string $alt Alternate text to use in image tag. Defaults to blank
+ * @return string tag for the user's avatar
+ */
+function get_simple_local_avatar( $id_or_email, $size = '96', $default = '', $alt = false )
+{
+ global $simple_local_avatars;
+ return $simple_local_avatars->get_avatar( '', $id_or_email, $size, $default, $alt );
+}
+
+endif;
+
+/**
+ * on uninstallation, remove the custom field from the users and delete the local avatars
+ */
+
+register_uninstall_hook( __FILE__, 'simple_local_avatars_uninstall' );
+
+function simple_local_avatars_uninstall()
+{
+ $simple_local_avatars = new simple_local_avatars;
+ $users = get_users_of_blog();
+
+ foreach ( $users as $user )
+ $simple_local_avatars->avatar_delete( $user->user_id );
+
+ delete_option('simple_local_avatars_caps');
+}
\ No newline at end of file
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/bliptv.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/bliptv.png
new file mode 100644
index 00000000..1a59ae1c
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/bliptv.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/dailymotion.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/dailymotion.png
new file mode 100644
index 00000000..7cd573b2
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/dailymotion.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/flickrvideo.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/flickrvideo.png
new file mode 100644
index 00000000..ce8f2291
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/flickrvideo.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/flv.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/flv.png
new file mode 100644
index 00000000..15e0d888
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/flv.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/googlevideo.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/googlevideo.png
new file mode 100644
index 00000000..39a40144
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/googlevideo.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/metacafe.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/metacafe.png
new file mode 100644
index 00000000..8ef30ce1
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/metacafe.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/myspace.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/myspace.png
new file mode 100644
index 00000000..b6b201e5
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/myspace.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/quicktime.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/quicktime.png
new file mode 100644
index 00000000..11a2b41f
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/quicktime.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/spike.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/spike.png
new file mode 100644
index 00000000..b48ec3d3
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/spike.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/veoh.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/veoh.png
new file mode 100644
index 00000000..41f1e5d3
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/veoh.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/viddler.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/viddler.png
new file mode 100644
index 00000000..321a7840
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/viddler.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/videofile.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/videofile.png
new file mode 100644
index 00000000..7ae8d7a6
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/videofile.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/vimeo.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/vimeo.png
new file mode 100644
index 00000000..696b8978
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/vimeo.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/buttons/youtube.png b/src/wp-content/plugins/vipers-video-quicktags/buttons/youtube.png
new file mode 100644
index 00000000..3db5ff29
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/buttons/youtube.png differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/_readme.txt b/src/wp-content/plugins/vipers-video-quicktags/localization/_readme.txt
new file mode 100644
index 00000000..2831f01a
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/_readme.txt
@@ -0,0 +1,14 @@
+If a translation file for your language does not come bundled with this plugin, then check out this URL:
+
+http://codex.wordpress.org/Translating_WordPress
+
+It will walk you through how to translate the plugin using the provided template file, "_vipers-video-quicktags-template.po".
+
+Once you're done and have the plugin translated, please send me your translation file so that I can
+bundle it with my plugin: http://www.viper007bond.com/contact/
+
+I will give you credit and it will help others who speak your language.
+
+Thanks!
+
+-Viper
\ No newline at end of file
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/_vipers-video-quicktags-template.po b/src/wp-content/plugins/vipers-video-quicktags/localization/_vipers-video-quicktags-template.po
new file mode 100644
index 00000000..daae25ac
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/_vipers-video-quicktags-template.po
@@ -0,0 +1,1489 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Viper007Bond
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/vipers-video-quicktags\n"
+"POT-Creation-Date: 2009-09-12 09:56+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: vipers-video-quicktags.php:247
+msgid "Click here to view the embedded video."
+msgstr ""
+
+#: vipers-video-quicktags.php:407 vipers-video-quicktags.php:1422
+msgid "Default"
+msgstr ""
+
+#: vipers-video-quicktags.php:408
+msgid "3D Pixel Style"
+msgstr ""
+
+#: vipers-video-quicktags.php:409
+msgid "Atomic Red"
+msgstr ""
+
+#: vipers-video-quicktags.php:410
+msgid "Bekle (Overlay)"
+msgstr ""
+
+#: vipers-video-quicktags.php:411
+msgid "Blue Metal"
+msgstr ""
+
+#: vipers-video-quicktags.php:412
+msgid "Comet"
+msgstr ""
+
+#: vipers-video-quicktags.php:413
+msgid "Control Panel"
+msgstr ""
+
+#: vipers-video-quicktags.php:414
+msgid "Dang Dang"
+msgstr ""
+
+#: vipers-video-quicktags.php:415
+msgid "Fashion"
+msgstr ""
+
+#: vipers-video-quicktags.php:416
+msgid "Festival"
+msgstr ""
+
+#: vipers-video-quicktags.php:417
+msgid "Grunge Tape"
+msgstr ""
+
+#: vipers-video-quicktags.php:418
+msgid "Ice Cream Sneaka"
+msgstr ""
+
+#: vipers-video-quicktags.php:419
+msgid "Kleur"
+msgstr ""
+
+#: vipers-video-quicktags.php:420
+msgid "Magma"
+msgstr ""
+
+#: vipers-video-quicktags.php:421
+msgid "Metarby 10"
+msgstr ""
+
+#: vipers-video-quicktags.php:422
+msgid "Modieus (Stylish)"
+msgstr ""
+
+#: vipers-video-quicktags.php:423
+msgid "Modieus (Stylish) Slim"
+msgstr ""
+
+#: vipers-video-quicktags.php:424
+msgid "Nacht"
+msgstr ""
+
+#: vipers-video-quicktags.php:425
+msgid "Neon"
+msgstr ""
+
+#: vipers-video-quicktags.php:426
+msgid "Pearlized"
+msgstr ""
+
+#: vipers-video-quicktags.php:427
+msgid "Pixelize"
+msgstr ""
+
+#: vipers-video-quicktags.php:428
+msgid "Play Casso"
+msgstr ""
+
+#: vipers-video-quicktags.php:429
+msgid "Schoon"
+msgstr ""
+
+#: vipers-video-quicktags.php:430
+msgid "Silvery White"
+msgstr ""
+
+#: vipers-video-quicktags.php:431
+msgid "Simple"
+msgstr ""
+
+#: vipers-video-quicktags.php:432
+msgid "Snel"
+msgstr ""
+
+#: vipers-video-quicktags.php:433
+msgid "Stijl"
+msgstr ""
+
+#: vipers-video-quicktags.php:434
+msgid "Traganja"
+msgstr ""
+
+#: vipers-video-quicktags.php:441
+#, php-format
+msgid ""
+"Viper's Video Quicktags requires WordPress 2.8 or newer. "
+"Please upgrade ! By not upgrading, your blog is likely to be hacked ."
+msgstr ""
+
+#: vipers-video-quicktags.php:447
+msgid "Viper's Video Quicktags Configuration"
+msgstr ""
+
+#: vipers-video-quicktags.php:447
+msgid "Video Quicktags"
+msgstr ""
+
+#: vipers-video-quicktags.php:458
+msgid "Settings"
+msgstr ""
+
+#: vipers-video-quicktags.php:548 vipers-video-quicktags.php:1164
+#: vipers-video-quicktags.php:2206 vipers-video-quicktags.php:2460
+#: vipers-video-quicktags.php:2772 vipers-video-quicktags.php:2802
+#: vipers-video-quicktags.php:2810 vipers-video-quicktags.php:2924
+msgid "YouTube"
+msgstr ""
+
+#: vipers-video-quicktags.php:549
+msgid "Embed a video from YouTube"
+msgstr ""
+
+#: vipers-video-quicktags.php:550 vipers-video-quicktags.php:556
+#: vipers-video-quicktags.php:562 vipers-video-quicktags.php:568
+#: vipers-video-quicktags.php:574 vipers-video-quicktags.php:586
+#: vipers-video-quicktags.php:598 vipers-video-quicktags.php:604
+#: vipers-video-quicktags.php:610
+msgid "Please enter the URL at which the video can be viewed."
+msgstr ""
+
+#: vipers-video-quicktags.php:554 vipers-video-quicktags.php:1165
+#: vipers-video-quicktags.php:2222 vipers-video-quicktags.php:2473
+#: vipers-video-quicktags.php:2876 vipers-video-quicktags.php:2895
+msgid "Google Video"
+msgstr ""
+
+#: vipers-video-quicktags.php:555
+msgid "Embed a video from Google Video"
+msgstr ""
+
+#: vipers-video-quicktags.php:560 vipers-video-quicktags.php:1166
+#: vipers-video-quicktags.php:2232 vipers-video-quicktags.php:2486
+#: vipers-video-quicktags.php:2948
+msgid "DailyMotion"
+msgstr ""
+
+#: vipers-video-quicktags.php:561
+msgid "Embed a video from DailyMotion"
+msgstr ""
+
+#: vipers-video-quicktags.php:566 vipers-video-quicktags.php:1167
+#: vipers-video-quicktags.php:2247 vipers-video-quicktags.php:2499
+#: vipers-video-quicktags.php:2988 vipers-video-quicktags.php:3010
+msgid "Vimeo"
+msgstr ""
+
+#: vipers-video-quicktags.php:567
+msgid "Embed a video from Vimeo"
+msgstr ""
+
+#: vipers-video-quicktags.php:572 vipers-video-quicktags.php:2261
+#: vipers-video-quicktags.php:2512 vipers-video-quicktags.php:3052
+#: vipers-video-quicktags.php:3084
+msgid "Veoh"
+msgstr ""
+
+#: vipers-video-quicktags.php:573
+msgid "Embed a video from Veoh"
+msgstr ""
+
+#: vipers-video-quicktags.php:578 vipers-video-quicktags.php:2164
+#: vipers-video-quicktags.php:2271 vipers-video-quicktags.php:2525
+#: vipers-video-quicktags.php:3133 vipers-video-quicktags.php:3140
+msgid "Viddler"
+msgstr ""
+
+#: vipers-video-quicktags.php:579
+msgid "Embed a video from Viddler"
+msgstr ""
+
+#: vipers-video-quicktags.php:580
+#, php-format
+msgid ""
+"Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually "
+"open this window — you can just paste directly into the editor."
+msgstr ""
+
+#: vipers-video-quicktags.php:584 vipers-video-quicktags.php:2532
+#: vipers-video-quicktags.php:3150 vipers-video-quicktags.php:3167
+msgid "Metacafe"
+msgstr ""
+
+#: vipers-video-quicktags.php:585
+msgid "Embed a video from Metacafe"
+msgstr ""
+
+#: vipers-video-quicktags.php:590 vipers-video-quicktags.php:2171
+#: vipers-video-quicktags.php:2545 vipers-video-quicktags.php:3207
+#: vipers-video-quicktags.php:3215
+msgid "Blip.tv"
+msgstr ""
+
+#: vipers-video-quicktags.php:591
+msgid "Embed a video from Blip.tv"
+msgstr ""
+
+#: vipers-video-quicktags.php:592
+#, php-format
+msgid ""
+"Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually "
+"open this window — you can just paste directly into the editor."
+msgstr ""
+
+#: vipers-video-quicktags.php:596 vipers-video-quicktags.php:2277
+#: vipers-video-quicktags.php:2558 vipers-video-quicktags.php:3266
+#: vipers-video-quicktags.php:3284 vipers-video-quicktags.php:3302
+msgid "Flickr Video"
+msgstr ""
+
+#: vipers-video-quicktags.php:597
+msgid "Embed a video from Flickr Video"
+msgstr ""
+
+#: vipers-video-quicktags.php:602 vipers-video-quicktags.php:2571
+#: vipers-video-quicktags.php:3312 vipers-video-quicktags.php:3329
+msgid "IFILM/Spike"
+msgstr ""
+
+#: vipers-video-quicktags.php:603
+msgid "Embed a video from IFILM/Spike.com"
+msgstr ""
+
+#: vipers-video-quicktags.php:608 vipers-video-quicktags.php:3353
+#: vipers-video-quicktags.php:3370
+msgid "MySpace"
+msgstr ""
+
+#: vipers-video-quicktags.php:609
+msgid "Embed a video from MySpace"
+msgstr ""
+
+#: vipers-video-quicktags.php:614 vipers-video-quicktags.php:3394
+msgid "FLV"
+msgstr ""
+
+#: vipers-video-quicktags.php:615
+msgid "Embed a Flash Video (FLV) file"
+msgstr ""
+
+#: vipers-video-quicktags.php:616 vipers-video-quicktags.php:622
+#: vipers-video-quicktags.php:628
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr ""
+
+#: vipers-video-quicktags.php:616 vipers-video-quicktags.php:1168
+#: vipers-video-quicktags.php:2297 vipers-video-quicktags.php:2598
+msgid "Flash Video (FLV)"
+msgstr ""
+
+#: vipers-video-quicktags.php:620 vipers-video-quicktags.php:622
+#: vipers-video-quicktags.php:2313 vipers-video-quicktags.php:2609
+#: vipers-video-quicktags.php:3488
+msgid "Quicktime"
+msgstr ""
+
+#: vipers-video-quicktags.php:621
+msgid "Embed a Quicktime video file"
+msgstr ""
+
+#: vipers-video-quicktags.php:626
+msgid "Video File"
+msgstr ""
+
+#: vipers-video-quicktags.php:627
+msgid "Embed a generic video file"
+msgstr ""
+
+#: vipers-video-quicktags.php:628 vipers-video-quicktags.php:3534
+msgid "generic video"
+msgstr ""
+
+#: vipers-video-quicktags.php:694
+msgid "Example:"
+msgstr ""
+
+#: vipers-video-quicktags.php:814 vipers-video-quicktags.php:1478
+#: vipers-video-quicktags.php:1574 vipers-video-quicktags.php:1660
+#: vipers-video-quicktags.php:1802 vipers-video-quicktags.php:1920
+msgid "Dimensions"
+msgstr ""
+
+#: vipers-video-quicktags.php:816
+#, php-format
+msgid ""
+"The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this "
+"one particular video here:"
+msgstr ""
+
+#: vipers-video-quicktags.php:836
+msgid "Cheatin’ uh?"
+msgstr ""
+
+#: vipers-video-quicktags.php:1126
+msgid "Settings for this tab reset to defaults."
+msgstr ""
+
+#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
+#. Plugin Name of an extension
+#: vipers-video-quicktags.php:1134 vipers-video-quicktags.php:1148
+msgid "Viper's Video Quicktags"
+msgstr ""
+
+#: vipers-video-quicktags.php:1138
+msgid "Optional Comment"
+msgstr ""
+
+#: vipers-video-quicktags.php:1153
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr ""
+
+#: vipers-video-quicktags.php:1163
+msgid "Additional Settings"
+msgstr ""
+
+#: vipers-video-quicktags.php:1169
+msgid "Help"
+msgstr ""
+
+#: vipers-video-quicktags.php:1170
+msgid "Credits"
+msgstr ""
+
+#: vipers-video-quicktags.php:1178
+msgid "General"
+msgstr ""
+
+#: vipers-video-quicktags.php:1205
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr ""
+
+#: vipers-video-quicktags.php:1217
+#, php-format
+msgid ""
+"Set the defaults for this video type here. All of these settings can be "
+"overridden on individual embeds. See the Help section for "
+"details."
+msgstr ""
+
+#: vipers-video-quicktags.php:1222
+#, php-format
+msgid ""
+"Please consider using a browser other than Internet Explorer though. Due to "
+"limitations with your browser, these configuration pages won't be as full "
+"featured as if you were using a brower such as Firefox "
+"or Opera . If you switch, you'll be able to see the "
+"video preview update live as you change any option (rather "
+"than just a very limited number options) and more."
+msgstr ""
+
+#: vipers-video-quicktags.php:1377 vipers-video-quicktags.php:1530
+#: vipers-video-quicktags.php:1610 vipers-video-quicktags.php:1722
+msgid ""
+"Unable to parse preview URL. Please make sure it's the full "
+"URL and a valid one at that."
+msgstr ""
+
+#: vipers-video-quicktags.php:1423
+msgid "Dark Grey"
+msgstr ""
+
+#: vipers-video-quicktags.php:1424
+msgid "Dark Blue"
+msgstr ""
+
+#: vipers-video-quicktags.php:1425
+msgid "Light Blue"
+msgstr ""
+
+#: vipers-video-quicktags.php:1426
+msgid "Green"
+msgstr ""
+
+#: vipers-video-quicktags.php:1427 vipers-video-quicktags.php:1755
+msgid "Orange"
+msgstr ""
+
+#: vipers-video-quicktags.php:1428
+msgid "Pink"
+msgstr ""
+
+#: vipers-video-quicktags.php:1429
+msgid "Purple"
+msgstr ""
+
+#: vipers-video-quicktags.php:1430
+msgid "Ruby Red"
+msgstr ""
+
+#: vipers-video-quicktags.php:1464 vipers-video-quicktags.php:1560
+#: vipers-video-quicktags.php:1646 vipers-video-quicktags.php:1788
+#: vipers-video-quicktags.php:1905
+msgid "Preview"
+msgstr ""
+
+#: vipers-video-quicktags.php:1467 vipers-video-quicktags.php:1563
+#: vipers-video-quicktags.php:1649 vipers-video-quicktags.php:1791
+#: vipers-video-quicktags.php:1908
+msgid "Loading..."
+msgstr ""
+
+#: vipers-video-quicktags.php:1472 vipers-video-quicktags.php:1568
+#: vipers-video-quicktags.php:1654 vipers-video-quicktags.php:1796
+#: vipers-video-quicktags.php:1913
+msgid "Preview URL"
+msgstr ""
+
+#: vipers-video-quicktags.php:1481 vipers-video-quicktags.php:1577
+#: vipers-video-quicktags.php:1663 vipers-video-quicktags.php:1805
+msgid "pixels"
+msgstr ""
+
+#: vipers-video-quicktags.php:1482 vipers-video-quicktags.php:1578
+#: vipers-video-quicktags.php:1806
+msgid "Maintain aspect ratio"
+msgstr ""
+
+#: vipers-video-quicktags.php:1488
+msgid "Border Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1491 vipers-video-quicktags.php:1499
+#: vipers-video-quicktags.php:1673 vipers-video-quicktags.php:1681
+#: vipers-video-quicktags.php:1689 vipers-video-quicktags.php:1697
+#: vipers-video-quicktags.php:1815 vipers-video-quicktags.php:1954
+#: vipers-video-quicktags.php:1962 vipers-video-quicktags.php:1970
+#: vipers-video-quicktags.php:1978
+msgid "Pick a color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1496
+msgid "Fill Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1504 vipers-video-quicktags.php:1820
+msgid "Color Presets"
+msgstr ""
+
+#: vipers-video-quicktags.php:1508
+msgid "Miscellaneous"
+msgstr ""
+
+#: vipers-video-quicktags.php:1510
+msgid ""
+"Enable HD video by default (not to be confused with "HQ" which "
+"can't be enabled by default and not all videos are avilable in HD)"
+msgstr ""
+
+#: vipers-video-quicktags.php:1511
+msgid ""
+"Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr ""
+
+#: vipers-video-quicktags.php:1512 vipers-video-quicktags.php:1586
+msgid "Show fullscreen button"
+msgstr ""
+
+#: vipers-video-quicktags.php:1513
+msgid "Show border"
+msgstr ""
+
+#: vipers-video-quicktags.php:1514
+msgid "Show the search box"
+msgstr ""
+
+#: vipers-video-quicktags.php:1515
+msgid "Show the video title and rating"
+msgstr ""
+
+#: vipers-video-quicktags.php:1516 vipers-video-quicktags.php:1587
+#: vipers-video-quicktags.php:1704
+msgid "Autoplay video (not recommended)"
+msgstr ""
+
+#: vipers-video-quicktags.php:1517
+msgid "Loop video playback"
+msgstr ""
+
+#: vipers-video-quicktags.php:1584 vipers-video-quicktags.php:1702
+msgid "Other"
+msgstr ""
+
+#: vipers-video-quicktags.php:1670
+msgid "Toolbar Background Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1678
+msgid "Toolbar Glow Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1686
+msgid "Button/Text Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1694
+msgid "Seekbar Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1705
+msgid "Show related videos"
+msgstr ""
+
+#: vipers-video-quicktags.php:1754
+msgid "Default (Blue)"
+msgstr ""
+
+#: vipers-video-quicktags.php:1756
+msgid "Lime"
+msgstr ""
+
+#: vipers-video-quicktags.php:1757
+msgid "Fuschia"
+msgstr ""
+
+#: vipers-video-quicktags.php:1758
+msgid "White"
+msgstr ""
+
+#: vipers-video-quicktags.php:1812
+msgid "Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1824
+msgid "On-Screen Info"
+msgstr ""
+
+#: vipers-video-quicktags.php:1826
+msgid "Portrait"
+msgstr ""
+
+#: vipers-video-quicktags.php:1827
+msgid "Title"
+msgstr ""
+
+#: vipers-video-quicktags.php:1828
+msgid "Byline"
+msgstr ""
+
+#: vipers-video-quicktags.php:1829
+msgid "Allow fullscreen"
+msgstr ""
+
+#: vipers-video-quicktags.php:1916
+msgid ""
+"The default preview video is the most recent featured video on YouTube. You "
+"can paste in the URL to a FLV file of your own if you wish."
+msgstr ""
+
+#: vipers-video-quicktags.php:1924
+msgid ""
+"pixels (if you're using the default skin, add 20 to the height for the "
+"control bar)"
+msgstr ""
+
+#: vipers-video-quicktags.php:1931
+msgid "Skin"
+msgstr ""
+
+#: vipers-video-quicktags.php:1945
+msgid "Use Custom Colors"
+msgstr ""
+
+#: vipers-video-quicktags.php:1951
+msgid "Control Bar Background Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1959
+msgid "Icon/Text Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1967
+msgid "Icon/Text Hover Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1975
+msgid "Video Background Color"
+msgstr ""
+
+#: vipers-video-quicktags.php:1983
+msgid "Advanced Parameters"
+msgstr ""
+
+#: vipers-video-quicktags.php:1986 vipers-video-quicktags.php:2308
+#, php-format
+msgid ""
+"A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr ""
+
+#: vipers-video-quicktags.php:1987
+msgid ""
+"You will need to press "Save Changes" for these parameters to take "
+"effect due to my moderate Javascript skills."
+msgstr ""
+
+#: vipers-video-quicktags.php:2023
+msgid "Video Alignment"
+msgstr ""
+
+#: vipers-video-quicktags.php:2028
+msgid "Left"
+msgstr ""
+
+#: vipers-video-quicktags.php:2029
+msgid "Center"
+msgstr ""
+
+#: vipers-video-quicktags.php:2030
+msgid "Right"
+msgstr ""
+
+#: vipers-video-quicktags.php:2031
+msgid "Float Left"
+msgstr ""
+
+#: vipers-video-quicktags.php:2032
+msgid "Float Right"
+msgstr ""
+
+#: vipers-video-quicktags.php:2044
+msgid "Show Buttons In Editor On Line Number"
+msgstr ""
+
+#: vipers-video-quicktags.php:2049
+msgid "1"
+msgstr ""
+
+#: vipers-video-quicktags.php:2050
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2051
+msgid "3 (Default)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2063
+msgid "Feed Text"
+msgstr ""
+
+#: vipers-video-quicktags.php:2066
+#, php-format
+msgid ""
+"Optionally enter some custom text to show in your feed in place of videos "
+"(as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2070
+msgid "Windows Media Player"
+msgstr ""
+
+#: vipers-video-quicktags.php:2072
+msgid ""
+"Attempt to use Windows Media Player for regular video file playback for "
+"Windows users"
+msgstr ""
+
+#: vipers-video-quicktags.php:2077
+msgid "Advanced Settings"
+msgstr ""
+
+#: vipers-video-quicktags.php:2079
+msgid ""
+"If you don't know what you're doing, you can safely ignore this section."
+msgstr ""
+
+#: vipers-video-quicktags.php:2083
+msgid "Dynamic QTObject Loading"
+msgstr ""
+
+#: vipers-video-quicktags.php:2085
+msgid ""
+"Only load the Javascript file if it's needed. Disable this to post Quicktime "
+"videos in the sidebar text widget."
+msgstr ""
+
+#: vipers-video-quicktags.php:2090
+msgid "Custom CSS"
+msgstr ""
+
+#: vipers-video-quicktags.php:2092
+msgid ""
+"Want to easily set some custom CSS to control the display of the videos? "
+"Then just click this text to expand this option."
+msgstr ""
+
+#: vipers-video-quicktags.php:2094
+#, php-format
+msgid ""
+"You can enter custom CSS in the box below. It will be outputted after the "
+"default CSS you see listed which can be overridden by using %1$s. For help "
+"and examples, see the Help tab."
+msgstr ""
+
+#: vipers-video-quicktags.php:2137
+msgid ""
+"Click on a question to see the answer or click this text to expand all "
+"answers."
+msgstr ""
+
+#: vipers-video-quicktags.php:2141
+msgid ""
+"Videos aren't showing up on my blog, only links to the videos are instead. "
+"What gives?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2144
+msgid "Here are five common causes:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2146
+#, php-format
+msgid ""
+"Are you running Firefox and AdBlock? AdBlock and certain block rules can "
+"prevent some videos, namely YouTube-hosted ones, from loading. Disable "
+"AdBlock or switch to AdBlock Plus ."
+msgstr ""
+
+#: vipers-video-quicktags.php:2147
+msgid ""
+"Your theme could be missing <?php wp_head();?> inside of "
+"it's <head> which means the required Javascript file "
+"can't automatically be added. If this is the case, you may be get an alert "
+"window popping when you attempt to view a post with a video in it (assuming "
+"your problem is not also #3). Edit your theme's header.php file "
+"and add it right before </head>"
+msgstr ""
+
+#: vipers-video-quicktags.php:2148 vipers-video-quicktags.php:2154
+#, php-format
+msgid ""
+"You may have Javascript disabled. This plugin embeds videos via Javascript "
+"to ensure the best experience. Please enable it ."
+msgstr ""
+
+#: vipers-video-quicktags.php:2149 vipers-video-quicktags.php:2155
+#, php-format
+msgid ""
+"You may not have the latest version of Flash installed. Please install it ."
+msgstr ""
+
+#: vipers-video-quicktags.php:2153
+#, php-format
+msgid ""
+"Are you running Firefox and AdBlock? AdBlock and certain block rules can "
+"result in the videos, namely YouTube-hosted ones, not loading. Disable "
+"AdBlock or switch to AdBlock Plus ."
+msgstr ""
+
+#: vipers-video-quicktags.php:2161
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2163
+msgid ""
+"Since the URL to a video on Viddler has nothing in common with the embed "
+"URL, you must use WordPress.com-style format. Go to the video on Viddler, "
+"click the "Embed This" button below the video, and then select the "
+"WordPress.com format. You can paste that code directly into a post or Page "
+"and it will embed the video."
+msgstr ""
+
+#: vipers-video-quicktags.php:2168
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2170
+msgid ""
+"Since the URL to a video on Blip.tv has nothing in common with the embed "
+"URL, you must use WordPress.com-style format. Go to the video on Blip.tv, "
+"click on the yellow "Share" dropdown to the right of the video and "
+"select "Embed". Next select "WordPress.com" from the "
+""Show Player" dropdown. Finally press "Go". You can "
+"paste that code directly into a post or Page and it will embed the video."
+msgstr ""
+
+#: vipers-video-quicktags.php:2172
+msgid ""
+"NOTE: Ignore the warning message. This plugin adds support "
+"for the WordPress.com so it will work on your blog."
+msgstr ""
+
+#: vipers-video-quicktags.php:2176
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2178
+msgid "There's a couple likely reasons:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2180
+msgid ""
+"The website may use an embed URL that has nothing in common with the URL in "
+"your address bar. This means that even if you give this plugin the URL to "
+"the video, it has no easy way of figuring out the embed URL."
+msgstr ""
+
+#: vipers-video-quicktags.php:2181
+msgid ""
+"The website may be too small, fringe case, etc. to be worth supporting. "
+"There's no real point in this plugin adding support for a video site that "
+"only one or two people will use."
+msgstr ""
+
+#: vipers-video-quicktags.php:2182
+#, php-format
+msgid ""
+"I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a "
+"look at it."
+msgstr ""
+
+#: vipers-video-quicktags.php:2184
+#, php-format
+msgid ""
+"This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details "
+"on that."
+msgstr ""
+
+#: vipers-video-quicktags.php:2188
+msgid ""
+"There are still red bits (hovering over buttons) in my YouTube embed. What "
+"gives?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2190
+msgid "YouTube does not provide a method to change that color."
+msgstr ""
+
+#: vipers-video-quicktags.php:2194
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2196
+#, php-format
+msgid ""
+"You can control many thing via the WordPress shortcode system that you use "
+"to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2202
+msgid "Any value that is not entered will fall back to the default."
+msgstr ""
+
+#: vipers-video-quicktags.php:2206 vipers-video-quicktags.php:2222
+#: vipers-video-quicktags.php:2232 vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2261 vipers-video-quicktags.php:2271
+#: vipers-video-quicktags.php:2277 vipers-video-quicktags.php:2297
+#: vipers-video-quicktags.php:2313 vipers-video-quicktags.php:2327
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2209 vipers-video-quicktags.php:2225
+#: vipers-video-quicktags.php:2235 vipers-video-quicktags.php:2250
+#: vipers-video-quicktags.php:2264 vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2291 vipers-video-quicktags.php:2300
+#: vipers-video-quicktags.php:2317 vipers-video-quicktags.php:2331
+#, php-format
+msgid "%s — width in pixels"
+msgstr ""
+
+#: vipers-video-quicktags.php:2210 vipers-video-quicktags.php:2226
+#: vipers-video-quicktags.php:2236 vipers-video-quicktags.php:2251
+#: vipers-video-quicktags.php:2265 vipers-video-quicktags.php:2281
+#: vipers-video-quicktags.php:2292 vipers-video-quicktags.php:2301
+#: vipers-video-quicktags.php:2318 vipers-video-quicktags.php:2332
+#, php-format
+msgid "%s — height in pixels"
+msgstr ""
+
+#: vipers-video-quicktags.php:2211
+#, php-format
+msgid "%s — player border color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2212
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2213
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2214
+#, php-format
+msgid ""
+"%s — show related videos, URL, embed details, etc. at the end of "
+"playback (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2215 vipers-video-quicktags.php:2256
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2216 vipers-video-quicktags.php:2227
+#: vipers-video-quicktags.php:2241 vipers-video-quicktags.php:2266
+#, php-format
+msgid ""
+"%s — automatically start playing (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2217
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2237
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2238
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2239
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2240
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2242
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2252
+#, php-format
+msgid "%s — player color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2253
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2254
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2255
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2273
+msgid ""
+"Since the WordPress.com shortcode format is used for embedding Viddler "
+"videos, there are no customizable parameters for the Viddler shortcode. The "
+"WordPress.com shortcode must be used as the URL of the video and the video's "
+"embed URL share nothing in common."
+msgstr ""
+
+#: vipers-video-quicktags.php:2282
+#, php-format
+msgid ""
+"%s — show video details (0 or 1), defaults "
+"to 1"
+msgstr ""
+
+#: vipers-video-quicktags.php:2287
+msgid ""
+"What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, "
+"and MySpace shortcodes?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2289
+msgid "All of these video formats only support the following:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2302
+#, php-format
+msgid ""
+"%s — the URL to the preview image, defaults to the same URL as the "
+"video file but .jpg instead of .flv"
+msgstr ""
+
+#: vipers-video-quicktags.php:2303
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2304
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2305
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2306
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr ""
+
+#: vipers-video-quicktags.php:2307
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr ""
+
+#: vipers-video-quicktags.php:2308
+#, php-format
+msgid "%1$s — %2$s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2315
+msgid ""
+"The results of embedding a Quicktime video can very widely depending on the "
+"user's computer and what software they have installed, but if you must embed "
+"a Quicktime video here are the parameters:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2319 vipers-video-quicktags.php:2322
+#, php-format
+msgid ""
+"%s — automatically start playing (0 or 1), "
+"defaults to 0"
+msgstr ""
+
+#: vipers-video-quicktags.php:2320
+#, php-format
+msgid ""
+"%s — use click-to-play placeholder image (0 or 1"
+"code>), defaults to 0"
+msgstr ""
+
+#: vipers-video-quicktags.php:2321
+#, php-format
+msgid ""
+"%s — the URL to the placeholder image, defaults to the same URL as the "
+"video file but .jpg instead of .mov"
+msgstr ""
+
+#: vipers-video-quicktags.php:2327
+msgid "video file"
+msgstr ""
+
+#: vipers-video-quicktags.php:2329
+msgid ""
+"The results of embedding a generic video can very widely depending on the "
+"user's computer and what software they have installed, but if you must embed "
+"a generic video here are the parameters:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2333
+#, php-format
+msgid ""
+"%s — attempt to use Windows Media Player for users of Windows "
+"(0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2339
+msgid ""
+"What's this "Custom CSS" thing on the "Additional "
+"Settings" tab for?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2341
+msgid ""
+"It's a quick and easy way to control the look of videos posted on your site "
+"without having to go in and edit the style.css file. Just enter "
+"some CSS of your own into the box and it will be outputted in the header of "
+"your theme."
+msgstr ""
+
+#: vipers-video-quicktags.php:2342
+msgid "Some examples:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2344
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2351
+msgid ""
+"How can I embed a generic Flash file or a video from a website this plugin "
+"doesn't support?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2353
+#, php-format
+msgid ""
+"This plugin has a %s shortcode that can be used to embed any"
+"strong> Flash file. Here is the format:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2358
+msgid ""
+"Why does your plugin embed Quicktime and other regular video files so "
+"poorly? Can't you do a better job?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2360
+#, php-format
+msgid ""
+"Embedding Quiktime and other regular video files is a major pain in the ass "
+"and it's incredibly hard to get it to work in all browsers and operating "
+"systems. I strongly suggest converting the video to Flash Video format or even H.264 format "
+"and then using the Flash Video (FLV) embed type. There are free converters "
+"out there for both formats and doing so will create a much better experience "
+"for your visitors."
+msgstr ""
+
+#: vipers-video-quicktags.php:2369
+msgid ""
+"This plugin uses many scripts and packages written by others. They deserve "
+"credit too, so here they are in no particular order:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2372
+#, php-format
+msgid ""
+"The authors of and contributors to SWFObject which is "
+"used to embed the Flash-based videos."
+msgstr ""
+
+#: vipers-video-quicktags.php:2373
+#, php-format
+msgid ""
+"Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr ""
+
+#: vipers-video-quicktags.php:2374
+#, php-format
+msgid ""
+"Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this "
+"plugin."
+msgstr ""
+
+#: vipers-video-quicktags.php:2375
+#, php-format
+msgid ""
+"Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and "
+"provided me with some Javascript to base my color picker and color preset "
+"code on."
+msgstr ""
+
+#: vipers-video-quicktags.php:2376
+#, php-format
+msgid ""
+"Andrew Ozz for helping me out with some "
+"TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr ""
+
+#: vipers-video-quicktags.php:2377
+#, php-format
+msgid ""
+"Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr ""
+
+#: vipers-video-quicktags.php:2378
+#, php-format
+msgid ""
+"Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from "
+"that pack."
+msgstr ""
+
+#: vipers-video-quicktags.php:2379
+#, php-format
+msgid ""
+"The authors of and contributors to jQuery , the awesome "
+"Javascript package used by WordPress."
+msgstr ""
+
+#: vipers-video-quicktags.php:2380
+#, php-format
+msgid ""
+"Everyone who's helped create WordPress as without it and "
+"it's excellent API, this plugin obviously wouldn't exist."
+msgstr ""
+
+#: vipers-video-quicktags.php:2381
+msgid ""
+"Everyone who has provided bug reports and feature suggestions for this "
+"plugin."
+msgstr ""
+
+#: vipers-video-quicktags.php:2384
+msgid ""
+"The following people have been nice enough to translate this plugin into "
+"other languages:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2387
+#, php-format
+msgid "Belorussian: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2388
+#, php-format
+msgid "Brazilian Portuguese: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2389
+#, php-format
+msgid "Chinese: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2390
+#, php-format
+msgid "Danish: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2391
+#, php-format
+msgid "Dutch: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2392
+#, php-format
+msgid "French: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2393
+#, php-format
+msgid "Hungarian: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2394
+#, php-format
+msgid "Italian: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2395
+#, php-format
+msgid "Polish: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2396
+#, php-format
+msgid "Russian: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2397
+#, php-format
+msgid "Spanish: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2400
+#, php-format
+msgid ""
+"If you'd like to use this plugin in another language and have your name "
+"listed here, just translate the strings in the provided template file located in this plugin's "localization"
+"code>" folder and then send it to me . For help, "
+"see the WordPress Codex ."
+msgstr ""
+
+#: vipers-video-quicktags.php:2407
+msgid "Click the above links to switch between tabs."
+msgstr ""
+
+#: vipers-video-quicktags.php:2440
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike "
+"3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site "
+"without purchasing a commercial license."
+msgstr ""
+
+#: vipers-video-quicktags.php:2451
+msgid "Media Type"
+msgstr ""
+
+#: vipers-video-quicktags.php:2452
+msgid "Show Editor Button?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2453
+msgid "Default Width"
+msgstr ""
+
+#: vipers-video-quicktags.php:2454
+msgid "Default Height"
+msgstr ""
+
+#: vipers-video-quicktags.php:2455
+msgid "Keep Aspect Ratio?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2584
+msgid "MySpaceTV"
+msgstr ""
+
+#: vipers-video-quicktags.php:2601
+#, php-format
+msgid ""
+"JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot "
+"use it on a commercial website ."
+msgstr ""
+
+#: vipers-video-quicktags.php:2616
+msgid "Generic Video File"
+msgstr ""
+
+#: vipers-video-quicktags.php:2616
+#, php-format
+msgid ""
+"This part of the plugin is fairly buggy as embedding video files is complex."
+" Consider trying TinyMCE's native video embedder instead. Why? "
+msgstr ""
+
+#: vipers-video-quicktags.php:2631
+msgid "Save Changes"
+msgstr ""
+
+#: vipers-video-quicktags.php:2632
+msgid "Reset Tab To Defaults"
+msgstr ""
+
+#: vipers-video-quicktags.php:2693
+#, php-format
+msgid "ERROR: %s"
+msgstr ""
+
+#: vipers-video-quicktags.php:2755
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr ""
+
+#: vipers-video-quicktags.php:2772 vipers-video-quicktags.php:2876
+#: vipers-video-quicktags.php:2924 vipers-video-quicktags.php:2988
+#: vipers-video-quicktags.php:3052 vipers-video-quicktags.php:3150
+#: vipers-video-quicktags.php:3266 vipers-video-quicktags.php:3312
+#: vipers-video-quicktags.php:3353
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr ""
+
+#: vipers-video-quicktags.php:2802 vipers-video-quicktags.php:2810
+#: vipers-video-quicktags.php:2895 vipers-video-quicktags.php:2948
+#: vipers-video-quicktags.php:3010 vipers-video-quicktags.php:3084
+#: vipers-video-quicktags.php:3167 vipers-video-quicktags.php:3284
+#: vipers-video-quicktags.php:3329 vipers-video-quicktags.php:3370
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr ""
+
+#: vipers-video-quicktags.php:2814 vipers-video-quicktags.php:2821
+msgid "YouTube Preview Image"
+msgstr ""
+
+#: vipers-video-quicktags.php:3114
+msgid ""
+"Sorry, but the only format that is supported for Viddler is the WordPress."
+"com-style format rather than the URL. You can find it in the "Embed "
+"This" window."
+msgstr ""
+
+#: vipers-video-quicktags.php:3133 vipers-video-quicktags.php:3207
+#: vipers-video-quicktags.php:3238
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr ""
+
+#: vipers-video-quicktags.php:3140 vipers-video-quicktags.php:3215
+#: vipers-video-quicktags.php:3249 vipers-video-quicktags.php:3614
+#, php-format
+msgid ""
+"Please enable Javascript and Flash "
+"to view this %3$s video."
+msgstr ""
+
+#: vipers-video-quicktags.php:3190
+msgid ""
+"Sorry, but the only format that is supported for Blip.tv is the WordPress."
+"com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr ""
+
+#: vipers-video-quicktags.php:3238 vipers-video-quicktags.php:3249
+msgid "VideoPress"
+msgstr ""
+
+#: vipers-video-quicktags.php:3394 vipers-video-quicktags.php:3488
+#: vipers-video-quicktags.php:3534 vipers-video-quicktags.php:3584
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr ""
+
+#: vipers-video-quicktags.php:3584
+msgid "generic Flash embed"
+msgstr ""
+
+#: vipers-video-quicktags.php:3614
+msgid "Flash"
+msgstr ""
+
+#. Plugin URI of an extension
+msgid "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+msgstr ""
+
+#. Description of an extension
+msgid ""
+"Easily embed videos from various video websites such as YouTube, "
+"DailyMotion, and Vimeo into your posts."
+msgstr ""
+
+#. Author of an extension
+msgid "Viper007Bond"
+msgstr ""
+
+#. Author URI of an extension
+msgid "http://www.viper007bond.com/"
+msgstr ""
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-by_BY.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-by_BY.mo
new file mode 100644
index 00000000..05e3b795
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-by_BY.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-by_BY.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-by_BY.po
new file mode 100644
index 00000000..0ff7a2f9
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-by_BY.po
@@ -0,0 +1,1334 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags v6.1.x\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-09-21 23:52-0800\n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: English\n"
+"X-Poedit-Country: UNITED STATES\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: D:\\Webserver\\htdocs\\plugindev\\wp-content\\plugins\\vipers-video-quicktags\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: vipers-video-quicktags.php:378
+#: vipers-video-quicktags.php:1375
+msgid "Default"
+msgstr "Па змаўчанні"
+
+#: vipers-video-quicktags.php:379
+msgid "3D Pixel Style"
+msgstr "3D Pixel Style"
+
+#: vipers-video-quicktags.php:380
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+#: vipers-video-quicktags.php:381
+msgid "Comet"
+msgstr "Comet"
+
+#: vipers-video-quicktags.php:382
+msgid "Control Panel"
+msgstr "Панэль кіравання"
+
+#: vipers-video-quicktags.php:383
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: vipers-video-quicktags.php:384
+msgid "Fashion"
+msgstr "Fashion"
+
+#: vipers-video-quicktags.php:385
+msgid "Festival"
+msgstr "Festival"
+
+#: vipers-video-quicktags.php:386
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+#: vipers-video-quicktags.php:387
+msgid "Kleur"
+msgstr "Kleur"
+
+#: vipers-video-quicktags.php:388
+msgid "Magma"
+msgstr "Magma"
+
+#: vipers-video-quicktags.php:389
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: vipers-video-quicktags.php:390
+msgid "Nacht"
+msgstr "Nacht"
+
+#: vipers-video-quicktags.php:391
+msgid "Neon"
+msgstr "Neon"
+
+#: vipers-video-quicktags.php:392
+msgid "Pearlized"
+msgstr "Pearlized"
+
+#: vipers-video-quicktags.php:393
+msgid "Pixelize"
+msgstr "Pixelize"
+
+#: vipers-video-quicktags.php:394
+msgid "Play Casso"
+msgstr "Play Casso"
+
+#: vipers-video-quicktags.php:395
+msgid "Schoon"
+msgstr "Schoon"
+
+#: vipers-video-quicktags.php:396
+msgid "Silvery White"
+msgstr "Silvery White"
+
+#: vipers-video-quicktags.php:397
+msgid "Snel"
+msgstr "Snel"
+
+#: vipers-video-quicktags.php:398
+msgid "Stijl"
+msgstr "Stijl"
+
+#: vipers-video-quicktags.php:399
+msgid "Traganja"
+msgstr "Traganja"
+
+#: vipers-video-quicktags.php:406
+#, php-format
+msgid "This version of Viper's Video Quicktags requires WordPress 2.6 or newer. Please upgrade or use the legacy version of this plugin."
+msgstr "Гэтая версія Viper's Video Quicktags патрабуе WordPress 2.6 або больш. Калі ласка зрабіце абнаўленне або выкарыстайце папярэднюю версію гэтай убудовы."
+
+#: vipers-video-quicktags.php:414
+#, php-format
+msgid "WARNING: If you use the FLV embed feature of Viper's Video Quicktags, there is a bug in WordPress with the FTP method of upgrading plugins. It will not upload the .swf files properly. If you do embed FLV files, please manually download the plugin and upload the files to your server. If you don't embed FLV files (and only embed YouTube, etc. videos), you can safely ignore this message and upgrade automatically."
+msgstr "УВАГА: Калі Вы выкарыстаеце Viper's Video Quicktags для ўстаўкі FLV, то ў WordPress маецца баг па абнаўленні гэтай убудовы FTP метадам. Ён некарэктна загружае .swf файлы. Калі Вы выкарыстаеце FLV файлы, калі ласка, загрузіце ўручную убудова і файлы на Ваш сервер. Калі Вы не выкарыстаеце FLV файлы (а толькі YouTube, і т.п. відэа), Вы можаце прапусціць гэтае паведамленне і выканаць аўтаматычнае абнаўленне."
+
+#: vipers-video-quicktags.php:420
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Канфігурацыя Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:420
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+#: vipers-video-quicktags.php:431
+msgid "Settings"
+msgstr "Усталёўкі"
+
+#: vipers-video-quicktags.php:510
+#: vipers-video-quicktags.php:1121
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2420
+#: vipers-video-quicktags.php:2707
+#: vipers-video-quicktags.php:2731
+#: vipers-video-quicktags.php:2739
+#: vipers-video-quicktags.php:2824
+msgid "YouTube"
+msgstr "YouTube"
+
+#: vipers-video-quicktags.php:511
+msgid "Embed a video from YouTube"
+msgstr "Убудаваць відэа з YouTube"
+
+#: vipers-video-quicktags.php:512
+#: vipers-video-quicktags.php:518
+#: vipers-video-quicktags.php:524
+#: vipers-video-quicktags.php:530
+#: vipers-video-quicktags.php:536
+#: vipers-video-quicktags.php:548
+#: vipers-video-quicktags.php:560
+#: vipers-video-quicktags.php:566
+#: vipers-video-quicktags.php:572
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Калі ласка ўвядзіце URL на якім знаходзіцца відэа."
+
+#: vipers-video-quicktags.php:516
+#: vipers-video-quicktags.php:1122
+#: vipers-video-quicktags.php:2189
+#: vipers-video-quicktags.php:2433
+#: vipers-video-quicktags.php:2784
+#: vipers-video-quicktags.php:2798
+msgid "Google Video"
+msgstr "Google Video"
+
+#: vipers-video-quicktags.php:517
+msgid "Embed a video from Google Video"
+msgstr "Убудаваць відэа з Google Video"
+
+#: vipers-video-quicktags.php:522
+#: vipers-video-quicktags.php:1123
+#: vipers-video-quicktags.php:2199
+#: vipers-video-quicktags.php:2446
+#: vipers-video-quicktags.php:2844
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: vipers-video-quicktags.php:523
+msgid "Embed a video from DailyMotion"
+msgstr "Убудаваць відэа з DailyMotion"
+
+#: vipers-video-quicktags.php:528
+#: vipers-video-quicktags.php:1124
+#: vipers-video-quicktags.php:2214
+#: vipers-video-quicktags.php:2459
+#: vipers-video-quicktags.php:2882
+#: vipers-video-quicktags.php:2900
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: vipers-video-quicktags.php:529
+msgid "Embed a video from Vimeo"
+msgstr "Убудаваць відэа з Vimeo"
+
+#: vipers-video-quicktags.php:534
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2472
+#: vipers-video-quicktags.php:2930
+#: vipers-video-quicktags.php:2944
+msgid "Veoh"
+msgstr "Veoh"
+
+#: vipers-video-quicktags.php:535
+msgid "Embed a video from Veoh"
+msgstr "Убудаваць відэа з Veoh"
+
+#: vipers-video-quicktags.php:540
+#: vipers-video-quicktags.php:2130
+#: vipers-video-quicktags.php:2238
+#: vipers-video-quicktags.php:2485
+#: vipers-video-quicktags.php:2980
+#: vipers-video-quicktags.php:2987
+msgid "Viddler"
+msgstr "Viddler"
+
+#: vipers-video-quicktags.php:541
+msgid "Embed a video from Viddler"
+msgstr "Убудаваць відэа з Viddler"
+
+#: vipers-video-quicktags.php:542
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Калі ласка, увядзіце тэг устаўкі для Viddler відэа ў стылю WordPress.com. Падрабязнасці глядзіце ў гэтым падзеле дапамогі. У будучыні Вам не спатрэбіцца адчыняць гэтае акно — Вы можаце рабіць устаўку непасрэдна ў рэдактары."
+
+#: vipers-video-quicktags.php:546
+#: vipers-video-quicktags.php:2492
+#: vipers-video-quicktags.php:2995
+#: vipers-video-quicktags.php:3008
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: vipers-video-quicktags.php:547
+msgid "Embed a video from Metacafe"
+msgstr "Убудаваць відэа з Metacafe"
+
+#: vipers-video-quicktags.php:552
+#: vipers-video-quicktags.php:2137
+#: vipers-video-quicktags.php:2505
+#: vipers-video-quicktags.php:3042
+#: vipers-video-quicktags.php:3050
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: vipers-video-quicktags.php:553
+msgid "Embed a video from Blip.tv"
+msgstr "Убудаваць відэа з Blip.tv"
+
+#: vipers-video-quicktags.php:554
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Калі ласка, увядзіце тэг устаўкі для Blip.tv відэа ў стылю WordPress.com. Падрабязнасці глядзіце ў гэтым падзеле дапамогі. У будучыні Вам не спатрэбіцца адчыняць гэтае акно — Вы можаце рабіць устаўку непасрэдна ў рэдактары."
+
+#: vipers-video-quicktags.php:558
+#: vipers-video-quicktags.php:2244
+#: vipers-video-quicktags.php:2518
+#: vipers-video-quicktags.php:3065
+#: vipers-video-quicktags.php:3079
+#: vipers-video-quicktags.php:3097
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: vipers-video-quicktags.php:559
+msgid "Embed a video from Flickr Video"
+msgstr "Убудаваць відэа з Flickr Video"
+
+#: vipers-video-quicktags.php:564
+#: vipers-video-quicktags.php:2531
+#: vipers-video-quicktags.php:3105
+#: vipers-video-quicktags.php:3118
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: vipers-video-quicktags.php:565
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Убудаваць відэа з IFILM/Spike.com"
+
+#: vipers-video-quicktags.php:570
+#: vipers-video-quicktags.php:3140
+#: vipers-video-quicktags.php:3153
+msgid "MySpace"
+msgstr "MySpace"
+
+#: vipers-video-quicktags.php:571
+msgid "Embed a video from MySpace"
+msgstr "Убудаваць відэа з MySpace"
+
+#: vipers-video-quicktags.php:576
+#: vipers-video-quicktags.php:3175
+msgid "FLV"
+msgstr "FLV"
+
+#: vipers-video-quicktags.php:577
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Убудаваць Flash Video (FLV) файл"
+
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:590
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Калі ласка ўвядзіце URL для файла %1$s."
+
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:1125
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2558
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:582
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2569
+#: vipers-video-quicktags.php:3246
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: vipers-video-quicktags.php:583
+msgid "Embed a Quicktime video file"
+msgstr "Убудаваць Quicktime відэа файл"
+
+#: vipers-video-quicktags.php:588
+msgid "Video File"
+msgstr "Відэа файл"
+
+#: vipers-video-quicktags.php:589
+msgid "Embed a generic video file"
+msgstr "Убудаваць звычайны відэа файл "
+
+#: vipers-video-quicktags.php:590
+#: vipers-video-quicktags.php:3280
+msgid "generic video"
+msgstr "звычайнае відэа"
+
+#: vipers-video-quicktags.php:656
+msgid "Example:"
+msgstr "Прыклад:"
+
+#: vipers-video-quicktags.php:776
+#: vipers-video-quicktags.php:1431
+#: vipers-video-quicktags.php:1541
+#: vipers-video-quicktags.php:1626
+#: vipers-video-quicktags.php:1768
+#: vipers-video-quicktags.php:1886
+msgid "Dimensions"
+msgstr "Памернасць"
+
+#: vipers-video-quicktags.php:778
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "Памернасць па змаўчанні для гэтага тыпу відэа можа быць усталяваная на старонцы параметраў гэтай убудовы. Тым не менш, Вы можаце ўсталяваць для яго сваю памернасць прама тут:"
+
+#: vipers-video-quicktags.php:798
+msgid "Cheatin’ uh?"
+msgstr "Ой, жульнічаеце?"
+
+#: vipers-video-quicktags.php:1084
+msgid "Settings for this tab reset to defaults."
+msgstr "Усталёўкі для гэтай укладкі будуць скінутыя да пачатковых."
+
+#: vipers-video-quicktags.php:1092
+#: vipers-video-quicktags.php:1110
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:1096
+msgid "Optional Comment"
+msgstr "Апцыянальны каментар"
+
+#: vipers-video-quicktags.php:1108
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Заахвоціце Viper007Bond за гэтая ўбудова праз PayPal"
+
+#: vipers-video-quicktags.php:1120
+msgid "Additional Settings"
+msgstr "Дадатковыя ўсталёўкі"
+
+#: vipers-video-quicktags.php:1126
+msgid "Help"
+msgstr "Дапамога"
+
+#: vipers-video-quicktags.php:1127
+msgid "Credits"
+msgstr "Удзельнікі"
+
+#: vipers-video-quicktags.php:1135
+msgid "General"
+msgstr "Агульныя"
+
+#: vipers-video-quicktags.php:1162
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Вы ўпэўненыя ў тым, што Вы жадаеце скінуць усе значэнні ўкладак да значэнняў па змаўчанні?"
+
+#: vipers-video-quicktags.php:1174
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Усталюеце значэнні па змаўчанні для гэтага тыпу відэа. Усе гэтыя значэнні могуць быць змененыя індывідуальна для кожнай устаўкі. За падрабязнасцямі звяртайцеся да наступнага падзелу дапамогі ."
+
+#: vipers-video-quicktags.php:1179
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Калі ласка, падумайце над тым, што-бы выкарыстаць які-небудзь браўзэр выдатны ад Internet Explorer. Маючы абмежаванні якія прысутнічаюць у Вашым браўзэры, гэтая канфігурацыйная старонка не можа быць настолькі поўнафункцыянальнай, наколькі яна функцыянальная ў такіх браўзэрах як Firefox або Opera . Пры выкарыстанні такіх браўзэраў, Вы зможаце адразу, у жывую, праглядаць дзеянне любы змянянай опцыі ў прадпраглядзе відэа."
+
+#: vipers-video-quicktags.php:1334
+#: vipers-video-quicktags.php:1499
+#: vipers-video-quicktags.php:1576
+#: vipers-video-quicktags.php:1688
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Не магу разабраць URL для прадпрагляду. Калі ласка праверце тое, што гэта цалкам дакладны URL і ён правільна набраны."
+
+#: vipers-video-quicktags.php:1376
+msgid "Dark Grey"
+msgstr "Цёмна-шэры"
+
+#: vipers-video-quicktags.php:1377
+msgid "Dark Blue"
+msgstr "Цёмна-блакітны"
+
+#: vipers-video-quicktags.php:1378
+msgid "Light Blue"
+msgstr "Светла-блакітны"
+
+#: vipers-video-quicktags.php:1379
+msgid "Green"
+msgstr "Зялёны"
+
+#: vipers-video-quicktags.php:1380
+#: vipers-video-quicktags.php:1721
+msgid "Orange"
+msgstr "Памяранцавы"
+
+#: vipers-video-quicktags.php:1381
+msgid "Pink"
+msgstr "Ружовы"
+
+#: vipers-video-quicktags.php:1382
+msgid "Purple"
+msgstr "Пурпурны"
+
+#: vipers-video-quicktags.php:1383
+msgid "Ruby Red"
+msgstr "Лалавы"
+
+#: vipers-video-quicktags.php:1417
+#: vipers-video-quicktags.php:1527
+#: vipers-video-quicktags.php:1612
+#: vipers-video-quicktags.php:1754
+#: vipers-video-quicktags.php:1871
+msgid "Preview"
+msgstr "Прадпрагляд"
+
+#: vipers-video-quicktags.php:1420
+#: vipers-video-quicktags.php:1530
+#: vipers-video-quicktags.php:1615
+#: vipers-video-quicktags.php:1757
+#: vipers-video-quicktags.php:1874
+msgid "Loading..."
+msgstr "Загрузка..."
+
+#: vipers-video-quicktags.php:1425
+#: vipers-video-quicktags.php:1535
+#: vipers-video-quicktags.php:1620
+#: vipers-video-quicktags.php:1762
+#: vipers-video-quicktags.php:1879
+msgid "Preview URL"
+msgstr "URL прадпрагляду"
+
+#: vipers-video-quicktags.php:1434
+#: vipers-video-quicktags.php:1544
+#: vipers-video-quicktags.php:1629
+#: vipers-video-quicktags.php:1771
+msgid "pixels"
+msgstr "кропак"
+
+#: vipers-video-quicktags.php:1435
+#: vipers-video-quicktags.php:1545
+#: vipers-video-quicktags.php:1772
+msgid "Maintain aspect ratio"
+msgstr "Кіраванне прапорцыямі"
+
+#: vipers-video-quicktags.php:1441
+msgid "Border Color"
+msgstr "Колер рамкі"
+
+#: vipers-video-quicktags.php:1444
+#: vipers-video-quicktags.php:1452
+#: vipers-video-quicktags.php:1639
+#: vipers-video-quicktags.php:1647
+#: vipers-video-quicktags.php:1655
+#: vipers-video-quicktags.php:1663
+#: vipers-video-quicktags.php:1781
+#: vipers-video-quicktags.php:1920
+#: vipers-video-quicktags.php:1928
+#: vipers-video-quicktags.php:1936
+#: vipers-video-quicktags.php:1944
+msgid "Pick a color"
+msgstr "Вылучыць колер"
+
+#: vipers-video-quicktags.php:1449
+msgid "Fill Color"
+msgstr "Заліць колерам"
+
+#: vipers-video-quicktags.php:1457
+#: vipers-video-quicktags.php:1786
+msgid "Color Presets"
+msgstr "Колеравыя ўсталёўкі"
+
+#: vipers-video-quicktags.php:1461
+msgid "Video Format"
+msgstr "Відэа-фармат"
+
+#: vipers-video-quicktags.php:1466
+msgid "Low Quality FLV (smallest download) — YouTube Default"
+msgstr "Нізкаякаснае FLV (найменшы памер) — YouTube па змаўчанні"
+
+#: vipers-video-quicktags.php:1467
+msgid "High Quality MP4 (medium download) — Plugin Default"
+msgstr "Высокаякасны MP4 (сярэдні памер) — Па змаўчанні для гэтай убудовы"
+
+#: vipers-video-quicktags.php:1468
+msgid "High Quality FLV (largest download)"
+msgstr "Высокаякасны FLV (вялікі памер)"
+
+#: vipers-video-quicktags.php:1480
+msgid "Miscellaneous"
+msgstr "Рознае"
+
+#: vipers-video-quicktags.php:1482
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Адлюстроўваць дэталі відэа пасля прагляду (падобнае відэа, код для ўбудавання, і т.д.)"
+
+#: vipers-video-quicktags.php:1483
+msgid "Show fullscreen button"
+msgstr "Адлюстроўваць кнопку поўнаэкраннага рэжыму"
+
+#: vipers-video-quicktags.php:1484
+msgid "Show border"
+msgstr "Адлюстроўваць рамку"
+
+#: vipers-video-quicktags.php:1485
+#: vipers-video-quicktags.php:1553
+#: vipers-video-quicktags.php:1670
+msgid "Autoplay video (not recommended)"
+msgstr "Аўтапрайграванне відэа (не рэкамендуецца)"
+
+#: vipers-video-quicktags.php:1486
+msgid "Loop video playback"
+msgstr "Зацыкліць прайграванне"
+
+#: vipers-video-quicktags.php:1551
+#: vipers-video-quicktags.php:1668
+msgid "Other"
+msgstr "Іншае"
+
+#: vipers-video-quicktags.php:1636
+msgid "Toolbar Background Color"
+msgstr "Панэль фонавага колеру"
+
+#: vipers-video-quicktags.php:1644
+msgid "Toolbar Glow Color"
+msgstr "Колер Водбліску Панэлі прылад"
+
+#: vipers-video-quicktags.php:1652
+msgid "Button/Text Color"
+msgstr "Колер Кнопак/Тэксту"
+
+#: vipers-video-quicktags.php:1660
+msgid "Seekbar Color"
+msgstr "Колер Панэлі пошуку"
+
+#: vipers-video-quicktags.php:1671
+msgid "Show related videos"
+msgstr "Паказаць падобнае відэа"
+
+#: vipers-video-quicktags.php:1720
+msgid "Default (Blue)"
+msgstr "Па змаўчанні (Галубай)"
+
+#: vipers-video-quicktags.php:1722
+msgid "Lime"
+msgstr "Цытрынавы"
+
+#: vipers-video-quicktags.php:1723
+msgid "Fuschia"
+msgstr "Фуксія"
+
+#: vipers-video-quicktags.php:1724
+msgid "White"
+msgstr "Белы"
+
+#: vipers-video-quicktags.php:1778
+msgid "Color"
+msgstr "Колер"
+
+#: vipers-video-quicktags.php:1790
+msgid "On-Screen Info"
+msgstr "On-Screen Інфа"
+
+#: vipers-video-quicktags.php:1792
+msgid "Portrait"
+msgstr "Партрэт"
+
+#: vipers-video-quicktags.php:1793
+msgid "Title"
+msgstr "Загаловак"
+
+#: vipers-video-quicktags.php:1794
+msgid "Byline"
+msgstr "Аўтарства"
+
+#: vipers-video-quicktags.php:1795
+msgid "Allow fullscreen"
+msgstr "Дазволіць поўнаэкранны рэжым"
+
+#: vipers-video-quicktags.php:1882
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "Па змаўчанні, для прадпрагляду выкарыстоўваецца свежае папулярнае відэа з YouTube. Вы можаце ўставіць сюды URL на свой FLV файл, калі жадаеце."
+
+#: vipers-video-quicktags.php:1890
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "кропак (калі Вы выкарыстаеце стандартную тэму, дадайце 20 да вышыні для панэлі кіравання)"
+
+#: vipers-video-quicktags.php:1897
+msgid "Skin"
+msgstr "Тэма"
+
+#: vipers-video-quicktags.php:1911
+msgid "Use Custom Colors"
+msgstr "Выкарыстаць свае колеры"
+
+#: vipers-video-quicktags.php:1917
+msgid "Control Bar Background Color"
+msgstr "Фонавы Колер Панэлі Кіраванні"
+
+#: vipers-video-quicktags.php:1925
+msgid "Icon/Text Color"
+msgstr "Колер Абразкоў/Тэксту"
+
+#: vipers-video-quicktags.php:1933
+msgid "Icon/Text Hover Color"
+msgstr "Колер Навядзенні Абразкі/Тэксту"
+
+#: vipers-video-quicktags.php:1941
+msgid "Video Background Color"
+msgstr "Фонавы колер для відэа"
+
+#: vipers-video-quicktags.php:1949
+msgid "Advanced Parameters"
+msgstr "Пашыраныя параметры"
+
+#: vipers-video-quicktags.php:1952
+#: vipers-video-quicktags.php:2275
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Радок запыту са спісам дадатковых параметраў для прайгравальніка. Прыклад: %3$s"
+
+#: vipers-video-quicktags.php:1953
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Вам неабходна будзе націснуць "Захаваць Змены" для ўступа ў сілу змен у параметрах, з-за абмежаванасці маіх ведаў у Javascript."
+
+#: vipers-video-quicktags.php:1989
+msgid "Video Alignment"
+msgstr "Выраўнаванне відэа"
+
+#: vipers-video-quicktags.php:1994
+msgid "Left"
+msgstr "Злева"
+
+#: vipers-video-quicktags.php:1995
+msgid "Center"
+msgstr "Па цэнтры"
+
+#: vipers-video-quicktags.php:1996
+msgid "Right"
+msgstr "Справа"
+
+#: vipers-video-quicktags.php:1997
+msgid "Float Left"
+msgstr "Усплываць злева"
+
+#: vipers-video-quicktags.php:1998
+msgid "Float Right"
+msgstr "Усплываць справа"
+
+#: vipers-video-quicktags.php:2010
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Паказваць Кнопкі ў рэдактары на радку нумар"
+
+#: vipers-video-quicktags.php:2015
+msgid "1"
+msgstr "1"
+
+#: vipers-video-quicktags.php:2016
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (Панэль Kitchen Sink)"
+
+#: vipers-video-quicktags.php:2017
+msgid "3 (Default)"
+msgstr "3 (Па змаўчанні)"
+
+#: vipers-video-quicktags.php:2029
+msgid "Feed Text"
+msgstr "Feed Тэкст"
+
+#: vipers-video-quicktags.php:2032
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Увядзіце які-небудзь тэкст, які будзе паказаны ў фідэ замест відэа (бо Вы не можаце ўбудоўваць відэа непасрэдна ў фид). Калі поле будзе пустым, па змаўчанні будзе выведзена: %s"
+
+#: vipers-video-quicktags.php:2032
+#: vipers-video-quicktags.php:2662
+msgid "Click here to view the embedded video."
+msgstr "Пстрыкніце тут для прагляду ўбудаванага відэа."
+
+#: vipers-video-quicktags.php:2036
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: vipers-video-quicktags.php:2038
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Спрабаваць выкарыстаць Windows Media Player для прайгравання звычайных відэа файлаў для карыстачоў Windows"
+
+#: vipers-video-quicktags.php:2043
+msgid "Advanced Settings"
+msgstr "Пашыраныя ўсталёўкі"
+
+#: vipers-video-quicktags.php:2045
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Калі Вы не ўпэўненыя ў тым, што Вы робіце, Вы проста можаце прапусціць гэты падзел."
+
+#: vipers-video-quicktags.php:2049
+msgid "Dynamic QTObject Loading"
+msgstr "Загрузка дынамічнага QTObject"
+
+#: vipers-video-quicktags.php:2051
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Загружаць файл Javascript калі ён сапраўды неабходны. Адключыце гэтую опцыю калі Вы размяшчаеце Quicktime відэа на панэлі виджетов."
+
+#: vipers-video-quicktags.php:2056
+msgid "Custom CSS"
+msgstr "Свой CSS"
+
+#: vipers-video-quicktags.php:2058
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Жадаеце ўсталяваць уласны CSS для кантролю за адлюстраваннем відэа? Тады проста пстрыкніце на гэтым тэксце для паказу пашыранай опцыі."
+
+#: vipers-video-quicktags.php:2060
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Вы можаце ўвесці ўласны CSS у поле ўводу размешчанае ніжэй. Ён пераназначыць значэнні па змаўчанні для CSS элементаў з дапамогай указання %1$s. Для дапамогі і прыкладаў, глядзіце падзел ."
+
+#: vipers-video-quicktags.php:2103
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Пстрыкніце па пытанні, што-бы праглядзець адказ, або пстрыкніце на гэтым тэксце,каб разгарнуць усе адказы."
+
+#: vipers-video-quicktags.php:2107
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Відэа на маім блогу не выводзіцца, замест яго бачныя толькі спасылкі. Што здарылася?"
+
+#: vipers-video-quicktags.php:2110
+msgid "Here are five common causes:"
+msgstr "Тут магчымыя пяць агульных варыянтаў:"
+
+#: vipers-video-quicktags.php:2112
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "У Вас запушчаны Firefox AdBlock? AdBlock і некаторыя правілы блакавання могуць адбіцца на выснове відэа, да прыкладу кіравала YouTube-хостынг. Выключыце AdBlock або перайдзіце на AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2113
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "У Вашай тэме адсутнічае код <?php wp_head();?> усярэдзіне <head> які аўтаматычна ўстаўляе загрузку неабходнага Javascript файла. У гэтым выпадку, Вы можаце бачыць акно папярэджання, якое ўсплывае калі Вы спрабуеце праглядзець старонку са ўбудаваным відэа (прымаючы да ўвагі, што гэта не праблема пад нумарам #3). Адрэдагуйце Вашу тэму, файл header.php і дадайце код адразу перад </head>"
+
+#: vipers-video-quicktags.php:2114
+#: vipers-video-quicktags.php:2120
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Магчыма ў Вас адключаная падтрымка Javascript. Гэтая ўбудова ўстаўляе відэа праз Javascript. Калі ласка уключыце яго ."
+
+#: vipers-video-quicktags.php:2115
+#: vipers-video-quicktags.php:2121
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Магчыма ў Вас усталяваная не апошняя версія Flash. Калі ласка усталюеце яго ."
+
+#: vipers-video-quicktags.php:2119
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "У Вас запушчаны Firefox AdBlock? AdBlock і некаторыя правілы блакавання могуць адбіцца на выснове відэа, да прыкладу кіравала YouTube-хостынг. Выключыце AdBlock або перайдзіце на AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2127
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Дзе я магу ўзяць код для ўбудавання Viddler відэа?"
+
+#: vipers-video-quicktags.php:2129
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Непасрэдны URL на відэа для Viddler не мае нічога агульнага са ўбудавальным URL'ом, Вы павінны выкарыстаць стылявы фармат WordPress.com. Адпраўляйцеся за відэа на Viddler, пстрыкніце кнопку "Embed This" размешчаную ніжэй відэа, і вылучыце WordPress.com фармат. Вы можаце ўставіць гэты код непасрэдна ў артыкул або старонку і гэта дазволіць убудаваць відэа."
+
+#: vipers-video-quicktags.php:2134
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Дзе я магу ўзяць код для ўбудавання Blip.tv відэа?"
+
+#: vipers-video-quicktags.php:2136
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Непасрэдны URL на відэа для Blip.tv не мае нічога агульнага са ўбудавальным URL'ом, Вы павінны выкарыстаць стылявы фармат WordPress.com. Адпраўляйцеся за відэа на Blip.tv, пстрыкніце на жоўтым выпадальным спісе "Share" справа ад відэа і вылучыце "Embed". Далей вылучыце "WordPress.com" з выпадальнага спісу "Show Player" і ў канцы націсніце "Go". Вы можаце ўставіць гэты код непасрэдна ў артыкул або старонку і гэта дазволіць убудаваць відэа."
+
+#: vipers-video-quicktags.php:2138
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "Да ўвагі: Праігнаруйце папераджальнае паведамленне. Гэтая ўбудова забяспечыць карэктную падтрымку для WordPress.com таму гэтае відэа будзе працаваць на Вашым блогу."
+
+#: vipers-video-quicktags.php:2142
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Чаму гэтая ўбудова не падтрымлівае мантаж відэа з сайта, з якога я жадаю яго ўбудаваць?"
+
+#: vipers-video-quicktags.php:2144
+msgid "There's a couple likely reasons:"
+msgstr "Тут магчымыя некалькі чыннікаў:"
+
+#: vipers-video-quicktags.php:2146
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "Вэбсайт можа выкарыстаць URL які не мае нічога агульнага з URL'ом якія адлюстроўваюцца ў адрасным радку. Гэта азначае, што нават калі Вы пакажыце URL на відэа, будзе зусім не проста знайсці URL для ўбудавання відэа."
+
+#: vipers-video-quicktags.php:2147
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "Вэбсайт можа быць занадта малы, мець нейкія спецыфічныя асаблівасці, дрэнна падтрымлівацца і т.п. Распрацоўнік гэтай убудовы не бачыць сэнс падтрымліваць відэа з сайта, якое будзе карысна аднаму - двум наведвальнікам."
+
+#: vipers-video-quicktags.php:2148
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Магчыма я ніколі не чуў аб гэтым сайце. Калі ласка распавядзіце аб гэтым на маім форуме паказаўшы на прыклад спасылкі для відэа з гэтага сайта і я прагляджу яго."
+
+#: vipers-video-quicktags.php:2150
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Гэтая ўбудова мае магчымасць убудоўваць любы Flash файл. Падрабязнасці глядзіце тут: кароткі код устаўкі Flash ."
+
+#: vipers-video-quicktags.php:2154
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "На маім убудаваным відэа з YouTube ёсць чырвоныя элементы (па-над кнопкамі). Што не так?"
+
+#: vipers-video-quicktags.php:2156
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube не падае спосабу для змены гэтага колеру."
+
+#: vipers-video-quicktags.php:2160
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Як я магу змяніць памер, колеры, і т.п. для пэўнага відэа?"
+
+#: vipers-video-quicktags.php:2162
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Вы можаце кантраляваць большасць параметраў праз сістэму кароткіх кодаў WordPress, якія Вы выкарыстаеце, калі ўстаўляеце відэа ў Вашы артыкулы. Кароткія коды падобныя на BBCode . Вось некалькі прыкладаў:"
+
+#: vipers-video-quicktags.php:2168
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Любыя не ўведзеныя значэнні будуць усталяваныя ў значэнні па змаўчанні."
+
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2189
+#: vipers-video-quicktags.php:2199
+#: vipers-video-quicktags.php:2214
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2238
+#: vipers-video-quicktags.php:2244
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2294
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Якія параметры даступныя для кароткага кода %s?"
+
+#: vipers-video-quicktags.php:2175
+#: vipers-video-quicktags.php:2192
+#: vipers-video-quicktags.php:2202
+#: vipers-video-quicktags.php:2217
+#: vipers-video-quicktags.php:2231
+#: vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2258
+#: vipers-video-quicktags.php:2267
+#: vipers-video-quicktags.php:2284
+#: vipers-video-quicktags.php:2298
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — шырыня ў пікселях"
+
+#: vipers-video-quicktags.php:2176
+#: vipers-video-quicktags.php:2193
+#: vipers-video-quicktags.php:2203
+#: vipers-video-quicktags.php:2218
+#: vipers-video-quicktags.php:2232
+#: vipers-video-quicktags.php:2248
+#: vipers-video-quicktags.php:2259
+#: vipers-video-quicktags.php:2268
+#: vipers-video-quicktags.php:2285
+#: vipers-video-quicktags.php:2299
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — вышыня ў пікселях"
+
+#: vipers-video-quicktags.php:2177
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — колер рамкі плэера ў hex фармаце"
+
+#: vipers-video-quicktags.php:2178
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — колер плэера ў hex фармаце"
+
+#: vipers-video-quicktags.php:2179
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — адлюстроўваць рамку або няма (0 або 1)"
+
+#: vipers-video-quicktags.php:2180
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — паказваць падобнае відэа, URL, дэталі аб відэа, і т.п. у канцы прагляду (0 або 1)"
+
+#: vipers-video-quicktags.php:2181
+#: vipers-video-quicktags.php:2223
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — паказваць кнопку поўнаэкраннага прагляду (0 або 1)"
+
+#: vipers-video-quicktags.php:2182
+#: vipers-video-quicktags.php:2194
+#: vipers-video-quicktags.php:2208
+#: vipers-video-quicktags.php:2233
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — аўтаматычна пачынаць прайграванне (0 або 1)"
+
+#: vipers-video-quicktags.php:2183
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — зацыкліць прайграванне (0 або 1)"
+
+#: vipers-video-quicktags.php:2184
+#, php-format
+msgid "%s — quality value for video playback (0 for low quality FLV, 18 for high quality MP4, 6 for high quality FLV)"
+msgstr "%s — якасць прайграванага відэа (0нізкаякаснае FLV, 18 высокаякасны MP4, 6 высокаякасны FLV)"
+
+#: vipers-video-quicktags.php:2204
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — панэль фонавага колеру ў hex"
+
+#: vipers-video-quicktags.php:2205
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — колер водбліску панэлі прылад у hex фармаце"
+
+#: vipers-video-quicktags.php:2206
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — колер кнопак/тэксту ў hex фармаце"
+
+#: vipers-video-quicktags.php:2207
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — колер панэлі пошуку ў hex фармаце"
+
+#: vipers-video-quicktags.php:2209
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — паказваць падобнае відэа (0 або 1)"
+
+#: vipers-video-quicktags.php:2219
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — колер плэера ў hex фармаце"
+
+#: vipers-video-quicktags.php:2220
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — паказваць малюначак загрузніка (0 або 1)"
+
+#: vipers-video-quicktags.php:2221
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — адлюстроўваць загаловак відэа (0 або 1)"
+
+#: vipers-video-quicktags.php:2222
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — адлюстроўваць аўтара відэа (0 або 1)"
+
+#: vipers-video-quicktags.php:2240
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "З таго часу як кароткі код WordPress.com выкарыстоўваецца для втавки Viddler відэа, ніякія іншыя параметры больш не выкарыстоўваюцца. Кароткі код WordPress.com павінен быць скарыстаны як URL для ўстаўкі відэа і нічога больш."
+
+#: vipers-video-quicktags.php:2249
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — адлюстроўваць падрабязнасці аб відэа (0 або 1), па змаўчанні 1"
+
+#: vipers-video-quicktags.php:2254
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Якія параметры даступныя для кароткіх кодаў Metacafe, Blip.tv, IFILM/Spike, і MySpace?"
+
+#: vipers-video-quicktags.php:2256
+msgid "All of these video formats only support the following:"
+msgstr "Усе гэтыя відэа фарматы падтрымліваюць толькі наступнае:"
+
+#: vipers-video-quicktags.php:2269
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — URL малюначкі прадпрагляду, па змаўчанні ён такой-жа як URL відэа файла толькі з пашырэннем .jpg замест .flv"
+
+#: vipers-video-quicktags.php:2270
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — колер кантрольнай панэлі плэера ў hex фармаце"
+
+#: vipers-video-quicktags.php:2271
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — колер абразка/тэксту ў плэеры ў hex фармаце"
+
+#: vipers-video-quicktags.php:2272
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — колер абразка/тэксту пры навядзенні ў плэеры ў hex фармаце"
+
+#: vipers-video-quicktags.php:2273
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — колер фону на відэа ў плэеры ў hex фармаце"
+
+#: vipers-video-quicktags.php:2274
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — узровень гуку ў адсотках, па змаўчанні 100"
+
+#: vipers-video-quicktags.php:2275
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: vipers-video-quicktags.php:2282
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "Вынікі ўстаўкі Quicktime відэа могуць адрозніваецца ад таго, які карыстацкі кампутар выкарыстоўваецца і якое ПА на ім усталявана, але калі Вы ўсёткі памкнуліся ўбудаваць Quicktime відэа, тут сабраныя выкарыстоўваныя для гэтага параметры:"
+
+#: vipers-video-quicktags.php:2286
+#: vipers-video-quicktags.php:2289
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — аўтаматычна пачынаць прайграванне (0 або 1), па змаўчанні 0"
+
+#: vipers-video-quicktags.php:2287
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — выкарыстаць малюнак запаўняльнік: click-to-play (0 або 1), па змаўчанні 0"
+
+#: vipers-video-quicktags.php:2288
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — URL на малюначак запаўняльнік, па змаўчанні супадае з URL'ом відэа файла, але выкарыстоўваецца .jpg замест .mov"
+
+#: vipers-video-quicktags.php:2294
+msgid "video file"
+msgstr "відэа файл"
+
+#: vipers-video-quicktags.php:2296
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "Вынікі ўстаўкі звычайнага відэа могуць адрозніваецца ад таго, які карыстацкі кампутар выкарыстоўваецца і якое ПА на ім усталявана, але калі Вы ўсёткі памкнуліся яго ўбудоўваць, то тут сабраныя выкарыстоўваныя для гэтага параметры:"
+
+#: vipers-video-quicktags.php:2300
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — спрабаваць выкарыстаць Windows Media Player для карыстачоў Windows (0 або 1)"
+
+#: vipers-video-quicktags.php:2306
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "Што такое "Свой CSS" у "Пашыраных усталёўках"?"
+
+#: vipers-video-quicktags.php:2308
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "Гэта хуткі і прастой шлях па кантролі за знешнім афармленнем відэа ўстаўляемага ў артыкул без неабходнасці рэдагавання файла style.css. Проста ўводзіце свой CSS код і ён выводзіцца ў загалоўку Вашай тэмы."
+
+#: vipers-video-quicktags.php:2309
+msgid "Some examples:"
+msgstr "Некалькі прыкладаў:"
+
+#: vipers-video-quicktags.php:2311
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Дадаць чырвоную рамку для ўсіх відэа: %s"
+
+#: vipers-video-quicktags.php:2312
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Толькі YouTube відэа будзе ўсплываць злева: %s"
+
+#: vipers-video-quicktags.php:2318
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Як я магу ўставіць звычайны Flash файл або відэа з вэб сайта, якое не падтрымліваецца гэтай убудовай?"
+
+#: vipers-video-quicktags.php:2320
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "У гэтай убудовы ёсць кароткі код %s, які можа выкарыстоўвацца для ўстаўкі любога Flash файла. Вось яго фармат:"
+
+#: vipers-video-quicktags.php:2325
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Чаму Ваша ўбудова ўстаўляе Quicktime і іншыя звычайныя відэа файлы ў такім пачварным выглядзе? Вы не можаце зрабіць нешта лепей?"
+
+#: vipers-video-quicktags.php:2327
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Устаўка Quiktime і іншых звычайных відэа файлаў гэта вечны галаўны боль і неверагодна цяжкая задача звязаная з падтрымкай розных браўзэраў і аперацыйных сістэм. Я катэгарычна настойваю конвертить усё відэа ў фармат Flash Video або яшчэ лепш у H.264 і затым выкарыстаць яго як Flash Video (FLV). Для абодвух фарматаў існуюць бясплатныя канвертары."
+
+#: vipers-video-quicktags.php:2336
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Гэтая ўбудова выкарыстае мноства скрыптоў і пакетаў створаных іншымі людзьмі і яны заслугоўваюць увагі. Вось яны, у выпадковым парадку:"
+
+#: vipers-video-quicktags.php:2339
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "Аўтары і памагатыя SWFObject які выкарыстоўваецца для ўбудавання відэа які базуецца на Flash."
+
+#: vipers-video-quicktags.php:2340
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering стваральнік JW FLV Media Player , які выкарыстоўваецца для прайгравання FLV."
+
+#: vipers-video-quicktags.php:2341
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens стваральнік Farbtastic , фантастычнага Javascript'а для выбару колеру."
+
+#: vipers-video-quicktags.php:2342
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh стваральнік Liz Comment Counter - убудовы, які пазнаёміў мяне з Farbtastic і шматлікімі іншымі Javascript'ами на якіх грунтуецца мой код для захопу і выбару колеру."
+
+#: vipers-video-quicktags.php:2343
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz дапамагаў мне з TinyMCE Javascript і гэтым самым зэканоміў мне суйму часу."
+
+#: vipers-video-quicktags.php:2344
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns стваральнік QTObject выкарыстоўванага для ўстаўкі Quicktime відэа."
+
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James стваральнік Silk icon pack . Гэтая ўбудова выкарыстае не адзін абразок з гэтага пакета."
+
+#: vipers-video-quicktags.php:2346
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "Аўтары і памагатыя jQuery , неверагоднага Javascript пакета выкарыстоўванага ў WordPress."
+
+#: vipers-video-quicktags.php:2347
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Усё тыя, хто дапамагаў ствараць WordPress і тых хто зрабіў да яго выдатны API і без якіх не мог-бы існаваць гэтую ўбудову."
+
+#: vipers-video-quicktags.php:2348
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Усё тыя, хто паведамляе аб знойдзеных памылках і ўносяць свае прапановы ў гэтую ўбудову."
+
+#: vipers-video-quicktags.php:2351
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "Наступныя людзі былі даволі ласкавыя, што-бы перавесці гэтую ўбудову на іншыя мовы:"
+
+#: vipers-video-quicktags.php:2354
+#, php-format
+msgid "Dutch: %s"
+msgstr "Нямецкі: %s"
+
+#: vipers-video-quicktags.php:2355
+#, php-format
+msgid "Italian: %s"
+msgstr "Італьянскі: %s"
+
+#: vipers-video-quicktags.php:2356
+#, php-format
+msgid "Polish: %s"
+msgstr "Польскі: %s"
+
+#: vipers-video-quicktags.php:2357
+#, php-format
+msgid "Russian: %s"
+msgstr "Рускі: %s"
+
+#: vipers-video-quicktags.php:2360
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Калі Вы жадаеце выкарыстаць гэтая ўбудова на іншай мове і жадаеце ўбачыць сваё імя ў гэтым спісе, проста перавядзіце тэкст які прадстаўляецца ў файле шаблону размешчанага ў тэчцы "localization" гэтай убудовы і затым вышліце яго мне . Для дапамогі чытайце WordPress Codex ."
+
+#: vipers-video-quicktags.php:2367
+msgid "Click the above links to switch between tabs."
+msgstr "Для пераключэння паміж закладкамі скарыстайцеся спасылкамі размешчанымі вышэй."
+
+#: vipers-video-quicktags.php:2400
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"Вы згодны з ліцэнзіяй Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported? Спасылку на яе вы можаце знайсці з правага боку.\n"
+"\n"
+"Калі гаварыць сцісла, то Вы не можаце выкарыстаць JW's FLV Media Player на камерцыйным сайце без куплі камерцыйнай ліцэнзіі."
+
+#: vipers-video-quicktags.php:2411
+msgid "Media Type"
+msgstr "Тып медыя"
+
+#: vipers-video-quicktags.php:2412
+msgid "Show Editor Button?"
+msgstr "Адлюстроўваць кнопку рэдактара?"
+
+#: vipers-video-quicktags.php:2413
+msgid "Default Width"
+msgstr "Шырыня па змаўчанні"
+
+#: vipers-video-quicktags.php:2414
+msgid "Default Height"
+msgstr "Вышыня па змаўчанні"
+
+#: vipers-video-quicktags.php:2415
+msgid "Keep Aspect Ratio?"
+msgstr "Захоўваць прапорцыі?"
+
+#: vipers-video-quicktags.php:2544
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: vipers-video-quicktags.php:2561
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commerical website ."
+msgstr "JW's FLV Media Player знаходзіцца пад ліцэнзіяй Creative Commons Noncommercial license , якая гаворыць аб тым, што Вы не можаце яго выкарыстаць на камерцыйным вэб сайце ."
+
+#: vipers-video-quicktags.php:2576
+msgid "Generic Video File"
+msgstr "Звычайны відэа файл"
+
+#: vipers-video-quicktags.php:2576
+msgid "This part of the plugin is very buggy as embedding video files can be hard. Consider trying TinyMCE's native video embedder instead."
+msgstr "Гэтая частка ўбудовы вельмі нестабільная і не заўсёды карэктна ўстаўляе відэа. Паспрабуйце арыгінальны відэа мантаж, прыкладаемы для TinyMCE."
+
+#: vipers-video-quicktags.php:2591
+msgid "Save Changes"
+msgstr "Захаваць змены"
+
+#: vipers-video-quicktags.php:2592
+msgid "Reset Tab To Defaults"
+msgstr "Скінуць усе ўкладкі да значэнняў па змаўчанні"
+
+#: vipers-video-quicktags.php:2652
+#, php-format
+msgid "ERROR: %s"
+msgstr "ПАМЫЛКА: %s"
+
+#: vipers-video-quicktags.php:2692
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 больш не існуе, таму гэта Stage6 відэа не можа быць паказана."
+
+#: vipers-video-quicktags.php:2707
+#: vipers-video-quicktags.php:2784
+#: vipers-video-quicktags.php:2824
+#: vipers-video-quicktags.php:2882
+#: vipers-video-quicktags.php:2930
+#: vipers-video-quicktags.php:2995
+#: vipers-video-quicktags.php:3065
+#: vipers-video-quicktags.php:3105
+#: vipers-video-quicktags.php:3140
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Няма прыдатнага URL або відэа ID для %s BBCode"
+
+#: vipers-video-quicktags.php:2731
+#: vipers-video-quicktags.php:2739
+#: vipers-video-quicktags.php:2798
+#: vipers-video-quicktags.php:2844
+#: vipers-video-quicktags.php:2900
+#: vipers-video-quicktags.php:2944
+#: vipers-video-quicktags.php:3008
+#: vipers-video-quicktags.php:3079
+#: vipers-video-quicktags.php:3118
+#: vipers-video-quicktags.php:3153
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Не магу разабраць URL, праверце карэктнасць запісу %s"
+
+#: vipers-video-quicktags.php:2743
+#: vipers-video-quicktags.php:2750
+msgid "YouTube Preview Image"
+msgstr "YouTube Трэйлер"
+
+#: vipers-video-quicktags.php:2965
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Выбачыце, але адзіны фармат, падтрымоўваемы для Viddler гэта WordPress.com-style format выдатны ад гэтага URL. Вы можаце найте яго ў акне "Уставіць гэта"."
+
+#: vipers-video-quicktags.php:2980
+#: vipers-video-quicktags.php:3042
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Вы выкарыстаеце некарэктны фармат запісу: %s. Калі ласка, праверце Ваш код."
+
+#: vipers-video-quicktags.php:2987
+#: vipers-video-quicktags.php:3050
+#: vipers-video-quicktags.php:3348
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Калі ласка уключыце Javascript і Flash для прагляду гэтага %3$s відэа."
+
+#: vipers-video-quicktags.php:3029
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Выбачыце, але адзіны фармат, падтрымоўваемы для Blip.tv, гэта WordPress.com-style format. Вы можаце знайсці яго праз Share -> Embed -> WordPress.com."
+
+#: vipers-video-quicktags.php:3175
+#: vipers-video-quicktags.php:3246
+#: vipers-video-quicktags.php:3280
+#: vipers-video-quicktags.php:3323
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "У %s BBCode няма прыдатнага URL "
+
+#: vipers-video-quicktags.php:3323
+msgid "generic Flash embed"
+msgstr "устаўка звычайнага Flash"
+
+#: vipers-video-quicktags.php:3348
+msgid "Flash"
+msgstr "Flash"
+
+#: vipers-video-quicktags.php:3366
+msgid "Site Administrator: Your theme is missing inside of it's which is required for Viper's Video Quicktags. Please edit your theme's header.php and add it right before ."
+msgstr "Адміністратар сайта: У Вашай тэме адсутнічае код: усярэдзіне тэга , што з'яўляецца неабходным для Viper's Video Quicktags. Калі ласка адрэдагуйце файл Вашай тэмы - header.php і дадайце адсутны код адразу перад ."
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-da_DK.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-da_DK.mo
new file mode 100644
index 00000000..f89c3036
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-da_DK.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-da_DK.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-da_DK.po
new file mode 100644
index 00000000..d2c5027a
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-da_DK.po
@@ -0,0 +1,1327 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags 6.1.18 in Danish / på dansk\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-03-19 07:17+0100\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Georg S. Adamsen \n"
+"Language-Team: Team Blogos \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2;plural=n != 1;\n"
+"X-Poedit-Language: Danish\n"
+"X-Poedit-Country: DENMARK\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2\n"
+"X-Poedit-Basepath: d:\\wordpress\\plugins\\vipers-video-quicktags\\\n"
+"X-Poedit-SearchPath-0: D:\\WordPress\\plugins\\vipers-video-quicktags\n"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:388
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1401
+msgid "Default"
+msgstr "Standard"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:389
+msgid "3D Pixel Style"
+msgstr "3D Pixel Style"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:390
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:391
+msgid "Comet"
+msgstr "Comet"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:392
+msgid "Control Panel"
+msgstr "Kontrolpanel"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:393
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:394
+msgid "Fashion"
+msgstr "Fashion"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:395
+msgid "Festival"
+msgstr "Festival"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:396
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:397
+msgid "Kleur"
+msgstr "Kleur"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:398
+msgid "Magma"
+msgstr "Magma"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:399
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:400
+msgid "Nacht"
+msgstr "Nacht"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:401
+msgid "Neon"
+msgstr "Neon"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:402
+msgid "Pearlized"
+msgstr "Pearlized"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:403
+msgid "Pixelize"
+msgstr "Pixelize"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:404
+msgid "Play Casso"
+msgstr "Play Casso"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:405
+msgid "Schoon"
+msgstr "Schoon"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:406
+msgid "Silvery White"
+msgstr "Silvery White"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:407
+msgid "Snel"
+msgstr "Snel"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:408
+msgid "Stijl"
+msgstr "Stijl"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:409
+msgid "Traganja"
+msgstr "Traganja"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:416
+#, php-format
+msgid "This version of Viper's Video Quicktags requires WordPress 2.6 or newer. Please upgrade or use the legacy version of this plugin."
+msgstr "Denne version af Viper's Video Quicktags kræver WordPress 2.6 eller nyere. Opgradér venligst eller brug of this plugin."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:424
+#, php-format
+msgid "WARNING: If you use the FLV embed feature of Viper's Video Quicktags, there is a bug in WordPress with the FTP method of upgrading plugins. It will not upload the .swf files properly. If you do embed FLV files, please manually download the plugin and upload the files to your server. If you don't embed FLV files (and only embed YouTube, etc. videos), you can safely ignore this message and upgrade automatically."
+msgstr "ADVARSEL: Hvis du bruger Viper's Video Quicktags til at indsætte FLV, så skal du vide, at WordPress har en bug i metoden til at opgradere plugins via FTP. WordPress oploader ikke .swf-filer ordentligt. Hvis du indlejrer FLV-filer, skal du downloade pluginnet manuelt og uploade filerne til din server. Hvis du ikke indlejrer FLV-filer, men kun YouTube-videoer, så kan du helt trygt ignorere denne meddelelse og opgradere automatisk."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:430
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Opsætning af Viper's Video Quicktags"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:430
+msgid "Video Quicktags"
+msgstr "Video-kviktags"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:441
+msgid "Settings"
+msgstr "Indstillinger"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:531
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1145
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2184
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2432
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2719
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2747
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2755
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2861
+msgid "YouTube"
+msgstr "YouTube"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:532
+msgid "Embed a video from YouTube"
+msgstr "Indsæt en video fra YouTube"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:533
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:539
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:545
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:551
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:557
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:569
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:581
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:587
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:593
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Indtast URL'en, hvor videoen kan ses"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:537
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1146
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2200
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2445
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2816
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2834
+msgid "Google Video"
+msgstr "Google Video"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:538
+msgid "Embed a video from Google Video"
+msgstr "Indsæt en video fra Google Video"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:543
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1147
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2210
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2458
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2884
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:544
+msgid "Embed a video from DailyMotion"
+msgstr "Indsæt en video fra DailyMotion"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:549
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1148
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2225
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2471
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2922
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2943
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:550
+msgid "Embed a video from Vimeo"
+msgstr "Indsæt en video fra Vimeo"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:555
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2239
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2484
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2983
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3014
+msgid "Veoh"
+msgstr "Veoh"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:556
+msgid "Embed a video from Veoh"
+msgstr "Indsæt en video fra Veoh"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:561
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2142
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2249
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2497
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3060
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3067
+msgid "Viddler"
+msgstr "Viddler"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:562
+msgid "Embed a video from Viddler"
+msgstr "Indsæt en video fra Viddler"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:563
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Indtast tag til at indsætte Viddler-videoen. Brug WordPress.com-formatet. Se Hjælp for detaljer. For fremtiden behøver du faktisk ikke at åbne dette vindue — du kan bare indsætte direkte i editoren."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:567
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2504
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3075
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3091
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:568
+msgid "Embed a video from Metacafe"
+msgstr "Indsæt en video fra Metacafe"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:573
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2149
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2517
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3128
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3136
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:574
+msgid "Embed a video from Blip.tv"
+msgstr "Indsæt en video fra Blip.tv"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:575
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Indtast tag til at indsætte en Blip.tv-video. Brug WordPress.com-formatet. Se Hjælp for detaljer. For fremtiden behøver du faktisk ikke at åbne dette vindue — du kan bare indsætte direkte i editoren."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:579
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2255
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2530
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3151
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3168
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3186
+msgid "Flickr Video"
+msgstr "Flickr-video"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:580
+msgid "Embed a video from Flickr Video"
+msgstr "Indsæt en video fra Flickr Video"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:585
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2543
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3194
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3210
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:586
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Indsæt en video fra IFILM/Spike.com"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:591
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3232
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3248
+msgid "MySpace"
+msgstr "MySpace"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:592
+msgid "Embed a video from MySpace"
+msgstr "Indsæt en video fra MySpace"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:597
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3270
+msgid "FLV"
+msgstr "FLV"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:598
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Indsæt en Flash Video-fil (FLV-fil)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:599
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:605
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:611
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Indtast URL'en til %1$s-filen."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:599
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1149
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2275
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2570
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:603
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:605
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2291
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2581
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3355
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:604
+msgid "Embed a Quicktime video file"
+msgstr "Indsæt en Quicktime-videofil"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:609
+msgid "Video File"
+msgstr "Videofil"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:610
+msgid "Embed a generic video file"
+msgstr "Indsæt en generisk videofil"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:611
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3398
+msgid "generic video"
+msgstr "generisk video"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:677
+msgid "Example:"
+msgstr "Eksempel:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:797
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1457
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1552
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1638
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1780
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1898
+msgid "Dimensions"
+msgstr "Størrelse"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:799
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "Standardstørrelsen for denne videotype kan indstilles på siden med pluginnets indstillinger . Men du kan angive egen størrelse for netop denne video her:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:819
+msgid "Cheatin’ uh?"
+msgstr "Snyder du, hva'?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1107
+msgid "Settings for this tab reset to defaults."
+msgstr "Indstillingerne på denne fane er nulstillet til standardværdierne."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1115
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1129
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1119
+msgid "Optional Comment"
+msgstr "Valgfri kommentar"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1134
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Giv en gave via PayPal til Viper007Bond som tak for dette plugin"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1144
+msgid "Additional Settings"
+msgstr "Yderligere indstillinger"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1150
+msgid "Help"
+msgstr "Hjælp"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1151
+msgid "Credits"
+msgstr "Tak"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1159
+msgid "General"
+msgstr "Generelt"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1186
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Er du sikker på, du vil nulstille denne fanes indstillinger til standardværdierne?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1198
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Sæt standardværdier for denne videotype her. Alle disse indstillinger kan tilsidesættes, når du indsætter de enkelte videoer. Se Hjælpe-afsnittet for detaljer."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1203
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Du skulle dog overveje at bruge en anden browser end Internet Explorer. På grund af begrænsninger i din browswer, vil der være visse mangler ved visningen af disse sider med opsætning i forhold til, hvis du brugte en browser som Firefox eller Opera . Hvis du skifter, vil du kunne se forhåndsvisningen opdatere, når du ændrer alle indstillinger (i stedet for blot et stærkt begrænset antal indstillinger) m.m."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1358
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1508
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1588
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1700
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Kunne ikke parse URL'en til forhåndsvisning. Sørg for, at det er den fulde URL. Den skal selvfølgelig også være gyldig."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1402
+msgid "Dark Grey"
+msgstr "Mørkegrå"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1403
+msgid "Dark Blue"
+msgstr "Mørkeblå"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1404
+msgid "Light Blue"
+msgstr "Lyseblå"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1405
+msgid "Green"
+msgstr "Grøn"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1406
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1733
+msgid "Orange"
+msgstr "Orange"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1407
+msgid "Pink"
+msgstr "Lyserød"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1408
+msgid "Purple"
+msgstr "Lilla"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1409
+msgid "Ruby Red"
+msgstr "Rubinrød"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1443
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1538
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1624
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1766
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1883
+msgid "Preview"
+msgstr "Forhåndsvisning"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1446
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1541
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1627
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1769
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1886
+msgid "Loading..."
+msgstr "Indlæser ..."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1451
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1546
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1632
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1774
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1891
+msgid "Preview URL"
+msgstr "URL til forhåndsvisning"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1460
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1555
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1641
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1783
+msgid "pixels"
+msgstr "pixels"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1461
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1556
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1784
+msgid "Maintain aspect ratio"
+msgstr "Bevar proportionsforhold"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1467
+msgid "Border Color"
+msgstr "Rammefarve"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1470
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1478
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1651
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1659
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1667
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1675
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1793
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1932
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1940
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1948
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1956
+msgid "Pick a color"
+msgstr "Vælg en farve"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1475
+msgid "Fill Color"
+msgstr "Udfyldningsfarve"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1483
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1798
+msgid "Color Presets"
+msgstr "Forvalgte farver"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1487
+msgid "Miscellaneous"
+msgstr "Diverse"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1489
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Vis detaljer om videon efter endt afspilning (lignende videoer, koder for indsættelse, osv.)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1490
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1564
+msgid "Show fullscreen button"
+msgstr "Vis knap til fuldskærmsvisning"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1491
+msgid "Show border"
+msgstr "Vis ramme"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1492
+msgid "Show the search box"
+msgstr "Vis søgefelt"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1493
+msgid "Show the video title and rating"
+msgstr "Vis videotitel og -bedømmelse"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1494
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1565
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1682
+msgid "Autoplay video (not recommended)"
+msgstr "Afspil video automatisk (anbefales ikke)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1495
+msgid "Loop video playback"
+msgstr "Start automatisk forfra efter endt afspilning"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1562
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1680
+msgid "Other"
+msgstr "Andet"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1648
+msgid "Toolbar Background Color"
+msgstr "Baggrundsfarve på værktøjslinje"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1656
+msgid "Toolbar Glow Color"
+msgstr "Farve på lysskær på værktøjslinje"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1664
+msgid "Button/Text Color"
+msgstr "Farve på knapper/tekst"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1672
+msgid "Seekbar Color"
+msgstr "Farve, hvis der kan søges"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1683
+msgid "Show related videos"
+msgstr "Vis lignende videoer"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1732
+msgid "Default (Blue)"
+msgstr "Standard (blå)"
+
+# ravgul?
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1734
+msgid "Lime"
+msgstr "Lime"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1735
+msgid "Fuschia"
+msgstr "Fuchsiafarvet"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1736
+msgid "White"
+msgstr "Hvid"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1790
+msgid "Color"
+msgstr "Farve"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1802
+msgid "On-Screen Info"
+msgstr "Info, der vises på skærmen"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1804
+msgid "Portrait"
+msgstr "Portræt"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1805
+msgid "Title"
+msgstr "Titel"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1806
+msgid "Byline"
+msgstr "Byline (linje med forfatternavn)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1807
+msgid "Allow fullscreen"
+msgstr "Tillad fuldskærmsvisning"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1894
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "Videoen, der som standard bruges til forhåndsvisning, er den video, der senest er fremhævet på YouTube. Du kan indsætte URL'en til en af dine egne FLV-filer, hvis du ønsker det."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1902
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "pixels (hvis du bruger standardskindet, så læg 20 til i højden til kontrollinjen)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1909
+msgid "Skin"
+msgstr "Skind"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1923
+msgid "Use Custom Colors"
+msgstr "Brug egne farver"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1929
+msgid "Control Bar Background Color"
+msgstr "Baggrundsfarve på kontrollinje"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1937
+msgid "Icon/Text Color"
+msgstr "Ikon-/Tekstfarve"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1945
+msgid "Icon/Text Hover Color"
+msgstr "Farve, når musen er over ikon/tekst"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1953
+msgid "Video Background Color"
+msgstr "Baggrundsfarve for video"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1961
+msgid "Advanced Parameters"
+msgstr "Avancerede parametre"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1964
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2286
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "En liste i søgestrengsformat med yderligere parametre til afspilleren. Eksempel: %3$s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:1965
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Du skal klikke på "Gem ændringer" for at disse parametre faktisk bruges (skyldes mine moderate JavaScript-evner)."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2001
+msgid "Video Alignment"
+msgstr "Placering af video"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2006
+msgid "Left"
+msgstr "Venstre"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2007
+msgid "Center"
+msgstr "Midt"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2008
+msgid "Right"
+msgstr "Højre"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2009
+msgid "Float Left"
+msgstr "Venstre, flydende"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2010
+msgid "Float Right"
+msgstr "Højre, flydende"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2022
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Vis knapper i editoren på knaplinje nummer"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2027
+msgid "1"
+msgstr "1"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2028
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (Kitchen Sink-værktøjslinje)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2029
+msgid "3 (Default)"
+msgstr "3 (standard)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2041
+msgid "Feed Text"
+msgstr "Feed-tekst"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2044
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Du kan vælge at indtaste din egen tekst, som skal vises i dit feed i stedet for videoerne (eftersom videoer ikke kan indsættes i feeds). Hvis du ikke indtaster noget, vil standard være: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2044
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2674
+msgid "Click here to view the embedded video."
+msgstr "Klik her for at se den indsatte video."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2048
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2050
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Forsøg at bruge Windows Media Player for almindelig videofil-afspilning for Windows-brugere"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2055
+msgid "Advanced Settings"
+msgstr "Avancerede indstillinger"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2057
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Hvis du ikke ved, hvad du gør, så kan du roligt ignorere denne sektion."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2061
+msgid "Dynamic QTObject Loading"
+msgstr "Dynamisk indlæsning af QTObjekter"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2063
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Indlæs kun JavaScript-filen, hvis den skal bruges. Deaktivér dette, hvis du vil vise Quicktime-videoer i en tekst-widget i et sidepanel."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2068
+msgid "Custom CSS"
+msgstr "Brugertilpasset CSS"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2070
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Ønsker du let at angive noget brugervalgt CSS til at kontrollere visning af videoer? Så skal du blot klikke på denne tekst for at udvide denne indstilling."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2072
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Du kan indtaste bruger-CSS i boksen nedenunder. Det vil blive indsat efter det standard-CSS, du ser opført her, og som du kan tilsidesætte ved at bruge %1$s. For hjælp og eksempler, se Hjælp -fanen"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2115
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Klik på et spørgsmål for at se svaret eller klik på denne tekst for at udvide alle svarene."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2119
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Vidoerne vises ikke på min blog. Der vises kun links i stedet for. Hvad sker der?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2122
+msgid "Here are five common causes:"
+msgstr "Her er fem typiske grunde:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2124
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Bruger du Firefox og AdBlock? AdBlock og visse regler for blokering kan forhindre nogle videoer, især videoer på YouTube, i at indlæses. Deaktivér AdBlock eller skift til AdBlock Plus ."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2125
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "Dit tema mangler måske <?php wp_head();?> i dets <head>. Det betyder, at den nødvendige JavaScript-fil ikke kan tilføjes automatisk. Hvis det er tilfældet, kan det være, at et advarselsvindue popper op, når du prøver at se et indlæg med en video i (forudsat at dit problem ikke også er nr. 3). Redigér dit temas header.php-fil og tilføj <?php wp_head();?> lige før </head>"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2126
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2132
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "JavaScript er måske deaktiveret. Dette plugin indsætter videoer med JavaScript for at give den bedste oplevelse. Vær venlig og aktivere det ."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2127
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2133
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Du har måske ikke den seneste version af Flash installeret. Vær venlig at installere det ."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2131
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Bruger du Firefox og AdBlock? AdBlock og visse blokeringsregler kan medføre, at videoerne, navnlig videoer på YouTube, ikke indlæses. Deaktivér AdBlock eller skift til AdBlock Plus ."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2139
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Hvor får jeg koden til at indsætte en Viddler-video?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2141
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Siden URL'en til en video på Viddler intet har tilfælles med den URL, videoen indsættes med, skal du bruge WordPress.com-format. Gå til videoen på Viddler, klik på "Embed This" ('Indsæt denne') under videoen og vælg så WordPress.com-formatet. Du kan indsætte koden direkte i et indlæg eller på en side. Så vil videoen være indsat."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2146
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Hvor får jeg koden til at indsætte en Blip.tv-video?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2148
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Siden URL'en til en video på Blip.tv intet har tilfælles med den URL, videoen indsættes med, skal du bruge WordPress.com-format. Gå til videoen på Blip.tv, klik på den gule "Share This" ('Del denne')-pull-down-menu til højre for videoen og vælg så "Embed" ('Indsæt'). Vælg dernæst "WordPress.com" fra "Show Player" (Vis afspiller)-pull-down-menuen. Tryk til sidst på "Go" (Udfør). Du kan indsætte koden direkte i et indlæg eller på en side. Så vil videoen være indsat."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2150
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "Bemærk, at du skal ignorere fejlmeddelelsen. Dette plugin tilføjer understøttelse for WordPress.com-formatet, så det vil fungere på din blog."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2154
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Hvorfor understøtter dette plugin ikke et websted, som jeg ønsker at indsætte videoer fra?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2156
+msgid "There's a couple likely reasons:"
+msgstr "Der er et par sandsynlige grunde:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2158
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "Webstedet bruger måske en URL til indsættelse, som ikke har noget som helst at gøre med URL'en i adresselinjen. Dette betyder, at selv om du giver dette plugin URL'en til videoen, har den ingen nem måde at finde URL'en til indsættelse på."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2159
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "Webstedet er måske for lille, er for langt ude på overdrevet, osv., til at være værd at understøtte. Der er ikke rigtig nogen pointe for dette plugin i at tilføje understøttelse for et video-websted, som kun en eller to vil bruge."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2160
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Jeg har måske bare aldrig hørt om stedet. Vær venlig og opret en tråd på mine supportforummer med et eksempel på et link til en video på webstedet. Så skal jeg kigge på det."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2162
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Dette plugin kan dog indsætte enhver Flash-fil. Se Spørgsmål om Flash-kortkode for detaljer herom."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2166
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "Der er stadig røde småstykker (de svæver over knapperne) i mine indsatte YouTube-videoer. Hvad sker der?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2168
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube stiller ikke nogen metode til at ændre denne farve til rådighed."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2172
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Hvordan kan jeg ændre størrelsen, farverne, osv., på en bestemt video?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2174
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Du kan kontrollere mange ting med WordPress-kortkode-systemet, som du bruger til at indsætte videoer i dine indlæg. Kortkoder svarer til BBCode . Her er nogle eksempler på kortkoder:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2180
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Alle værdier, som ikke indtastet, vil anvende standardværdierne."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2184
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2200
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2210
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2225
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2239
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2249
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2255
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2275
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2291
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2305
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Hvilke parametre kan man bruge efter %s-kortkoden?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2187
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2203
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2213
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2228
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2242
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2258
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2269
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2278
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2295
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2309
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — bredden i pixels"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2188
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2204
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2214
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2229
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2243
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2259
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2270
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2279
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2296
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2310
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — højden i pixels"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2189
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — rammefarve på afspiller i hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2190
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — udfyldningsfarve i afspiller i hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2191
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — vis eller vis ikke ramme (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2192
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — vis lignende videoer, URL, detaljer for indsættelse, osv. efter endt afspilning (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2193
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2234
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — vis knap til fuldskærmsvisning (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2194
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2205
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2219
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2244
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — start afspilning automatisk (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2195
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — begynd forfra efter endt afspilning (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2215
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — baggrundsfarve for værktøjslinje i hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2216
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — toolbar glow color in hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2217
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — farve på knapper/tekst i hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2218
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — farve, hvis der kan søges, i hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2220
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — vis lignende video (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2230
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — farve på afspiller i hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2231
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — vis billede på den, der har uploadet (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2232
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — vis titel på video (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2233
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — vis, hvem der har lavet video (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2251
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "Eftersom kortkode i WordPress.com-format bruges for at indsætte Viddler-videoer, har Viddler-kortkoden ingen parametre, brugeren kan tilpasse. WordPress.com-kortkoden skal bruges, eftersom videoens URL og URL'en, der bruges til at indsætte videoen, intet har til fælles."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2260
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — vis detaljer om video (0 eller 1); standard er 1"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2265
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Hvilke parametre kan bruges med Metacafe, Blip.tv, IFILM/Spike og MySpace-kortkoderne?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2267
+msgid "All of these video formats only support the following:"
+msgstr "Alle disse videoformater understøtter kun de følgende:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2280
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — URL'en til forhåndsvisningsbilledet; er som standard den samme URL som videofilen, men med .jpg i stedet for .flv"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2281
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — baggrundsfarve i hex for kontrollinjen i afspilleren"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2282
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — farve i hex på ikon/tekst i afspilleren"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2283
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — farve på ikon/tekst i afspilleren, når musen er over det"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2284
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — afspillerens videobaggrundsfarve i hex"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2285
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — volume i procent; standard er 100"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2286
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2293
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "Resultat af at indsætte en Quicktime-video kan variere stærkt afhængig af brugerens computer og det software, der er installeret, men hvis du skal indsætte en Quicktime-video, er parametrene her:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2297
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2300
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — start afspilning automatisk (0 eller 1); standard er 0"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2298
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — brug klik-for-at-spille-pladsholderbillede (0 eller 1); standard er 0"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2299
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — URL'en til pladsholder; er som standard den samme URL som videofilen, men med .jpg i stedet for .mov"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2305
+msgid "video file"
+msgstr "videofil"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2307
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "Resultat af at indsætte en generisk video kan variere stærkt afhængig af brugerens computer og det software, der er installeret, men hvis du skal indsætte en generisk video, er parametrene her:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2311
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — forsøg at bruge Windows Media Player for Windows-brugere (0 eller 1)"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2317
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "Hvad er denne "Brugertilpasset CSS"-ting på "Yderligere indstillinger"-fanen til?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2319
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "Det er en hurtig og let måde at kontrollere, hvordan videoerne, der lægges ud på din side, skal se ud uden, at du behøver at gå ind og redigere style.css-filen. Du skal bare indtaste noget af dit eget CSS i boksen. Så vil det blive indsat i headeren på dit tema."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2320
+msgid "Some examples:"
+msgstr "Nogle eksempler:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2322
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Vis alle videoer med rød kant: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2323
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Lad kun YouTube-videoer flyde til venstre: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2329
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Hvordan kan jeg indsætte en generisk Flash-fil eller en video fra et websted, som dette plugin ikke understøtter?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2331
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "Dette plugin har en %s-kortkode, som kan bruges til at indsætte en hvilken som helst -Flashfil. Her er formatet:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2336
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Hvorfor indsætter dit plugin Quicktime og andre almindelige videofiler så dårligt? Kan du ikke gøre det bedre?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2338
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Det er forfærdeligt vanskeligt at indsætte Quicktime og andre almindelige videofiler, og det er utroligt svært at få det til at virke i alle browsere og i alle operativsystemer. Jeg anbefaler kraftigt at konvertere videoen til Flash Video- eller endog H.264 -formatet og så bruge Flash Video (FLV) som indsættelsesmåde. Der findes gratis konvertere til begge formater. Gør du det, vil det give dine besøgende en meget bedre oplevelse."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2347
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Dette plugin bruger mange skripts og pakker, som andre har skrevet. De fortjener anerkendelse, så her er de i tilfældig rækkefølge:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2350
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "Forfatterne og bidragyderne til SWFObject som bruges til at indsætte Flash-baserede videoer."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2351
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering for at have lavet JW FLV Media Player , som bruges til at afspille FLV."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2352
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens , fordi han har lavet Farbtastic , den fantastiske JavaScript-farvevælger, som bruges i dette plugin."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2353
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh , fordi han har lavet Liz Comment Counter -pluginnet, som introducerede mig til Farbtastic og gav mig noget JavaScript, som jeg baserede min farvevælger- og forvalgte farver-kode på."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2354
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz , fordi han hjalp mig med TinyMCE-relateret JavaScript og følgelig sparede mig for et hav af timer."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2355
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns , fordi han har skrevet QTObject , som bruger til at indsætte Quicktime-videoer."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2356
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James , fordi han skabteSilk icon pack . Dette plugin bruger mindst en af ikonerne fra denne Silke-ikon-pakke."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2357
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "Forfatterne og bidragyderne til jQuery , den formidable Javascript-pakke, som WordPress bruger."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2358
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Alle, som har hjulpet med at skabe WordPress , eftersom dette plugin selvsagt ikke ville have eksisteret uden WordPress og dets udmærkede API."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2359
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Alle, som har sendt bug-rapporter og forslag til funktioner i dette plugin."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2362
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "De følgende har været flinke nok til at oversætte pluginnet til et andet sprog:"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2365
+#, php-format
+msgid "Dutch: %s"
+msgstr "Nederlandsk: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2366
+#, php-format
+msgid "French: %s"
+msgstr "Fransk: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2367
+#, php-format
+msgid "Italian: %s"
+msgstr "Italiensk: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2368
+#, php-format
+msgid "Polish: %s"
+msgstr "Polsk: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2369
+#, php-format
+msgid "Russian: %s"
+msgstr "Russisk: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2372
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Hvis du ønsker at bruge dette plugin på et andet sprog og få dit navn med på listen, så oversæt strengene i den medleverede skabelonfil , som findes i mappen "localization". Send den til mig . Se WordPress Codex , hvis du har brug for hjælp."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2379
+msgid "Click the above links to switch between tabs."
+msgstr "Klik på linksene ovenfor for at skifte mellem fanerne."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2412
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"Er du enig i Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported-licensen? Et link til den kan findes til venstre.\n"
+"\n"
+"Kort fortalt kan du ikke bruge JW's FLV Media Player på et kommercielt websted uden at købe en kommerciel licens."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2423
+msgid "Media Type"
+msgstr "Medietype"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2424
+msgid "Show Editor Button?"
+msgstr "Vis knap i editor?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2425
+msgid "Default Width"
+msgstr "Standardbredde"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2426
+msgid "Default Height"
+msgstr "Standardhøjde"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2427
+msgid "Keep Aspect Ratio?"
+msgstr "Bevar proportionsforholdet?"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2556
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2573
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commercial website ."
+msgstr "JW's FLV Media Player er omfattet af Creative Commons Noncommercial-licensen , hvilket betyder, at du ikke kan bruge den på et kommercielt websted ."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2588
+msgid "Generic Video File"
+msgstr "Generisk videofil"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2588
+#, php-format
+msgid "This part of the plugin is fairly buggy as embedding video files is complex. Consider trying TinyMCE's native video embedder instead. Why? "
+msgstr "Denne del af pluginnet har en del fejl, eftersom det er kompliceret at indsætte videofiler. Overvej at prøve TinyMCE's funktion til at indsætte videoer i deres oprindelige format i stedet for. Hvorfor? "
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2603
+msgid "Save Changes"
+msgstr "Gem ændringer"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2604
+msgid "Reset Tab To Defaults"
+msgstr "Nulstil fane til standard"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2664
+#, php-format
+msgid "ERROR: %s"
+msgstr "FEJL: %s"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2704
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 eksisterer ikke mere, så denne video på Stage6 kan ikke vises."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2719
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2816
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2861
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2922
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2983
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3075
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3151
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3194
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3232
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Der blev ikke overført nogen URL eller video-id til %s BBCode"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2747
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2755
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2834
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2884
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2943
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3014
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3091
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3168
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3210
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3248
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Kunne ikke parse URL; tjek, om den har det korrekt %s-format."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2759
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:2766
+msgid "YouTube Preview Image"
+msgstr "YouTube-forhåndsvisningsbillede"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3042
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Beklager, men det eneste Viddler-format, som understøttes, er det WordPress.com-lignende. URL'en kan ikke anvendes. Du kan finde koden i "Embed This"-vinduet."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3060
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3128
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Der blev brugt et ugyldig %s-kortkodeformat. Vær venlig og tjek din kode."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3067
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3136
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3473
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Vær venlig og aktivér JavaScript og Flash , hvis du vil se denne %3$s-video."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3112
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Beklager, men det eneste format, som understøttes for Blip.tv, er det WordPress.com-lignende format. Du kan finde koden under Share -> Embed -> WordPress.com."
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3270
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3355
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3398
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3444
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "Der blev ikke overført nogen URL til %s-BBCode"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3444
+msgid "generic Flash embed"
+msgstr "generisk flash-indsættelse"
+
+#: D:\WordPress\plugins\vipers-video-quicktags/vipers-video-quicktags.php:3473
+msgid "Flash"
+msgstr "Flash"
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-es_ES.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-es_ES.mo
new file mode 100644
index 00000000..c89357c4
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-es_ES.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-es_ES.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-es_ES.po
new file mode 100644
index 00000000..d213c852
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-es_ES.po
@@ -0,0 +1,2421 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Viper007Bond
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags 6.2.13\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-11-03 09:49+0100\n"
+"PO-Revision-Date: 2009-11-03 09:53+0100\n"
+"Last-Translator: Omi \n"
+"Language-Team: Omi \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Poedit-Language: Spanish\n"
+"X-Poedit-Country: SPAIN\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e\n"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:246
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:246
+msgid "Click here to view the embedded video."
+msgstr "Pinche aquí para ver el vídeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:413
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1428
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:413
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1428
+msgid "Default"
+msgstr "Por defecto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:414
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:414
+msgid "3D Pixel Style"
+msgstr "Estilo Píxel 3D"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:415
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:415
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:416
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:416
+msgid "Bekle (Overlay)"
+msgstr "Bekle (Sobrepuesto)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:417
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:417
+msgid "Blue Metal"
+msgstr "Blue Metal"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:418
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:418
+msgid "Comet"
+msgstr "Comet"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:419
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:419
+msgid "Control Panel"
+msgstr "Panel de Control"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:420
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:420
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:421
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:421
+msgid "Fashion"
+msgstr "Fashion"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:422
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:422
+msgid "Festival"
+msgstr "Festival"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:423
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:423
+msgid "Grunge Tape"
+msgstr "Grunge Tape"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:424
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:424
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:425
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:425
+msgid "Kleur"
+msgstr "Kleur"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:426
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:426
+msgid "Magma"
+msgstr "Magma"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:427
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:427
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:428
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:428
+msgid "Modieus (Stylish)"
+msgstr "Modieus (elegante)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:429
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:429
+msgid "Modieus (Stylish) Slim"
+msgstr "Modieus (elegante) esbelto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:430
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:430
+msgid "Nacht"
+msgstr "Nacht"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:431
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:431
+msgid "Neon"
+msgstr "Neon"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:432
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:432
+msgid "Pearlized"
+msgstr "Pearlized"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:433
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:433
+msgid "Pixelize"
+msgstr "Pixelize"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:434
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:434
+msgid "Play Casso"
+msgstr "Play Casso"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:435
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:435
+msgid "Schoon"
+msgstr "Schoon"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:436
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:436
+msgid "Silvery White"
+msgstr "Silvery White"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:437
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:437
+msgid "Simple"
+msgstr "Simple"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:438
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:438
+msgid "Snel"
+msgstr "Snel"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:439
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:439
+msgid "Stijl"
+msgstr "Stijl"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:440
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:440
+msgid "Traganja"
+msgstr "Traganja"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:447
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:447
+#, php-format
+msgid "Viper's Video Quicktags requires WordPress 2.8 or newer. Please upgrade ! By not upgrading, your blog is likely to be hacked ."
+msgstr "Esta versión de Viper's Video Quicktags requiere de WordPress 2.8 o superior. Por favor actualice o utilice la versión antigua de este plugin."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:453
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:453
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Configuración de Viper's Video Quicktags"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:453
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:453
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:464
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:464
+msgid "Settings"
+msgstr "Opciones"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:554
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1170
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2212
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2466
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2796
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2826
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2834
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2948
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:554
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1170
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2212
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2466
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2796
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2826
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2834
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2948
+msgid "YouTube"
+msgstr "YouTube"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:555
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:555
+msgid "Embed a video from YouTube"
+msgstr "Incrustar un vídeo de Youtube"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:556
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:562
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:568
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:574
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:580
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:592
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:604
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:610
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:616
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:556
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:562
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:568
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:574
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:580
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:592
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:604
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:610
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:616
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Por favor, introduzca la URL en la que el vídeo puede verse."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:560
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1171
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2228
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2479
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2900
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2919
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:560
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1171
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2228
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2479
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2900
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2919
+msgid "Google Video"
+msgstr "Google Video"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:561
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:561
+msgid "Embed a video from Google Video"
+msgstr "Incrustar un vídeo de Google Video"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:566
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1172
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2238
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2492
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2972
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:566
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1172
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2238
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2492
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2972
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:567
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:567
+msgid "Embed a video from DailyMotion"
+msgstr "Incrustar un vídeo de DailyMotion"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:572
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1173
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2253
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2505
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3012
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3034
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:572
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1173
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2253
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2505
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3012
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3034
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:573
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:573
+msgid "Embed a video from Vimeo"
+msgstr "Incrustar un vídeo de Vimeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:578
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2267
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2518
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3076
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3108
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:578
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2267
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2518
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3076
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3108
+msgid "Veoh"
+msgstr "Veoh"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:579
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:579
+msgid "Embed a video from Veoh"
+msgstr "Incrustar un vídeo de Veoh"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:584
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2170
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2277
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2531
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3157
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3164
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:584
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2170
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2277
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2531
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3157
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3164
+msgid "Viddler"
+msgstr "Viddler"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:585
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:585
+msgid "Embed a video from Viddler"
+msgstr "Incrustar un vídeo de Viddler"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:586
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:586
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Por favor, introduzca la etiqueta de incrustación con estilo WordPress.com para el vídeo de Viddler. Revise la Ayuda para más detalles. En el futuro no tendrá que abrir esta ventana — podrá pegar directamente dentro del editor."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:590
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2538
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3174
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3191
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:590
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2538
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3174
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3191
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:591
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:591
+msgid "Embed a video from Metacafe"
+msgstr "Incrustar un vídeo de Metacafe"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:596
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2177
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2551
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3231
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3239
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:596
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2177
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2551
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3231
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3239
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:597
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:597
+msgid "Embed a video from Blip.tv"
+msgstr "Incrustar un vídeo de Blip.tv"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:598
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:598
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Por favor, introduzca la etiqueta de incrustación con estilo WordPress.com para el vídeo de Blip.tv. Revise la ayuda para más detalles. En el futuro no tendrá que abrir esta ventana — podrá pegar directamente dentro del editor."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:602
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2283
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2564
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3321
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3339
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:602
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2283
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2564
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3321
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3339
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:603
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:603
+msgid "Embed a video from Flickr Video"
+msgstr "Incrustar un vídeo de Flickr Video"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:608
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2577
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3349
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3366
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:608
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2577
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3349
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3366
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:609
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:609
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Incrustar un vídeo de IFILM/Spike.com"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:614
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3390
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3407
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:614
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3390
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3407
+msgid "MySpace"
+msgstr "MySpace"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:615
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:615
+msgid "Embed a video from MySpace"
+msgstr "Incrustar un vídeo de MySpace"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:620
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3431
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:620
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3431
+msgid "FLV"
+msgstr "FLV"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:621
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:621
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Incrustar un archivo de Flash Video (FLV)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:622
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:628
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:634
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:622
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:628
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:634
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Introduzca la URL para el archivo %1$s."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:622
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1174
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2604
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:622
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1174
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2604
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:626
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:628
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2319
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2615
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3525
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:626
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:628
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2319
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2615
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3525
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:627
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:627
+msgid "Embed a Quicktime video file"
+msgstr "Incrustar un archivo de vídeo Quicktime"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:632
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:632
+msgid "Video File"
+msgstr "Archivo de vídeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:633
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:633
+msgid "Embed a generic video file"
+msgstr "Incrustar un archivo de vídeo genérico"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:634
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3571
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:634
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3571
+msgid "generic video"
+msgstr "Vídeo genérico"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:700
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:700
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:820
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1484
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1580
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1666
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1808
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1926
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:820
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1484
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1580
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1666
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1808
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1926
+msgid "Dimensions"
+msgstr "Dimensiones"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:822
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:822
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "Las dimensiones por defecto para este tipo de vídeo pueden establecerse en la página de configuración de este plugin. No obstante, puedes establecer aquí unas dimensiones personalizadas para este vídeo en particular:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:842
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:842
+msgid "Cheatin’ uh?"
+msgstr "¿Haciendo trampas?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1132
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1132
+msgid "Settings for this tab reset to defaults."
+msgstr "La configuración de esta pestaña se ha reestablecido a sus valores iniciales."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1140
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1154
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1140
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1154
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1144
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1144
+msgid "Optional Comment"
+msgstr "Comentarios Opcionales"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1159
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1159
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Donar a Viper007Bond por este plugin a través de PayPal"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1169
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1169
+msgid "Additional Settings"
+msgstr "Configuraciones Adicionales"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1175
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1175
+msgid "Help"
+msgstr "Ayuda"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1176
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1176
+msgid "Credits"
+msgstr "Créditos"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1184
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1184
+msgid "General"
+msgstr "General"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1211
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1211
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "¿Está seguro de reestablecer la configuración de esta pestaña a sus valores iniciales?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1223
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1223
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Establezca aquí los valores por defecto para este tipo de vídeo. Todas estas configuraciones pueden ser luego sobreescritas en cada incrustación individual. Revise la sección de ayuda para obtener más detalles."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1228
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1228
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Por favor, considere el utilizar un navegador distinto de Internet Explorer. Debido a las limitaciones de su navegador, estas páginas de configuración no tendrán tantas opciones como las que obtendrá al utilizar un navegador como Firefox u Opera . Si cambia, será capaz de previsualizar al momento cada cambio realizado por cualquier opción (en lugar de un número muy limitado de opciones) y mucho más."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1383
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1536
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1616
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1728
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1383
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1536
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1616
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1728
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Ha sido imposible analizar la URL. Por favor, asegúrese de que es la URL completal y de ésta es válida."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1429
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1429
+msgid "Dark Grey"
+msgstr "Gris oscuro"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1430
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1430
+msgid "Dark Blue"
+msgstr "Azul oscuro"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1431
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1431
+msgid "Light Blue"
+msgstr "Azul claro"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1432
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1432
+msgid "Green"
+msgstr "Verde"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1433
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1761
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1433
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1761
+msgid "Orange"
+msgstr "Naranja"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1434
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1434
+msgid "Pink"
+msgstr "Rosa"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1435
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1435
+msgid "Purple"
+msgstr "Morado"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1436
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1436
+msgid "Ruby Red"
+msgstr "Rojo rubí"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1470
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1566
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1652
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1794
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1911
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1470
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1566
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1652
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1794
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1911
+msgid "Preview"
+msgstr "Previsualizar"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1473
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1569
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1655
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1797
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1914
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1473
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1569
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1655
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1797
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1914
+msgid "Loading..."
+msgstr "Cargando..."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1478
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1574
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1660
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1802
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1919
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1478
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1574
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1660
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1802
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1919
+msgid "Preview URL"
+msgstr "Previsualizar URL"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1487
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1583
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1669
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1811
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1487
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1583
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1669
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1811
+msgid "pixels"
+msgstr "píxeles"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1488
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1584
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1812
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1488
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1584
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1812
+msgid "Maintain aspect ratio"
+msgstr "Mantener proporciones"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1494
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1494
+msgid "Border Color"
+msgstr "Color del borde"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1497
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1505
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1679
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1687
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1695
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1703
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1821
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1960
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1968
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1976
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1984
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1497
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1505
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1679
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1687
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1695
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1703
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1821
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1960
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1968
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1976
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1984
+msgid "Pick a color"
+msgstr "Eligir un color"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1502
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1502
+msgid "Fill Color"
+msgstr "Color de relleno"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1510
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1826
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1510
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1826
+msgid "Color Presets"
+msgstr "Colores predeterminados"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1514
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1514
+msgid "Miscellaneous"
+msgstr "Miscelánea"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1516
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1516
+msgid "Enable HD video by default (not to be confused with "HQ" which can't be enabled by default and not all videos are avilable in HD)"
+msgstr "Activar vídeo HD por defecto (no confundir con "HQ" que no puede ser activado por defecto y no todos los vídeos están disponibles en HD)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1517
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1517
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Mostrar detalles al final de la reproducción (vídeos relacionados, códigos de incrustación, etc.)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1518
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1592
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1518
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1592
+msgid "Show fullscreen button"
+msgstr "Mostrar el botón de pantalla completa"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1519
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1519
+msgid "Show border"
+msgstr "Mostrar el borde"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1520
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1520
+msgid "Show the search box"
+msgstr "Mostrar la casilla de búsqueda"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1521
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1521
+msgid "Show the video title and rating"
+msgstr "Mostrar el nombre y la calificación del vídeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1522
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1593
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1710
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1522
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1593
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1710
+msgid "Autoplay video (not recommended)"
+msgstr "Autoreproducción (no recomendado)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1523
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1523
+msgid "Loop video playback"
+msgstr "Volver a reproducir automáticamente al terminar"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1590
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1708
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1590
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1708
+msgid "Other"
+msgstr "Otros"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1676
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1676
+msgid "Toolbar Background Color"
+msgstr "Color del fondo de la barra de herramientas"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1684
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1684
+msgid "Toolbar Glow Color"
+msgstr "Color resaltado de la barra de herramientas"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1692
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1692
+msgid "Button/Text Color"
+msgstr "Color del Botón/Texto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1700
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1700
+msgid "Seekbar Color"
+msgstr "Color de la barra de búsqueda"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1711
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1711
+msgid "Show related videos"
+msgstr "Mostrar vídeos relacionados"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1760
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1760
+msgid "Default (Blue)"
+msgstr "Por defecto (azul)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1762
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1762
+msgid "Lime"
+msgstr "Lima"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1763
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1763
+msgid "Fuschia"
+msgstr "Fucsia"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1764
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1764
+msgid "White"
+msgstr "Blanco"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1818
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1818
+msgid "Color"
+msgstr "Color"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1830
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1830
+msgid "On-Screen Info"
+msgstr "Información en pantalla"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1832
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1832
+msgid "Portrait"
+msgstr "Retrato"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1833
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1833
+msgid "Title"
+msgstr "Título"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1834
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1834
+msgid "Byline"
+msgstr "Subtítulo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1835
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1835
+msgid "Allow fullscreen"
+msgstr "Permitir pantalla completa"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1922
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1922
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "La previsualización del vídeo es la característica más reciente de Youtube. Puedes introducir la URL de un vídeo FLV de tu propiedad si lo deseas."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1930
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1930
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "píxeles (si utiliza la carátula por defecto, añada 20 a la altura para la barra de control)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1937
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1937
+msgid "Skin"
+msgstr "Carátula"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1951
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1951
+msgid "Use Custom Colors"
+msgstr "Utilizar colores personalizaods"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1957
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1957
+msgid "Control Bar Background Color"
+msgstr "Color de fondo de la barra de control"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1965
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1965
+msgid "Icon/Text Color"
+msgstr "Color del Icono/Texto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1973
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1973
+msgid "Icon/Text Hover Color"
+msgstr "Color principal del Icono/Texto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1981
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1981
+msgid "Video Background Color"
+msgstr "Color de fondo del vídeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1989
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1989
+msgid "Advanced Parameters"
+msgstr "Parámetros Avanzados"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1992
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2314
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1992
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2314
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Es una lista, con formato cadena de consulta (query-string) , de parámetros adicionales que se le pasarán al reproductor. Ejemplo: %3$s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:1993
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:1993
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Debido a mis conocimientos moderados de Javascript, necesitará pinchar sobre "Guardar cambios" para que estos parámetros tomen efecto."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2029
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2029
+msgid "Video Alignment"
+msgstr "Alineación del vídeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2034
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2034
+msgid "Left"
+msgstr "Izquierda"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2035
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2035
+msgid "Center"
+msgstr "Centro"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2036
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2036
+msgid "Right"
+msgstr "Derecha"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2037
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2037
+msgid "Float Left"
+msgstr "Flotar a la izquierda"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2038
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2038
+msgid "Float Right"
+msgstr "Flotar a la derecha"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2050
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2050
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Mostrar los botones dentro del editor en la línea número"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2055
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2055
+msgid "1"
+msgstr "1"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2056
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2056
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (Barra Kitchen Sink)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2057
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2057
+msgid "3 (Default)"
+msgstr "3 (Por defecto)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2069
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2069
+msgid "Feed Text"
+msgstr "Texto en Feeds"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2072
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2072
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Opcionalmente puede introducir aquí el texto que se mostrará en sus Feeds en lugar del vídeo (ya que no pueden incrustarse vídeos en los feeds). Si se deja en blanco, mostrará por defecto: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2076
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2076
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2078
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2078
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Intentar utilizar Windows Media Player para reproducir vídeos habituales en los usuarios con Windows"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2083
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2083
+msgid "Advanced Settings"
+msgstr "Opciones Avanzadas"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2085
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2085
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Si no sabe lo que está haciendo, puede ignorar tranquilamente esta sección."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2089
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2089
+msgid "Dynamic QTObject Loading"
+msgstr "Carga dinámica QTObject"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2091
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2091
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Solo carga el archivo Javascript si es necesario. Desactivar para poder poner vídeos tipo Quicktime en el widget de marco de texto."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2096
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2096
+msgid "Custom CSS"
+msgstr "CSS personalizado"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2098
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2098
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "¿Quiere establecer fácilmente alguno de los parámetros CSS para controlar la presentación de los vídeos? Entonces pinche sobre este texto para expandir esta opción."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2100
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2100
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Puede introducir CSS personalizado en el recuadro inferior. Saldrá tras el CSS por defecto que puede ver listado y que puede sobreescribirse utilizando %1$s. Para ayuda y ejemplos revise la sección de ayuda ."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2143
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2143
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Pinche sobre una pregunta para ver su respuesta, o bien pinche sobre este texto para expandirlas todas."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2147
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2147
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Los vídeos no se muestran en mi blog; lo único que veo son los enlaces. ¿Qué ocurre?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2150
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2150
+msgid "Here are five common causes:"
+msgstr "Existen varias causas posibles:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2152
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2152
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "¿Está ejecutando Firefox y AdBlock? AdBlock y ciertas reglas pueden impedir que algunos vídeos, del tipo Youtube, carguen correctamente. Desactive AdBlock o cambie a AdBlock Plus ."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2153
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2153
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "A su theme puede faltarle <?php wp_head();?> dentro de su sección <head>, lo que significa que el archivo de Javascript necesario no puede ser añadido automáticamente. Si este es el caso, puede que esté obteniendo una ventana con un mensaje de alerta cada vez que intenta ver una entrada que lleva un vídeo incrustado (asumiendo que su problema no es, también, el número 3). Edite el archivo header.php de su theme y añádalo antes de </head>"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2154
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2160
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2154
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2160
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Puede que tenga Javascript desactivado. Este plugin incrusta vídeos utilizando Javascript para obtener el mejor resultado. Por favor, actívelo ."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2155
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2161
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2155
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2161
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "No tiene la última versión de Flash instalada. Por favor, instálela ."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2159
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2159
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "¿Está ejecutando Firefox y AdBlock? AdBlock y ciertas reglas de bloqueo pueden impedir que ciertos vídeos, del tipo Youtube, se carguen correctamente. Desactive AdBlock o cambie a AdBlock Plus ."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2167
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2167
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "¿De dónde obtengo el código para incrustar un vídeo de Viddler?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2169
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2169
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Ya que la URL de un vídeo en Viddler no tiene nada en común con la URL de incrustación, deberá utilizar el formato de estilo WordPress.com. Vaya al vídeo de Viddler, pinche sobre "Embed This" (botón bajo el vídeo), y seleccione el formato WordPress.com. Puede pegar directamente ese código en una entrada o en una página para incrustar el vídeo."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2174
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2174
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "¿De dónde obtendo el código para incrustar un vídeo de Blip.tv?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2176
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2176
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Ya que la URL de un vídeo en Viddler no tiene nada en común con la URL de incrustación, deberá utilizar el formato de estilo WordPress.com. Vaya al vídeo en Blip.tv, pinche sobre el desplegable amarillo "Share" a la derecha del vídeo, y seleccione "Embed". Luego elija "WordPress.com" de la lista "Show Player". Por último, pinche sobre "Go". Puede pegar directamente ese código en una entrada o en una página para incrustar el vídeo."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2178
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2178
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "NOTA: Ignore el mensaje de aviso. Este plugin añade soporte para WordPress.com por lo que deberá funcionar en su blog."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2182
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2182
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "¿Por qué este plugin no funciona con cierto sitio del que quiero incrustar vídeos?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2184
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2184
+msgid "There's a couple likely reasons:"
+msgstr "Hay algunas razones posibles:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2186
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2186
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "El sitio puede estar utilizando una URL de incrustación que no tenga nada que ver con la que se muestra realmente en su barra de direcciones. Esto significa que, incluso si le proporciona esa URL a este plugin, puede que no tenga forma de descubrir la URL de incrustación."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2187
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2187
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "El sitio puede ser demasiado pequeño, particular, etc. para que merezca la pena soportarlo. No es objeto de este plugin el añadir soporte para un sitio de vídeos que solo unas pocas personas utilizan."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2188
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2188
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Puede que nunca haya oído hablar de ese sitio. Por favor, cree un mensaje de discusión en mis foros que incluya un enlace hacia un vídeo del sitio y le echaré un vistazo."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2190
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2190
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Este plugin tiene la habilidad, no obstante, de incrustar cualquier fichero Flash. Revise la respuesta sobre código abreviado de Flash para obtener más detalles."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2194
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2194
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "Todavía hay puntos rojos (flotando sobre los botones) en mis incrustaciones de vídeos de Youtube, ¿qué pasa?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2196
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2196
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube no proporciona ningún método para cambiar ese color."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2200
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2200
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "¿Cómo puedo cambiar el tamaño, los colores, etc. de un vídeo en concreto?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2202
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2202
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Puede controlar muchas cosas mediante el sistema de código abreviado de WordPress. Los códigos abreviados son similares a BBCode . Aquí se muestran algunos ejemplos:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2208
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2208
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Cualquier valor no introducido volverá a su configuración inicial."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2212
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2228
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2238
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2253
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2267
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2277
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2283
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2319
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2333
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2212
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2228
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2238
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2253
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2267
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2277
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2283
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2319
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2333
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "¿Cuáles son los parámetros disponibles para los códigos abreviados de %s?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2215
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2231
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2241
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2256
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2270
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2286
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2297
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2306
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2323
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2337
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2215
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2231
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2241
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2256
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2270
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2286
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2297
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2306
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2323
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2337
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — ancho en píxeles"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2216
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2232
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2242
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2257
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2271
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2287
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2298
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2307
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2324
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2338
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2216
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2232
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2242
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2257
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2271
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2287
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2298
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2307
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2324
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2338
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — alto en píxeles"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2217
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2217
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — color del borde del reproductor en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2218
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2218
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — color de relleno del reproductor en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2219
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2219
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — mostrar o no un borde (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2220
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2220
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — mostrar vídeos relacionados, URL, detalles de incrustación, etc. al final de la reproducción (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2221
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2262
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2221
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2262
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — mostrar botón de pantalla completa (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2222
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2233
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2247
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2272
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2222
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2233
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2247
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2272
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — iniciar automáticamente la reproducción (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2223
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2223
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — volver a reproducir al terminar (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2243
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2243
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — color de fondo de la barra de herramientas en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2244
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2244
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — color principal de la barra de herramientas en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2245
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2245
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — color del botón/texto en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2246
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2246
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — color de la barra de búsqueda en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2248
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2248
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — mostrar vídeos relacionados (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2258
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2258
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — color del reproductor en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2259
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2259
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — mostrar la imagen de quien lo subió (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2260
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2260
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — mostrar el título del vídeo (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2261
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2261
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — mostrar el autor del vídeo (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2279
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2279
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "Ya que se utiliza el formato de código abreviado de WordPress.com, no hay parámetros personalizables para el código abreviado de Viddler. El código abreviado de WordPress.com se usará como la URL del vídeo y ésta no tiene nada en común con la URL de incrustación."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2288
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2288
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — mostrar los detalles del vídeo (0 o 1), por defecto es 1"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2293
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2293
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "¿Cuáles son los parámetros disponibles para los códigos abreviados de Metacafe, Blip.tv, IFILM/Spike y MySpace?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2295
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2295
+msgid "All of these video formats only support the following:"
+msgstr "Todos esos formatos de vídeo solo soportan los siguientes códigos:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2308
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2308
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — la URL de la imagen de previsualización, por defecto será la misma URL que la del vídeo, pero terminando en .jpg en lugar de en .flv"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2309
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2309
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — color de fondo la barra de control del reproductor en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2310
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2310
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — color del icono/texto del reproductor en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2311
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2311
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — color resaltado del icono/texto del reproductor en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2312
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2312
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — color de fondo del reproductor de vídeo en hex"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2313
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2313
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — porcentaje de volumen, por defecto es de 100"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2314
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2314
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2321
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2321
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "Los resultados de incrustar un vídeo en formato Quicktime pueden variar mucho, dependiendo del ordenador del usuario y del software que tenga instalado, pero si necesita incrustar un vídeo en formato Quicktime estos son los parámetros:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2325
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2328
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2325
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2328
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — reproducir automáticamente (0 o 1), por defecto es 0"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2326
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2326
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — utilizar pinchar-para-reproducir como imagen marcador (0 o 1), por defecto es 0"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2327
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2327
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — la URL a la imagen marcador, por defecto será la misma URL que la del vídeo, pero con .jpg en lugar de .mov al final"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2333
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2333
+msgid "video file"
+msgstr "archivo de vídeo"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2335
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2335
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "Los resultados de incrustar un vídeo en formato genérico pueden variar mucho, dependiendo del ordenador del usuario y del software que tenga instalado, pero si necesita incrustar un vídeo en formato genérico estos son los parámetros:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2339
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2339
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — intentar utilizar Windows Media Player; para los usuarios de Windows (0 o 1)"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2345
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2345
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "¿Para que sirve esa opción de "CSS Personalizado" al final de la pestaña de "Configuraciones Adicionales"?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2347
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2347
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "Es una forma rápida y fácil de controlar como será el aspecto de los vídeos mostrados en su blog sin tener que editar el fichero style.css. Tan sólo ha de introducir algo de CSS personal en el cuadro y éste será puesto en la cabecera de su theme."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2348
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2348
+msgid "Some examples:"
+msgstr "Algunos ejemplos:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2350
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2350
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Poner un borde rojo a todos los vídeos: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2351
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2351
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Hacer que sólo los vídeos de Youtube floten en la izquierda: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2357
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2357
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "¿Cómo puedo incrustar un archivo genérico de Flash o un vídeo de un sitio que este plugin no soporta directamente?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2359
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2359
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "Este plugin tiene el código abreviado %s que puede utilizarse para incrustar cualquier archivo Flash. Aquí está el formato:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2364
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2364
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "¿Por qué este plugin incrusta Quicktime y otros vídeos tan pobremente?, ¿no puedes hacer un trabajo mejor?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2366
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2366
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Incrustar Quiktime y algunos otros vídeos es una verdadera complicación y es increíblemente difícil conseguir que funcione en todos los navegadores y sistemas operativos. Recomiendo encarecidamente convertir el vídeo a formato Flash Video o, incluso a formato H.264 , y luego utilizar la incrustación de archivos del tipo Flash Video (FLV). Existen conversores gratuitos para ambos formatos y haciendo esto creará una mejor experiencia para sus visitantes."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2375
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2375
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Este plugin utiliza muchos scripts y paquetes escritos por otros. Ellos merecen ser nombrados también, por lo que se mostrarán a continuación sin un orden en particular:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2378
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2378
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "Los autores y los colaboradores de SWFObject , que se utiliza para incrustar los archivos de vídeo de tipo Flash."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2379
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2379
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering por escribir el JW FLV Media Player que se utiliza para la reproducción de vídeos FLV."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2380
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2380
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens por escribir Farbtastic , el fantástico selector de color en Javascript que utiliza este plugin."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2381
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2381
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh por escribir su plugin Liz Comment Counter , que me introdujo a Farbtastic y me proporcionó algo de Javascript para realizar mi selector de colores."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2382
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2382
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz por ayudarme con algo del Javascript relacionado con TinyMCE, lo que me ahorró muchísimo tiempo."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2383
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2383
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns por escribir QTObject , que se utiliza para incrustar vídeos de Quicktime."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2384
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2384
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James por crear el Silk icon pack . Este plugin utiliza al menos uno de los iconos de ese pack."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2385
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2385
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "Los autores y colaboradores de jQuery , el increíble paquete de Javascript que utiliza WordPress."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2386
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2386
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "A todos los que ayudaron a crear WordPress sin el cual, y su excelente API, este plugin obviamente no existiría."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2387
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2387
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "A todos los que han proporcionado información sobre fallos y mejoras para este plugin."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2390
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2390
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "Las siguientes personas han sido muy amables en traducir este plugin a otros idiomas:"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2393
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2393
+#, php-format
+msgid "Belorussian: %s"
+msgstr "Bielorruso: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2394
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2394
+#, php-format
+msgid "Brazilian Portuguese: %s"
+msgstr "Portugués Brasileño: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2395
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2395
+#, php-format
+msgid "Chinese: %s"
+msgstr "Chino: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2396
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2396
+#, php-format
+msgid "Danish: %s"
+msgstr "Danés: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2397
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2397
+#, php-format
+msgid "Dutch: %s"
+msgstr "Holandés: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2398
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2398
+#, php-format
+msgid "French: %s"
+msgstr "Francés: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2399
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2399
+#, php-format
+msgid "Hungarian: %s"
+msgstr "Húngaro: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2400
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2400
+#, php-format
+msgid "Italian: %s"
+msgstr "Italiano: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2401
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2401
+#, php-format
+msgid "Polish: %s"
+msgstr "Polaco: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2402
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2402
+#, php-format
+msgid "Russian: %s"
+msgstr "Ruso: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2403
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2403
+#, php-format
+msgid "Spanish: %s"
+msgstr "Español: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2406
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2406
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Si quiere utilizar este plugin en otro idioma y ver su nombre aquí reflejado, tan sólo tendrá que traducir las cadenas de texto provistas en el fichero de plantilla que se encuentra en la carpeta "localization" de este plugin y luego enviármelo . Para obtener ayuda, revise el Codex de WordPress ."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2413
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2413
+msgid "Click the above links to switch between tabs."
+msgstr "Pinche sobre los enlaces de arriba para cambiar entre pestañas."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2446
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2446
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"¿Está de acuerdo con la licencia Creative Commons Reconocimiento-No comercial-Compartir bajo la misma licencia 3.0 Unported? Puede encontrarse un enlace a ella en la izquierda.\n"
+"\n"
+"En pocas palabras, no podrá utilizar JW's FLV Media Player en un sitio comercial sin haber comprado una licencia comercial."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2457
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2457
+msgid "Media Type"
+msgstr "Tipo de Medio"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2458
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2458
+msgid "Show Editor Button?"
+msgstr "¿Mostrar botón en el editor?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2459
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2459
+msgid "Default Width"
+msgstr "Ancho por defecto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2460
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2460
+msgid "Default Height"
+msgstr "Alto por defecto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2461
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2461
+msgid "Keep Aspect Ratio?"
+msgstr "¿Mantener la proporción?"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2590
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2590
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2607
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2607
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commercial website ."
+msgstr "JW's FLV Media Player está cubierto por la Licencia Creative Commons Noncommercial lo que significa que no podrá utilizarlo en un sitio comercial ."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2622
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2622
+msgid "Generic Video File"
+msgstr "Archivo de vídeo genérico"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2622
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2622
+#, php-format
+msgid "This part of the plugin is fairly buggy as embedding video files is complex. Consider trying TinyMCE's native video embedder instead. Why? "
+msgstr "Esta parte del plugin está bastante llena de errores ya que incrustar archivos de vídeo es complejo. Considere el utilizar la propia función nativa de incrustación de vídeo de TinyMCE. ¿Por qué? "
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2637
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2637
+msgid "Save Changes"
+msgstr "Grabar cambios"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2638
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2638
+msgid "Reset Tab To Defaults"
+msgstr "Reestablecer esta pestaña a sus valores originales"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2699
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2699
+#, php-format
+msgid "ERROR: %s"
+msgstr "ERROR: %s"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2779
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2779
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 dejó de existir, por lo que los vídeos de Stage6 no podrán ser mostrados."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2796
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2900
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2948
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3012
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3076
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3174
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3349
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3390
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2796
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2900
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2948
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3012
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3076
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3174
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3303
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3349
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3390
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "No se ha proporcionado una URL o un ID de vídeo al %s BBCode"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2826
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2834
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2919
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2972
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3034
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3108
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3191
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3321
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3366
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3407
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2826
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2834
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2919
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2972
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3034
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3108
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3191
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3321
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3366
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3407
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Ha sido imposible analizar la URL, compruebe el formato %s correcto"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2838
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:2845
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2838
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:2845
+msgid "YouTube Preview Image"
+msgstr "Imagen de previsualización de YouTube"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3138
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3138
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Lo siento, pero el único formato que soporta Viddler es el de estilo tipo WordPress.com en lugar de la URL. Puede encontrarlo en la ventana "Embed This"."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3157
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3231
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3263
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3157
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3231
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3263
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Se ha usado un formato %s invalido de código abreviado. Por favor, revise su código."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3164
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3239
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3286
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3651
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3164
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3239
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3286
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3651
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Por favor, active Javascript y Flash para poder ver el vídeo %3$s."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3214
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3214
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Lo siento, pero el único formato que soporta Blip.tv es el de estilo tipo WordPress.com. Puede encontrarlo en Share -> Embed -> WordPress.com."
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3263
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3286
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3263
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3286
+msgid "VideoPress"
+msgstr "VideoPress"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3431
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3525
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3571
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3621
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3431
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3525
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3571
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3621
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "No se ha pasado una URL al %s BBCode"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3621
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3621
+msgid "generic Flash embed"
+msgstr "incrustar Flash genérico"
+
+#: C:\Documents
+#: and
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/vipers-video-quicktags.php:3651
+#: Settings\USUARIO\Escritorio\vipers-video-quicktags/localization/vipers-video-quicktags.php:3651
+msgid "Flash"
+msgstr "Flash"
+
+#~ msgid ""
+#~ "WARNING: If you use the FLV embed feature of Viper's "
+#~ "Video Quicktags, there is a bug in WordPress with the FTP method of "
+#~ "upgrading plugins. It will not upload the .swf files "
+#~ "properly. If you do embed FLV files, please manually "
+#~ "download the plugin and upload the files to your server. If you don't "
+#~ "embed FLV files (and only embed YouTube, etc. videos), you can safely "
+#~ "ignore this message and upgrade automatically."
+#~ msgstr ""
+#~ "AVISO: Si utiliza la función de incrustar FLV de Viper's "
+#~ "Video Quicktags, debe saber que existe un fallo en Wordpress con el modo "
+#~ "de actualización de plugins a través de FTP. No actualizará los archivos "
+#~ ".swf de forma correcta. Si incrusta archivos FLV, por favor "
+#~ "descargue manualmente el plugin y suba los archivos a su "
+#~ "servidor. Si no incrusta archivos FLV (y solo incrusta vídeos de Youtube, "
+#~ "etc.), puede ignorar este mensaje y actualizar de forma automática."
+#~ msgid ""
+#~ "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+#~ msgstr ""
+#~ "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+#~ msgid ""
+#~ "Easily embed videos from various video websites such as YouTube, "
+#~ "DailyMotion, and Vimeo into your posts."
+#~ msgstr ""
+#~ "Incruste, de forma sencilla, vídeos de varios sitios web como Youtube, "
+#~ "DailyMotion y Vimeo en sus artículos y páginas."
+#~ msgid "Viper007Bond"
+#~ msgstr "Viper007Bond"
+#~ msgid "http://www.viper007bond.com/"
+#~ msgstr "http://www.viper007bond.com/"
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-fr_FR.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-fr_FR.mo
new file mode 100644
index 00000000..525e245b
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-fr_FR.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-fr_FR.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-fr_FR.po
new file mode 100644
index 00000000..57dd937d
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-fr_FR.po
@@ -0,0 +1,1356 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags v6.1.x\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-12-04 18:07+0100\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Laurent Duretz \n"
+"Language-Team: Laurent Duretz \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: French\n"
+"X-Poedit-Country: FRANCE\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: C:\\Progra~1\\xampp\\htdocs\\wp-beta\\wp-content\\plugins\\vipers-video-quicktags\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: vipers-video-quicktags.php:390
+#: vipers-video-quicktags.php:1387
+msgid "Default"
+msgstr "par défaut"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:391
+msgid "3D Pixel Style"
+msgstr "3D Pixel Style"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:392
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:393
+msgid "Comet"
+msgstr "Comet"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:394
+msgid "Control Panel"
+msgstr "Control Panel"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:395
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:396
+msgid "Fashion"
+msgstr "Fashion"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:397
+msgid "Festival"
+msgstr "Festival"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:398
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:399
+msgid "Kleur"
+msgstr "Kleur"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:400
+msgid "Magma"
+msgstr "Magma"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:401
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:402
+msgid "Nacht"
+msgstr "Nacht"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:403
+msgid "Neon"
+msgstr "Neon"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:404
+msgid "Pearlized"
+msgstr "Pearlized"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:405
+msgid "Pixelize"
+msgstr "Pixelize"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:406
+msgid "Play Casso"
+msgstr "Play Casso"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:407
+msgid "Schoon"
+msgstr "Schoon"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:408
+msgid "Silvery White"
+msgstr "Silvery White"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:409
+msgid "Snel"
+msgstr "Snel"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:410
+msgid "Stijl"
+msgstr "Stijl"
+
+# Style du player FLV
+#: vipers-video-quicktags.php:411
+msgid "Traganja"
+msgstr "Traganja"
+
+#: vipers-video-quicktags.php:418
+#, php-format
+msgid "This version of Viper's Video Quicktags requires WordPress 2.6 or newer. Please upgrade or use the legacy version of this plugin."
+msgstr "Cette version de Viper's Video Quicktags requiert WordPress 2.6 ou plus. Merci de mettre à jour ou d'utiliser la version appropriée de ce plugin."
+
+#: vipers-video-quicktags.php:426
+#, php-format
+msgid "WARNING: If you use the FLV embed feature of Viper's Video Quicktags, there is a bug in WordPress with the FTP method of upgrading plugins. It will not upload the .swf files properly. If you do embed FLV files, please manually download the plugin and upload the files to your server. If you don't embed FLV files (and only embed YouTube, etc. videos), you can safely ignore this message and upgrade automatically."
+msgstr "ATTENTION : Si vous utilisez la fonction de lecture des FLV de Viper's Video Quicktags, il existe un bug dans WordPress avec l'outil de mise à jour des plugins. Celui-ci ne téléchargera pas le fichier .swf correctement. Si vous utilisez des fichiers FLV, merci de télécharger manuellement le plugin et de mettre à jour les fichiers sur votre serveur. Si vous n'utilisez pas de fichiers FLV (mais seulement des vidéos YouTube, ou autres...), vous pouvez ignorez cet avertissement et mettre à jour automatiquement."
+
+#: vipers-video-quicktags.php:432
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Configuration de Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:432
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+#: vipers-video-quicktags.php:443
+msgid "Settings"
+msgstr "Paramètres"
+
+#: vipers-video-quicktags.php:522
+#: vipers-video-quicktags.php:1133
+#: vipers-video-quicktags.php:2185
+#: vipers-video-quicktags.php:2434
+#: vipers-video-quicktags.php:2721
+#: vipers-video-quicktags.php:2748
+#: vipers-video-quicktags.php:2756
+#: vipers-video-quicktags.php:2844
+msgid "YouTube"
+msgstr "YouTube"
+
+#: vipers-video-quicktags.php:523
+msgid "Embed a video from YouTube"
+msgstr "Afficher une video depuis YouTube"
+
+#: vipers-video-quicktags.php:524
+#: vipers-video-quicktags.php:530
+#: vipers-video-quicktags.php:536
+#: vipers-video-quicktags.php:542
+#: vipers-video-quicktags.php:548
+#: vipers-video-quicktags.php:560
+#: vipers-video-quicktags.php:572
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:584
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Merci de saisir l'URL à laquelle la video peut-être vue."
+
+#: vipers-video-quicktags.php:528
+#: vipers-video-quicktags.php:1134
+#: vipers-video-quicktags.php:2202
+#: vipers-video-quicktags.php:2447
+#: vipers-video-quicktags.php:2801
+#: vipers-video-quicktags.php:2818
+msgid "Google Video"
+msgstr "Google Video"
+
+#: vipers-video-quicktags.php:529
+msgid "Embed a video from Google Video"
+msgstr "Afficher une vidéo depuis Google Video"
+
+#: vipers-video-quicktags.php:534
+#: vipers-video-quicktags.php:1135
+#: vipers-video-quicktags.php:2212
+#: vipers-video-quicktags.php:2460
+#: vipers-video-quicktags.php:2867
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: vipers-video-quicktags.php:535
+msgid "Embed a video from DailyMotion"
+msgstr "Afficher une vidéo depuis DailyMotion"
+
+#: vipers-video-quicktags.php:540
+#: vipers-video-quicktags.php:1136
+#: vipers-video-quicktags.php:2227
+#: vipers-video-quicktags.php:2473
+#: vipers-video-quicktags.php:2905
+#: vipers-video-quicktags.php:2926
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: vipers-video-quicktags.php:541
+msgid "Embed a video from Vimeo"
+msgstr "Afficher une vidéo depuis Vimeo"
+
+#: vipers-video-quicktags.php:546
+#: vipers-video-quicktags.php:2241
+#: vipers-video-quicktags.php:2486
+#: vipers-video-quicktags.php:2966
+#: vipers-video-quicktags.php:2983
+msgid "Veoh"
+msgstr "Veoh"
+
+#: vipers-video-quicktags.php:547
+msgid "Embed a video from Veoh"
+msgstr "Afficher une vidéo depuis Veoh"
+
+#: vipers-video-quicktags.php:552
+#: vipers-video-quicktags.php:2143
+#: vipers-video-quicktags.php:2251
+#: vipers-video-quicktags.php:2499
+#: vipers-video-quicktags.php:3031
+#: vipers-video-quicktags.php:3038
+msgid "Viddler"
+msgstr "Viddler"
+
+#: vipers-video-quicktags.php:553
+msgid "Embed a video from Viddler"
+msgstr "Afficher une vidéo depuis Viddler"
+
+#: vipers-video-quicktags.php:554
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Merci d'entrer le tag au format WordPress.com pour la vidéo Viddler. Consultez l'aide pour les détails. A l'avenir, vous n'aurez plus besoin d'ouvrir cette fenêtre — vous n'aurez qu'a coller le tag directement dans l'éditeur."
+
+#: vipers-video-quicktags.php:558
+#: vipers-video-quicktags.php:2506
+#: vipers-video-quicktags.php:3046
+#: vipers-video-quicktags.php:3062
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: vipers-video-quicktags.php:559
+msgid "Embed a video from Metacafe"
+msgstr "Afficher une vidéo depuis Metacafe"
+
+#: vipers-video-quicktags.php:564
+#: vipers-video-quicktags.php:2150
+#: vipers-video-quicktags.php:2519
+#: vipers-video-quicktags.php:3099
+#: vipers-video-quicktags.php:3107
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: vipers-video-quicktags.php:565
+msgid "Embed a video from Blip.tv"
+msgstr "Afficher une vidéo depuis Blip.tv"
+
+#: vipers-video-quicktags.php:566
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Merci d'entrer le tag au format WordPress.com pour la vidéo Blip.tv. Consultez l'aide pour les détails. A l'avenir, vous n'aurez plus besoin d'ouvrir cette fenêtre — vous n'aurez qu'a coller le tag directement dans l'éditeur."
+
+#: vipers-video-quicktags.php:570
+#: vipers-video-quicktags.php:2257
+#: vipers-video-quicktags.php:2532
+#: vipers-video-quicktags.php:3122
+#: vipers-video-quicktags.php:3139
+#: vipers-video-quicktags.php:3157
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: vipers-video-quicktags.php:571
+msgid "Embed a video from Flickr Video"
+msgstr "Afficher une vidéo depuis Flickr Video"
+
+#: vipers-video-quicktags.php:576
+#: vipers-video-quicktags.php:2545
+#: vipers-video-quicktags.php:3165
+#: vipers-video-quicktags.php:3181
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: vipers-video-quicktags.php:577
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Afficher une vidéo depuis IFILM/Spike.com"
+
+#: vipers-video-quicktags.php:582
+#: vipers-video-quicktags.php:3203
+#: vipers-video-quicktags.php:3219
+msgid "MySpace"
+msgstr "MySpace"
+
+#: vipers-video-quicktags.php:583
+msgid "Embed a video from MySpace"
+msgstr "Afficher une vidéo depuis MySpace"
+
+#: vipers-video-quicktags.php:588
+#: vipers-video-quicktags.php:3241
+msgid "FLV"
+msgstr "FLV"
+
+#: vipers-video-quicktags.php:589
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Afficher un fichier Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:590
+#: vipers-video-quicktags.php:596
+#: vipers-video-quicktags.php:602
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Merci de saisir l'URL du fichier %1$s."
+
+#: vipers-video-quicktags.php:590
+#: vipers-video-quicktags.php:1137
+#: vipers-video-quicktags.php:2277
+#: vipers-video-quicktags.php:2572
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:594
+#: vipers-video-quicktags.php:596
+#: vipers-video-quicktags.php:2293
+#: vipers-video-quicktags.php:2583
+#: vipers-video-quicktags.php:3319
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: vipers-video-quicktags.php:595
+msgid "Embed a Quicktime video file"
+msgstr "Afficher un fichier vidéo Quicktime"
+
+#: vipers-video-quicktags.php:600
+msgid "Video File"
+msgstr "Fichier vidéo"
+
+#: vipers-video-quicktags.php:601
+msgid "Embed a generic video file"
+msgstr "Afficher un fichier vidéo générique"
+
+#: vipers-video-quicktags.php:602
+#: vipers-video-quicktags.php:3356
+msgid "generic video"
+msgstr "vidéo générique"
+
+#: vipers-video-quicktags.php:668
+msgid "Example:"
+msgstr "Exemple :"
+
+#: vipers-video-quicktags.php:788
+#: vipers-video-quicktags.php:1443
+#: vipers-video-quicktags.php:1554
+#: vipers-video-quicktags.php:1639
+#: vipers-video-quicktags.php:1781
+#: vipers-video-quicktags.php:1899
+msgid "Dimensions"
+msgstr "Dimensions"
+
+#: vipers-video-quicktags.php:790
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "Les dimensions par défaut pour ce type de vidéo peuvent être fixées dans la page de configuration du plugin. Toutefois, vous pouvez fixer des dimensions spécifiques pour cette vidéo en particulier ici : "
+
+#: vipers-video-quicktags.php:810
+msgid "Cheatin’ uh?"
+msgstr "Tricheur ou pas ?"
+
+#: vipers-video-quicktags.php:1096
+msgid "Settings for this tab reset to defaults."
+msgstr "Les paramètres de cet onglet ont été réinitialisés à la valeur par défaut."
+
+#: vipers-video-quicktags.php:1104
+#: vipers-video-quicktags.php:1117
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:1108
+msgid "Optional Comment"
+msgstr "Commentaire en option"
+
+#: vipers-video-quicktags.php:1122
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Faites un don à Viper007Bond pour ce plugin via PayPal"
+
+#: vipers-video-quicktags.php:1132
+msgid "Additional Settings"
+msgstr "Paramètres supplémentaires"
+
+#: vipers-video-quicktags.php:1138
+msgid "Help"
+msgstr "Aide"
+
+#: vipers-video-quicktags.php:1139
+msgid "Credits"
+msgstr "Remerciements"
+
+#: vipers-video-quicktags.php:1147
+msgid "General"
+msgstr "Général"
+
+#: vipers-video-quicktags.php:1174
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Etes vous sûr de vouloir réinitialiser les paramètres de cet onglet à leur valeur par défaut ?"
+
+#: vipers-video-quicktags.php:1186
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Fixez les paramètres par défaut pour ce type de vidéo ici. Tous ces paramètres peuvent être modifiés pour une vidéo particulière. Consultez l'aide pour plus de détails."
+
+#: vipers-video-quicktags.php:1191
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Merci de penser à utiliser un navigateur autre qu'Internet Explorer. En raison des limitations de votre navigateur, ces pages de configuration ne seront pas aussi fonctionnelles qu'avec un navigateur comme Firefox ou Opera . Si vous changez, vous pourrez voir la prévisualisation changer lorsque vous modifiez chaque option (plutôt qu'un nombre limité d'entre elles)."
+
+#: vipers-video-quicktags.php:1346
+#: vipers-video-quicktags.php:1512
+#: vipers-video-quicktags.php:1589
+#: vipers-video-quicktags.php:1701
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Impossible d'atteindre l'URL de prévisualisation. Merci de vérifier que cette URL est complète et valide."
+
+#: vipers-video-quicktags.php:1388
+msgid "Dark Grey"
+msgstr "Gris foncé"
+
+#: vipers-video-quicktags.php:1389
+msgid "Dark Blue"
+msgstr "Bleu foncé"
+
+#: vipers-video-quicktags.php:1390
+msgid "Light Blue"
+msgstr "Bleu clair"
+
+#: vipers-video-quicktags.php:1391
+msgid "Green"
+msgstr "Vert"
+
+#: vipers-video-quicktags.php:1392
+#: vipers-video-quicktags.php:1734
+msgid "Orange"
+msgstr "Orange"
+
+#: vipers-video-quicktags.php:1393
+msgid "Pink"
+msgstr "Rose"
+
+#: vipers-video-quicktags.php:1394
+msgid "Purple"
+msgstr "Mauve"
+
+#: vipers-video-quicktags.php:1395
+msgid "Ruby Red"
+msgstr "Rouge"
+
+#: vipers-video-quicktags.php:1429
+#: vipers-video-quicktags.php:1540
+#: vipers-video-quicktags.php:1625
+#: vipers-video-quicktags.php:1767
+#: vipers-video-quicktags.php:1884
+msgid "Preview"
+msgstr "Prévisualisation"
+
+#: vipers-video-quicktags.php:1432
+#: vipers-video-quicktags.php:1543
+#: vipers-video-quicktags.php:1628
+#: vipers-video-quicktags.php:1770
+#: vipers-video-quicktags.php:1887
+msgid "Loading..."
+msgstr "Chargement..."
+
+#: vipers-video-quicktags.php:1437
+#: vipers-video-quicktags.php:1548
+#: vipers-video-quicktags.php:1633
+#: vipers-video-quicktags.php:1775
+#: vipers-video-quicktags.php:1892
+msgid "Preview URL"
+msgstr "URL de la prévisualisation"
+
+#: vipers-video-quicktags.php:1446
+#: vipers-video-quicktags.php:1557
+#: vipers-video-quicktags.php:1642
+#: vipers-video-quicktags.php:1784
+msgid "pixels"
+msgstr "pixels"
+
+#: vipers-video-quicktags.php:1447
+#: vipers-video-quicktags.php:1558
+#: vipers-video-quicktags.php:1785
+msgid "Maintain aspect ratio"
+msgstr "Conserver les proportions"
+
+#: vipers-video-quicktags.php:1453
+msgid "Border Color"
+msgstr "Couleur de la bordure"
+
+#: vipers-video-quicktags.php:1456
+#: vipers-video-quicktags.php:1464
+#: vipers-video-quicktags.php:1652
+#: vipers-video-quicktags.php:1660
+#: vipers-video-quicktags.php:1668
+#: vipers-video-quicktags.php:1676
+#: vipers-video-quicktags.php:1794
+#: vipers-video-quicktags.php:1933
+#: vipers-video-quicktags.php:1941
+#: vipers-video-quicktags.php:1949
+#: vipers-video-quicktags.php:1957
+msgid "Pick a color"
+msgstr "Pointez une couleur"
+
+#: vipers-video-quicktags.php:1461
+msgid "Fill Color"
+msgstr "Couleur du remplissage"
+
+#: vipers-video-quicktags.php:1469
+#: vipers-video-quicktags.php:1799
+msgid "Color Presets"
+msgstr "Présélection de couleurs"
+
+#: vipers-video-quicktags.php:1473
+msgid "Video Format"
+msgstr "Format de la vidéo"
+
+#: vipers-video-quicktags.php:1478
+msgid "Low Quality (smallest download) — YouTube default"
+msgstr "Basse Qualité (téléchargement plus court) — YouTube par défaut"
+
+#: vipers-video-quicktags.php:1480
+msgid "High Quality (larger download) — May not work for all videos"
+msgstr "Haute Qualité (téléchargement long) — Ne fonctionne pas pour toutes les vidéos"
+
+#: vipers-video-quicktags.php:1481
+msgid "HD Quality (huge download) — Experimental, will revert to lowest quality for most videos"
+msgstr "Qualité HD (téléchargement énorme) — Expérimental, reviendra à une qualité moindre pour la plupart des vidéos"
+
+#: vipers-video-quicktags.php:1493
+msgid "Miscellaneous"
+msgstr "Option diverses"
+
+#: vipers-video-quicktags.php:1495
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Afficher les détails de la vidéo à la fin de la lecture (vidéo associées, code, etc.)"
+
+#: vipers-video-quicktags.php:1496
+msgid "Show fullscreen button"
+msgstr "Afficher le bouton 'Plein écran'"
+
+#: vipers-video-quicktags.php:1497
+msgid "Show border"
+msgstr "Afficher la bordure"
+
+#: vipers-video-quicktags.php:1498
+#: vipers-video-quicktags.php:1566
+#: vipers-video-quicktags.php:1683
+msgid "Autoplay video (not recommended)"
+msgstr "Démarrer la lecture automatiquement (déconseillé)"
+
+#: vipers-video-quicktags.php:1499
+msgid "Loop video playback"
+msgstr "Lecture en boucle de la vidéo"
+
+#: vipers-video-quicktags.php:1564
+#: vipers-video-quicktags.php:1681
+msgid "Other"
+msgstr "Autres options"
+
+#: vipers-video-quicktags.php:1649
+msgid "Toolbar Background Color"
+msgstr "Arrière plan de la barre"
+
+#: vipers-video-quicktags.php:1657
+msgid "Toolbar Glow Color"
+msgstr "Avant plan de la barre"
+
+#: vipers-video-quicktags.php:1665
+msgid "Button/Text Color"
+msgstr "Couleur des Boutons/Textes"
+
+#: vipers-video-quicktags.php:1673
+msgid "Seekbar Color"
+msgstr "Couleur de la progression"
+
+#: vipers-video-quicktags.php:1684
+msgid "Show related videos"
+msgstr "Afficher les vidéos associées"
+
+#: vipers-video-quicktags.php:1733
+msgid "Default (Blue)"
+msgstr "Bleu (par défaut)"
+
+#: vipers-video-quicktags.php:1735
+msgid "Lime"
+msgstr "Vert citron"
+
+#: vipers-video-quicktags.php:1736
+msgid "Fuschia"
+msgstr "Fuschia"
+
+#: vipers-video-quicktags.php:1737
+msgid "White"
+msgstr "Blanc"
+
+#: vipers-video-quicktags.php:1791
+msgid "Color"
+msgstr "Couleur"
+
+#: vipers-video-quicktags.php:1803
+msgid "On-Screen Info"
+msgstr "Infos affichées"
+
+#: vipers-video-quicktags.php:1805
+msgid "Portrait"
+msgstr "Avatar"
+
+#: vipers-video-quicktags.php:1806
+msgid "Title"
+msgstr "Titre"
+
+#: vipers-video-quicktags.php:1807
+msgid "Byline"
+msgstr "Auteur"
+
+#: vipers-video-quicktags.php:1808
+msgid "Allow fullscreen"
+msgstr "Autoriser le 'plein écran'"
+
+#: vipers-video-quicktags.php:1895
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "La prévisualisation par défaut est la vidéo la plus récente postée sur YouTube. Vous pouvez y coller l'URL vers un de vos fichiers FLV si vous le souhaitez."
+
+#: vipers-video-quicktags.php:1903
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "pixels (si vous utilisez l'habillage par défaut, ajoutez 20 à la hauteur pour la barre de contrôle)"
+
+#: vipers-video-quicktags.php:1910
+msgid "Skin"
+msgstr "Habillage"
+
+#: vipers-video-quicktags.php:1924
+msgid "Use Custom Colors"
+msgstr "Couleurs personnalisées"
+
+#: vipers-video-quicktags.php:1930
+msgid "Control Bar Background Color"
+msgstr "Arrière plan de la barre"
+
+#: vipers-video-quicktags.php:1938
+msgid "Icon/Text Color"
+msgstr "Couleur des icônes/textes"
+
+#: vipers-video-quicktags.php:1946
+msgid "Icon/Text Hover Color"
+msgstr "Couleur des icônes/textes survolées"
+
+#: vipers-video-quicktags.php:1954
+msgid "Video Background Color"
+msgstr "Arrière plan de la vidéo"
+
+#: vipers-video-quicktags.php:1962
+msgid "Advanced Parameters"
+msgstr "Paramètres avancés"
+
+#: vipers-video-quicktags.php:1965
+#: vipers-video-quicktags.php:2288
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Une requête de style , liste de paramètres supplémentaires à fournir au lecteur. Exemple: %3$s"
+
+#: vipers-video-quicktags.php:1966
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Vous devrez appuyer sur "Enregistrer les modifications" pour que ces paramètres soient pris en compte à cause de mes compétences moyennes en Javascript."
+
+#: vipers-video-quicktags.php:2002
+msgid "Video Alignment"
+msgstr "Alignement de la vidéo"
+
+#: vipers-video-quicktags.php:2007
+msgid "Left"
+msgstr "Gauche"
+
+#: vipers-video-quicktags.php:2008
+msgid "Center"
+msgstr "Centrée"
+
+#: vipers-video-quicktags.php:2009
+msgid "Right"
+msgstr "Droite"
+
+#: vipers-video-quicktags.php:2010
+msgid "Float Left"
+msgstr "Flottante à gauche"
+
+#: vipers-video-quicktags.php:2011
+msgid "Float Right"
+msgstr "Flottante à droite"
+
+#: vipers-video-quicktags.php:2023
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Affichage des boutons dans l'éditeur en-ligne"
+
+#: vipers-video-quicktags.php:2028
+msgid "1"
+msgstr "1 (dans la bare d'outils)"
+
+#: vipers-video-quicktags.php:2029
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (dans la barre de paramètres avancés)"
+
+#: vipers-video-quicktags.php:2030
+msgid "3 (Default)"
+msgstr "3 (par défaut, dans une autre barre)"
+
+#: vipers-video-quicktags.php:2042
+msgid "Feed Text"
+msgstr "Texte dans les flux"
+
+#: vipers-video-quicktags.php:2045
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Saisissez un texte personnalisé à afficher dans vos flux à la place des vidéos (car vous ne pouvez pas afficher de vidéo dans un flux). Si laissé vide, cela sera remplacé par : %s"
+
+#: vipers-video-quicktags.php:2045
+#: vipers-video-quicktags.php:2676
+msgid "Click here to view the embedded video."
+msgstr "Cliquer ici pour voir la vidéo."
+
+#: vipers-video-quicktags.php:2049
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: vipers-video-quicktags.php:2051
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Tenter d'utiliser Windows Media Player pour les fichiers vidéos communs pour les utilisateurs de Windows"
+
+#: vipers-video-quicktags.php:2056
+msgid "Advanced Settings"
+msgstr "Paramètres avancés"
+
+#: vipers-video-quicktags.php:2058
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Si vous ne savez pas de quoi il s'agit, vous devriez prudemment ignorer cette partie."
+
+#: vipers-video-quicktags.php:2062
+msgid "Dynamic QTObject Loading"
+msgstr "Chargement dynamique de QTObject"
+
+#: vipers-video-quicktags.php:2064
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Charger le fichier Javascript seulement si nécessaire. Désactiver cette option pour poster des vidéos Quicktime dans les widget des barres latérales."
+
+#: vipers-video-quicktags.php:2069
+msgid "Custom CSS"
+msgstr "CSS personnalisées"
+
+#: vipers-video-quicktags.php:2071
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Vous souhaitez utliser facilement vos propres CSS pour contrôler l'affichage des vidéos ? Alors cliquez sur ce txt pour afficher cette option"
+
+#: vipers-video-quicktags.php:2073
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Vous pouvez saisir votre CSS personnalisée dans la boîte ci-dessous. Elle sera sortie après la CSS par défaut que vous pouvez voir et remplacer en utilisant %1$s. Besoin d'aide ou d'exempls,consultez l'onglet Aide ."
+
+#: vipers-video-quicktags.php:2116
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Cliquez sur une question pour voir la réponse ou cliquez sur ce texte pour afficher toutes les réponses."
+
+#: vipers-video-quicktags.php:2120
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Les vidéos n'apparaisent pas sur mon blog, seul les liens vers les vidéos le sont. Que se passe-t-il ?"
+
+#: vipers-video-quicktags.php:2123
+msgid "Here are five common causes:"
+msgstr "Ici sont listées 5 causes courantes :"
+
+#: vipers-video-quicktags.php:2125
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Utilisez vous Firefox et AdBlock ? AdBlock et certaines règles de bloquage peuvent empêcher le téléchargement de certaines vidéos, à savoir celles hébergées par YouTube. Désactivez AdBlock ou basculez vers AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2126
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "Votre thème n'inclu pas <?php wp_head();?> dans la balise <head> ce qui signifie sue les fichiers Javascripts requis ne sont pas ajoutés automatiquemment. Dans ce cas, vous devriez voir afficher un message d'alerte indiquant que vous tentez de visualiser un article incluant une vidéo (si votre problème n'est pas non plus le #3). Editez le fichier header.php de votre thème et ajoutez le avant </head>."
+
+#: vipers-video-quicktags.php:2127
+#: vipers-video-quicktags.php:2133
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Le Javascript est peut-être désactivé. Ce plugin affiche des vidéos en utilisant Javascript pour une meilleure utilisation. Merci de l'activer ."
+
+#: vipers-video-quicktags.php:2128
+#: vipers-video-quicktags.php:2134
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Vous n'avez pas installé la dernière version de Flash Player. Merci de l'installer ."
+
+#: vipers-video-quicktags.php:2132
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Utilisez vous Firefox et AdBlock ? AdBlock et certaines règles de bloquage peuvent empêcher le téléchargement de certaines vidéos, à savoir celles hébergées par YouTube. Désactivez AdBlock ou basculez vers AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2140
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Ou puis-je trouver le code pour afficher une vidéo depuis Viddler ?"
+
+#: vipers-video-quicktags.php:2142
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Les URL d'un vidéo sur Viddler n'ont rien en commun avec une URL embarquée, vous devez utiliser le format WordPress.com. Allez sur la vidéo sur Viddler, cliquez sur le bouton "Embed this" sous la vidéo, et sélectionnez le format WordPress.com. Vous pouvez coller ce code directement dans la page de rédaction de l'article et la vidéo sera incrustée."
+
+#: vipers-video-quicktags.php:2147
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Ou puis-je trouver le code pour afficher une vidéo depuis Blip.tv ?"
+
+#: vipers-video-quicktags.php:2149
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Les URL d'un vidéo sur Blip.tv n'ont rien en commun avec une URL embarquée, vous devez utiliser le format WordPress.com. Allez sur la vidéo sur Blip.tv, cliquez sur le menu déroulant jaune "Share" à droite de la vidéo, et sélectionnez "Embed". Ensuite sélectionnez "WordPress.com" dans la liste déroulante "Show Player". Enfin pressez "Go". Vous pouvez coller ce code directement dans la page de rédaction de l'article et la vidéo sera incrustée."
+
+#: vipers-video-quicktags.php:2151
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "NOTE : Ignorez le message d'alerte. Ce plugin ajoute le support pour WordPress.com donc cela fonctionnera sur votre blog."
+
+#: vipers-video-quicktags.php:2155
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Pourquoi ce plugin ne supporte pas un site dont je souhaite afficher des vidéos ?"
+
+#: vipers-video-quicktags.php:2157
+msgid "There's a couple likely reasons:"
+msgstr "Il y a plusieures raisons possibles :"
+
+#: vipers-video-quicktags.php:2159
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "Le site web peut utiliser des URL qui n'ont rien de commun avec l'URL de la barre d'addresse. Ce qui signifie que même si vous fournissez l'URL de la vidéo au plugin, il n'y a pas moyen d'incruster la vidéo facilement."
+
+#: vipers-video-quicktags.php:2160
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "Le site web peut être sous dimmensionné, marginal, etc. pour être supporté. Il n'y a pas d'intérêt à ajouter à ce plugin le support d'un site de vidéos utilisé par seulement deux personnes."
+
+#: vipers-video-quicktags.php:2161
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Je n'ai peut-être jamais entendu parler de ce site. Merci de lancer une discussion sur mon forum avec un exemple de lien vers la vidéo du site et j'y jetterai un œil."
+
+#: vipers-video-quicktags.php:2163
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Ce plugin doit pourtant être capable d'afficher tous les fichiers Flash. Consultez la question sur Flash shortcode pour plus de détails."
+
+#: vipers-video-quicktags.php:2167
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "Il reste du rouge (sur les boutons survolés) dans mes vidéos YouTube. Que se passe-t-il ?"
+
+#: vipers-video-quicktags.php:2169
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube ne fournit pas de méthode pour changer cette couleur"
+
+#: vipers-video-quicktags.php:2173
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Comment puis-je changer la taille, couleur, etc. pour une vidéo en particulier ?"
+
+#: vipers-video-quicktags.php:2175
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Vous puvez contrôler plusieurs éléments à travers le système de shortcode WordPress utilisé pour afficher les vidéos dans vos articles. Les shortcodes sont similaires au BBCode . Voici quelques exemples de shortcodes :"
+
+#: vipers-video-quicktags.php:2181
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Les paramètres qui ne sont pas fournis seront renseignés par défaut."
+
+#: vipers-video-quicktags.php:2185
+#: vipers-video-quicktags.php:2202
+#: vipers-video-quicktags.php:2212
+#: vipers-video-quicktags.php:2227
+#: vipers-video-quicktags.php:2241
+#: vipers-video-quicktags.php:2251
+#: vipers-video-quicktags.php:2257
+#: vipers-video-quicktags.php:2277
+#: vipers-video-quicktags.php:2293
+#: vipers-video-quicktags.php:2307
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Quels paramètres sont disponibles pour les shorcodes de %s ?"
+
+#: vipers-video-quicktags.php:2188
+#: vipers-video-quicktags.php:2205
+#: vipers-video-quicktags.php:2215
+#: vipers-video-quicktags.php:2230
+#: vipers-video-quicktags.php:2244
+#: vipers-video-quicktags.php:2260
+#: vipers-video-quicktags.php:2271
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2297
+#: vipers-video-quicktags.php:2311
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — largeur en pixels"
+
+#: vipers-video-quicktags.php:2189
+#: vipers-video-quicktags.php:2206
+#: vipers-video-quicktags.php:2216
+#: vipers-video-quicktags.php:2231
+#: vipers-video-quicktags.php:2245
+#: vipers-video-quicktags.php:2261
+#: vipers-video-quicktags.php:2272
+#: vipers-video-quicktags.php:2281
+#: vipers-video-quicktags.php:2298
+#: vipers-video-quicktags.php:2312
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — hauteur en pixels"
+
+#: vipers-video-quicktags.php:2190
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — couleur de la bordure du lecteur en hexa"
+
+#: vipers-video-quicktags.php:2191
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — couleur de remplissage du lecteur en hexa"
+
+#: vipers-video-quicktags.php:2192
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — affichage de la bordure ou pas (0 ou 1)"
+
+#: vipers-video-quicktags.php:2193
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — affichage des vidéos associées, URL, détails du lien, etc. à la fin de la lecture (0 ou 1)"
+
+#: vipers-video-quicktags.php:2194
+#: vipers-video-quicktags.php:2236
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — affichage du bouton 'Plein écran' (0 ou 1)"
+
+#: vipers-video-quicktags.php:2195
+#: vipers-video-quicktags.php:2207
+#: vipers-video-quicktags.php:2221
+#: vipers-video-quicktags.php:2246
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — démarrage automatique de la lecture (0 ou 1)"
+
+#: vipers-video-quicktags.php:2196
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — lecture en boucle (0 ou 1)"
+
+#: vipers-video-quicktags.php:2197
+#, php-format
+msgid "%s — quality value for video playback (0 for low quality FLV, 18 for high quality MP4, 6 for high quality FLV)"
+msgstr "%s — niveau de qualité pour la lecture vidéo (0 basse qualité FLV, 18 haute qualité MP4, 6 haute qualité FLV)"
+
+#: vipers-video-quicktags.php:2217
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — couleur d'arrière plan de la barre en hexa"
+
+#: vipers-video-quicktags.php:2218
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — couleur d'avant plan de la barre en hexa"
+
+#: vipers-video-quicktags.php:2219
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — couleur des boutons/textes en hexa"
+
+#: vipers-video-quicktags.php:2220
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — couleur de la progression en hexa"
+
+#: vipers-video-quicktags.php:2222
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — affichage des vidéos associées (0 ou 1)"
+
+#: vipers-video-quicktags.php:2232
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — couleur du lecteur en hexa"
+
+#: vipers-video-quicktags.php:2233
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — affichage de l'avatar de l'auteur de la video (0 ou 1)"
+
+#: vipers-video-quicktags.php:2234
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — affichage du titre de la vidéo (0 ou 1)"
+
+#: vipers-video-quicktags.php:2235
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — affichage de l'auteur de la vidéo (0 ou 1)"
+
+#: vipers-video-quicktags.php:2253
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "Depuis que le format WordPress.com des shortcodes est utilisé pour incruster des vidéos Viddler, il n'y a pas de paramètres personnalisés pour les shortcodes Viddler. Les shortcodes WordPress.com doivent être utilisés avec l'URL de la vidéo mais l'URL de la vidéo affichée n'a rien en commun."
+
+#: vipers-video-quicktags.php:2262
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — affichage des détails de la vidéo (0 ou 1), 1 par défaut"
+
+#: vipers-video-quicktags.php:2267
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Quels sont les paramètres disponibles pour les shortcodes pour Metacafe, Blip.tv, IFILM/Spike, et MySpace ?"
+
+#: vipers-video-quicktags.php:2269
+msgid "All of these video formats only support the following:"
+msgstr "Tous ces formats vidéo supportent les shortcodes suivants :"
+
+#: vipers-video-quicktags.php:2282
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — URL de la prévisualisation, par défaut la même URL que le le fichier vidéo mais avec l'extension .jpg au lieu de .flv"
+
+#: vipers-video-quicktags.php:2283
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — couleur de la barres en hexe"
+
+#: vipers-video-quicktags.php:2284
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — couleur des icônes/textes en hexa"
+
+#: vipers-video-quicktags.php:2285
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — couleur des icônes/textes survolés en hexa"
+
+#: vipers-video-quicktags.php:2286
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — couleur d'arrière plan du lecteur en hexa"
+
+#: vipers-video-quicktags.php:2287
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — pourcentage du volume, par défaut à 100"
+
+#: vipers-video-quicktags.php:2288
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: vipers-video-quicktags.php:2295
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "Le résultat de l'affichage d'une vidéo Quicktime dépendent énormément de l'ordinateur des visiteurs et des logiciels installés, mais si vous devez incruster une vidéo Quicktime, voici les paramètres :"
+
+#: vipers-video-quicktags.php:2299
+#: vipers-video-quicktags.php:2302
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — démarrage automatique de la lecture (0 ou 1), 0 par défaut"
+
+#: vipers-video-quicktags.php:2300
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — utiliser l'image de présentation click-to-play (0 ou 1), 0 par défaut"
+
+#: vipers-video-quicktags.php:2301
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — URL de l'image de présentation, par défaut, la même URL que le fichier vidéo mais avec l'extension .jpg au lieu de .mov"
+
+#: vipers-video-quicktags.php:2307
+msgid "video file"
+msgstr "fichier vidéo"
+
+#: vipers-video-quicktags.php:2309
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "Le résultat de l'affichage de vidéos génériques dépend énormément de l'ordinateur des visiteurs et des logiciels installés, mais si vous devez incruster des vidéos générique, voici les paramètres :"
+
+#: vipers-video-quicktags.php:2313
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — essayer d'utiliser Windows Media Player pour les utilisateurs de Windows (0 ou 1)"
+
+#: vipers-video-quicktags.php:2319
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "A quoi servent les "CSS personnalisées" dans l'onglet "Paramètres supplémentaires" ?"
+
+#: vipers-video-quicktags.php:2321
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "C'est un moyen simple et rapide de contrôler l'apparence des vidéos postées sur votre site sans avoir à éditer le fichier style.css. Saisissez juste du CSS de votre cru dans la boîte et il sera écrit dans l'entête de votre thème."
+
+#: vipers-video-quicktags.php:2322
+msgid "Some examples:"
+msgstr "Quelques exemples :"
+
+#: vipers-video-quicktags.php:2324
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Mettre une bordure rouge sur toutes les vidéos: %s"
+
+#: vipers-video-quicktags.php:2325
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Les vidéos YouTube seulement flottantes à gauche : %s"
+
+#: vipers-video-quicktags.php:2331
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Comment puis-je afficher un fichier générique Flash ou une vidéo depuis un site web non supporté par ce plugin ?"
+
+#: vipers-video-quicktags.php:2333
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "Ce plugin a un shortcode %s qui peut être utilisé pour incruster n'importe quel fichier Flash. Voici le format :"
+
+#: vipers-video-quicktags.php:2338
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Pourquoi ce plugin affiche-t-il si pauvrement Quicktime et autres fichiers vidéo ? Ne pourrait-on pas mieux travailler ?"
+
+#: vipers-video-quicktags.php:2340
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Incruster Quicktime et autres fichiers vidéos réguliers est très casse-pieds et incroyablement compliqué à faire fonctionner sur tous les navigateurs et OS. Je recommande fortement de convertir la video au format vidéo Flash ou encore au format H.264 et d'utiliser ensuite le type Flash Video (FLV). Il existe des convertisseurs libres et/ou gratuits pour ces deux formats et faire ainsi fera une meilleure expérience pour vos visiteurs."
+
+#: vipers-video-quicktags.php:2349
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Ce plugin utilise plusieurs scripts et modules écrits par d'autres. Ils méritent aussi des remerciements, donc, sans ordre particulier :"
+
+#: vipers-video-quicktags.php:2352
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "Les auteurs et contributeurs de SWFObject utilisé pour embarquer des vidéos Flash."
+
+#: vipers-video-quicktags.php:2353
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering pour l'écriture de JW FLV Media Player utilisé pour la lecture des FLV ."
+
+#: vipers-video-quicktags.php:2354
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens pour Farbtastic , le fantastique Javascript utilisé dans ce plugin pour sélectionner les couleurs."
+
+#: vipers-video-quicktags.php:2355
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh pour son plugin Liz Comment Counter qui m'a initié à Farbtastic et m'a fourni la base des Javascripts pour le sélecteur de couleurs et la présélection des couleurs."
+
+#: vipers-video-quicktags.php:2356
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz pour son aide sur des Javascripts relatifs à TinyMCE qui m'a épargné beaucoup de temps."
+
+#: vipers-video-quicktags.php:2357
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns pour l'écriture de QTObject utilisé pour afficher des vidéos Quicktime.."
+
+#: vipers-video-quicktags.php:2358
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James pour la création du Silk icon pack . Ce plugin utilise au moins une icône de ce pack."
+
+#: vipers-video-quicktags.php:2359
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "Les auteurs et contributeurs de jQuery , l'impressionant module Javascript utilisé par WordPress."
+
+#: vipers-video-quicktags.php:2360
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Tous ceux qui collaborent à WordPress sans lequel avec son excellente API, ce plugin n'existerait évidemment pas."
+
+#: vipers-video-quicktags.php:2361
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Tous ceux qui ont remontés des anomalies et suggérés des fonctionalités pour ce plugin."
+
+#: vipers-video-quicktags.php:2364
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "Les personnes suivantes ont gentiment traduit ce plugin dans d'autres langues :"
+
+#: vipers-video-quicktags.php:2367
+#, php-format
+msgid "Dutch: %s"
+msgstr "Néerlandais : %s"
+
+#: vipers-video-quicktags.php:2368
+#, php-format
+msgid "Italian: %s"
+msgstr "Italien : %s"
+
+#: vipers-video-quicktags.php:2369
+#, php-format
+msgid "Polish: %s"
+msgstr "Polonais : %s"
+
+#: vipers-video-quicktags.php:2370
+#, php-format
+msgid "Russian: %s"
+msgstr "Russe : %s"
+
+#: vipers-video-quicktags.php:2371
+#, php-format
+msgid "French: %s"
+msgstr "Français : %s"
+
+#: vipers-video-quicktags.php:2374
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Si vous souhaitez utiliser ce plugin dans une autre langue et apparaître ici, traduisez les phrases dans le modèle installé dans le répertoire "localization" de ce plugin et envoyez le moi . Pour l'aide, consultez le Codex WordPress ."
+
+#: vipers-video-quicktags.php:2381
+msgid "Click the above links to switch between tabs."
+msgstr "Cliquez sur les liens ci-dessus pour changer d'onglet."
+
+#: vipers-video-quicktags.php:2414
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"Acceptez vous la license Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported ? Un lien vers celle-ci est affiché à gauche.\n"
+"\n"
+"En bref, vous ne pouvez pas utiliser JW's FLV Media Player sur un site commercial sans acheter de license commerciale."
+
+#: vipers-video-quicktags.php:2425
+msgid "Media Type"
+msgstr "Type de média"
+
+#: vipers-video-quicktags.php:2426
+msgid "Show Editor Button?"
+msgstr "Afficher le bouton dans l'éditeur"
+
+#: vipers-video-quicktags.php:2427
+msgid "Default Width"
+msgstr "Largeur par défaut"
+
+#: vipers-video-quicktags.php:2428
+msgid "Default Height"
+msgstr "Hauteur par défaut"
+
+#: vipers-video-quicktags.php:2429
+msgid "Keep Aspect Ratio?"
+msgstr "Conserver les proportions ?"
+
+#: vipers-video-quicktags.php:2558
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: vipers-video-quicktags.php:2575
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commercial website ."
+msgstr "JW's FLV Media Player est distribué sous license Creative Commons Noncommercial ce qui signifie que vous ne pouvez l'utiliser sur un site web commercial ."
+
+#: vipers-video-quicktags.php:2590
+msgid "Generic Video File"
+msgstr "Fichier vidéo générique"
+
+#: vipers-video-quicktags.php:2590
+msgid "This part of the plugin is very buggy as embedding video files can be hard. Consider trying TinyMCE's native video embedder instead."
+msgstr "Cette partie du plugin est très buguée car l'affichage de vidéos peut-être difficile. Essayez plutôt d'utiliser l'affichage des vidéos natif de TinyMCE."
+
+#: vipers-video-quicktags.php:2605
+msgid "Save Changes"
+msgstr "Enregistrer les modifications"
+
+#: vipers-video-quicktags.php:2606
+msgid "Reset Tab To Defaults"
+msgstr "Réinitialiser les valeurs"
+
+#: vipers-video-quicktags.php:2666
+#, php-format
+msgid "ERROR: %s"
+msgstr "ERREUR : %s"
+
+#: vipers-video-quicktags.php:2706
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 n'est plus, cette video de Stage6 ne peut donc pas être affichée."
+
+#: vipers-video-quicktags.php:2721
+#: vipers-video-quicktags.php:2801
+#: vipers-video-quicktags.php:2844
+#: vipers-video-quicktags.php:2905
+#: vipers-video-quicktags.php:2966
+#: vipers-video-quicktags.php:3046
+#: vipers-video-quicktags.php:3122
+#: vipers-video-quicktags.php:3165
+#: vipers-video-quicktags.php:3203
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Aucune URL ou ID de vidéo n'a été fourni au BBCode %s"
+
+#: vipers-video-quicktags.php:2748
+#: vipers-video-quicktags.php:2756
+#: vipers-video-quicktags.php:2818
+#: vipers-video-quicktags.php:2867
+#: vipers-video-quicktags.php:2926
+#: vipers-video-quicktags.php:2983
+#: vipers-video-quicktags.php:3062
+#: vipers-video-quicktags.php:3139
+#: vipers-video-quicktags.php:3181
+#: vipers-video-quicktags.php:3219
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Impossible de parcourir l'URL, vérifiez que le format %s est correct"
+
+#: vipers-video-quicktags.php:2760
+#: vipers-video-quicktags.php:2767
+msgid "YouTube Preview Image"
+msgstr "Image de prévisualisation YouTube"
+
+#: vipers-video-quicktags.php:3013
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Désolé mais le seul format supporté par Viddler est le format WordPress.com et non une URL. Vous pouvez le trouver dans la fenêtre "Embed This"."
+
+#: vipers-video-quicktags.php:3031
+#: vipers-video-quicktags.php:3099
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Un format de shortcode %s invalide a été utilisé. Merci de contrôler votre code."
+
+#: vipers-video-quicktags.php:3038
+#: vipers-video-quicktags.php:3107
+#: vipers-video-quicktags.php:3431
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Merci d'activer Javascript et Flash pour voir cette vidéo %3$s."
+
+#: vipers-video-quicktags.php:3083
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Désolé, mais le seul format supporté par Blip.tv est le format WordPress.com. Vous le trouverez sur Blip.tv en faisant Share -> Embed -> WordPress.com."
+
+#: vipers-video-quicktags.php:3241
+#: vipers-video-quicktags.php:3319
+#: vipers-video-quicktags.php:3356
+#: vipers-video-quicktags.php:3402
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "Aucune URL n'a été fournie au BBCode %s"
+
+#: vipers-video-quicktags.php:3402
+msgid "generic Flash embed"
+msgstr "Flash générique"
+
+#: vipers-video-quicktags.php:3431
+msgid "Flash"
+msgstr "Flash"
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-hu_HU.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-hu_HU.mo
new file mode 100644
index 00000000..0eaef744
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-hu_HU.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-hu_HU.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-hu_HU.po
new file mode 100644
index 00000000..3c5cc693
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-hu_HU.po
@@ -0,0 +1,1388 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Viper007Bond
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/vipers-video-quicktags\n"
+"POT-Creation-Date: 2009-06-06 02:49+0000\n"
+"PO-Revision-Date: 2009-06-16 15:19+0100\n"
+"Last-Translator: jamesb \n"
+"Language-Team: LANGUAGE \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: vipers-video-quicktags.php:247
+msgid "Click here to view the embedded video."
+msgstr "Kattints ide a beágyazott videó megtekintéséhez."
+
+#: vipers-video-quicktags.php:400
+#: vipers-video-quicktags.php:1423
+msgid "Default"
+msgstr "Alapértelmezett"
+
+#: vipers-video-quicktags.php:401
+msgid "3D Pixel Style"
+msgstr "3D Pixel Style"
+
+#: vipers-video-quicktags.php:402
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+#: vipers-video-quicktags.php:403
+msgid "Bekle (Overlay)"
+msgstr "Bekle (Overlay)"
+
+#: vipers-video-quicktags.php:404
+msgid "Blue Metal"
+msgstr "Blue Metal"
+
+#: vipers-video-quicktags.php:405
+msgid "Comet"
+msgstr "Comet"
+
+#: vipers-video-quicktags.php:406
+msgid "Control Panel"
+msgstr "Control Panel"
+
+#: vipers-video-quicktags.php:407
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: vipers-video-quicktags.php:408
+msgid "Fashion"
+msgstr "Fashion"
+
+#: vipers-video-quicktags.php:409
+msgid "Festival"
+msgstr "Festival"
+
+#: vipers-video-quicktags.php:410
+msgid "Grunge Tape"
+msgstr "Grunge Tape"
+
+#: vipers-video-quicktags.php:411
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+#: vipers-video-quicktags.php:412
+msgid "Kleur"
+msgstr "Kleur"
+
+#: vipers-video-quicktags.php:413
+msgid "Magma"
+msgstr "Magma"
+
+#: vipers-video-quicktags.php:414
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: vipers-video-quicktags.php:415
+msgid "Modieus (Stylish)"
+msgstr "Modieus (Stylish)"
+
+#: vipers-video-quicktags.php:416
+msgid "Modieus (Stylish) Slim"
+msgstr "Modieus (Stylish) Slim"
+
+#: vipers-video-quicktags.php:417
+msgid "Nacht"
+msgstr "Nacht"
+
+#: vipers-video-quicktags.php:418
+msgid "Neon"
+msgstr "Neon"
+
+#: vipers-video-quicktags.php:419
+msgid "Pearlized"
+msgstr "Pearlized"
+
+#: vipers-video-quicktags.php:420
+msgid "Pixelize"
+msgstr "Pixelize"
+
+#: vipers-video-quicktags.php:421
+msgid "Play Casso"
+msgstr "Play Casso"
+
+#: vipers-video-quicktags.php:422
+msgid "Schoon"
+msgstr "Schoon"
+
+#: vipers-video-quicktags.php:423
+msgid "Silvery White"
+msgstr "Silvery White"
+
+#: vipers-video-quicktags.php:424
+msgid "Simple"
+msgstr "Simple"
+
+#: vipers-video-quicktags.php:425
+msgid "Snel"
+msgstr "Snel"
+
+#: vipers-video-quicktags.php:426
+msgid "Stijl"
+msgstr "Stijl"
+
+#: vipers-video-quicktags.php:427
+msgid "Traganja"
+msgstr "Traganja"
+
+#: vipers-video-quicktags.php:434
+#, php-format
+msgid "This version of Viper's Video Quicktags requires WordPress 2.6 or newer. Please upgrade or use the legacy version of this plugin."
+msgstr "A Viper's Video Quicktags ezen verziójának futtatásához WordPress 2.6 vagy újabb szükséges. Frissíts vagy használd a bővítmény korábbi verzióját ."
+
+#: vipers-video-quicktags.php:442
+#, php-format
+msgid "WARNING: If you use the FLV embed feature of Viper's Video Quicktags, there is a bug in WordPress with the FTP method of upgrading plugins. It will not upload the .swf files properly. If you do embed FLV files, please manually download the plugin and upload the files to your server. If you don't embed FLV files (and only embed YouTube, etc. videos), you can safely ignore this message and upgrade automatically."
+msgstr "FIGYELEM: Ha használod az FLV beágyazást, akkor vedd figyelembe, hogy kódhiba található a WordPress-ben a bővítmények FTP-n keresztüli frissítésében. A rendszer nem megfelelően tölti fel az .swf fájlokat. Ezért manuálisan töltsd le a bővítményt, majd töltsd fel a kiszolgálódra. Ha nincs szükséged az FLV beágyazás funkcióra (csak YouTube stb. videókat használsz), akkor nyugodtan figyelmen kívül hagyhatod ezt az üzenetet és frissíthetsz automatikusan."
+
+#: vipers-video-quicktags.php:448
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Viper's Video Quicktags beállítások"
+
+#: vipers-video-quicktags.php:448
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+#: vipers-video-quicktags.php:459
+msgid "Settings"
+msgstr "Beállítások"
+
+#: vipers-video-quicktags.php:549
+#: vipers-video-quicktags.php:1165
+#: vipers-video-quicktags.php:2207
+#: vipers-video-quicktags.php:2457
+#: vipers-video-quicktags.php:2768
+#: vipers-video-quicktags.php:2798
+#: vipers-video-quicktags.php:2806
+#: vipers-video-quicktags.php:2920
+msgid "YouTube"
+msgstr "YouTube"
+
+#: vipers-video-quicktags.php:550
+msgid "Embed a video from YouTube"
+msgstr "YouTube videó beágyazása "
+
+#: vipers-video-quicktags.php:551
+#: vipers-video-quicktags.php:557
+#: vipers-video-quicktags.php:563
+#: vipers-video-quicktags.php:569
+#: vipers-video-quicktags.php:575
+#: vipers-video-quicktags.php:587
+#: vipers-video-quicktags.php:599
+#: vipers-video-quicktags.php:605
+#: vipers-video-quicktags.php:611
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Írd be a videó URL-címét."
+
+#: vipers-video-quicktags.php:555
+#: vipers-video-quicktags.php:1166
+#: vipers-video-quicktags.php:2223
+#: vipers-video-quicktags.php:2470
+#: vipers-video-quicktags.php:2872
+#: vipers-video-quicktags.php:2891
+msgid "Google Video"
+msgstr "Google Video"
+
+#: vipers-video-quicktags.php:556
+msgid "Embed a video from Google Video"
+msgstr "Videó beágyazása a Google Video oldalról"
+
+#: vipers-video-quicktags.php:561
+#: vipers-video-quicktags.php:1167
+#: vipers-video-quicktags.php:2233
+#: vipers-video-quicktags.php:2483
+#: vipers-video-quicktags.php:2944
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: vipers-video-quicktags.php:562
+msgid "Embed a video from DailyMotion"
+msgstr "Videó beágyazása a DailyMotion oldalról"
+
+#: vipers-video-quicktags.php:567
+#: vipers-video-quicktags.php:1168
+#: vipers-video-quicktags.php:2248
+#: vipers-video-quicktags.php:2496
+#: vipers-video-quicktags.php:2984
+#: vipers-video-quicktags.php:3006
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: vipers-video-quicktags.php:568
+msgid "Embed a video from Vimeo"
+msgstr "Videó beágyazása a Vimeo oldalról"
+
+#: vipers-video-quicktags.php:573
+#: vipers-video-quicktags.php:2262
+#: vipers-video-quicktags.php:2509
+#: vipers-video-quicktags.php:3048
+#: vipers-video-quicktags.php:3080
+msgid "Veoh"
+msgstr "Veoh"
+
+#: vipers-video-quicktags.php:574
+msgid "Embed a video from Veoh"
+msgstr "Videó beágyazása a Veoh oldalról"
+
+#: vipers-video-quicktags.php:579
+#: vipers-video-quicktags.php:2165
+#: vipers-video-quicktags.php:2272
+#: vipers-video-quicktags.php:2522
+#: vipers-video-quicktags.php:3129
+#: vipers-video-quicktags.php:3136
+msgid "Viddler"
+msgstr "Viddler"
+
+#: vipers-video-quicktags.php:580
+msgid "Embed a video from Viddler"
+msgstr "Videó beágyazása a Viddler oldalról"
+
+#: vipers-video-quicktags.php:581
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Add meg a Viddleren lévő videó WordPress.com-os beágyazási kódját. A részletekért lásd a súgót . A továbbiakban nem szükséges ezen ablak — megnyitása, csak illeszd be a megfelelő kódot a szerkesztőbe."
+
+#: vipers-video-quicktags.php:585
+#: vipers-video-quicktags.php:2529
+#: vipers-video-quicktags.php:3146
+#: vipers-video-quicktags.php:3163
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: vipers-video-quicktags.php:586
+msgid "Embed a video from Metacafe"
+msgstr "Videó beágyazása a Metacafe oldalról"
+
+#: vipers-video-quicktags.php:591
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2542
+#: vipers-video-quicktags.php:3203
+#: vipers-video-quicktags.php:3211
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: vipers-video-quicktags.php:592
+msgid "Embed a video from Blip.tv"
+msgstr "Videó beágyazása a Blip.tv oldalról"
+
+#: vipers-video-quicktags.php:593
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Add meg a Blip.tv-n lévő videó WordPress.com-os beágyazási kódját. A részletekért lásd a súgót . A továbbiakban nem szükséges ezen ablak — megnyitása, csak illeszd be a megfelelő kódot a szerkesztőbe."
+
+#: vipers-video-quicktags.php:597
+#: vipers-video-quicktags.php:2278
+#: vipers-video-quicktags.php:2555
+#: vipers-video-quicktags.php:3262
+#: vipers-video-quicktags.php:3280
+#: vipers-video-quicktags.php:3298
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: vipers-video-quicktags.php:598
+msgid "Embed a video from Flickr Video"
+msgstr "Videó beágyazása a Flickr Video oldalról"
+
+#: vipers-video-quicktags.php:603
+#: vipers-video-quicktags.php:2568
+#: vipers-video-quicktags.php:3308
+#: vipers-video-quicktags.php:3325
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: vipers-video-quicktags.php:604
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Videó beágyazása az IFILM/Spike.com oldalról"
+
+#: vipers-video-quicktags.php:609
+#: vipers-video-quicktags.php:3349
+#: vipers-video-quicktags.php:3366
+msgid "MySpace"
+msgstr "MySpace"
+
+#: vipers-video-quicktags.php:610
+msgid "Embed a video from MySpace"
+msgstr "Videó beágyazása a MySpace oldalról"
+
+#: vipers-video-quicktags.php:615
+#: vipers-video-quicktags.php:3390
+msgid "FLV"
+msgstr "FLV"
+
+#: vipers-video-quicktags.php:616
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Flash Video (FLV) fájl beágyazása"
+
+#: vipers-video-quicktags.php:617
+#: vipers-video-quicktags.php:623
+#: vipers-video-quicktags.php:629
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Add meg a(z) %1$s fájl URL-címét."
+
+#: vipers-video-quicktags.php:617
+#: vipers-video-quicktags.php:1169
+#: vipers-video-quicktags.php:2298
+#: vipers-video-quicktags.php:2595
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:621
+#: vipers-video-quicktags.php:623
+#: vipers-video-quicktags.php:2314
+#: vipers-video-quicktags.php:2606
+#: vipers-video-quicktags.php:3484
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: vipers-video-quicktags.php:622
+msgid "Embed a Quicktime video file"
+msgstr "Quicktime videofájl beágyazása"
+
+#: vipers-video-quicktags.php:627
+msgid "Video File"
+msgstr "Generikus videofájl"
+
+#: vipers-video-quicktags.php:628
+msgid "Embed a generic video file"
+msgstr "Generikus videofájl beágyazása"
+
+#: vipers-video-quicktags.php:629
+#: vipers-video-quicktags.php:3530
+msgid "generic video"
+msgstr "generikus videó"
+
+#: vipers-video-quicktags.php:695
+msgid "Example:"
+msgstr "Például:"
+
+#: vipers-video-quicktags.php:815
+#: vipers-video-quicktags.php:1479
+#: vipers-video-quicktags.php:1575
+#: vipers-video-quicktags.php:1661
+#: vipers-video-quicktags.php:1803
+#: vipers-video-quicktags.php:1921
+msgid "Dimensions"
+msgstr "Méret"
+
+#: vipers-video-quicktags.php:817
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "Ezen videotípus alapértelmezett méreteit a bővítmény beállítások lapján adhatod meg. Azonban az egyéni méreteket itt is beállíthatod:"
+
+#: vipers-video-quicktags.php:837
+msgid "Cheatin’ uh?"
+msgstr "Trükközünk?"
+
+#: vipers-video-quicktags.php:1127
+msgid "Settings for this tab reset to defaults."
+msgstr "A lap visszaállítása alapértelmezett értékekre."
+
+#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
+#. Plugin Name of an extension
+#: vipers-video-quicktags.php:1135
+#: vipers-video-quicktags.php:1149
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:1139
+msgid "Optional Comment"
+msgstr "Tetszőleges megjegyzés"
+
+#: vipers-video-quicktags.php:1154
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "PayPal adomány küldése Viper007Bond számára, ha támogatni szeretnéd ezen bővítmény fejlesztését"
+
+#: vipers-video-quicktags.php:1164
+msgid "Additional Settings"
+msgstr "További beállítások"
+
+#: vipers-video-quicktags.php:1170
+msgid "Help"
+msgstr "Súgó"
+
+#: vipers-video-quicktags.php:1171
+msgid "Credits"
+msgstr "Köszönet"
+
+#: vipers-video-quicktags.php:1179
+msgid "General"
+msgstr "Általános"
+
+#: vipers-video-quicktags.php:1206
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Biztos, hogy visszaállítod ezen lapot az alapértelmezett értékekre?"
+
+#: vipers-video-quicktags.php:1218
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Itt megadhatod ezen videotípus alapértelmezett beállításait. Ezeket az egyes beágyazások során tetszőlegesen felülbírálhatod. A részletekért lásd a súgót ."
+
+#: vipers-video-quicktags.php:1223
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Fontold meg az Internet Explorer helyett egy másik böngésző használatát. Ugyanis ezen böngésző korlátozott funkciói miatt jelen oldal megjelenítése korántsem annyira teljeskörű, mint például a Firefox vagy Opera esetében. Ha ezen böngészőkre váltasz, akkor sok minden más mellett a videók előnézeti képének bármilyen változását is azonnal ellenőrizheted (és nem csak a mostani korlátozott opciókat láthatod)."
+
+#: vipers-video-quicktags.php:1378
+#: vipers-video-quicktags.php:1531
+#: vipers-video-quicktags.php:1611
+#: vipers-video-quicktags.php:1723
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Az előnézeti URL-cím elemzése sikertelen. Ellenőrizd, hogy teljes és érvényes URL-címet adtál meg."
+
+#: vipers-video-quicktags.php:1424
+msgid "Dark Grey"
+msgstr "Sötétszürke"
+
+#: vipers-video-quicktags.php:1425
+msgid "Dark Blue"
+msgstr "Sötétkék"
+
+#: vipers-video-quicktags.php:1426
+msgid "Light Blue"
+msgstr "Világoskék"
+
+#: vipers-video-quicktags.php:1427
+msgid "Green"
+msgstr "Zöld"
+
+#: vipers-video-quicktags.php:1428
+#: vipers-video-quicktags.php:1756
+msgid "Orange"
+msgstr "Narancssárga"
+
+#: vipers-video-quicktags.php:1429
+msgid "Pink"
+msgstr "Rózsaszín"
+
+#: vipers-video-quicktags.php:1430
+msgid "Purple"
+msgstr "Bíbor"
+
+#: vipers-video-quicktags.php:1431
+msgid "Ruby Red"
+msgstr "Rubinvörös"
+
+#: vipers-video-quicktags.php:1465
+#: vipers-video-quicktags.php:1561
+#: vipers-video-quicktags.php:1647
+#: vipers-video-quicktags.php:1789
+#: vipers-video-quicktags.php:1906
+msgid "Preview"
+msgstr "Előnézet"
+
+#: vipers-video-quicktags.php:1468
+#: vipers-video-quicktags.php:1564
+#: vipers-video-quicktags.php:1650
+#: vipers-video-quicktags.php:1792
+#: vipers-video-quicktags.php:1909
+msgid "Loading..."
+msgstr "Betöltés..."
+
+#: vipers-video-quicktags.php:1473
+#: vipers-video-quicktags.php:1569
+#: vipers-video-quicktags.php:1655
+#: vipers-video-quicktags.php:1797
+#: vipers-video-quicktags.php:1914
+msgid "Preview URL"
+msgstr "URL előnézete"
+
+#: vipers-video-quicktags.php:1482
+#: vipers-video-quicktags.php:1578
+#: vipers-video-quicktags.php:1664
+#: vipers-video-quicktags.php:1806
+msgid "pixels"
+msgstr "pixel"
+
+#: vipers-video-quicktags.php:1483
+#: vipers-video-quicktags.php:1579
+#: vipers-video-quicktags.php:1807
+msgid "Maintain aspect ratio"
+msgstr "Méretarány megtartása"
+
+#: vipers-video-quicktags.php:1489
+msgid "Border Color"
+msgstr "Szegély színe"
+
+#: vipers-video-quicktags.php:1492
+#: vipers-video-quicktags.php:1500
+#: vipers-video-quicktags.php:1674
+#: vipers-video-quicktags.php:1682
+#: vipers-video-quicktags.php:1690
+#: vipers-video-quicktags.php:1698
+#: vipers-video-quicktags.php:1816
+#: vipers-video-quicktags.php:1955
+#: vipers-video-quicktags.php:1963
+#: vipers-video-quicktags.php:1971
+#: vipers-video-quicktags.php:1979
+msgid "Pick a color"
+msgstr "Szín választása"
+
+#: vipers-video-quicktags.php:1497
+msgid "Fill Color"
+msgstr "Kitöltési szín"
+
+#: vipers-video-quicktags.php:1505
+#: vipers-video-quicktags.php:1821
+msgid "Color Presets"
+msgstr "Tárolt színbeállítások"
+
+#: vipers-video-quicktags.php:1509
+msgid "Miscellaneous"
+msgstr "Egyéb"
+
+#: vipers-video-quicktags.php:1511
+msgid "Enable HD video by default (not to be confused with "HQ" which can't be enabled by default and not all videos are avilable in HD)"
+msgstr "HD videók alapértelmezett engedélyezése (Megjegyzés: nem keverendő a "HQ" videókkal, amelyeket nem lehet alapértelmezés szerint engedélyezni. Vedd figyelembe, hogy nem minden videó áll rendelkezésre HD minőségben.)"
+
+#: vipers-video-quicktags.php:1512
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Videó részleteinek megtekintése a lejátszás végén (kapcsolódó videók, beágyazási kód stb.)"
+
+#: vipers-video-quicktags.php:1513
+#: vipers-video-quicktags.php:1587
+msgid "Show fullscreen button"
+msgstr "Teljes képernyő gombjának megjelenítése"
+
+#: vipers-video-quicktags.php:1514
+msgid "Show border"
+msgstr "Szegély megjelenítése"
+
+#: vipers-video-quicktags.php:1515
+msgid "Show the search box"
+msgstr "Keresődoboz megjelenítése"
+
+#: vipers-video-quicktags.php:1516
+msgid "Show the video title and rating"
+msgstr "Videó címének és értékelésének megjelenítése"
+
+#: vipers-video-quicktags.php:1517
+#: vipers-video-quicktags.php:1588
+#: vipers-video-quicktags.php:1705
+msgid "Autoplay video (not recommended)"
+msgstr "Videók automatikus lejátszása (nem ajánlott)"
+
+#: vipers-video-quicktags.php:1518
+msgid "Loop video playback"
+msgstr "Folyamatos lejátszás"
+
+#: vipers-video-quicktags.php:1585
+#: vipers-video-quicktags.php:1703
+msgid "Other"
+msgstr "Egyéb"
+
+#: vipers-video-quicktags.php:1671
+msgid "Toolbar Background Color"
+msgstr "Eszköztár háttérszíne"
+
+#: vipers-video-quicktags.php:1679
+msgid "Toolbar Glow Color"
+msgstr "Eszköztár ragyogási effektusának színe"
+
+#: vipers-video-quicktags.php:1687
+msgid "Button/Text Color"
+msgstr "Gomb/szöveg színe"
+
+#: vipers-video-quicktags.php:1695
+msgid "Seekbar Color"
+msgstr "Keresősáv színe"
+
+#: vipers-video-quicktags.php:1706
+msgid "Show related videos"
+msgstr "Kapcsolódó videók megjelenítése"
+
+#: vipers-video-quicktags.php:1755
+msgid "Default (Blue)"
+msgstr "Alapértelmezett (kék)"
+
+#: vipers-video-quicktags.php:1757
+msgid "Lime"
+msgstr "Sárgászöld"
+
+#: vipers-video-quicktags.php:1758
+msgid "Fuschia"
+msgstr "Ciklámen"
+
+#: vipers-video-quicktags.php:1759
+msgid "White"
+msgstr "Fehér"
+
+#: vipers-video-quicktags.php:1813
+msgid "Color"
+msgstr "Szín"
+
+#: vipers-video-quicktags.php:1825
+msgid "On-Screen Info"
+msgstr "Képernyőn megjelenő információk"
+
+#: vipers-video-quicktags.php:1827
+msgid "Portrait"
+msgstr "Profilkép"
+
+#: vipers-video-quicktags.php:1828
+msgid "Title"
+msgstr "Cím"
+
+#: vipers-video-quicktags.php:1829
+msgid "Byline"
+msgstr "Feltöltő"
+
+#: vipers-video-quicktags.php:1830
+msgid "Allow fullscreen"
+msgstr "Teljes képernyő engedélyezése"
+
+#: vipers-video-quicktags.php:1917
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "Az alapértelmezett előnézet mindig a YouTube-ra feltöltött legújabb videót jeleníti meg. Amennyiben szükséges, a kívánt FLV videó URL-címét beillesztheted a fenti mezőbe."
+
+#: vipers-video-quicktags.php:1925
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "pixel (ha az alapértelmezett felszínt használod, akkor a vezérlősáv miatt további 20 pixel szükséges a magassághoz)"
+
+#: vipers-video-quicktags.php:1932
+msgid "Skin"
+msgstr "Felszín"
+
+#: vipers-video-quicktags.php:1946
+msgid "Use Custom Colors"
+msgstr "Saját színek használata"
+
+#: vipers-video-quicktags.php:1952
+msgid "Control Bar Background Color"
+msgstr "Vezérlősáv háttérszíne"
+
+#: vipers-video-quicktags.php:1960
+msgid "Icon/Text Color"
+msgstr "Ikon/szöveg színe"
+
+#: vipers-video-quicktags.php:1968
+msgid "Icon/Text Hover Color"
+msgstr "Ikon/szöveg fókuszszíne"
+
+#: vipers-video-quicktags.php:1976
+msgid "Video Background Color"
+msgstr "Videók háttérszíne"
+
+#: vipers-video-quicktags.php:1984
+msgid "Advanced Parameters"
+msgstr "Speciális beállítások"
+
+#: vipers-video-quicktags.php:1987
+#: vipers-video-quicktags.php:2309
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Lekérdezési sztring típusú további paraméterek listája a lejátszó számára. Például: %3$s"
+
+#: vipers-video-quicktags.php:1988
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Kattints a "Módosítások mentése" gombra a paraméterek mentéséhez."
+
+#: vipers-video-quicktags.php:2024
+msgid "Video Alignment"
+msgstr "Videók elrendezése"
+
+#: vipers-video-quicktags.php:2029
+msgid "Left"
+msgstr "Balra"
+
+#: vipers-video-quicktags.php:2030
+msgid "Center"
+msgstr "Középre"
+
+#: vipers-video-quicktags.php:2031
+msgid "Right"
+msgstr "Jobbra"
+
+#: vipers-video-quicktags.php:2032
+msgid "Float Left"
+msgstr "Lebegtetés balra"
+
+#: vipers-video-quicktags.php:2033
+msgid "Float Right"
+msgstr "Lebegtetés jobbra"
+
+#: vipers-video-quicktags.php:2045
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Gombok megjelenítése a szerkesztőben ezen sornál"
+
+#: vipers-video-quicktags.php:2050
+msgid "1"
+msgstr "1"
+
+#: vipers-video-quicktags.php:2051
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (Kitchen Sink Toolbar)"
+
+#: vipers-video-quicktags.php:2052
+msgid "3 (Default)"
+msgstr "3 (alapértelmezett)"
+
+#: vipers-video-quicktags.php:2064
+msgid "Feed Text"
+msgstr "Hírcsatornában megjelenő szöveg"
+
+#: vipers-video-quicktags.php:2067
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Megadhatsz egy tetszés szerinti szöveget a videók hírcsatornában történő helyettesítéséhez (mivel a feedekbe nem lehet videókat beágyazni). Ha üresen hagyod, akkor a bővítmény az alapértelmezett %s értéket használja."
+
+#: vipers-video-quicktags.php:2071
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: vipers-video-quicktags.php:2073
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Windows Media Player használata normál videók lejátszásához (Windows esetén)."
+
+#: vipers-video-quicktags.php:2078
+msgid "Advanced Settings"
+msgstr "Speciális beállítások"
+
+#: vipers-video-quicktags.php:2080
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Ha nem vagy biztos a következő beállításokban, akkor inkább hagyd ki őket."
+
+#: vipers-video-quicktags.php:2084
+msgid "Dynamic QTObject Loading"
+msgstr "Dinamikus QTObject betöltés"
+
+#: vipers-video-quicktags.php:2086
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Csak akkor tölti be a Javascript fájlokat, ha szükséges. Kapcsold ki, ha Quicktime videókat szeretnél beágyazni az oldalsávba widgetek segítségével."
+
+#: vipers-video-quicktags.php:2091
+msgid "Custom CSS"
+msgstr "Saját CSS"
+
+#: vipers-video-quicktags.php:2093
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Saját CSS kódot használnál a videók egyszerű és egyéni megjelenítéséhez? Akkor kattints erre a szövegre a beállításhoz."
+
+#: vipers-video-quicktags.php:2095
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Írd be a saját CSS kódodat az alábbi szövegmezőbe. Az eredmény az alapértelmezett CSS kód után jelenik meg (ennek egyes elemeit az %1$s parancs segítségével felülbírálhatod). További segítségért és példákért lásd a súgót ."
+
+#: vipers-video-quicktags.php:2138
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "A válaszhoz kattints az adott kérdésre, vagy erre a szövegre az összes válasz megtekintéséhez."
+
+#: vipers-video-quicktags.php:2142
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Csak a hivatkozások jelennek meg a blogomon, a videók nem. Mi lehet a gond?"
+
+#: vipers-video-quicktags.php:2145
+msgid "Here are five common causes:"
+msgstr "Íme a leggyakoribb okok:"
+
+#: vipers-video-quicktags.php:2147
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Firefox böngészőt használsz AdBlock bővítménnyel? Az AdBlock és annak bizonyos tiltószabályai megakadályozhatják egyes videók (pl. YouTube) megjelenítését. Tiltsd le az AdBlock bővítményt, vagy válts át az AdBlock Plus használatára."
+
+#: vipers-video-quicktags.php:2148
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "Elképzelhető, hogy a sablon <head> fejlécéből hiányzik a <?php wp_head();?> kód, ami annyit jelent, hogy a szükséges Javascript fájlt nem lehet automatikusan betölteni. Ha ez a helyzet, akkor elképzelhető, hogy hibaüzenetet fogsz kapni a videót tartalmazó bejegyzés megtekintésekor (feltéve, hogy nem a következő pontban említett hibáról van szó). Nyisd meg a sablon header.php fájlját, majd illeszd be a fenti kódot közvetlenül a </head> rész elé."
+
+#: vipers-video-quicktags.php:2149
+#: vipers-video-quicktags.php:2155
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Elképzelhető, hogy a Javascript nincsen engedélyezve. Jelen bővítmény a legjobb felhasználói élmény biztosítása érdekében Javascriptet használ a videók beágyazásához. Ezért engedélyezned kell azt ."
+
+#: vipers-video-quicktags.php:2150
+#: vipers-video-quicktags.php:2156
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Elképzelhető, hogy nem a legújabb Flash verzió van telepítve. Ebben az esetben telepítened kell azt ."
+
+#: vipers-video-quicktags.php:2154
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Firefox böngészőt használsz AdBlock bővítménnyel? Az AdBlock és annak bizonyos tiltószabályai megakadályozhatják egyes videók (pl. YouTube) megjelenítését. Tiltsd le az AdBlock bővítményt, vagy válts át az AdBlock Plus használatára."
+
+#: vipers-video-quicktags.php:2162
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Hol találom a Viddler videók beillesztésére szolgáló kódot?"
+
+#: vipers-video-quicktags.php:2164
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Mivel a Viddleres videók URL-címei nem kapcsolódnak a beágyazási URL-hez, a WordPress.com-os formátumot kell használnod. Menj a Viddler oldalán lévő videóhoz, kattints az "Embed This" (Beágyazás) gombra a videó alatt, majd válaszd ki a WordPress.com lehetőséget. A kódot közvetlenül is beillesztheted a bejegyzésbe vagy oldalba."
+
+#: vipers-video-quicktags.php:2169
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Hol találom a Blip.tv videók beillesztésére szolgáló kódot?"
+
+#: vipers-video-quicktags.php:2171
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Mivel a Blip.tv-s videók URL-címei nem kapcsolódnak a beágyazási URL-hez, a WordPress.com-os formátumot kell használnod. Menj a Blip.tv oldalán lévő videóhoz, kattints a sárga "Share" (Megosztás) legördülő menüre, majd válaszd az "Embed" (Beágyazás) opciót. Ezután válaszd a "WordPress.com" lehetőséget a "Show Player" (Lejátszó megjelenítése) legördülő menüből, majd kattints a "Go" (Mehet) gombra. A kódot közvetlenül is beillesztheted a bejegyzésbe vagy oldalba."
+
+#: vipers-video-quicktags.php:2173
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "MEGJEGYZÉS: Hagyd figyelmen kívül a figyelmeztető üzenetet. Mivel a bővítmény támogatja a WordPress.com platformot, ezért a funkció a Te blogodon is működni fog ."
+
+#: vipers-video-quicktags.php:2177
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Miért nem támogatja a bővítmény az általam használandó weboldalt?"
+
+#: vipers-video-quicktags.php:2179
+msgid "There's a couple likely reasons:"
+msgstr "Ennek számos oka lehet:"
+
+#: vipers-video-quicktags.php:2181
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "A weboldal olyan beágyazási URL-t használ, amely nem kapcsolódik a címsorban lévő URL-hez. Ez azt jelenti, hogy hiába adod meg a videó elérhetőségét, a bővítmény nem képes azonosítani a beágyazási címet."
+
+#: vipers-video-quicktags.php:2182
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "Elképzelhető, hogy a weboldal kevésbé ismert, ezért nem éri meg felvenni azt a támogatott oldalak körébe. Nincs értelme olyan videómegosztó támogatásának, amelyet némi túlzással csak egy-két ember használ."
+
+#: vipers-video-quicktags.php:2183
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Lehet, hogy még nem hallottam az adott oldalról. Kérlek, említsd meg a támogatási fórumon egy tetszőleges videóra mutató link formájában, és megnézem, mit tehetek az ügy érdekében."
+
+#: vipers-video-quicktags.php:2185
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "A bővítmény bármilyen Flash videó beágyazására képes. További részletekért lásd a Flash kóddal kapcsolatos kérdést ."
+
+#: vipers-video-quicktags.php:2189
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "Továbbra is piros színűek a YouTube videók egyes gombjai (az egérrel történő rámutatáskor). Mi a megoldás?"
+
+#: vipers-video-quicktags.php:2191
+msgid "YouTube does not provide a method to change that color."
+msgstr "Sajnos a YouTube nem teszi lehetővé ezen szín módosítását."
+
+#: vipers-video-quicktags.php:2195
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Hogyan módosíthatom egy adott videó méretét, színeit és egyéb beállításait?"
+
+#: vipers-video-quicktags.php:2197
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Számos beállítást a posztokba történő beágyazásra szolgáló WordPress kódok segítségével adhatsz meg. Ezek a BBCode kódokhoz hasonlóak. Íme néhány példa:"
+
+#: vipers-video-quicktags.php:2203
+msgid "Any value that is not entered will fall back to the default."
+msgstr "A nem megadott értékek alapértelmezett beállítást kapnak."
+
+#: vipers-video-quicktags.php:2207
+#: vipers-video-quicktags.php:2223
+#: vipers-video-quicktags.php:2233
+#: vipers-video-quicktags.php:2248
+#: vipers-video-quicktags.php:2262
+#: vipers-video-quicktags.php:2272
+#: vipers-video-quicktags.php:2278
+#: vipers-video-quicktags.php:2298
+#: vipers-video-quicktags.php:2314
+#: vipers-video-quicktags.php:2328
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Melyek a(z) %s kódok lehetséges paraméterei?"
+
+#: vipers-video-quicktags.php:2210
+#: vipers-video-quicktags.php:2226
+#: vipers-video-quicktags.php:2236
+#: vipers-video-quicktags.php:2251
+#: vipers-video-quicktags.php:2265
+#: vipers-video-quicktags.php:2281
+#: vipers-video-quicktags.php:2292
+#: vipers-video-quicktags.php:2301
+#: vipers-video-quicktags.php:2318
+#: vipers-video-quicktags.php:2332
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — szélesség pixelben"
+
+#: vipers-video-quicktags.php:2211
+#: vipers-video-quicktags.php:2227
+#: vipers-video-quicktags.php:2237
+#: vipers-video-quicktags.php:2252
+#: vipers-video-quicktags.php:2266
+#: vipers-video-quicktags.php:2282
+#: vipers-video-quicktags.php:2293
+#: vipers-video-quicktags.php:2302
+#: vipers-video-quicktags.php:2319
+#: vipers-video-quicktags.php:2333
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — magasság pixelben"
+
+#: vipers-video-quicktags.php:2212
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — lejátszó színe hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2213
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — lejátszó kitöltési színe hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2214
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — szegély megjelenítése vagy elrejtése (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2215
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — kapcsolódó videók, URL-címek, beágyazási adatok stb. megjelenítése a lejátszás végén (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2216
+#: vipers-video-quicktags.php:2257
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — teljes képernyő gomb megjelenítése (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2217
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2242
+#: vipers-video-quicktags.php:2267
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — lejátszás automatikus indítása (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2218
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — folyamatos lejátszás (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2238
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — eszköztár háttérszíne hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2239
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — eszköztár ragyogási effektusának színe hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2240
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — gomb/szöveg színe hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2241
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — keresősáv színe hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2243
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — kapcsolódó videók megjelenítése (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2253
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — lejátszó színe hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2254
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — feltöltő profilképének megjelenítése (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2255
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — cím megjelenítése (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2256
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — feltöltő megjelenítése (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2274
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "Mivel a Viddler videók beágyazására a WordPress.com-os kód szolgál, a Viddler kódnak nincsenek testreszabható paraméterei. A WordPress.com-os kódot kell használni a videó címeként (a videó beágyazási URL-je és tényleges címe nem kapcsolódik egymáshoz)."
+
+#: vipers-video-quicktags.php:2283
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — részletek megjelenítése (0 vagy 1), alapértelmezett érték: 1"
+
+#: vipers-video-quicktags.php:2288
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Melyek a Metacafe, Blip.tv, IFILM/Spike és MySpace kódok lehetséges paraméterei?"
+
+#: vipers-video-quicktags.php:2290
+msgid "All of these video formats only support the following:"
+msgstr "Ezen videoformátumok kizárólag a következő paramétereket támogatják:"
+
+#: vipers-video-quicktags.php:2303
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — az előnézeti kép URL-címe, alapértelmezettként a videofájl URL-címe, de .jpg az .flv helyett."
+
+#: vipers-video-quicktags.php:2304
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — lejátszó vezérlősávjának háttérszíne hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2305
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — ikon/szöveg színének háttérszíne hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2306
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — ikon/szöveg fókuszszíne hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2307
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — videó háttérszíne hexadecimális értékkel"
+
+#: vipers-video-quicktags.php:2308
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — százalékos érték, alapértelmezett érték: 100"
+
+#: vipers-video-quicktags.php:2309
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: vipers-video-quicktags.php:2316
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "A Quicktime videók megjelenítése és lejátszása jelentősen függhet a felhasználó számítógépének teljesítményétől, illetve a telepített szoftverektől. Az alábbiakban a lehetséges paramétereket találod:"
+
+#: vipers-video-quicktags.php:2320
+#: vipers-video-quicktags.php:2323
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — lejátszás automatikus indítása (0 vagy 1), alapértelmezett érték: 0"
+
+#: vipers-video-quicktags.php:2321
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — kattintásra induló helyőrző kép használata (0 vagy 1), alapértelmezett érték: 0"
+
+#: vipers-video-quicktags.php:2322
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — a helyőrző kép URL-címe, alapértelmezettként megegyezik a videofájl URL-címével, de .jpg a .mov helyett"
+
+#: vipers-video-quicktags.php:2328
+msgid "video file"
+msgstr "generikus videofájl"
+
+#: vipers-video-quicktags.php:2330
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "A generikus videók megjelenítése és lejátszása jelentősen függhet a felhasználó számítógépének teljesítményétől, illetve a telepített szoftverektől. Az alábbiakban a lehetséges paramétereket találod:"
+
+#: vipers-video-quicktags.php:2334
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — Windows Media Player használata Windows esetén (0 vagy 1)"
+
+#: vipers-video-quicktags.php:2340
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "Mire jó ez a "Saját CSS" opció a "További beállítások" lapon?"
+
+#: vipers-video-quicktags.php:2342
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "Ezen beállítás gyors és egyszerű módot biztosít a videók megjelenítésének testreszabásához a style.css fájl módosítása nélkül. Írd be a saját CSS kódodat, majd az eredmény megjelenik a sablon fejlécében."
+
+#: vipers-video-quicktags.php:2343
+msgid "Some examples:"
+msgstr "Néhány példa:"
+
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Piros szegély minden videónál: %s"
+
+#: vipers-video-quicktags.php:2346
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "YouTube videók lebegtetése balra: %s"
+
+#: vipers-video-quicktags.php:2352
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Hogyan tudok beágyazni egy generikus Flash fájlt vagy videót olyan weboldalról, amelyet ez a bővítmény nem támogat?"
+
+#: vipers-video-quicktags.php:2354
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "A bővítmény olyan %s kóddal rendelkezik, amelyet bármilyen Flash fájl beágyazásához használhatsz. A kód a következő:"
+
+#: vipers-video-quicktags.php:2359
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Miért ilyen változó minőségű a Quicktime és egyéb videofájlok megjelenítése ezen bővítménnyel? Nem lehetne valahogy javítani rajta?"
+
+#: vipers-video-quicktags.php:2361
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "A Quicktime és egyéb normál videofájlok beágyazása nem éppen egyszerű feladat, és különösen nehéz megoldani úgy, hogy minden böngészővel és operációs rendszerrel ugyanolyan jól működjön. Ezért javaslom , hogy konvertáld át a videókat Flash Video vagy H.264 formátumra, majd használd a Flash Video (FLV) beágyazást. Az interneten találsz jó pár ingyenes programot a konvertáláshoz, ráadásul így sokkal jobb felhasználói élményt is nyújthatsz a látogatóidnak."
+
+#: vipers-video-quicktags.php:2370
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "A bővítmény számos mások által írt szkriptet és programcsomagot tartalmaz. Ezen fejlesztők megérdemlik a köszönetet, ezért álljon itt a nevük mindenféle különösebb sorrend nélkül:"
+
+#: vipers-video-quicktags.php:2373
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "A Flash videók beágyazásához használatos SWFObject szerzői és segítői."
+
+#: vipers-video-quicktags.php:2374
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering , aki megírta az FLV-videók lejátszására szolgáló JW FLV Media Player szoftvert."
+
+#: vipers-video-quicktags.php:2375
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens , aki megírta a jelen bővítményben is használt kiváló Javascript színválasztó segédprogramot, a Farbtastic-et ."
+
+#: vipers-video-quicktags.php:2376
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh , aki megírta a Liz Comment Counter nevezetű bővítményt, amelynek révén találkoztam a Farbtastic-kel, és amely ötleteket adott saját színválasztó és színbeállító segédprogramom Javascript kódjának megírásakor."
+
+#: vipers-video-quicktags.php:2377
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz , aki rengeteg időt megtakarítva segített a TinyMCE-hez kapcsolódó Javascript kódok megírásában."
+
+#: vipers-video-quicktags.php:2378
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns , aki megírta a Quicktime videók beágyazására szolgáló QTObject segédprogramot."
+
+#: vipers-video-quicktags.php:2379
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James , aki megalkotta a Silk icon pack ikoncsomagot. Jelen bővítmény legalább egy ikont használ ebből a csomagból."
+
+#: vipers-video-quicktags.php:2380
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "A WordPress által használatos kiváló Javascript-csomag, a jQuery szerzői és segítői."
+
+#: vipers-video-quicktags.php:2381
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Mindenki, aki segített kifejleszteni a WordPress platformot, illetve annak kiváló API-ját, mivel enélkül ez a bővítmény sem létezne."
+
+#: vipers-video-quicktags.php:2382
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Mindenki, aki hibabejelentéseket és új funkciókkal kapcsolatos javaslatokat küldött."
+
+#: vipers-video-quicktags.php:2385
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "A bővítmény más nyelvekre történő lefordításában az alábbi felhasználók segítettek. Köszönet nekik!"
+
+#: vipers-video-quicktags.php:2388
+#, php-format
+msgid "Brazilian Portuguese: %s"
+msgstr "Brazil portugál: %s"
+
+#: vipers-video-quicktags.php:2389
+#, php-format
+msgid "Danish: %s"
+msgstr "Dán: %s"
+
+#: vipers-video-quicktags.php:2390
+#, php-format
+msgid "Dutch: %s"
+msgstr "Holland: %s"
+
+#: vipers-video-quicktags.php:2391
+#, php-format
+msgid "French: %s"
+msgstr "Francia: %s"
+
+#: vipers-video-quicktags.php:2392
+#, php-format
+msgid "Italian: %s"
+msgstr "Olasz: %s"
+
+#: vipers-video-quicktags.php:2393
+#, php-format
+msgid "Polish: %s"
+msgstr "Lengyel: %s"
+
+#: vipers-video-quicktags.php:2394
+#, php-format
+msgid "Russian: %s"
+msgstr "Orosz: %s"
+
+#: vipers-video-quicktags.php:2397
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Amennyiben más nyelven használnád ezt a bővítményt, és szeretnéd, ha a neved megjelenne ezen az oldalon, akkor fordítsd le a "localization" mappában található sablonfájl sztringjeit, majd küldd el nekem a fájlt . További segítségért lásd a WordPress Codex-et ."
+
+#: vipers-video-quicktags.php:2404
+msgid "Click the above links to switch between tabs."
+msgstr "A fenti linkekre kattintva válthatsz az egyes lapok között."
+
+#: vipers-video-quicktags.php:2437
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"Egyetértesz a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported liszensszel? A dokumentációra mutató linket megtalálhatod a bal oldalon.\n"
+"\n"
+"A lényeg rövden: a JW's FLV Media Player lejátszót liszensz megvásárlása nélkül nem használhatod kereskedelmi célú weboldalakon."
+
+#: vipers-video-quicktags.php:2448
+msgid "Media Type"
+msgstr "Típus"
+
+#: vipers-video-quicktags.php:2449
+msgid "Show Editor Button?"
+msgstr "Gomb megjelenítése a szerkesztőben?"
+
+#: vipers-video-quicktags.php:2450
+msgid "Default Width"
+msgstr "Alapértelmezett szélesség"
+
+#: vipers-video-quicktags.php:2451
+msgid "Default Height"
+msgstr "Alapértelmezett magasság"
+
+#: vipers-video-quicktags.php:2452
+msgid "Keep Aspect Ratio?"
+msgstr "Méretarány megtartása?"
+
+#: vipers-video-quicktags.php:2581
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: vipers-video-quicktags.php:2598
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commercial website ."
+msgstr "A JW's FLV Media Player lejátszót Creative Commons Noncommercial liszensz védi, ami annyit jelent, hogy a lejátszót nem használhatod kereskedelmi célú weboldalakon ."
+
+#: vipers-video-quicktags.php:2613
+msgid "Generic Video File"
+msgstr "Generikus videofájl"
+
+#: vipers-video-quicktags.php:2613
+#, php-format
+msgid "This part of the plugin is fairly buggy as embedding video files is complex. Consider trying TinyMCE's native video embedder instead. Why? "
+msgstr "A bővítmény ezen része hibákat tartalmazhat, mivel az ilyen videofájlok beágyazása nem éppen egyszerű feladat. Használd inkább a TinyMCE eredeti videobeágyazóját. Miért? "
+
+#: vipers-video-quicktags.php:2628
+msgid "Save Changes"
+msgstr "Módosítások mentése"
+
+#: vipers-video-quicktags.php:2629
+msgid "Reset Tab To Defaults"
+msgstr "Lap visszaállítása az alapértékekre"
+
+#: vipers-video-quicktags.php:2689
+#, php-format
+msgid "ERROR: %s"
+msgstr "HIBA: %s"
+
+#: vipers-video-quicktags.php:2751
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "A Stage6 nem támogatott többé, ezért ez a videó nem jeleníthető meg."
+
+#: vipers-video-quicktags.php:2768
+#: vipers-video-quicktags.php:2872
+#: vipers-video-quicktags.php:2920
+#: vipers-video-quicktags.php:2984
+#: vipers-video-quicktags.php:3048
+#: vipers-video-quicktags.php:3146
+#: vipers-video-quicktags.php:3262
+#: vipers-video-quicktags.php:3308
+#: vipers-video-quicktags.php:3349
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Nem lett URL-cím vagy videoazonosító elküldve a következőnek: %s BBCode"
+
+#: vipers-video-quicktags.php:2798
+#: vipers-video-quicktags.php:2806
+#: vipers-video-quicktags.php:2891
+#: vipers-video-quicktags.php:2944
+#: vipers-video-quicktags.php:3006
+#: vipers-video-quicktags.php:3080
+#: vipers-video-quicktags.php:3163
+#: vipers-video-quicktags.php:3280
+#: vipers-video-quicktags.php:3325
+#: vipers-video-quicktags.php:3366
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Az URL-cím elemzése sikertelen, ellenőrizd a megfelelő %s formátumot"
+
+#: vipers-video-quicktags.php:2810
+#: vipers-video-quicktags.php:2817
+msgid "YouTube Preview Image"
+msgstr "YouTube előnézeti kép"
+
+#: vipers-video-quicktags.php:3110
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "A Viddler által támogatott egyetlen formátum WordPress.com-os (vagyis nem URL-cím alapú). Ezt a "Beágyazás" ablakban találhatod."
+
+#: vipers-video-quicktags.php:3129
+#: vipers-video-quicktags.php:3203
+#: vipers-video-quicktags.php:3234
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Érvénytelen %s kódformátum. Ellenőrizd a megadott értéket."
+
+#: vipers-video-quicktags.php:3136
+#: vipers-video-quicktags.php:3211
+#: vipers-video-quicktags.php:3245
+#: vipers-video-quicktags.php:3610
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Engedélyezd a Javascript és Flash alkalmazások futtatását a(z) %3$s videó megtekintéséhez."
+
+#: vipers-video-quicktags.php:3186
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "A Blip.tv által támogatott egyetlen formátum WordPress.com-os. Ezt a következő helyen találhatod: Megosztás -> Beágyazás -> WordPress.com."
+
+#: vipers-video-quicktags.php:3234
+#: vipers-video-quicktags.php:3245
+msgid "WordPress.com"
+msgstr "WordPress.com"
+
+#: vipers-video-quicktags.php:3390
+#: vipers-video-quicktags.php:3484
+#: vipers-video-quicktags.php:3530
+#: vipers-video-quicktags.php:3580
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "Nem lett URL elküldve a következőnek: %s BBCode"
+
+#: vipers-video-quicktags.php:3580
+msgid "generic Flash embed"
+msgstr "generikus Flash beágyazás"
+
+#: vipers-video-quicktags.php:3610
+msgid "Flash"
+msgstr "Flash"
+
+#. Plugin URI of an extension
+msgid "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+msgstr "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+
+#. Description of an extension
+msgid "Easily embed videos from various video websites such as YouTube, DailyMotion, and Vimeo into your posts."
+msgstr "Videók bejegyzésekbe történő egyszerű beágyazása számos videómegosztóról (pl. YouTube, DailyMotion vagy Vimeo)."
+
+#. Author of an extension
+msgid "Viper007Bond"
+msgstr "Viper007Bond"
+
+#. Author URI of an extension
+msgid "http://www.viper007bond.com/"
+msgstr "http://www.viper007bond.com/"
+
+
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-it_IT.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-it_IT.mo
new file mode 100644
index 00000000..30488a6b
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-it_IT.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-it_IT.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-it_IT.po
new file mode 100644
index 00000000..6247883f
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-it_IT.po
@@ -0,0 +1,1503 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags in italiano\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/vipers-video-quicktags\n"
+"POT-Creation-Date: 2009-09-12 09:56+0000\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Gianni Diurno (aka gidibao) \n"
+"Language-Team: Gianni Diurno | http://gidibao.net/ \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Italian\n"
+"X-Poedit-Country: ITALY\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: D:\\Webserver\\htdocs\\plugindev\\wp-content\\plugins\\vipers-video-quicktags\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: vipers-video-quicktags.php:247
+msgid "Click here to view the embedded video."
+msgstr "Clicca qui per vedere il video incorporato."
+
+#: vipers-video-quicktags.php:407
+#: vipers-video-quicktags.php:1422
+msgid "Default"
+msgstr "Predefinito"
+
+#: vipers-video-quicktags.php:408
+msgid "3D Pixel Style"
+msgstr "Stile 3D Pixel"
+
+#: vipers-video-quicktags.php:409
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+#: vipers-video-quicktags.php:410
+msgid "Bekle (Overlay)"
+msgstr "Bekle (sovrapposto)"
+
+#: vipers-video-quicktags.php:411
+msgid "Blue Metal"
+msgstr "Blue Metal"
+
+#: vipers-video-quicktags.php:412
+msgid "Comet"
+msgstr "Comet"
+
+#: vipers-video-quicktags.php:413
+msgid "Control Panel"
+msgstr "Pannello di controllo"
+
+#: vipers-video-quicktags.php:414
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: vipers-video-quicktags.php:415
+msgid "Fashion"
+msgstr "Fashion"
+
+#: vipers-video-quicktags.php:416
+msgid "Festival"
+msgstr "Festival"
+
+#: vipers-video-quicktags.php:417
+msgid "Grunge Tape"
+msgstr "Grunge Tape"
+
+#: vipers-video-quicktags.php:418
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+#: vipers-video-quicktags.php:419
+msgid "Kleur"
+msgstr "Kleur"
+
+#: vipers-video-quicktags.php:420
+msgid "Magma"
+msgstr "Magma"
+
+#: vipers-video-quicktags.php:421
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: vipers-video-quicktags.php:422
+msgid "Modieus (Stylish)"
+msgstr "Modieus (Stylish)"
+
+#: vipers-video-quicktags.php:423
+msgid "Modieus (Stylish) Slim"
+msgstr "Modieus (Stylish) Slim"
+
+#: vipers-video-quicktags.php:424
+msgid "Nacht"
+msgstr "Nacht"
+
+#: vipers-video-quicktags.php:425
+msgid "Neon"
+msgstr "Neon"
+
+#: vipers-video-quicktags.php:426
+msgid "Pearlized"
+msgstr "Pearlized"
+
+#: vipers-video-quicktags.php:427
+msgid "Pixelize"
+msgstr "Pixelize"
+
+#: vipers-video-quicktags.php:428
+msgid "Play Casso"
+msgstr "Play Casso"
+
+#: vipers-video-quicktags.php:429
+msgid "Schoon"
+msgstr "Schoon"
+
+#: vipers-video-quicktags.php:430
+msgid "Silvery White"
+msgstr "Silvery White"
+
+#: vipers-video-quicktags.php:431
+msgid "Simple"
+msgstr "Semplice"
+
+#: vipers-video-quicktags.php:432
+msgid "Snel"
+msgstr "Snel"
+
+#: vipers-video-quicktags.php:433
+msgid "Stijl"
+msgstr "Stijl"
+
+#: vipers-video-quicktags.php:434
+msgid "Traganja"
+msgstr "Traganja"
+
+#: vipers-video-quicktags.php:441
+#, php-format
+msgid "Viper's Video Quicktags requires WordPress 2.8 or newer. Please upgrade ! By not upgrading, your blog is likely to be hacked ."
+msgstr "Questa versione di Viper's Video Quicktags richiede WordPress 2.8 o superiore. Aggiorna quanto prima! Il tuo sito potrebbe essere violato ."
+
+#: vipers-video-quicktags.php:447
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Configurazione Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:447
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+#: vipers-video-quicktags.php:458
+msgid "Settings"
+msgstr "Impostazioni"
+
+#: vipers-video-quicktags.php:548
+#: vipers-video-quicktags.php:1164
+#: vipers-video-quicktags.php:2206
+#: vipers-video-quicktags.php:2460
+#: vipers-video-quicktags.php:2772
+#: vipers-video-quicktags.php:2802
+#: vipers-video-quicktags.php:2810
+#: vipers-video-quicktags.php:2924
+msgid "YouTube"
+msgstr "YouTube"
+
+#: vipers-video-quicktags.php:549
+msgid "Embed a video from YouTube"
+msgstr "Incorporare un video da YouTube"
+
+#: vipers-video-quicktags.php:550
+#: vipers-video-quicktags.php:556
+#: vipers-video-quicktags.php:562
+#: vipers-video-quicktags.php:568
+#: vipers-video-quicktags.php:574
+#: vipers-video-quicktags.php:586
+#: vipers-video-quicktags.php:598
+#: vipers-video-quicktags.php:604
+#: vipers-video-quicktags.php:610
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Inserisci l'URL grazie al quale il video può essere visto."
+
+#: vipers-video-quicktags.php:554
+#: vipers-video-quicktags.php:1165
+#: vipers-video-quicktags.php:2222
+#: vipers-video-quicktags.php:2473
+#: vipers-video-quicktags.php:2876
+#: vipers-video-quicktags.php:2895
+msgid "Google Video"
+msgstr "Google Video"
+
+#: vipers-video-quicktags.php:555
+msgid "Embed a video from Google Video"
+msgstr "Incorporare un video da Google Video"
+
+#: vipers-video-quicktags.php:560
+#: vipers-video-quicktags.php:1166
+#: vipers-video-quicktags.php:2232
+#: vipers-video-quicktags.php:2486
+#: vipers-video-quicktags.php:2948
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: vipers-video-quicktags.php:561
+msgid "Embed a video from DailyMotion"
+msgstr "Incorporare un video da DailyMotion"
+
+#: vipers-video-quicktags.php:566
+#: vipers-video-quicktags.php:1167
+#: vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2499
+#: vipers-video-quicktags.php:2988
+#: vipers-video-quicktags.php:3010
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: vipers-video-quicktags.php:567
+msgid "Embed a video from Vimeo"
+msgstr "Incorporare un video da Vimeo"
+
+#: vipers-video-quicktags.php:572
+#: vipers-video-quicktags.php:2261
+#: vipers-video-quicktags.php:2512
+#: vipers-video-quicktags.php:3052
+#: vipers-video-quicktags.php:3084
+msgid "Veoh"
+msgstr "Veoh"
+
+#: vipers-video-quicktags.php:573
+msgid "Embed a video from Veoh"
+msgstr "Incorporare un video da Veoh"
+
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:2164
+#: vipers-video-quicktags.php:2271
+#: vipers-video-quicktags.php:2525
+#: vipers-video-quicktags.php:3133
+#: vipers-video-quicktags.php:3140
+msgid "Viddler"
+msgstr "Viddler"
+
+#: vipers-video-quicktags.php:579
+msgid "Embed a video from Viddler"
+msgstr "Incorporare un video da Viddler"
+
+#: vipers-video-quicktags.php:580
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Inserisci il tag per i video Viddler sullo stile di WordPress.com. Vai alla sezione Info per maggiori dettagli. Prossimamente, non dovrai più aprire questa finestra — poiché sarà sufficiente incollare il tag direttamente nell'editor."
+
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:2532
+#: vipers-video-quicktags.php:3150
+#: vipers-video-quicktags.php:3167
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: vipers-video-quicktags.php:585
+msgid "Embed a video from Metacafe"
+msgstr "Incorporare un video da Metacafe"
+
+#: vipers-video-quicktags.php:590
+#: vipers-video-quicktags.php:2171
+#: vipers-video-quicktags.php:2545
+#: vipers-video-quicktags.php:3207
+#: vipers-video-quicktags.php:3215
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: vipers-video-quicktags.php:591
+msgid "Embed a video from Blip.tv"
+msgstr "Incorporare un video da Blip.tv"
+
+#: vipers-video-quicktags.php:592
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Inserisci il tag per i video Blip.tv sullo stile di WordPress.com. Vai alla sezione Info per maggiori dettagli. Prossimamente, non dovrai più aprire questa finestra — poiché sarà sufficiente incollare il tag direttamente nell'editor."
+
+#: vipers-video-quicktags.php:596
+#: vipers-video-quicktags.php:2277
+#: vipers-video-quicktags.php:2558
+#: vipers-video-quicktags.php:3266
+#: vipers-video-quicktags.php:3284
+#: vipers-video-quicktags.php:3302
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: vipers-video-quicktags.php:597
+msgid "Embed a video from Flickr Video"
+msgstr "Incorporare un video da Flickr Video"
+
+#: vipers-video-quicktags.php:602
+#: vipers-video-quicktags.php:2571
+#: vipers-video-quicktags.php:3312
+#: vipers-video-quicktags.php:3329
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: vipers-video-quicktags.php:603
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Incorporare un video da IFILM/Spike.com"
+
+#: vipers-video-quicktags.php:608
+#: vipers-video-quicktags.php:3353
+#: vipers-video-quicktags.php:3370
+msgid "MySpace"
+msgstr "MySpace"
+
+#: vipers-video-quicktags.php:609
+msgid "Embed a video from MySpace"
+msgstr "Incorporare un video da MySpace"
+
+#: vipers-video-quicktags.php:614
+#: vipers-video-quicktags.php:3394
+msgid "FLV"
+msgstr "FLV"
+
+#: vipers-video-quicktags.php:615
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Incorporare un file Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:616
+#: vipers-video-quicktags.php:622
+#: vipers-video-quicktags.php:628
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Inserisci l'URL al file %1$s."
+
+#: vipers-video-quicktags.php:616
+#: vipers-video-quicktags.php:1168
+#: vipers-video-quicktags.php:2297
+#: vipers-video-quicktags.php:2598
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:620
+#: vipers-video-quicktags.php:622
+#: vipers-video-quicktags.php:2313
+#: vipers-video-quicktags.php:2609
+#: vipers-video-quicktags.php:3488
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: vipers-video-quicktags.php:621
+msgid "Embed a Quicktime video file"
+msgstr "Incorporare un file video Quicktime"
+
+#: vipers-video-quicktags.php:626
+msgid "Video File"
+msgstr "File video"
+
+#: vipers-video-quicktags.php:627
+msgid "Embed a generic video file"
+msgstr "Incorporare un file video generico"
+
+#: vipers-video-quicktags.php:628
+#: vipers-video-quicktags.php:3534
+msgid "generic video"
+msgstr "Video generico"
+
+#: vipers-video-quicktags.php:694
+msgid "Example:"
+msgstr "Esempio:"
+
+#: vipers-video-quicktags.php:814
+#: vipers-video-quicktags.php:1478
+#: vipers-video-quicktags.php:1574
+#: vipers-video-quicktags.php:1660
+#: vipers-video-quicktags.php:1802
+#: vipers-video-quicktags.php:1920
+msgid "Dimensions"
+msgstr "Dimensioni"
+
+#: vipers-video-quicktags.php:816
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "Le dimensioni predefinite per questo tipo di video possono essere modificate alla pagina delle impostazioni di questo plugin. Comunque, qui potrai personalizzare le dimensioni di questo video specifico:"
+
+#: vipers-video-quicktags.php:836
+msgid "Cheatin’ uh?"
+msgstr "Sorpreso... uh?"
+
+#: vipers-video-quicktags.php:1126
+msgid "Settings for this tab reset to defaults."
+msgstr "Ripristina questa sezione alle impostazioni predefinite."
+
+#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
+#. Plugin Name of an extension
+#: vipers-video-quicktags.php:1134
+#: vipers-video-quicktags.php:1148
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:1138
+msgid "Optional Comment"
+msgstr "Opzione commento"
+
+#: vipers-video-quicktags.php:1153
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Donazioni via PayPal per il plugin sviluppato da Viper007Bond"
+
+#: vipers-video-quicktags.php:1163
+msgid "Additional Settings"
+msgstr "Impostazioni aggiuntive"
+
+#: vipers-video-quicktags.php:1169
+msgid "Help"
+msgstr "Info"
+
+#: vipers-video-quicktags.php:1170
+msgid "Credits"
+msgstr "Riconoscimenti"
+
+#: vipers-video-quicktags.php:1178
+msgid "General"
+msgstr "Generale"
+
+#: vipers-video-quicktags.php:1205
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Sei certo di volere ripristinare alle predefinite le impostazioni di questa sezione?"
+
+#: vipers-video-quicktags.php:1217
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Qui puoi impostare i valori predefiniti per questo video. Tutte le impostazioni potranno essere sovrascritte nei singoli video. Vedi la sezione Info . "
+
+#: vipers-video-quicktags.php:1222
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Prova ad utilizzare un browser differente da Internet Explorer. In relazione alle limitazioni del tuo browser, le pagine di configurazione non saranno ricche di funzioni così come potrebbero con Firefox oppure Opera . Qualora cambiassi browser, avresti la possibilità di poter vedere le anteprime aggiornate in tempo reale per ogni modifica che avrai apportato (piuttosto che un numero limitato di opzioni) è molto più."
+
+#: vipers-video-quicktags.php:1377
+#: vipers-video-quicktags.php:1530
+#: vipers-video-quicktags.php:1610
+#: vipers-video-quicktags.php:1722
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Non é stato possibile elaborare l'anteprima dell'URL. Assicurati che sia un URL completo ed altresì valido."
+
+#: vipers-video-quicktags.php:1423
+msgid "Dark Grey"
+msgstr "Grigio scuro"
+
+#: vipers-video-quicktags.php:1424
+msgid "Dark Blue"
+msgstr "Blu scuro"
+
+#: vipers-video-quicktags.php:1425
+msgid "Light Blue"
+msgstr "Blu chiaro"
+
+#: vipers-video-quicktags.php:1426
+msgid "Green"
+msgstr "Verde"
+
+#: vipers-video-quicktags.php:1427
+#: vipers-video-quicktags.php:1755
+msgid "Orange"
+msgstr "Arancione"
+
+#: vipers-video-quicktags.php:1428
+msgid "Pink"
+msgstr "Rosa"
+
+#: vipers-video-quicktags.php:1429
+msgid "Purple"
+msgstr "Porpora"
+
+#: vipers-video-quicktags.php:1430
+msgid "Ruby Red"
+msgstr "Rosso rubino"
+
+#: vipers-video-quicktags.php:1464
+#: vipers-video-quicktags.php:1560
+#: vipers-video-quicktags.php:1646
+#: vipers-video-quicktags.php:1788
+#: vipers-video-quicktags.php:1905
+msgid "Preview"
+msgstr "Anteprima"
+
+#: vipers-video-quicktags.php:1467
+#: vipers-video-quicktags.php:1563
+#: vipers-video-quicktags.php:1649
+#: vipers-video-quicktags.php:1791
+#: vipers-video-quicktags.php:1908
+msgid "Loading..."
+msgstr "In carica..."
+
+#: vipers-video-quicktags.php:1472
+#: vipers-video-quicktags.php:1568
+#: vipers-video-quicktags.php:1654
+#: vipers-video-quicktags.php:1796
+#: vipers-video-quicktags.php:1913
+msgid "Preview URL"
+msgstr "Anteprima URL"
+
+#: vipers-video-quicktags.php:1481
+#: vipers-video-quicktags.php:1577
+#: vipers-video-quicktags.php:1663
+#: vipers-video-quicktags.php:1805
+msgid "pixels"
+msgstr "pixel"
+
+#: vipers-video-quicktags.php:1482
+#: vipers-video-quicktags.php:1578
+#: vipers-video-quicktags.php:1806
+msgid "Maintain aspect ratio"
+msgstr "Mantieni le proporzioni"
+
+#: vipers-video-quicktags.php:1488
+msgid "Border Color"
+msgstr "Colore del bordo"
+
+#: vipers-video-quicktags.php:1491
+#: vipers-video-quicktags.php:1499
+#: vipers-video-quicktags.php:1673
+#: vipers-video-quicktags.php:1681
+#: vipers-video-quicktags.php:1689
+#: vipers-video-quicktags.php:1697
+#: vipers-video-quicktags.php:1815
+#: vipers-video-quicktags.php:1954
+#: vipers-video-quicktags.php:1962
+#: vipers-video-quicktags.php:1970
+#: vipers-video-quicktags.php:1978
+msgid "Pick a color"
+msgstr "Scegli un colore"
+
+#: vipers-video-quicktags.php:1496
+msgid "Fill Color"
+msgstr "Colore riempimento"
+
+#: vipers-video-quicktags.php:1504
+#: vipers-video-quicktags.php:1820
+msgid "Color Presets"
+msgstr "Colori preimpostati"
+
+#: vipers-video-quicktags.php:1508
+msgid "Miscellaneous"
+msgstr "Varie"
+
+#: vipers-video-quicktags.php:1510
+msgid "Enable HD video by default (not to be confused with "HQ" which can't be enabled by default and not all videos are avilable in HD)"
+msgstr "Attiva video HD come predefinita (da non confondersi con "HQ" che non può essere attivato in default poiché non tutti i video sono disponibili in HD)"
+
+#: vipers-video-quicktags.php:1511
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Mostra i dettagli al termine della riproduzione (video correlati, codice embed, etc.)"
+
+#: vipers-video-quicktags.php:1512
+#: vipers-video-quicktags.php:1586
+msgid "Show fullscreen button"
+msgstr "Mostra pulsante a schermo intero"
+
+#: vipers-video-quicktags.php:1513
+msgid "Show border"
+msgstr "Mostra il bordo"
+
+#: vipers-video-quicktags.php:1514
+msgid "Show the search box"
+msgstr "Mostra la casella di ricerca"
+
+#: vipers-video-quicktags.php:1515
+msgid "Show the video title and rating"
+msgstr "Mostra valutazione e titolo del video"
+
+#: vipers-video-quicktags.php:1516
+#: vipers-video-quicktags.php:1587
+#: vipers-video-quicktags.php:1704
+msgid "Autoplay video (not recommended)"
+msgstr "Avvio automatico video (sconsigliato)"
+
+#: vipers-video-quicktags.php:1517
+msgid "Loop video playback"
+msgstr "Diffusione continua del video"
+
+#: vipers-video-quicktags.php:1584
+#: vipers-video-quicktags.php:1702
+msgid "Other"
+msgstr "Altro"
+
+#: vipers-video-quicktags.php:1670
+msgid "Toolbar Background Color"
+msgstr "Colore di sfondo per la barra degli strumenti"
+
+#: vipers-video-quicktags.php:1678
+msgid "Toolbar Glow Color"
+msgstr "Colore interno per la barra degli strumenti"
+
+#: vipers-video-quicktags.php:1686
+msgid "Button/Text Color"
+msgstr "Colore pulsante/testo"
+
+#: vipers-video-quicktags.php:1694
+msgid "Seekbar Color"
+msgstr "Colore barra di ricarica"
+
+#: vipers-video-quicktags.php:1705
+msgid "Show related videos"
+msgstr "Mostra i video correlati"
+
+#: vipers-video-quicktags.php:1754
+msgid "Default (Blue)"
+msgstr "Blu (predefinito)"
+
+#: vipers-video-quicktags.php:1756
+msgid "Lime"
+msgstr "Lime"
+
+#: vipers-video-quicktags.php:1757
+msgid "Fuschia"
+msgstr "Fucsia"
+
+#: vipers-video-quicktags.php:1758
+msgid "White"
+msgstr "Bianco"
+
+#: vipers-video-quicktags.php:1812
+msgid "Color"
+msgstr "Colore"
+
+#: vipers-video-quicktags.php:1824
+msgid "On-Screen Info"
+msgstr "Info on-screen"
+
+#: vipers-video-quicktags.php:1826
+msgid "Portrait"
+msgstr "Ritratto"
+
+#: vipers-video-quicktags.php:1827
+msgid "Title"
+msgstr "Titolo"
+
+#: vipers-video-quicktags.php:1828
+msgid "Byline"
+msgstr "info autore"
+
+#: vipers-video-quicktags.php:1829
+msgid "Allow fullscreen"
+msgstr "Consenti schermo intero"
+
+#: vipers-video-quicktags.php:1916
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "Questa anteprima predefinita del video corrisponde a quella più recente su YouTube. Qualora lo desiderssi, potrai incollare nel campo dell'URL il path ad un tuo file FLV."
+
+#: vipers-video-quicktags.php:1924
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "pixel (qualora tu stessi utilizzando la skin predefinita, aggiungi 20 alla altezza per la barra di controllo)"
+
+#: vipers-video-quicktags.php:1931
+msgid "Skin"
+msgstr "Skin"
+
+#: vipers-video-quicktags.php:1945
+msgid "Use Custom Colors"
+msgstr "Utilizza i colori personalizzati"
+
+#: vipers-video-quicktags.php:1951
+msgid "Control Bar Background Color"
+msgstr "Colore sfondo barra di navigazione"
+
+#: vipers-video-quicktags.php:1959
+msgid "Icon/Text Color"
+msgstr "Colore icona/testo"
+
+#: vipers-video-quicktags.php:1967
+msgid "Icon/Text Hover Color"
+msgstr "Colore hover icona/testo"
+
+#: vipers-video-quicktags.php:1975
+msgid "Video Background Color"
+msgstr "Colore di sfondo per il video "
+
+#: vipers-video-quicktags.php:1983
+msgid "Advanced Parameters"
+msgstr "Parametri avanzati"
+
+#: vipers-video-quicktags.php:1986
+#: vipers-video-quicktags.php:2308
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Lista delle query-string style e variabili per i parametri addizionali utilizzabili con il player. Esempio: %3$s"
+
+#: vipers-video-quicktags.php:1987
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Dovrai quindi premere "Salva le modifiche" affinché questi parametri possano essere aggiornati."
+
+#: vipers-video-quicktags.php:2023
+msgid "Video Alignment"
+msgstr "Allineamento video"
+
+#: vipers-video-quicktags.php:2028
+msgid "Left"
+msgstr "Sinistra"
+
+#: vipers-video-quicktags.php:2029
+msgid "Center"
+msgstr "Centro"
+
+#: vipers-video-quicktags.php:2030
+msgid "Right"
+msgstr "Destra"
+
+#: vipers-video-quicktags.php:2031
+msgid "Float Left"
+msgstr "Flottante sx"
+
+#: vipers-video-quicktags.php:2032
+msgid "Float Right"
+msgstr "Flottante dx"
+
+#: vipers-video-quicktags.php:2044
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Mostra i pulsanti nell'editor online"
+
+#: vipers-video-quicktags.php:2049
+msgid "1"
+msgstr "1"
+
+#: vipers-video-quicktags.php:2050
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (Kitchen Sink Toolbar)"
+
+#: vipers-video-quicktags.php:2051
+msgid "3 (Default)"
+msgstr "3 (Predefinito)"
+
+#: vipers-video-quicktags.php:2063
+msgid "Feed Text"
+msgstr "Testo per il feed"
+
+#: vipers-video-quicktags.php:2066
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "E' possibile inserire nel tuo feed alcune righe di testo in sostituzione dei video (qualora non potessi inserire dei video nei feed). Lascia in bianco per la versione predefinita (vedi sotto): %s"
+
+#: vipers-video-quicktags.php:2070
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: vipers-video-quicktags.php:2072
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Prova ad utilizzare il Windows Media Player per la riproduzione dei video per gli utenti Windows"
+
+#: vipers-video-quicktags.php:2077
+msgid "Advanced Settings"
+msgstr "Impostazioni avanzate"
+
+#: vipers-video-quicktags.php:2079
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Non sapessi bene come operare in questa sezione, mi permetto di suggerirti di ignorarla. "
+
+#: vipers-video-quicktags.php:2083
+msgid "Dynamic QTObject Loading"
+msgstr "Carica Dynamic QTObject"
+
+#: vipers-video-quicktags.php:2085
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Carica solamente il file Javascript se necessario. Disabilita per questo articolo i video Quicktime dal testo del widget nella sidebar. "
+
+#: vipers-video-quicktags.php:2090
+msgid "Custom CSS"
+msgstr "CSS personalizzato"
+
+#: vipers-video-quicktags.php:2092
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Desideri impostare con facilità un CSS personalizzato per mostrare i video? Clicca sul testo per espandere questa opzione."
+
+#: vipers-video-quicktags.php:2094
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Puoi inserire il CSS personalizzato nella casella qui sotto. Sarà prodotto sovrascrivendo il CSS predefinito che puoi vedere qui sotto %1$s. Per supporto ed esempi vari, vai alla sezione Info ."
+
+#: vipers-video-quicktags.php:2137
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Clicca su di una domanda per poter vedere la risposta oppure clicca su questo testo per espandere tutte le risposte."
+
+#: vipers-video-quicktags.php:2141
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Nel mio blog vengono mostrati solamente i link ai video e non il player. Perché?"
+
+#: vipers-video-quicktags.php:2144
+msgid "Here are five common causes:"
+msgstr "Ecco cinque cause comuni:"
+
+#: vipers-video-quicktags.php:2146
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Stai utilizzando Firefox ed AdBlock? Il componente aggiuntivo AdBlock ed alcune regole di blocco possono sortire degli effetti sui video, nel particolare quelli allocati su YouTube non verranno caricati. Disattiva AdBlock oppure passa alla versione AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2147
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "Manca nel tuo tema <?php wp_head();?> all'interno del tag <head> e ciò significa che il file Javascript richiesto non potrà essere aggiunto in automatico. Se così fosse, potresti visualizzare un messaggio di avvertimento (finestra pop-up) qualora tentassi di vedere un articolo contenente un video (ammesso che tu non abbia anche il problema n°3). Modifica il file header.php del tuo tema ed aggiungi la chiamata giusto prima del tag di chiusura </head>"
+
+#: vipers-video-quicktags.php:2148
+#: vipers-video-quicktags.php:2154
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Potresti avere la funzione Javascript disabilitata. Questo plugin incorpora i video via Javascript per poter assicurare il massimo risultato ottenibile. Vai qui per leggere come attivarla ."
+
+#: vipers-video-quicktags.php:2149
+#: vipers-video-quicktags.php:2155
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Potresti non avere installato l'ultima versione di Flash. Vai qui per l'installazione ."
+
+#: vipers-video-quicktags.php:2153
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Stai utilizzando Firefox ed AdBlock? Il componente aggiuntivo AdBlock ed alcune regole di blocco possono sortire degli effetti sui video, nel particolare quelli allocati su YouTube non verranno caricati. Disattiva AdBlock oppure passa alla versione AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2161
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Dove posso trovare il codice per poter incorporare un video Viddler?"
+
+#: vipers-video-quicktags.php:2163
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Dal momento in cui l'URL ad un video su Viddler non ha più nulla a che vedere con l'URL incorporato, dovrai utilizzare lo stile di formato WordPress.com. Vai al video su Viddler, clicca il pulsante "Embed This" che si trova sotto al video quindi, seleziona il formato WordPress.com. Incolla direttamente quel codice dentro una pagina/articolo ed il video sarà di conseguenza incorporato."
+
+#: vipers-video-quicktags.php:2168
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Dove posso trovare il codice per poter incorporare un video Blip.tv?"
+
+#: vipers-video-quicktags.php:2170
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Dal momento in cui l'URL ad un video su Blip.tv non ha più nulla a che vedere con l'URL incorporato, dovrai utilizzare lo stile di formato WordPress.com. Vai al video su Blip.tv, clicca sul menu a tendina giallo "Share" posizionato alla destra del video e seleziona la voce "Embed". Quindi seleziona "WordPress.com" dal menu a tendina "Show Player". In ultimo, premi su "Go". Incolla direttamente quel codice dentro una pagina/articolo ed il video sarà di conseguenza incorporato."
+
+#: vipers-video-quicktags.php:2172
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "NOTA: Ignora il messaggio di allarme. Questo plugin funziona non solo per WordPress.com quindi, funzionerà anche per il tuo blog."
+
+#: vipers-video-quicktags.php:2176
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Perché questo plugin non supporta un sito dal quale avrei il piacere di utilizzare i video?"
+
+#: vipers-video-quicktags.php:2178
+msgid "There's a couple likely reasons:"
+msgstr "Ci sono un paio di probabili ragioni:"
+
+#: vipers-video-quicktags.php:2180
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "Il sito potrebbe far uso di un URL incorporato che non ha nulla in comune con l'URL presente nella tua barra per gli indirizzi. Ciò significa che sebbene tu fornisca a questo plugin l'URL del video, VVQ non sarà in grado di incorporare l'URL."
+
+#: vipers-video-quicktags.php:2181
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "Il sito potrebbe essere poco conosciuto, in via sperimentale, etc. per poter essere supportato. Non credo sia particolarmente utile che questo plugin supporti dei servizi video utilizzati da un solo paio di utenti."
+
+#: vipers-video-quicktags.php:2182
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Potrei non cosnoscere il sito. Invia un messaggio a my forums con un link di esempio affinché io possa dargli una occhiata."
+
+#: vipers-video-quicktags.php:2184
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Questo plugin non é in grado di incorporare alcun video Flash. Vai a Domande su Flash shortcode per maggiori dettagli in merito."
+
+#: vipers-video-quicktags.php:2188
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "C'é ancora un po' di colore rosso (sensibilità nei pulsanti) nel mio player YouTube. Cosa posso fare?"
+
+#: vipers-video-quicktags.php:2190
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube non offre la possibilità di modificare quel colore."
+
+#: vipers-video-quicktags.php:2194
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Come posso modificare la dimensione, il colore, etc. per un video specifico?"
+
+#: vipers-video-quicktags.php:2196
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Puoi regolare molte cose grazie al sistema shortcode di WordPress che utilizzi per poter inserire i video nei tuoi articoli. Gli shortcode sono simili al BBCode . Ecco alcuni esempi di shortcode:"
+
+#: vipers-video-quicktags.php:2202
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Ogni valore che non sia stato inserito farà riferimento a quelli predefiniti. "
+
+#: vipers-video-quicktags.php:2206
+#: vipers-video-quicktags.php:2222
+#: vipers-video-quicktags.php:2232
+#: vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2261
+#: vipers-video-quicktags.php:2271
+#: vipers-video-quicktags.php:2277
+#: vipers-video-quicktags.php:2297
+#: vipers-video-quicktags.php:2313
+#: vipers-video-quicktags.php:2327
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Quali sono i parametri shortcode disponibili per %s?"
+
+#: vipers-video-quicktags.php:2209
+#: vipers-video-quicktags.php:2225
+#: vipers-video-quicktags.php:2235
+#: vipers-video-quicktags.php:2250
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2291
+#: vipers-video-quicktags.php:2300
+#: vipers-video-quicktags.php:2317
+#: vipers-video-quicktags.php:2331
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — larghezza in pixel"
+
+#: vipers-video-quicktags.php:2210
+#: vipers-video-quicktags.php:2226
+#: vipers-video-quicktags.php:2236
+#: vipers-video-quicktags.php:2251
+#: vipers-video-quicktags.php:2265
+#: vipers-video-quicktags.php:2281
+#: vipers-video-quicktags.php:2292
+#: vipers-video-quicktags.php:2301
+#: vipers-video-quicktags.php:2318
+#: vipers-video-quicktags.php:2332
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — altezza in pixel"
+
+#: vipers-video-quicktags.php:2211
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — colore bordo del player in esagesimale"
+
+#: vipers-video-quicktags.php:2212
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — colore riempimento del player in esagesimale"
+
+#: vipers-video-quicktags.php:2213
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — mostra bordo oppure no (0 o 1)"
+
+#: vipers-video-quicktags.php:2214
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — mostra video correlati, URL, dettagli embed, etc. in coda alla riproduzione (0 o 1)"
+
+#: vipers-video-quicktags.php:2215
+#: vipers-video-quicktags.php:2256
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — mostra pulsante a schermo intero (0 o 1)"
+
+#: vipers-video-quicktags.php:2216
+#: vipers-video-quicktags.php:2227
+#: vipers-video-quicktags.php:2241
+#: vipers-video-quicktags.php:2266
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — avvio automatico della riproduzione (0 o 1)"
+
+#: vipers-video-quicktags.php:2217
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — riproduzione continua (0 o 1)"
+
+#: vipers-video-quicktags.php:2237
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — colore sfondo barra degli strumenti in esagesimale"
+
+#: vipers-video-quicktags.php:2238
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — colore interno barra degli strumenti in esagesimale"
+
+#: vipers-video-quicktags.php:2239
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — colore pulsante/testo in esagesimale"
+
+#: vipers-video-quicktags.php:2240
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — colore barra di ricarica in esagesimale"
+
+#: vipers-video-quicktags.php:2242
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — mostra video correlati (0 o 1)"
+
+#: vipers-video-quicktags.php:2252
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — colore del player in esagesimale"
+
+#: vipers-video-quicktags.php:2253
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — mostra immagine caricamento (0 o 1)"
+
+#: vipers-video-quicktags.php:2254
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — mostra il titolo del video (0 o 1)"
+
+#: vipers-video-quicktags.php:2255
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — mostra l'autore del video (0 o 1)"
+
+#: vipers-video-quicktags.php:2273
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "Dal momento in cui il formato shortcode di WordPress.com é utilizzato per incorporare i video di Viddler, non é più possibile personalizzare i parametri shortcode per Viddler. Lo shortcode di WordPress.com dovrà essere utilizzato come se fosse l'URL del video poiché l'URL incorporato del video non ha nulla a che vedere con la condivisione."
+
+#: vipers-video-quicktags.php:2282
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — mostra i dettagli del video (0 o 1), predefinito a 1"
+
+#: vipers-video-quicktags.php:2287
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Quali sono i parametri shortcode disponibili per Metacafe, Blip.tv, IFILM/Spike e per MySpace?"
+
+#: vipers-video-quicktags.php:2289
+msgid "All of these video formats only support the following:"
+msgstr "Questi formati video supportano:"
+
+#: vipers-video-quicktags.php:2302
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — l'URL alla immagine di anteprima ha come predefinito lo stesso URL del file video con .jpg al posto di .flv"
+
+#: vipers-video-quicktags.php:2303
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — colore di sfondo per la barra del player in esagesimale"
+
+#: vipers-video-quicktags.php:2304
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — colore icona/testo del player in esagesimale"
+
+#: vipers-video-quicktags.php:2305
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — colore icona/testo hover del player in esagesimale"
+
+#: vipers-video-quicktags.php:2306
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — colore di sfondo del video player in esagesimale"
+
+#: vipers-video-quicktags.php:2307
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — percentuale volume, predefinita a 100"
+
+#: vipers-video-quicktags.php:2308
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: vipers-video-quicktags.php:2315
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "I risultati ottenibili nell'incorporare un video Quicktime possono dipendere ampiamente dal computer in uso e da quale tipo di software ha installato l'utente. Comunque, desiderassi incorporare un video Quicktime, ecco i parametri:"
+
+#: vipers-video-quicktags.php:2319
+#: vipers-video-quicktags.php:2322
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — avvio automatico della riproduzione (0 o 1), predefinito a 0"
+
+#: vipers-video-quicktags.php:2320
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — usa click-to-play immagine segnaposto (0 o 1), predefinito a 0"
+
+#: vipers-video-quicktags.php:2321
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — l'URL alla immagine segnaposto ha come predefinito lo stesso URL del file video con .jpg al posto di .mov"
+
+#: vipers-video-quicktags.php:2327
+msgid "video file"
+msgstr "file video"
+
+#: vipers-video-quicktags.php:2329
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "I risultati ottenibili nell'incorporare un video generico possono dipendere ampiamente dal computer in uso e da quale tipo di software ha installato l'utente. Comunque, desiderassi incorporare un video generico, ecco i parametri:"
+
+#: vipers-video-quicktags.php:2333
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — prova ad utilizzare Windows Media Player per gli utenti Windows (0 o 1)"
+
+#: vipers-video-quicktags.php:2339
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "A cosa serve la voce "CSS personalizzato" che appare nella sezione "Impostazioni aggiuntive"?"
+
+#: vipers-video-quicktags.php:2341
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "E' un modo semplice e rapido per poter modificare l'aspetto dei video pubblicati nel tuo sito senza avere la necessità di dover modificare il file style.css. Inserisci nella casella il tuo CSS di preferenza e le modifiche verranno apportate direttamente nella testata (header.php) del tuo tema."
+
+#: vipers-video-quicktags.php:2342
+msgid "Some examples:"
+msgstr "Alcuni esempi:"
+
+#: vipers-video-quicktags.php:2344
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Inserire un bordo rosso per tutti i video: %s"
+
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Flottante a sinistra solo per i video YouTube: %s"
+
+#: vipers-video-quicktags.php:2351
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Come posso incorporare un file Flash generico o un video da un sito non supportato da questo plugin?"
+
+#: vipers-video-quicktags.php:2353
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "Questo plugin fornisce uno %s shortcode che può essere utilizzato per ogni file Flash. Ecco il formato:"
+
+#: vipers-video-quicktags.php:2358
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Perché il tuo plugin incorpora i video Quicktime e gli altri file video comuni in un modo così scarso?"
+
+#: vipers-video-quicktags.php:2360
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Incorporare Quiktime e gli altri file video comuni non é semplice inoltre, é particolarmente difficile fare sì che essi possano essere utilizzabili con tutti i browser e sistemi operativi vari. Mi permetto fortemente di suggerire la conversione dei file nel formato Flash Video oppure nel formato H.264 e quindi utilizzare il Flash Video (FLV). Esiste un buon numero di convertitori gratuiti in grado di operare su di entrambi i formati in modo tale che tu possa sempre offrire ai tuoi visitatori un servizio migliore."
+
+#: vipers-video-quicktags.php:2369
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Questo plugin fa uso di molti script e package scritti da altri. A tutti loro va il merito di una citazione (in ordine sparso):"
+
+#: vipers-video-quicktags.php:2372
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "Gli autori e collaboratori del SWFObject utilizzato per poter incorporare i video basati su Flash."
+
+#: vipers-video-quicktags.php:2373
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering per la scrittura del JW FLV Media Player utilizzato per la riproduzione in FLV."
+
+#: vipers-video-quicktags.php:2374
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens per la scrittura di Farbtastic , il fantastico Javascript color picker utilizzato da questo plugin."
+
+#: vipers-video-quicktags.php:2375
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh per la scrittura di Liz Comment Counter (il plugin che mi ha fatto conoscere il Farbtastic) e per la fornitura di alcuni Javascript di base per poter realizzare il color picker ed il codice per i colori predefiniti."
+
+#: vipers-video-quicktags.php:2376
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz per l'aiuto con alcuni Javascript relazionati al TinyMCE e per tutto il tempo che mi ha fatto risparmiare."
+
+#: vipers-video-quicktags.php:2377
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns per la scrittura del QTObject utilizzato per poter incorporare i video Quicktime."
+
+#: vipers-video-quicktags.php:2378
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James per avere realizzato il Silk icon pack . Questo plugin fa uso di almeno una delle icone da lui create."
+
+#: vipers-video-quicktags.php:2379
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "Gli autori e collaboratori di jQuery , il meraviglioso Javascript package utilizzato da WordPress."
+
+#: vipers-video-quicktags.php:2380
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Chiunque abbia contribuito alla creazione di WordPress poiché senza di esso e la sua eccellente API questo plugin non sarebbe mai esistito."
+
+#: vipers-video-quicktags.php:2381
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Ultimo ma non meno importante, a tutti coloro i quali hanno contribuito segnalandomi delle imperfezioni e delle nuove opzioni per questo plugin."
+
+#: vipers-video-quicktags.php:2384
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "Ecco l'elenco delle persone che hanno piacevolmente contribuito alla traduzione di questo plugin:"
+
+#: vipers-video-quicktags.php:2387
+#, php-format
+msgid "Belorussian: %s"
+msgstr "Bielorusso: %s"
+
+#: vipers-video-quicktags.php:2388
+#, php-format
+msgid "Brazilian Portuguese: %s"
+msgstr "Portoghese brasiliano: %s"
+
+#: vipers-video-quicktags.php:2389
+#, php-format
+msgid "Chinese: %s"
+msgstr "Cinese: %s"
+
+#: vipers-video-quicktags.php:2390
+#, php-format
+msgid "Danish: %s"
+msgstr "Danese: %s"
+
+#: vipers-video-quicktags.php:2391
+#, php-format
+msgid "Dutch: %s"
+msgstr "Olandese: %s"
+
+#: vipers-video-quicktags.php:2392
+#, php-format
+msgid "French: %s"
+msgstr "Francese: %s"
+
+#: vipers-video-quicktags.php:2393
+#, php-format
+msgid "Hungarian: %s"
+msgstr "Ungherese: %s"
+
+#: vipers-video-quicktags.php:2394
+#, php-format
+msgid "Italian: %s"
+msgstr "Italiano: %s"
+
+#: vipers-video-quicktags.php:2395
+#, php-format
+msgid "Polish: %s"
+msgstr "Polacco: %s"
+
+#: vipers-video-quicktags.php:2396
+#, php-format
+msgid "Russian: %s"
+msgstr "Russo: %s"
+
+#: vipers-video-quicktags.php:2397
+#, php-format
+msgid "Spanish: %s"
+msgstr "Spagnolo: %s"
+
+#: vipers-video-quicktags.php:2400
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Qualora preferissi utilizzare questo plugin in un'altra lingua ed il tuo nominativo apparisse nella lista, traduci le stringhe contenute nel template file allocato nella cartella "localization" e quindi inviamelo . Per ulteriori informazioni, consulta il WordPress Codex ."
+
+#: vipers-video-quicktags.php:2407
+msgid "Click the above links to switch between tabs."
+msgstr "Clicca sui link qui sopra per visionare le sezioni."
+
+#: vipers-video-quicktags.php:2440
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"Accetti i termini della licenza Creative Commons Attribution-Noncommercial-Share Alike 3.0? Vai al link alla tua sinistra per ulteriori informazioni.\n"
+"\n"
+"Con altre parole, non potrai utilizzare il JW's FLV Media Player con un sito commerciale previo acquisto di una licenza commerciale."
+
+#: vipers-video-quicktags.php:2451
+msgid "Media Type"
+msgstr "Tipo di media"
+
+#: vipers-video-quicktags.php:2452
+msgid "Show Editor Button?"
+msgstr "Desideri il pulsante nell'editor?"
+
+#: vipers-video-quicktags.php:2453
+msgid "Default Width"
+msgstr "Larghezza predefinita"
+
+#: vipers-video-quicktags.php:2454
+msgid "Default Height"
+msgstr "Altezza predefinita"
+
+#: vipers-video-quicktags.php:2455
+msgid "Keep Aspect Ratio?"
+msgstr "Desideri mantenere le proporzioni?"
+
+#: vipers-video-quicktags.php:2584
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: vipers-video-quicktags.php:2601
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commercial website ."
+msgstr "Il JW's FLV Media Player é sotto una licenza Creative Commons Noncommercial ciò significa che tu non potrai utilizzarlo con un sito commerciale ."
+
+#: vipers-video-quicktags.php:2616
+msgid "Generic Video File"
+msgstr "File video generico"
+
+#: vipers-video-quicktags.php:2616
+#, php-format
+msgid "This part of the plugin is fairly buggy as embedding video files is complex. Consider trying TinyMCE's native video embedder instead. Why? "
+msgstr "Questa sezione del plugin é ancora in fase sperimentale e potrebbe creare dei problemi qualora si desiderasse incorporare dei file video. Prova invece ad utilizzare la funzione nativa del TinyMCE. Perché? "
+
+#: vipers-video-quicktags.php:2631
+msgid "Save Changes"
+msgstr "Salva le modifiche"
+
+#: vipers-video-quicktags.php:2632
+msgid "Reset Tab To Defaults"
+msgstr "Ripristina la sezione ai valori predefiniti"
+
+#: vipers-video-quicktags.php:2693
+#, php-format
+msgid "ERROR: %s"
+msgstr "ERRORE: %s"
+
+#: vipers-video-quicktags.php:2755
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 non esiste più quindi, i video da Stage6 non potranno essere riprodotti."
+
+#: vipers-video-quicktags.php:2772
+#: vipers-video-quicktags.php:2876
+#: vipers-video-quicktags.php:2924
+#: vipers-video-quicktags.php:2988
+#: vipers-video-quicktags.php:3052
+#: vipers-video-quicktags.php:3150
+#: vipers-video-quicktags.php:3266
+#: vipers-video-quicktags.php:3312
+#: vipers-video-quicktags.php:3353
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Nessun URL o video ID é approvato dal %s BBCode"
+
+#: vipers-video-quicktags.php:2802
+#: vipers-video-quicktags.php:2810
+#: vipers-video-quicktags.php:2895
+#: vipers-video-quicktags.php:2948
+#: vipers-video-quicktags.php:3010
+#: vipers-video-quicktags.php:3084
+#: vipers-video-quicktags.php:3167
+#: vipers-video-quicktags.php:3284
+#: vipers-video-quicktags.php:3329
+#: vipers-video-quicktags.php:3370
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Impossibile elaborare l'URL, controlla che il formato %s sia corretto"
+
+#: vipers-video-quicktags.php:2814
+#: vipers-video-quicktags.php:2821
+msgid "YouTube Preview Image"
+msgstr "Immagine anteprima YouTube"
+
+#: vipers-video-quicktags.php:3114
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Purtroppo, l'unico formato supportato per Viddler é quello in stile WordPress.com piuttosto che quello via URL. Puoi trovarlo nella finestra "Embed This"."
+
+#: vipers-video-quicktags.php:3133
+#: vipers-video-quicktags.php:3207
+#: vipers-video-quicktags.php:3238
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "E' stato utilizzato un formato shortcode %s non valido. Controlla il codice."
+
+#: vipers-video-quicktags.php:3140
+#: vipers-video-quicktags.php:3215
+#: vipers-video-quicktags.php:3249
+#: vipers-video-quicktags.php:3614
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Attiva Javascript e Flash per poter vedere questo %3$s video."
+
+#: vipers-video-quicktags.php:3190
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Purtroppo, l'unico formato supportato per Blip.tv é quello in stile WordPress.com. Puoi trovarlo sotto Share -> Embed -> WordPress.com."
+
+#: vipers-video-quicktags.php:3238
+#: vipers-video-quicktags.php:3249
+msgid "VideoPress"
+msgstr "VideoPress"
+
+#: vipers-video-quicktags.php:3394
+#: vipers-video-quicktags.php:3488
+#: vipers-video-quicktags.php:3534
+#: vipers-video-quicktags.php:3584
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "Nessun URL é approvato dal %s BBCode"
+
+#: vipers-video-quicktags.php:3584
+msgid "generic Flash embed"
+msgstr "Incorpora Flash generico"
+
+#: vipers-video-quicktags.php:3614
+msgid "Flash"
+msgstr "Flash"
+
+#. Plugin URI of an extension
+msgid "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+msgstr "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+
+#. Description of an extension
+msgid "Easily embed videos from various video websites such as YouTube, DailyMotion, and Vimeo into your posts."
+msgstr "Inserisci con grande facilità nei tuoi articoli i video offerti da YouTube, DailyMotion, e Vimeo."
+
+#. Author of an extension
+msgid "Viper007Bond"
+msgstr "Viper007Bond"
+
+#. Author URI of an extension
+msgid "http://www.viper007bond.com/"
+msgstr "http://www.viper007bond.com/"
+
+#~ msgid ""
+#~ "WARNING: If you use the FLV embed feature of Viper's "
+#~ "Video Quicktags, there is a bug in WordPress with the FTP method of "
+#~ "upgrading plugins. It will not upload the .swf files "
+#~ "properly. If you do embed FLV files, please manually "
+#~ "download the plugin and upload the files to your server. If you don't "
+#~ "embed FLV files (and only embed YouTube, etc. videos), you can safely "
+#~ "ignore this message and upgrade automatically."
+#~ msgstr ""
+#~ "ATTENZIONE: Qualora tu stessi utilizzando l'opzione per "
+#~ "l'embed FLV di Viper's Video Quicktags, WordPress contiene un errore di "
+#~ "programmazione in merito al metodo FTP durante l'aggiornamento del "
+#~ "plugin. Il file .swf non verrà caricato correttamente. "
+#~ "Qualora tu avessi incorporato dei file FLV, scarica "
+#~ "manualmente il plugin ed effettua tu stesso l'upload dei file nel tuo "
+#~ "server. Nel momento in cui tu non facessi utilizzo dei file FLV "
+#~ "(incorporando ad esempio solamente i video da YouTube, etc.), ti invito "
+#~ "ad ignorare questo messaggio ed effettuare con tutta tranquillità ogni "
+#~ "aggiornamento in automatico."
+#~ msgid "WordPress.com"
+#~ msgstr "WordPress.com"
+#~ msgid "Video Format"
+#~ msgstr "Formato del video"
+#~ msgid "Low Quality FLV (smallest download) — YouTube Default"
+#~ msgstr ""
+#~ "FLV a Bassa Qualità (piccola dimensione download) — YouTube "
+#~ "Predefinito"
+#~ msgid "High Quality MP4 (medium download) — Plugin Default"
+#~ msgstr ""
+#~ "MP4 ad Alta Qualità (media dimensione download) — Plugin "
+#~ "Predefinito"
+#~ msgid "High Quality FLV (largest download)"
+#~ msgstr "FLV ad Alta Qualità (grande dimensione download)"
+#~ msgid ""
+#~ "%s — quality value for video playback (0 for low "
+#~ "quality FLV, 18 for high quality MP4, 6 for "
+#~ "high quality FLV)"
+#~ msgstr ""
+#~ "%s — valore della qualità per il video playback (0 per "
+#~ "FLV a bassa qualità, 18 per MP4 a media qualità, 6"
+#~ "code> per FLV ad alta qualità)"
+#~ msgid ""
+#~ "Site Administrator: Your theme is missing inside of "
+#~ "it's which is required for Viper's Video Quicktags. Please edit "
+#~ "your theme's header.php and add it right before ."
+#~ msgstr ""
+#~ "Amministratore del sito: il tuo tema é privo di "
+#~ "all'interno del tag necessario per il funzionamento di Viper's "
+#~ "Video Quicktags. Modifica il file header.php del tuo tema ed aggiungilo "
+#~ "prima del tag di chiusura ."
+#~ msgid ""
+#~ "You need to enable Javascript for this preview to work!"
+#~ msgstr ""
+#~ "E' necessario che sia attivato Javascript affinché "
+#~ "l'anteprima possa funzionare!"
+#~ msgid ""
+#~ "Use high quality versions if available (the drawback is a longer download)"
+#~ msgstr ""
+#~ "Utilizza se disponibili le versioni ad alta qualità (il tempo di ricarica "
+#~ "sarà maggiore)"
+#~ msgid ""
+#~ "Why aren't any buttons showing up for me in TinyMCE (the rich editor)?"
+#~ msgstr "Perché non c'é alcun pulsante nel TinyMCE (editor avanzato)?"
+#~ msgid ""
+#~ "Your browser is likely caching TinyMCE. Please go to the Write screen and then reload the page while "
+#~ "bypassing your browser cache ."
+#~ msgstr ""
+#~ "Potrebbe dipendere dal tuo browser. Vai alla sezione Scrivi quindi, ricarica la pagina per by-passare "
+#~ "la cache del browser ."
+#~ msgid ""
+#~ "Please also check to make sure that you installed the plugin properly. It "
+#~ "needs to be in a subfolder called vipers-video-quicktags and "
+#~ "there should be multiple folders as well as files inside of that folder."
+#~ msgstr ""
+#~ "Assicurati inoltre di avere intallato correttamente il plugin. E' "
+#~ "necessario che esso sia allocato in una sotto-cartella a nome "
+#~ "vipers-video-quicktags contenente tutte le cartelle "
+#~ "necessarie."
+#~ msgid ""
+#~ "Your theme could be missing <?php wp_footer();?> "
+#~ "inside of it's footer.php file which means the required "
+#~ "Javascript can't be added. Edit your theme's footer.php file "
+#~ "and add it inside of your footer <div> or whatever. "
+#~ "You can also just add it right before </body> if you "
+#~ "wish."
+#~ msgstr ""
+#~ "Il tuo tema potrebbe non avere <?php wp_footer();?> "
+#~ "nel file footer.php e ciò indica che il Javascript richiesto "
+#~ "non può essere aggiunto. Modifica il file footer.php del tuo "
+#~ "tema aggiungendo la chiamata all'interno del tag <div>"
+#~ "code>. Potrai inoltre aggiungerla prima della tag di chiusura </"
+#~ "body>."
+#~ msgid ""
+#~ "%s — use high video quality if available (0 or "
+#~ "1)"
+#~ msgstr ""
+#~ "%s — utilizza, se disponibile, video di alta qualità (0"
+#~ "code> o 1)"
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-nl_NL.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-nl_NL.mo
new file mode 100644
index 00000000..16590184
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-nl_NL.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-nl_NL.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-nl_NL.po
new file mode 100644
index 00000000..e0592f7c
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-nl_NL.po
@@ -0,0 +1,1333 @@
+msgid ""
+msgstr ""
+"Project-Id-Versie: Viper's Video Quicktags v6.1.x\n"
+"Rapporteer-Msgid-fouten-naar: \n"
+"POT-Aanmaak-Datum: 21-09-2008 23:52-0800\n"
+"PO-Revisie-Datum: \n"
+"Laatste-Vertaler: Viper007Bond \n"
+"Taal-Team: \n"
+"MIME-Versie: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Dutch\n"
+"X-Poedit-Country: Netherlands\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Map: D:\\Webserver\\htdocs\\plugindev\\wp-content\\plugins\\vipers-video-quicktags\n"
+"X-Poedit-ZoekMap-0: .\n"
+
+#: vipers-video-quicktags.php:378
+#: vipers-video-quicktags.php:1375
+msgid "Default"
+msgstr "Standaard"
+
+#: vipers-video-quicktags.php:379
+msgid "3D Pixel Style"
+msgstr "3D Pixel stijl"
+
+#: vipers-video-quicktags.php:380
+msgid "Atomic Red"
+msgstr "Atoom Rood"
+
+#: vipers-video-quicktags.php:381
+msgid "Comet"
+msgstr "Komeet"
+
+#: vipers-video-quicktags.php:382
+msgid "Control Panel"
+msgstr "Conifguratiescherm"
+
+#: vipers-video-quicktags.php:383
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: vipers-video-quicktags.php:384
+msgid "Fashion"
+msgstr "Fashion"
+
+#: vipers-video-quicktags.php:385
+msgid "Festival"
+msgstr "Festival"
+
+#: vipers-video-quicktags.php:386
+msgid "Ice Cream Sneaka"
+msgstr "IJskoude Sneaker"
+
+#: vipers-video-quicktags.php:387
+msgid "Kleur"
+msgstr "Kleur"
+
+#: vipers-video-quicktags.php:388
+msgid "Magma"
+msgstr "Magma"
+
+#: vipers-video-quicktags.php:389
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: vipers-video-quicktags.php:390
+msgid "Nacht"
+msgstr "Nacht"
+
+#: vipers-video-quicktags.php:391
+msgid "Neon"
+msgstr "Neon"
+
+#: vipers-video-quicktags.php:392
+msgid "Pearlized"
+msgstr "Geparaliseerd"
+
+#: vipers-video-quicktags.php:393
+msgid "Pixelize"
+msgstr "Gepixeld"
+
+#: vipers-video-quicktags.php:394
+msgid "Play Casso"
+msgstr "Kunstzinnig"
+
+#: vipers-video-quicktags.php:395
+msgid "Schoon"
+msgstr "Schoon"
+
+#: vipers-video-quicktags.php:396
+msgid "Silvery White"
+msgstr "Zilver Wit"
+
+#: vipers-video-quicktags.php:397
+msgid "Snel"
+msgstr "Snel"
+
+#: vipers-video-quicktags.php:398
+msgid "Stijl"
+msgstr "Stijl"
+
+#: vipers-video-quicktags.php:399
+msgid "Traganja"
+msgstr "Traganja"
+
+#: vipers-video-quicktags.php:406
+#, php-format
+msgid "This version of Viper's Video Quicktags requires WordPress 2.6 or newer. Please upgrade or use the legacy version of this plugin."
+msgstr "Deze versie van Viper's Video Quicktags vereist WordPress 2.6 of recenter. Upgrade of gebruik de oudere versie van deze plugin."
+
+#: vipers-video-quicktags.php:414
+#, php-format
+msgid "WARNING: If you use the FLV embed feature of Viper's Video Quicktags, there is a bug in WordPress with the FTP method of upgrading plugins. It will not upload the .swf files properly. If you do embed FLV files, please manually download the plugin and upload the files to your server. If you don't embed FLV files (and only embed YouTube, etc. videos), you can safely ignore this message and upgrade automatically."
+msgstr "WAARSCHUWING: Als je de embed functie van Viper's Quicktags gebruikt, er is een foutje in WordPress met de FTP manier van opwaarderen van plugins. Het uploaden van de .swf gaat niet goed. Als je FLV bestanden embed, download dan handmatig de plugin en stuur deze naar de server. Als je geen FLV bestanden embed (maar alleen YouTube enz. video's), dan kun je deze waarschuwing zonder problemen negeren en automatisch upgraden."
+
+#: vipers-video-quicktags.php:420
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Viper's Video Quicktags Instellingen"
+
+#: vipers-video-quicktags.php:420
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+#: vipers-video-quicktags.php:431
+msgid "Settings"
+msgstr "Instellingen"
+
+#: vipers-video-quicktags.php:510
+#: vipers-video-quicktags.php:1121
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2420
+#: vipers-video-quicktags.php:2707
+#: vipers-video-quicktags.php:2731
+#: vipers-video-quicktags.php:2739
+#: vipers-video-quicktags.php:2824
+msgid "YouTube"
+msgstr "Youtube"
+
+#: vipers-video-quicktags.php:511
+msgid "Embed a video from YouTube"
+msgstr "Embed een video vanaf Youtube"
+
+#: vipers-video-quicktags.php:512
+#: vipers-video-quicktags.php:518
+#: vipers-video-quicktags.php:524
+#: vipers-video-quicktags.php:530
+#: vipers-video-quicktags.php:536
+#: vipers-video-quicktags.php:548
+#: vipers-video-quicktags.php:560
+#: vipers-video-quicktags.php:566
+#: vipers-video-quicktags.php:572
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Geef de link waar de video bekeken kan worden."
+
+#: vipers-video-quicktags.php:516
+#: vipers-video-quicktags.php:1122
+#: vipers-video-quicktags.php:2189
+#: vipers-video-quicktags.php:2433
+#: vipers-video-quicktags.php:2784
+#: vipers-video-quicktags.php:2798
+msgid "Google Video"
+msgstr "Google Video"
+
+#: vipers-video-quicktags.php:517
+msgid "Embed a video from Google Video"
+msgstr "Embed een video vanaf Google Video"
+
+#: vipers-video-quicktags.php:522
+#: vipers-video-quicktags.php:1123
+#: vipers-video-quicktags.php:2199
+#: vipers-video-quicktags.php:2446
+#: vipers-video-quicktags.php:2844
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: vipers-video-quicktags.php:523
+msgid "Embed a video from DailyMotion"
+msgstr "Embed een video vanaf DailyMotion"
+
+#: vipers-video-quicktags.php:528
+#: vipers-video-quicktags.php:1124
+#: vipers-video-quicktags.php:2214
+#: vipers-video-quicktags.php:2459
+#: vipers-video-quicktags.php:2882
+#: vipers-video-quicktags.php:2900
+msgid "Vimeo"
+msgstr "Video"
+
+#: vipers-video-quicktags.php:529
+msgid "Embed a video from Vimeo"
+msgstr "Embed een video vanaf Vimeo"
+
+#: vipers-video-quicktags.php:534
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2472
+#: vipers-video-quicktags.php:2930
+#: vipers-video-quicktags.php:2944
+msgid "Veoh"
+msgstr "Veoh"
+
+#: vipers-video-quicktags.php:535
+msgid "Embed a video from Veoh"
+msgstr "Embed een video vanaf Veoh"
+
+#: vipers-video-quicktags.php:540
+#: vipers-video-quicktags.php:2130
+#: vipers-video-quicktags.php:2238
+#: vipers-video-quicktags.php:2485
+#: vipers-video-quicktags.php:2980
+#: vipers-video-quicktags.php:2987
+msgid "Viddler"
+msgstr "Viddler"
+
+#: vipers-video-quicktags.php:541
+msgid "Embed a video from Viddler"
+msgstr "Embed een video vanaf Viddler"
+
+#: vipers-video-quicktags.php:542
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Geef het WordPress.com-stijl embed label voor de Viddler video. Zie help voor details. In het vervolg hoef je dit scherm niet meer te openen — je kunt rechtstreeks in de editor plakken. "
+
+#: vipers-video-quicktags.php:546
+#: vipers-video-quicktags.php:2492
+#: vipers-video-quicktags.php:2995
+#: vipers-video-quicktags.php:3008
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: vipers-video-quicktags.php:547
+msgid "Embed a video from Metacafe"
+msgstr "Embed een video vanaf Metacafe"
+
+#: vipers-video-quicktags.php:552
+#: vipers-video-quicktags.php:2137
+#: vipers-video-quicktags.php:2505
+#: vipers-video-quicktags.php:3042
+#: vipers-video-quicktags.php:3050
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: vipers-video-quicktags.php:553
+msgid "Embed a video from Blip.tv"
+msgstr "Embed een video vanaf Blip.tv"
+
+#: vipers-video-quicktags.php:554
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Geef het WordPress.com-stijl embed label voor de Blip.tv video. Zie help voor details. In het vervolg hoef je dit scherm niet meer te openen — je kunt rechtstreeks in de editor plakken."
+
+#: vipers-video-quicktags.php:558
+#: vipers-video-quicktags.php:2244
+#: vipers-video-quicktags.php:2518
+#: vipers-video-quicktags.php:3065
+#: vipers-video-quicktags.php:3079
+#: vipers-video-quicktags.php:3097
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: vipers-video-quicktags.php:559
+msgid "Embed a video from Flickr Video"
+msgstr "Embed een video vanaf Flickr Video"
+
+#: vipers-video-quicktags.php:564
+#: vipers-video-quicktags.php:2531
+#: vipers-video-quicktags.php:3105
+#: vipers-video-quicktags.php:3118
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: vipers-video-quicktags.php:565
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Embed een video vanaf IFILM/Spike.com"
+
+#: vipers-video-quicktags.php:570
+#: vipers-video-quicktags.php:3140
+#: vipers-video-quicktags.php:3153
+msgid "MySpace"
+msgstr "MySpace"
+
+#: vipers-video-quicktags.php:571
+msgid "Embed a video from MySpace"
+msgstr "Embed een video vanaf MySpace"
+
+#: vipers-video-quicktags.php:576
+#: vipers-video-quicktags.php:3175
+msgid "FLV"
+msgstr "FLV"
+
+#: vipers-video-quicktags.php:577
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Embed een Flash video, (FLV bestand)"
+
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:590
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Geef de link naar het %1$s bestand."
+
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:1125
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2558
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:582
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2569
+#: vipers-video-quicktags.php:3246
+msgid "Quicktime"
+msgstr "QuickTime"
+
+#: vipers-video-quicktags.php:583
+msgid "Embed a Quicktime video file"
+msgstr "Embed een QuickTime videobestand"
+
+#: vipers-video-quicktags.php:588
+msgid "Video File"
+msgstr "Video bestand"
+
+#: vipers-video-quicktags.php:589
+msgid "Embed a generic video file"
+msgstr "Embed een algeheel videobestand"
+
+#: vipers-video-quicktags.php:590
+#: vipers-video-quicktags.php:3280
+msgid "generic video"
+msgstr "algemeen videobestand"
+
+#: vipers-video-quicktags.php:656
+msgid "Example:"
+msgstr "Voorbeeld:"
+
+#: vipers-video-quicktags.php:776
+#: vipers-video-quicktags.php:1431
+#: vipers-video-quicktags.php:1541
+#: vipers-video-quicktags.php:1626
+#: vipers-video-quicktags.php:1768
+#: vipers-video-quicktags.php:1886
+msgid "Dimensions"
+msgstr "Afmetingen"
+
+#: vipers-video-quicktags.php:778
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "De standaard afmetingen voor dit video-type kan ingesteld worden in deze plugin instellingen . Ook kun je je eigen afmetingen voor deze ene video hier instellen:"
+
+#: vipers-video-quicktags.php:798
+msgid "Cheatin’ uh?"
+msgstr "Mij voor de gek houden?"
+
+#: vipers-video-quicktags.php:1084
+msgid "Settings for this tab reset to defaults."
+msgstr "Instellingen hierboven herstellen naar standaard."
+
+#: vipers-video-quicktags.php:1092
+#: vipers-video-quicktags.php:1110
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:1096
+msgid "Optional Comment"
+msgstr "Optioneel commentaar"
+
+#: vipers-video-quicktags.php:1108
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Doneer aan Viper007Bond voor deze plugin via PayPal"
+
+#: vipers-video-quicktags.php:1120
+msgid "Additional Settings"
+msgstr "Extra instellingen"
+
+#: vipers-video-quicktags.php:1126
+msgid "Help"
+msgstr "Help"
+
+#: vipers-video-quicktags.php:1127
+msgid "Credits"
+msgstr "Dank aan"
+
+#: vipers-video-quicktags.php:1135
+msgid "General"
+msgstr "Algemeen"
+
+#: vipers-video-quicktags.php:1162
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Weet je zeker dat je de instellingen wilt herstellen naar de standaarden?"
+
+#: vipers-video-quicktags.php:1174
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Stel de standaarden voor dit video-type hier in. Al deze instellingen kunnen per individuele video gewijzigd worden. Zie de Help sectie voor details."
+
+#: vipers-video-quicktags.php:1179
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Overweeg het gebruik van een andere browser dan Internet Explorer. Door beperkingen met je browser kunnen deze instellingenpagina's niet volledig weergegeven worden, tenzij je overschakelt naar een browser zoals Firefox of Opera . Als je overschakelt kun je de video-voorvertoning direct zien als je een waarde aanpast (altijd beter dan alleen een lijst met opties zien zonder voorbeeld). "
+
+#: vipers-video-quicktags.php:1334
+#: vipers-video-quicktags.php:1499
+#: vipers-video-quicktags.php:1576
+#: vipers-video-quicktags.php:1688
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Onmogelijk om de voorvertoningslink te laten zien. Zorg voor devolledige link en controleer deze. "
+
+#: vipers-video-quicktags.php:1376
+msgid "Dark Grey"
+msgstr "Donker grijs"
+
+#: vipers-video-quicktags.php:1377
+msgid "Dark Blue"
+msgstr "Donker blauw"
+
+#: vipers-video-quicktags.php:1378
+msgid "Light Blue"
+msgstr "Licht blauw"
+
+#: vipers-video-quicktags.php:1379
+msgid "Green"
+msgstr "Groen"
+
+#: vipers-video-quicktags.php:1380
+#: vipers-video-quicktags.php:1721
+msgid "Orange"
+msgstr "Oranje"
+
+#: vipers-video-quicktags.php:1381
+msgid "Pink"
+msgstr "Roze"
+
+#: vipers-video-quicktags.php:1382
+msgid "Purple"
+msgstr "Paars"
+
+#: vipers-video-quicktags.php:1383
+msgid "Ruby Red"
+msgstr "Ruby Rood"
+
+#: vipers-video-quicktags.php:1417
+#: vipers-video-quicktags.php:1527
+#: vipers-video-quicktags.php:1612
+#: vipers-video-quicktags.php:1754
+#: vipers-video-quicktags.php:1871
+msgid "Preview"
+msgstr "Voorvertoning"
+
+#: vipers-video-quicktags.php:1420
+#: vipers-video-quicktags.php:1530
+#: vipers-video-quicktags.php:1615
+#: vipers-video-quicktags.php:1757
+#: vipers-video-quicktags.php:1874
+msgid "Loading..."
+msgstr "Laden..."
+
+#: vipers-video-quicktags.php:1425
+#: vipers-video-quicktags.php:1535
+#: vipers-video-quicktags.php:1620
+#: vipers-video-quicktags.php:1762
+#: vipers-video-quicktags.php:1879
+msgid "Preview URL"
+msgstr "Voorvertoningslink"
+
+#: vipers-video-quicktags.php:1434
+#: vipers-video-quicktags.php:1544
+#: vipers-video-quicktags.php:1629
+#: vipers-video-quicktags.php:1771
+msgid "pixels"
+msgstr "pixels"
+
+#: vipers-video-quicktags.php:1435
+#: vipers-video-quicktags.php:1545
+#: vipers-video-quicktags.php:1772
+msgid "Maintain aspect ratio"
+msgstr "Behoud beeldverhouding"
+
+#: vipers-video-quicktags.php:1441
+msgid "Border Color"
+msgstr "Rand kleur"
+
+#: vipers-video-quicktags.php:1444
+#: vipers-video-quicktags.php:1452
+#: vipers-video-quicktags.php:1639
+#: vipers-video-quicktags.php:1647
+#: vipers-video-quicktags.php:1655
+#: vipers-video-quicktags.php:1663
+#: vipers-video-quicktags.php:1781
+#: vipers-video-quicktags.php:1920
+#: vipers-video-quicktags.php:1928
+#: vipers-video-quicktags.php:1936
+#: vipers-video-quicktags.php:1944
+msgid "Pick a color"
+msgstr "Kies een kleur"
+
+#: vipers-video-quicktags.php:1449
+msgid "Fill Color"
+msgstr "Vul-kleur"
+
+#: vipers-video-quicktags.php:1457
+#: vipers-video-quicktags.php:1786
+msgid "Color Presets"
+msgstr "Kleur instellingen"
+
+#: vipers-video-quicktags.php:1461
+msgid "Video Format"
+msgstr "Video formaat"
+
+#: vipers-video-quicktags.php:1466
+msgid "Low Quality FLV (smallest download) — YouTube Default"
+msgstr "Lage kwaliteit FLV (kleinste download) — YouTube standaard"
+
+#: vipers-video-quicktags.php:1467
+msgid "High Quality MP4 (medium download) — Plugin Default"
+msgstr "Hoge kwaliteit MP4 (middelmatige download) — Plugin standaard"
+
+#: vipers-video-quicktags.php:1468
+msgid "High Quality FLV (largest download)"
+msgstr "Hoge kwaliteit FLV (grootste download)"
+
+#: vipers-video-quicktags.php:1480
+msgid "Miscellaneous"
+msgstr "Overige"
+
+#: vipers-video-quicktags.php:1482
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Toon video details aan het einde van het afspelen (gerelateerde video's, embed code, etc.)"
+
+#: vipers-video-quicktags.php:1483
+msgid "Show fullscreen button"
+msgstr "Toon volledig beeld-knop"
+
+#: vipers-video-quicktags.php:1484
+msgid "Show border"
+msgstr "Toon rand"
+
+#: vipers-video-quicktags.php:1485
+#: vipers-video-quicktags.php:1553
+#: vipers-video-quicktags.php:1670
+msgid "Autoplay video (not recommended)"
+msgstr "Speel video automatisch af (niet aanbevolen)"
+
+#: vipers-video-quicktags.php:1486
+msgid "Loop video playback"
+msgstr "Herhaal video continu"
+
+#: vipers-video-quicktags.php:1551
+#: vipers-video-quicktags.php:1668
+msgid "Other"
+msgstr "Anders"
+
+#: vipers-video-quicktags.php:1636
+msgid "Toolbar Background Color"
+msgstr "Knoppenbalk achtergrond"
+
+#: vipers-video-quicktags.php:1644
+msgid "Toolbar Glow Color"
+msgstr "Knoppenbalk glimkleur"
+
+#: vipers-video-quicktags.php:1652
+msgid "Button/Text Color"
+msgstr "Knoppen/tekst kleur"
+
+#: vipers-video-quicktags.php:1660
+msgid "Seekbar Color"
+msgstr "Zoekbalk kleur"
+
+#: vipers-video-quicktags.php:1671
+msgid "Show related videos"
+msgstr "Toon gerelateerde video's"
+
+#: vipers-video-quicktags.php:1720
+msgid "Default (Blue)"
+msgstr "Standaard (blauw)"
+
+#: vipers-video-quicktags.php:1722
+msgid "Lime"
+msgstr "Limoen"
+
+#: vipers-video-quicktags.php:1723
+msgid "Fuschia"
+msgstr "Fuchsia"
+
+#: vipers-video-quicktags.php:1724
+msgid "White"
+msgstr "Wit"
+
+#: vipers-video-quicktags.php:1778
+msgid "Color"
+msgstr "Kleur"
+
+#: vipers-video-quicktags.php:1790
+msgid "On-Screen Info"
+msgstr "On-screen informatie"
+
+#: vipers-video-quicktags.php:1792
+msgid "Portrait"
+msgstr "Portretstand"
+
+#: vipers-video-quicktags.php:1793
+msgid "Title"
+msgstr "Titel"
+
+#: vipers-video-quicktags.php:1794
+msgid "Byline"
+msgstr "Omschrijving"
+
+#: vipers-video-quicktags.php:1795
+msgid "Allow fullscreen"
+msgstr "Sta beeldvullend toe"
+
+#: vipers-video-quicktags.php:1882
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "De standaard voorvertoningsvideo is de meest recente video op YouTube. Je kunt de link knippen/plakken van een FLV bestand van jezelf als je wilt."
+
+#: vipers-video-quicktags.php:1890
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "pixels (als je de standaard opmaak gebruikt voeg dan 20 toe voor de hoogte van de knoppenbalk)"
+
+#: vipers-video-quicktags.php:1897
+msgid "Skin"
+msgstr "Opmaak"
+
+#: vipers-video-quicktags.php:1911
+msgid "Use Custom Colors"
+msgstr "Gebruik eigen kleuren"
+
+#: vipers-video-quicktags.php:1917
+msgid "Control Bar Background Color"
+msgstr "Knoppenbalk achtergrond kleur"
+
+#: vipers-video-quicktags.php:1925
+msgid "Icon/Text Color"
+msgstr "Knoppen/tekst kleur"
+
+#: vipers-video-quicktags.php:1933
+msgid "Icon/Text Hover Color"
+msgstr "Knoppen tekst kleur bij muisovergang"
+
+#: vipers-video-quicktags.php:1941
+msgid "Video Background Color"
+msgstr "Video achtergrond kleur"
+
+#: vipers-video-quicktags.php:1949
+msgid "Advanced Parameters"
+msgstr "Extra instellingen"
+
+#: vipers-video-quicktags.php:1952
+#: vipers-video-quicktags.php:2275
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Een query-string stijl lijst van extra instellingen om aan de speler door te geven. Voorbeeld:%3$s"
+
+#: vipers-video-quicktags.php:1953
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Je moet op "Bewaar wijzigingen" klikken voordat de wijzigingen effect hebben, dankzij mijn Javascript kennis. "
+
+#: vipers-video-quicktags.php:1989
+msgid "Video Alignment"
+msgstr "Video uitlijning"
+
+#: vipers-video-quicktags.php:1994
+msgid "Left"
+msgstr "Links"
+
+#: vipers-video-quicktags.php:1995
+msgid "Center"
+msgstr "Midden"
+
+#: vipers-video-quicktags.php:1996
+msgid "Right"
+msgstr "Rechts"
+
+#: vipers-video-quicktags.php:1997
+msgid "Float Left"
+msgstr "Drijvend links"
+
+#: vipers-video-quicktags.php:1998
+msgid "Float Right"
+msgstr "Drijvend rechts"
+
+#: vipers-video-quicktags.php:2010
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Toon knooppen in editor op lijnnummer"
+
+#: vipers-video-quicktags.php:2015
+msgid "1"
+msgstr "1"
+
+#: vipers-video-quicktags.php:2016
+msgid "2 (Aanrecht-achtige-knoppenbalk)"
+msgstr "2"
+
+#: vipers-video-quicktags.php:2017
+msgid "3 (Standaard)"
+msgstr "3"
+
+#: vipers-video-quicktags.php:2029
+msgid "Feed Text"
+msgstr "Feed tekst"
+
+#: vipers-video-quicktags.php:2032
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Optionele, eigen tekst die in de feed komt in plaats van de video's (omdat je video's niet kunt embedden in feeds). Als je niks in vult wordt het: %s"
+
+#: vipers-video-quicktags.php:2032
+#: vipers-video-quicktags.php:2662
+msgid "Click here to view the embedded video."
+msgstr "Klik hier om de embedded video te bekijken."
+
+#: vipers-video-quicktags.php:2036
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: vipers-video-quicktags.php:2038
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Probeer om Windows Media Player te gebruiken voor doorsnee video bestanden voor Windows gebruikers"
+
+#: vipers-video-quicktags.php:2043
+msgid "Advanced Settings"
+msgstr "Geavanceerde instellingen"
+
+#: vipers-video-quicktags.php:2045
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Als je niet weet wat je doet kun je de onderstaande instellingen veilig negeren."
+
+#: vipers-video-quicktags.php:2049
+msgid "Dynamic QTObject Loading"
+msgstr "Dynamisch QTobject laden"
+
+#: vipers-video-quicktags.php:2051
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Alleen het Javascript bestand laden als het nodig is. Zet deze uit om QuickTime videos in de zijbalk tekst widget."
+
+#: vipers-video-quicktags.php:2056
+msgid "Custom CSS"
+msgstr "Eigen CSS"
+
+#: vipers-video-quicktags.php:2058
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Makkelijk enkele CSS instellingen maken voor het verschijnen van de video's? Klik dan op deze tekst om de mogelijkheden uit te breiden."
+
+#: vipers-video-quicktags.php:2060
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Je kunt hieronder je eigen CSS neerzetten. Het zalna de standaard CSS die je ziet in de lijst. Deze kan overtroffen worden door gebruik te maken van %1$s. Voor hulp en voorbeelden zie de Help tab."
+
+#: vipers-video-quicktags.php:2103
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Klik op een vraag om het antwoord te zien of klik op deze tekst om alle antwoorden te zien."
+
+#: vipers-video-quicktags.php:2107
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Video's zijn niet te zien op mijn blog, alleen links naar de video's. Hoe komt dit?"
+
+#: vipers-video-quicktags.php:2110
+msgid "Here are five common causes:"
+msgstr "Hier zijn vijf mogelijke oorzaken"
+
+#: vipers-video-quicktags.php:2112
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Maak je gebruik van Fireofox en AdBlock? AdBlock en derglijke blokkeerregels kunnen voorkomen dat sommige video's, voornamelijk YouTube-gehoste video's, niet worden geladen. Zet AdBlock uit of stap over naar AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2113
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "Je thema kan <?php wp_head();?> missen tussen de <head> waardoor het benodigde Javascript niet kan worden toegevoegd. Als dit de oorzaak is krijg je waarschijnlijk een venster op je scherm wanneer je probeert om een artikel te zien waar de video in zit (veronderstellend dat je probleem is niet hetzelfde als #3). Bewerk je thema's header.php bestand en voeg het toe direct voor </head>."
+
+#: vipers-video-quicktags.php:2114
+#: vipers-video-quicktags.php:2120
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Je hebt mogelijk Javascript uitgeschakeld. Deze plugin embed video's via Javascript om je de beste resultaten te geven. Zet het alsjeblieft weer aan ."
+
+#: vipers-video-quicktags.php:2115
+#: vipers-video-quicktags.php:2121
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Je hebt mogelijk niet de nieuwste versie van Flas geïnstalleerd. Installeer het asljeblieft."
+
+#: vipers-video-quicktags.php:2119
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Maak je gebruik van Fireofox en AdBlock? AdBlock en derglijke blokkeerregels kunnen voorkomen dat sommige video's, voornamelijk YouTube-gehoste video's, niet worden geladen. Zet AdBlock uit of stap over naar AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2127
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Waar haal ik de link van een Viddler video vandaan?"
+
+#: vipers-video-quicktags.php:2129
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Omdat de link van een Viddler video niks met de embed link te maken heeft moet je de Wordpress.com-stijl gebruiken. Ga naar de video op Viddler, klik de "Embed This" knop onder de video en selecteer daarna de WordPress.com opmaak. Je kunt deze code knippen en rechtstreeks in een bericht plakken, de video wordt dan embed."
+
+#: vipers-video-quicktags.php:2134
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Waar haal ik de link van een Blip.tv video vandaan?"
+
+#: vipers-video-quicktags.php:2136
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Omdat de link van een Blip.tv video niks met de embed link te maken heeft moet je de Wordpress.com-stijl gebruiken. Ga naar de video op Blip.tv, klik op het gele "Share" menu aan de rechterkant van de video en selecteer "Embed". Daarna selecteer je "WordPress.com" van het "Show Player" keuzemenu. Als laatste klik je op "Go". Je kunt deze code knippen en rechtstreeks in een bericht plakken, de video wordt dan embed. "
+
+#: vipers-video-quicktags.php:2138
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "LET OP: Negeer de waarschuwing. Deze plugin voegt ondersteuning voor de WordPress.com dus het gaat ook op jouw blog werken."
+
+#: vipers-video-quicktags.php:2142
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Waarom ondersteunt deze plugin niet alle video-websites?"
+
+#: vipers-video-quicktags.php:2144
+msgid "There's a couple likely reasons:"
+msgstr "Er zijn verschillende redenen:"
+
+#: vipers-video-quicktags.php:2146
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "De website gebruikt links, die niks met de betreffende video te maken heeft, in de adresbalk. Dit betekent dat, ook al geef je de link naar de betreffende video, er geen video getoond kan worden vanuit de gegeven link."
+
+#: vipers-video-quicktags.php:2147
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "De website is te klein, beroerd geprogrammeerd, etc. om ondersteund te worden. Je maakt geen punt met een plugin om ondersteuning te bieden aan een video-website waar maar twee mensen komen. "
+
+#: vipers-video-quicktags.php:2148
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "De door jou genoemde website ken ik niet. Wil je dat ik de website wel moet kennen? Maak een topic aan op mijn forum met een voorbeeld link naar de door jou bedoelde video. Ik ga er dan naar kijken."
+
+#: vipers-video-quicktags.php:2150
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Deze plugin heeft de mogelijkheid om altijd een Flas bestand te embedden. Zie de Flash snelcode vraag voor de details hierover."
+
+#: vipers-video-quicktags.php:2154
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "Er zijn nog steeds rode gedeelten (bij muisovergang over de knoppen) in mijn YouTube video. Hoe kan dit?"
+
+#: vipers-video-quicktags.php:2156
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube ondersteunt geen methode om die kleur te wijzigen."
+
+#: vipers-video-quicktags.php:2160
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Hoe kan ik de grootte, kleur etc. wijzigen voor een individuele video?"
+
+#: vipers-video-quicktags.php:2162
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "je kunt veel zaken instellen via het WordPress snelcode systeem. welke gebruikt wordt voor het embedden van video's in je berichte. Snelcodes zijn gelijk aan BBCode . Hier zijn enkele voorbeeldcode's:"
+
+#: vipers-video-quicktags.php:2168
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Elke waarde die niet ingegeven is wordt als standaard weergegeven."
+
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2189
+#: vipers-video-quicktags.php:2199
+#: vipers-video-quicktags.php:2214
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2238
+#: vipers-video-quicktags.php:2244
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2294
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Wat zijn de beschikbare parameters voor de %s snelccode?"
+
+#: vipers-video-quicktags.php:2175
+#: vipers-video-quicktags.php:2192
+#: vipers-video-quicktags.php:2202
+#: vipers-video-quicktags.php:2217
+#: vipers-video-quicktags.php:2231
+#: vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2258
+#: vipers-video-quicktags.php:2267
+#: vipers-video-quicktags.php:2284
+#: vipers-video-quicktags.php:2298
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — breedte in pixels"
+
+#: vipers-video-quicktags.php:2176
+#: vipers-video-quicktags.php:2193
+#: vipers-video-quicktags.php:2203
+#: vipers-video-quicktags.php:2218
+#: vipers-video-quicktags.php:2232
+#: vipers-video-quicktags.php:2248
+#: vipers-video-quicktags.php:2259
+#: vipers-video-quicktags.php:2268
+#: vipers-video-quicktags.php:2285
+#: vipers-video-quicktags.php:2299
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — hoogte in pixels"
+
+#: vipers-video-quicktags.php:2177
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — randkleur in hex"
+
+#: vipers-video-quicktags.php:2178
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — achtergrondkleur in hex"
+
+#: vipers-video-quicktags.php:2179
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — toon een rand of niet (0 of 1)"
+
+#: vipers-video-quicktags.php:2180
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — toon gerelateerde video's links, embed details ect. aan het einde van afspelen (0 of 1) "
+
+#: vipers-video-quicktags.php:2181
+#: vipers-video-quicktags.php:2223
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — toon beeldvullend-knop (0 of 1)"
+
+#: vipers-video-quicktags.php:2182
+#: vipers-video-quicktags.php:2194
+#: vipers-video-quicktags.php:2208
+#: vipers-video-quicktags.php:2233
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — start automatisch afspelen (0 of 1)"
+
+#: vipers-video-quicktags.php:2183
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — herhaald afspelen (0 of 1)"
+
+#: vipers-video-quicktags.php:2184
+#, php-format
+msgid "%s — quality value for video playback (0 for low quality FLV, 18 for high quality MP4, 6 for high quality FLV)"
+msgstr "%s — kwaliteit voor het afspelen van video (0 voor lage kwaliteit FLV, 18 voor hoge kwaliteit MP4, 6 voor hoge kwaliteit FLV)"
+
+#: vipers-video-quicktags.php:2204
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — knoppenbalk achtergrond in hex"
+
+#: vipers-video-quicktags.php:2205
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — knoppenbalk glimkleur in hex"
+
+#: vipers-video-quicktags.php:2206
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — knoppen/tekst kleur in hex"
+
+#: vipers-video-quicktags.php:2207
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — zoekbalk kleur in hex"
+
+#: vipers-video-quicktags.php:2209
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — toon gerelateerde video (0 of 1)"
+
+#: vipers-video-quicktags.php:2219
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — speler kleur in hex"
+
+#: vipers-video-quicktags.php:2220
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — toon afbeelding van de inzender (0 of 1) "
+
+#: vipers-video-quicktags.php:2221
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — toon video titel (0 of 1)"
+
+#: vipers-video-quicktags.php:2222
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — toon videomaker (0 of 1) "
+
+#: vipers-video-quicktags.php:2240
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "Omdat de WordPress.com snelcode opmaak is gebruikt voor Viddler video's zijn er geen aanpasbare instellingen voor de Viddler snelcode. De WordPress.com snelcode moet worden gebruikt als de link van de video en de embed link niks met elkaar te maken hebben. "
+
+#: vipers-video-quicktags.php:2249
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — toon video details (0 of 1), standaard op 1"
+
+#: vipers-video-quicktags.php:2254
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Wat zijn de beschikbare instellingen voor de Metacafe, Blip.tv IFILM/Spike en MySpace snelcodes?"
+
+#: vipers-video-quicktags.php:2256
+msgid "All of these video formats only support the following:"
+msgstr "Alle videoformaten ondersteunen alleen het volgende:"
+
+#: vipers-video-quicktags.php:2269
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — de link naar de voorvertoningsafbeelding, is standaard dezelfde link als het videobestand maar in .flv plaats van .jpg."
+
+#: vipers-video-quicktags.php:2270
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — speler knoppenbalk achtergrondkleur in hex"
+
+#: vipers-video-quicktags.php:2271
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — speler icoon/tekst kleur in hex"
+
+#: vipers-video-quicktags.php:2272
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — speler icoon/tekst muisovergang kleur in hex"
+
+#: vipers-video-quicktags.php:2273
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — speler video achtergrond kleur in hex"
+
+#: vipers-video-quicktags.php:2274
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — volume percentage, standaard op 100"
+
+#: vipers-video-quicktags.php:2275
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: vipers-video-quicktags.php:2282
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "De resultaten van het embedden van een QuickTime video kan erg variëren, afhankelijk van de computer waarop het bekeken wordt en welke software daar is geïnstalleerd. Als je echt QuickTime moet embedden zijn hier de instellingen:"
+
+#: vipers-video-quicktags.php:2286
+#: vipers-video-quicktags.php:2289
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — automatisch afspelen (0 of 1), standaard op 0"
+
+#: vipers-video-quicktags.php:2287
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — gebruik de klik-om-te-spelen afbeelding (0 of 1), standaard op 0"
+
+#: vipers-video-quicktags.php:2288
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr ""
+
+#: vipers-video-quicktags.php:2294
+msgid "video file"
+msgstr "video bestand"
+
+#: vipers-video-quicktags.php:2296
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr ""
+
+#: vipers-video-quicktags.php:2300
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr ""
+
+#: vipers-video-quicktags.php:2306
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr ""
+
+#: vipers-video-quicktags.php:2308
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr ""
+
+#: vipers-video-quicktags.php:2309
+msgid "Some examples:"
+msgstr "Enkele voorbeelden"
+
+#: vipers-video-quicktags.php:2311
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Geef een rode rand bij alle video's: %s"
+
+#: vipers-video-quicktags.php:2312
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Zet alleen YouTube video's aan de linkerkant: %s"
+
+#: vipers-video-quicktags.php:2318
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Hoe kan ik een algemeen Flas bestand of een video van een website embedden die niet ondersteund wordt door deze plugin?"
+
+#: vipers-video-quicktags.php:2320
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "Deze plugin heeft een %s snelcode die gebruikt kan worden om ieder Flash bestand te embedden. Hier is de opmaak:"
+
+#: vipers-video-quicktags.php:2325
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Waarom gaat het embedden van QuickTime en andere reguliere videobestanden zo slecht? Kun je niet wat beters aanbieden?"
+
+#: vipers-video-quicktags.php:2327
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Het embedden van QuickTime en andere reguliere videobestanden is een groot probleem. Het is ontzettend lastig om het werkend te krijgen met alle browsers en besturingssystemen. I raad je sterk aan om de video te converteren naar Flash Video of zelfs H.264 formaat en dan de Flash Video (FLV) embed type te gebruiken. Er zijn gratis converters te verkrijgen voor beide formaten en door dit te doen creëer je een betere ervaring voor je bezoekers."
+
+#: vipers-video-quicktags.php:2336
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Deze plugin gebruikt veel scripts en pakketten die geschreven zijn door anderen. Ook zij verdienen hun waardering. Hier komen ze in willekeurige volgorde:"
+
+#: vipers-video-quicktags.php:2339
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "De schrijvers en bijdragers van SWFObject welke gebruikt wordt voor het embedden van Flash gebaseerde video's."
+
+#: vipers-video-quicktags.php:2340
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering voor het schrijven van JW FLV Media Player welke gebruikt wordt voor FLV af te spelen."
+
+#: vipers-video-quicktags.php:2341
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens voor het schrijven van Farbtastic , de prachtige Javascript kleurenkiezer in deze plugin."
+
+#: vipers-video-quicktags.php:2342
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh voor het schrijven vna zijn Liz Comment Counter plugin welke leidde tot Farbtastic en mij wat Javascript gaf voor de basis van mijn kleurenkiezer en kleurinstellingscodes."
+
+#: vipers-video-quicktags.php:2343
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz voor het helpen met enkele TinyMCE-gerelateerde Javascripts en het besparen van veel van mijn tijd. "
+
+#: vipers-video-quicktags.php:2344
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns voor het schrijven van QTObject welke gebruikt wordt voor het embedden van QuickTime video's."
+
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James voor het maken van de Silk icoon pakket . Deze plugin gebruikt ten minste één van de iconen van dat pakket."
+
+#: vipers-video-quicktags.php:2346
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "De schrijvers en bijdragers van jQuery , het geweildige Javascript pakket gebruikt door WordPress."
+
+#: vipers-video-quicktags.php:2347
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Iedereen die geholpen heeft om WordPress en de API die daarbij hoort. Zonder deze mogelijkheden zou deze plugin niet bestaan."
+
+#: vipers-video-quicktags.php:2348
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Iedereen die fout-rapporten en opmerkingen heeft gestuurd voor deze plugin."
+
+#: vipers-video-quicktags.php:2351
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "De volgende mensen zijn zo aardig geweest om deze plugin te vertalen:"
+
+#: vipers-video-quicktags.php:2354
+#, php-format
+msgid "Dutch: %s"
+msgstr "Nederlands: %s"
+
+#: vipers-video-quicktags.php:2355
+#, php-format
+msgid "Italian: %s"
+msgstr "Italiaans: %s"
+
+#: vipers-video-quicktags.php:2356
+#, php-format
+msgid "Polish: %s"
+msgstr "Pools: %s"
+
+#: vipers-video-quicktags.php:2357
+#, php-format
+msgid "Russian: %s"
+msgstr "Russisch: %s"
+
+#: vipers-video-quicktags.php:2360
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Als je deze plugin wilt gebruiken in een andere taal en je wilt je naam hier hebben staan, vertaal de regels in het aangeboden taalbestand in de "localization" map en stuur het daarna naar mij ."
+
+#: vipers-video-quicktags.php:2367
+msgid "Click the above links to switch between tabs."
+msgstr "Klik op bovenstaande links om vna tab te wisselen."
+
+#: vipers-video-quicktags.php:2400
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr "Accepteer je de Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported licentie? Een link hier naar toe staat aan de linkerkant.\n"
+"\n"
+"In het kort nog even: je kunt JW's FLV Media Player niet op een commerciële website gebruiken zonder een licentie te kopen."
+
+#: vipers-video-quicktags.php:2411
+msgid "Media Type"
+msgstr "Media type"
+
+#: vipers-video-quicktags.php:2412
+msgid "Show Editor Button?"
+msgstr "Toon bewerk knop?"
+
+#: vipers-video-quicktags.php:2413
+msgid "Default Width"
+msgstr "Standaard breedte"
+
+#: vipers-video-quicktags.php:2414
+msgid "Default Height"
+msgstr "Standaard hoogte"
+
+#: vipers-video-quicktags.php:2415
+msgid "Keep Aspect Ratio?"
+msgstr "Behoud beeldverhoudingen?"
+
+#: vipers-video-quicktags.php:2544
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: vipers-video-quicktags.php:2561
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commerical website ."
+msgstr "JW's FLV Media Player is vrijgegeven onder de Creative Commons Noncommercial license wat betekent dat het niet gebruikt mag worden op commerciële websites ."
+
+#: vipers-video-quicktags.php:2576
+msgid "Generic Video File"
+msgstr "Algemeen videobestand"
+
+#: vipers-video-quicktags.php:2576
+msgid "This part of the plugin is very buggy as embedding video files can be hard. Consider trying TinyMCE's native video embedder instead."
+msgstr "Dit gedeelte van de plugin is kritisch, het embedden van videos kan lastig zijn. Overweeg het proberen van TinyMCE's eigen video-embedder daar voor in de plaats."
+
+#: vipers-video-quicktags.php:2591
+msgid "Save Changes"
+msgstr "Bewaar wijzigingen"
+
+#: vipers-video-quicktags.php:2592
+msgid "Reset Tab To Defaults"
+msgstr "Herstel Tab naar standaarden"
+
+#: vipers-video-quicktags.php:2652
+#, php-format
+msgid "ERROR: %s"
+msgstr "FOUTJE: %s"
+
+#: vipers-video-quicktags.php:2692
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 bestaat niet meer, dus Stage6-gehoste video's kunnen niet getoond worden."
+
+#: vipers-video-quicktags.php:2707
+#: vipers-video-quicktags.php:2784
+#: vipers-video-quicktags.php:2824
+#: vipers-video-quicktags.php:2882
+#: vipers-video-quicktags.php:2930
+#: vipers-video-quicktags.php:2995
+#: vipers-video-quicktags.php:3065
+#: vipers-video-quicktags.php:3105
+#: vipers-video-quicktags.php:3140
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Er staat geen link of video ID in de %s BBCode"
+
+#: vipers-video-quicktags.php:2731
+#: vipers-video-quicktags.php:2739
+#: vipers-video-quicktags.php:2798
+#: vipers-video-quicktags.php:2844
+#: vipers-video-quicktags.php:2900
+#: vipers-video-quicktags.php:2944
+#: vipers-video-quicktags.php:3008
+#: vipers-video-quicktags.php:3079
+#: vipers-video-quicktags.php:3118
+#: vipers-video-quicktags.php:3153
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Niet mogelijk om de link te laden, controleer op een correct %s formaat"
+
+#: vipers-video-quicktags.php:2743
+#: vipers-video-quicktags.php:2750
+msgid "YouTube Preview Image"
+msgstr "YouTube voorvertoningsafbeelding"
+
+#: vipers-video-quicktags.php:2965
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Sorry maar het enige formaat wat ondersteund wordt voor Viddler is het WordPress.com stijl formaat en niet de link. Je kunt het vinden op dit "Embed This" scherm."
+
+#: vipers-video-quicktags.php:2980
+#: vipers-video-quicktags.php:3042
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Een ongeldige %s snelcode formaat is gebruikt. Controleer je code nog eens."
+
+#: vipers-video-quicktags.php:2987
+#: vipers-video-quicktags.php:3050
+#: vipers-video-quicktags.php:3348
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Zet Javascript en Flash aan om deze %3$s video te zien. "
+
+#: vipers-video-quicktags.php:3029
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Sorry, het enige formaat wat ondersteund wordt voor Blip.tv is het WordPress.com stijl formaat. Je kunt het vinden op Share -> Embed -> WordPress.com."
+
+#: vipers-video-quicktags.php:3175
+#: vipers-video-quicktags.php:3246
+#: vipers-video-quicktags.php:3280
+#: vipers-video-quicktags.php:3323
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "Er is egen link doorgegeven aan de %s BBCode"
+
+#: vipers-video-quicktags.php:3323
+msgid "generic Flash embed"
+msgstr "Algemeen Flash embed"
+
+#: vipers-video-quicktags.php:3348
+msgid "Flash"
+msgstr "Flash"
+
+#: vipers-video-quicktags.php:3366
+msgid "Site Administrator: Your theme is missing inside of it's which is required for Viper's Video Quicktags. Please edit your theme's header.php and add it right before ."
+msgstr "Website beheerder: Uw thema mist tussen de welke nodig is voor Vipers Video Quicktags. Bewerk je thema's header.php en voeg het toe direct voor ."
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-pt_BR.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-pt_BR.mo
new file mode 100644
index 00000000..b497de25
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-pt_BR.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-pt_BR.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-pt_BR.po
new file mode 100644
index 00000000..8e84325f
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-pt_BR.po
@@ -0,0 +1,1385 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Viper007Bond
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/vipers-video-quicktags\n"
+"POT-Creation-Date: 2009-05-24 10:59+0000\n"
+"PO-Revision-Date: 2009-05-28 15:32-0300\n"
+"Last-Translator: Ricardo Martins \n"
+"Language-Team: Ricardo Martins \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Poedit-Language: Portuguese\n"
+"X-Poedit-Country: BRAZIL\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: vipers-video-quicktags.php:247
+msgid "Click here to view the embedded video."
+msgstr "Clique aqui para assistir o vídeo inserido."
+
+#: vipers-video-quicktags.php:400
+#: vipers-video-quicktags.php:1423
+msgid "Default"
+msgstr "Padrão"
+
+#: vipers-video-quicktags.php:401
+msgid "3D Pixel Style"
+msgstr "Estilo 3D Pixel"
+
+#: vipers-video-quicktags.php:402
+msgid "Atomic Red"
+msgstr "Vermelho Atômico"
+
+#: vipers-video-quicktags.php:403
+msgid "Bekle (Overlay)"
+msgstr "Bekle (Overlay)"
+
+#: vipers-video-quicktags.php:404
+msgid "Blue Metal"
+msgstr "Metal Azul"
+
+#: vipers-video-quicktags.php:405
+msgid "Comet"
+msgstr "Cometa"
+
+#: vipers-video-quicktags.php:406
+msgid "Control Panel"
+msgstr "Painel de Controle"
+
+#: vipers-video-quicktags.php:407
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: vipers-video-quicktags.php:408
+msgid "Fashion"
+msgstr "Fashion"
+
+#: vipers-video-quicktags.php:409
+msgid "Festival"
+msgstr "Festival"
+
+#: vipers-video-quicktags.php:410
+msgid "Grunge Tape"
+msgstr "Fita Grunge"
+
+#: vipers-video-quicktags.php:411
+msgid "Ice Cream Sneaka"
+msgstr "Sorvete Sneaka"
+
+#: vipers-video-quicktags.php:412
+msgid "Kleur"
+msgstr "Kleur"
+
+#: vipers-video-quicktags.php:413
+msgid "Magma"
+msgstr "Magma"
+
+#: vipers-video-quicktags.php:414
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: vipers-video-quicktags.php:415
+msgid "Modieus (Stylish)"
+msgstr "Modieus (Estiloso)"
+
+#: vipers-video-quicktags.php:416
+msgid "Modieus (Stylish) Slim"
+msgstr "Modieus (Estiloso) Slim"
+
+#: vipers-video-quicktags.php:417
+msgid "Nacht"
+msgstr "Nacht"
+
+#: vipers-video-quicktags.php:418
+msgid "Neon"
+msgstr "Neon"
+
+#: vipers-video-quicktags.php:419
+msgid "Pearlized"
+msgstr "Perolado"
+
+#: vipers-video-quicktags.php:420
+msgid "Pixelize"
+msgstr "Pixelado"
+
+#: vipers-video-quicktags.php:421
+msgid "Play Casso"
+msgstr "Play Casso"
+
+#: vipers-video-quicktags.php:422
+msgid "Schoon"
+msgstr "Schoon"
+
+#: vipers-video-quicktags.php:423
+msgid "Silvery White"
+msgstr "Branco Prateado"
+
+#: vipers-video-quicktags.php:424
+msgid "Simple"
+msgstr "Simples"
+
+#: vipers-video-quicktags.php:425
+msgid "Snel"
+msgstr "Snel"
+
+#: vipers-video-quicktags.php:426
+msgid "Stijl"
+msgstr "Stijl"
+
+#: vipers-video-quicktags.php:427
+msgid "Traganja"
+msgstr "Traganja"
+
+#: vipers-video-quicktags.php:434
+#, php-format
+msgid "This version of Viper's Video Quicktags requires WordPress 2.6 or newer. Please upgrade or use the legacy version of this plugin."
+msgstr "Esta versao de Viper's Video Quicktags requer WordPress 2.6 ou mais recente. Por favor, atualize ou use a versão antiga (legacy) deste plugin."
+
+#: vipers-video-quicktags.php:442
+#, php-format
+msgid "WARNING: If you use the FLV embed feature of Viper's Video Quicktags, there is a bug in WordPress with the FTP method of upgrading plugins. It will not upload the .swf files properly. If you do embed FLV files, please manually download the plugin and upload the files to your server. If you don't embed FLV files (and only embed YouTube, etc. videos), you can safely ignore this message and upgrade automatically."
+msgstr "AVISO: Se você usar a funcionalidade de inserir FLV do Viper's Video Quicktags, há um bug no WordPress com o método de atualização de plugins via FTP. O upload do código .swf não será feito de maneira apropriada. Se você for inserir arquivos FLV, por favor faça o download manual do plugin e depois faça o upload para o servidor. Se você não for inserir aquivos FLV (mas apenas vídeos do YouTube, etc.), você pode ignorar esta mensagem e atualizar automaticamente o plugin."
+
+#: vipers-video-quicktags.php:448
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Configuração do Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:448
+msgid "Video Quicktags"
+msgstr "Quicktags de Vídeo"
+
+#: vipers-video-quicktags.php:459
+msgid "Settings"
+msgstr "Configurações"
+
+#: vipers-video-quicktags.php:549
+#: vipers-video-quicktags.php:1165
+#: vipers-video-quicktags.php:2207
+#: vipers-video-quicktags.php:2456
+#: vipers-video-quicktags.php:2767
+#: vipers-video-quicktags.php:2797
+#: vipers-video-quicktags.php:2805
+#: vipers-video-quicktags.php:2919
+msgid "YouTube"
+msgstr "YouTube"
+
+#: vipers-video-quicktags.php:550
+msgid "Embed a video from YouTube"
+msgstr "Inserir um vídeo do YouTube"
+
+#: vipers-video-quicktags.php:551
+#: vipers-video-quicktags.php:557
+#: vipers-video-quicktags.php:563
+#: vipers-video-quicktags.php:569
+#: vipers-video-quicktags.php:575
+#: vipers-video-quicktags.php:587
+#: vipers-video-quicktags.php:599
+#: vipers-video-quicktags.php:605
+#: vipers-video-quicktags.php:611
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Por favor, digite a URL de onde o vídeo é assitido."
+
+#: vipers-video-quicktags.php:555
+#: vipers-video-quicktags.php:1166
+#: vipers-video-quicktags.php:2223
+#: vipers-video-quicktags.php:2469
+#: vipers-video-quicktags.php:2871
+#: vipers-video-quicktags.php:2890
+msgid "Google Video"
+msgstr "Google Video"
+
+#: vipers-video-quicktags.php:556
+msgid "Embed a video from Google Video"
+msgstr "Inserir um vídeo do Google Video"
+
+#: vipers-video-quicktags.php:561
+#: vipers-video-quicktags.php:1167
+#: vipers-video-quicktags.php:2233
+#: vipers-video-quicktags.php:2482
+#: vipers-video-quicktags.php:2943
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: vipers-video-quicktags.php:562
+msgid "Embed a video from DailyMotion"
+msgstr "Inserir um vídeo do DailyMotion"
+
+#: vipers-video-quicktags.php:567
+#: vipers-video-quicktags.php:1168
+#: vipers-video-quicktags.php:2248
+#: vipers-video-quicktags.php:2495
+#: vipers-video-quicktags.php:2983
+#: vipers-video-quicktags.php:3005
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: vipers-video-quicktags.php:568
+msgid "Embed a video from Vimeo"
+msgstr "Inserir um vídeo do Vimeo"
+
+#: vipers-video-quicktags.php:573
+#: vipers-video-quicktags.php:2262
+#: vipers-video-quicktags.php:2508
+#: vipers-video-quicktags.php:3047
+#: vipers-video-quicktags.php:3079
+msgid "Veoh"
+msgstr "Veoh"
+
+#: vipers-video-quicktags.php:574
+msgid "Embed a video from Veoh"
+msgstr "Inserir um vídeo do Veoh"
+
+#: vipers-video-quicktags.php:579
+#: vipers-video-quicktags.php:2165
+#: vipers-video-quicktags.php:2272
+#: vipers-video-quicktags.php:2521
+#: vipers-video-quicktags.php:3128
+#: vipers-video-quicktags.php:3135
+msgid "Viddler"
+msgstr "Viddler"
+
+#: vipers-video-quicktags.php:580
+msgid "Embed a video from Viddler"
+msgstr "Inserir um vídeo do Viddler"
+
+#: vipers-video-quicktags.php:581
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Por favor, insira a tag embed estilo WordPress.com para o vídeo do Viddler. Vide Ajuda para detalhes. No futuro você não precisará abrir esta janela — mas apenas colar diretamente no editor."
+
+#: vipers-video-quicktags.php:585
+#: vipers-video-quicktags.php:2528
+#: vipers-video-quicktags.php:3145
+#: vipers-video-quicktags.php:3162
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: vipers-video-quicktags.php:586
+msgid "Embed a video from Metacafe"
+msgstr "Inserir vídeo do Metacafe"
+
+#: vipers-video-quicktags.php:591
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2541
+#: vipers-video-quicktags.php:3202
+#: vipers-video-quicktags.php:3210
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: vipers-video-quicktags.php:592
+msgid "Embed a video from Blip.tv"
+msgstr "Inserir vídeo do Blip.tv"
+
+#: vipers-video-quicktags.php:593
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Por favor, insira a tag embed estilo WordPress.com para o vídeo do Blip.tv. Vide Ajuda para detalhes. No futuro você não precisará abrir esta janela — mas apenas colar diretamente no editor."
+
+#: vipers-video-quicktags.php:597
+#: vipers-video-quicktags.php:2278
+#: vipers-video-quicktags.php:2554
+#: vipers-video-quicktags.php:3261
+#: vipers-video-quicktags.php:3279
+#: vipers-video-quicktags.php:3297
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: vipers-video-quicktags.php:598
+msgid "Embed a video from Flickr Video"
+msgstr "Inserir vídeo do Flickr Video"
+
+#: vipers-video-quicktags.php:603
+#: vipers-video-quicktags.php:2567
+#: vipers-video-quicktags.php:3307
+#: vipers-video-quicktags.php:3324
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: vipers-video-quicktags.php:604
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Inserir vídeo do IFILM/Spike.com"
+
+#: vipers-video-quicktags.php:609
+#: vipers-video-quicktags.php:3348
+#: vipers-video-quicktags.php:3365
+msgid "MySpace"
+msgstr "MySpace"
+
+#: vipers-video-quicktags.php:610
+msgid "Embed a video from MySpace"
+msgstr "Inserir vídeo do MySpace"
+
+#: vipers-video-quicktags.php:615
+#: vipers-video-quicktags.php:3389
+msgid "FLV"
+msgstr "FLV"
+
+#: vipers-video-quicktags.php:616
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Inserir um arquivo Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:617
+#: vipers-video-quicktags.php:623
+#: vipers-video-quicktags.php:629
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Por favor, insira a URL para o arquivo %1$s ."
+
+#: vipers-video-quicktags.php:617
+#: vipers-video-quicktags.php:1169
+#: vipers-video-quicktags.php:2298
+#: vipers-video-quicktags.php:2594
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:621
+#: vipers-video-quicktags.php:623
+#: vipers-video-quicktags.php:2314
+#: vipers-video-quicktags.php:2605
+#: vipers-video-quicktags.php:3482
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: vipers-video-quicktags.php:622
+msgid "Embed a Quicktime video file"
+msgstr "Inserir um arquivo de vídeo Quicktime"
+
+#: vipers-video-quicktags.php:627
+msgid "Video File"
+msgstr "Arquivo de Vídeo"
+
+#: vipers-video-quicktags.php:628
+msgid "Embed a generic video file"
+msgstr "Inserir um arquivo de vídeo genérico"
+
+#: vipers-video-quicktags.php:629
+#: vipers-video-quicktags.php:3528
+msgid "generic video"
+msgstr "vídeo genérico"
+
+#: vipers-video-quicktags.php:695
+msgid "Example:"
+msgstr "Examplo:"
+
+#: vipers-video-quicktags.php:815
+#: vipers-video-quicktags.php:1479
+#: vipers-video-quicktags.php:1575
+#: vipers-video-quicktags.php:1661
+#: vipers-video-quicktags.php:1803
+#: vipers-video-quicktags.php:1921
+msgid "Dimensions"
+msgstr "Dimensões"
+
+#: vipers-video-quicktags.php:817
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "As dimensões padrão para este tipo de vídeo podem ser ajustadas na página de configurações deste plugin. Entretanto, você pode ajustar dimensões customizadas para este vídeo em particular aqui:"
+
+#: vipers-video-quicktags.php:837
+msgid "Cheatin’ uh?"
+msgstr "Trapaceando’ hein?"
+
+#: vipers-video-quicktags.php:1127
+msgid "Settings for this tab reset to defaults."
+msgstr "Configurações para esta aba redefinidas para o padrão."
+
+#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
+#. Plugin Name of an extension
+#: vipers-video-quicktags.php:1135
+#: vipers-video-quicktags.php:1149
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:1139
+msgid "Optional Comment"
+msgstr "Comentário Opcional"
+
+#: vipers-video-quicktags.php:1154
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Doe para Viper007Bond por este plugin via PayPal"
+
+#: vipers-video-quicktags.php:1164
+msgid "Additional Settings"
+msgstr "Configurações Adicionais"
+
+#: vipers-video-quicktags.php:1170
+msgid "Help"
+msgstr "Ajuda"
+
+#: vipers-video-quicktags.php:1171
+msgid "Credits"
+msgstr "Créditos"
+
+#: vipers-video-quicktags.php:1179
+msgid "General"
+msgstr "Geral"
+
+#: vipers-video-quicktags.php:1206
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Você tem certeza que deseja redefinir as configurações desta aba para o padrão?"
+
+#: vipers-video-quicktags.php:1218
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Configure os padrões para este tipo de vídeo aqui. Todas estas configurações podem ser substituidas em inserções individuais. Vide Seção de Ajuda para detalhes."
+
+#: vipers-video-quicktags.php:1223
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Por favor, considere usar um navegador que não seja o Internet Explorer. Por conta de limitações no seu naveador, estas páginas de configurações não se mostrarão tão completas quanto se você estivesse usando um navegador como o Firefox ou Opera . Se você mudar, será capaz de ver a amostra do vídeo atualizar a cada mudança de opção (ao invés de um número limitado de opções) e mais."
+
+#: vipers-video-quicktags.php:1378
+#: vipers-video-quicktags.php:1531
+#: vipers-video-quicktags.php:1611
+#: vipers-video-quicktags.php:1723
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Incapaz de gerar a URL da amostra. Por favor, tenha certeza de que é a URL completa e válida."
+
+#: vipers-video-quicktags.php:1424
+msgid "Dark Grey"
+msgstr "Cinza Escuro"
+
+#: vipers-video-quicktags.php:1425
+msgid "Dark Blue"
+msgstr "Azul Escuro"
+
+#: vipers-video-quicktags.php:1426
+msgid "Light Blue"
+msgstr "Azul Claro"
+
+#: vipers-video-quicktags.php:1427
+msgid "Green"
+msgstr "Verde"
+
+#: vipers-video-quicktags.php:1428
+#: vipers-video-quicktags.php:1756
+msgid "Orange"
+msgstr "Laranja"
+
+#: vipers-video-quicktags.php:1429
+msgid "Pink"
+msgstr "Rosa"
+
+#: vipers-video-quicktags.php:1430
+msgid "Purple"
+msgstr "Roxo"
+
+#: vipers-video-quicktags.php:1431
+msgid "Ruby Red"
+msgstr "Vermelho Rubi"
+
+#: vipers-video-quicktags.php:1465
+#: vipers-video-quicktags.php:1561
+#: vipers-video-quicktags.php:1647
+#: vipers-video-quicktags.php:1789
+#: vipers-video-quicktags.php:1906
+msgid "Preview"
+msgstr "Amostra"
+
+#: vipers-video-quicktags.php:1468
+#: vipers-video-quicktags.php:1564
+#: vipers-video-quicktags.php:1650
+#: vipers-video-quicktags.php:1792
+#: vipers-video-quicktags.php:1909
+msgid "Loading..."
+msgstr "Carregando..."
+
+#: vipers-video-quicktags.php:1473
+#: vipers-video-quicktags.php:1569
+#: vipers-video-quicktags.php:1655
+#: vipers-video-quicktags.php:1797
+#: vipers-video-quicktags.php:1914
+msgid "Preview URL"
+msgstr "URL da Amostra"
+
+#: vipers-video-quicktags.php:1482
+#: vipers-video-quicktags.php:1578
+#: vipers-video-quicktags.php:1664
+#: vipers-video-quicktags.php:1806
+msgid "pixels"
+msgstr "pixels"
+
+#: vipers-video-quicktags.php:1483
+#: vipers-video-quicktags.php:1579
+#: vipers-video-quicktags.php:1807
+msgid "Maintain aspect ratio"
+msgstr "Manter proporções"
+
+#: vipers-video-quicktags.php:1489
+msgid "Border Color"
+msgstr "Cor da Borda"
+
+#: vipers-video-quicktags.php:1492
+#: vipers-video-quicktags.php:1500
+#: vipers-video-quicktags.php:1674
+#: vipers-video-quicktags.php:1682
+#: vipers-video-quicktags.php:1690
+#: vipers-video-quicktags.php:1698
+#: vipers-video-quicktags.php:1816
+#: vipers-video-quicktags.php:1955
+#: vipers-video-quicktags.php:1963
+#: vipers-video-quicktags.php:1971
+#: vipers-video-quicktags.php:1979
+msgid "Pick a color"
+msgstr "Escolha uma cor"
+
+#: vipers-video-quicktags.php:1497
+msgid "Fill Color"
+msgstr "Cor do Preenchimento"
+
+#: vipers-video-quicktags.php:1505
+#: vipers-video-quicktags.php:1821
+msgid "Color Presets"
+msgstr "Cores Padrão"
+
+#: vipers-video-quicktags.php:1509
+msgid "Miscellaneous"
+msgstr "Miscelânia"
+
+#: vipers-video-quicktags.php:1511
+msgid "Enable HD video by default (not to be confused with "HQ" which can't be enabled by default and not all videos are avilable in HD)"
+msgstr "Habilitar vídeo HD (Alta Definição) por padrão (não confundir com "HQ" que não pode ser habilitado por padrão e nem todos os vídeos estão disponíveis em HD)"
+
+#: vipers-video-quicktags.php:1512
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Mostar detalhes do vídeo no final da exibição (vídeos relacionados, código para inserir etc.)"
+
+#: vipers-video-quicktags.php:1513
+#: vipers-video-quicktags.php:1587
+msgid "Show fullscreen button"
+msgstr "Mostrar botão de tela cheia"
+
+#: vipers-video-quicktags.php:1514
+msgid "Show border"
+msgstr "Mostrar borda"
+
+#: vipers-video-quicktags.php:1515
+msgid "Show the search box"
+msgstr "Mostrar campo de pesquisa"
+
+#: vipers-video-quicktags.php:1516
+msgid "Show the video title and rating"
+msgstr "Mostrar o título e avaliação do vídeo"
+
+#: vipers-video-quicktags.php:1517
+#: vipers-video-quicktags.php:1588
+#: vipers-video-quicktags.php:1705
+msgid "Autoplay video (not recommended)"
+msgstr "Rodar o vídeo automaticamente (não recomendado)"
+
+#: vipers-video-quicktags.php:1518
+msgid "Loop video playback"
+msgstr "Exibir o vídeo em loop"
+
+#: vipers-video-quicktags.php:1585
+#: vipers-video-quicktags.php:1703
+msgid "Other"
+msgstr "Outro"
+
+#: vipers-video-quicktags.php:1671
+msgid "Toolbar Background Color"
+msgstr "Cor de Fundo da Barra de Ferramentas"
+
+#: vipers-video-quicktags.php:1679
+msgid "Toolbar Glow Color"
+msgstr "Cor de Brilho da Barra de Ferramentas"
+
+#: vipers-video-quicktags.php:1687
+msgid "Button/Text Color"
+msgstr "Cor do Botão/Texto"
+
+#: vipers-video-quicktags.php:1695
+msgid "Seekbar Color"
+msgstr "Cor da Barra de Progresso"
+
+#: vipers-video-quicktags.php:1706
+msgid "Show related videos"
+msgstr "Mostrar vídeos relacionados"
+
+#: vipers-video-quicktags.php:1755
+msgid "Default (Blue)"
+msgstr "Padrão (Azul)"
+
+#: vipers-video-quicktags.php:1757
+msgid "Lime"
+msgstr "Lima"
+
+#: vipers-video-quicktags.php:1758
+msgid "Fuschia"
+msgstr "Fuschia"
+
+#: vipers-video-quicktags.php:1759
+msgid "White"
+msgstr "Braco"
+
+#: vipers-video-quicktags.php:1813
+msgid "Color"
+msgstr "Cor"
+
+#: vipers-video-quicktags.php:1825
+msgid "On-Screen Info"
+msgstr "Informação na Tela"
+
+#: vipers-video-quicktags.php:1827
+msgid "Portrait"
+msgstr "Retrato"
+
+#: vipers-video-quicktags.php:1828
+msgid "Title"
+msgstr "Título"
+
+#: vipers-video-quicktags.php:1829
+msgid "Byline"
+msgstr "Espaço \"Por\""
+
+#: vipers-video-quicktags.php:1830
+msgid "Allow fullscreen"
+msgstr "Permitir Tela Cheia"
+
+#: vipers-video-quicktags.php:1917
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "A amostra de vídeo padrão é o vídeo mais recente exibido no You Tube. Você pode colar a URL para o seu próprio arquivo FLV se quiser."
+
+#: vipers-video-quicktags.php:1925
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "pixels (se estiver usando o skin padrão, adicione 20 à altura para a barra de controles)"
+
+#: vipers-video-quicktags.php:1932
+msgid "Skin"
+msgstr "Skin"
+
+#: vipers-video-quicktags.php:1946
+msgid "Use Custom Colors"
+msgstr "Usar Cores Customizadas"
+
+#: vipers-video-quicktags.php:1952
+msgid "Control Bar Background Color"
+msgstr "Cor de Fundo da Barra de Controles"
+
+#: vipers-video-quicktags.php:1960
+msgid "Icon/Text Color"
+msgstr "Cor do Ícone/Texto"
+
+#: vipers-video-quicktags.php:1968
+msgid "Icon/Text Hover Color"
+msgstr "Cor do Ícone/Texto Hover"
+
+#: vipers-video-quicktags.php:1976
+msgid "Video Background Color"
+msgstr "Cor de Fundo do Vídeo"
+
+#: vipers-video-quicktags.php:1984
+msgid "Advanced Parameters"
+msgstr "Parâmetros Avançados"
+
+#: vipers-video-quicktags.php:1987
+#: vipers-video-quicktags.php:2309
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Uma lista de parâmetros adicionais com estilo linha de pesquisa (query-string style) a serem passados ao player. Examplo: %3$s"
+
+#: vipers-video-quicktags.php:1988
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Você vai precisar clicar em "Salvar Alterações" para estes parâmetros terem efeito, devido às minhas habilidades moderadas com Javascript."
+
+#: vipers-video-quicktags.php:2024
+msgid "Video Alignment"
+msgstr "Alinhamento do Vìdeo "
+
+#: vipers-video-quicktags.php:2029
+msgid "Left"
+msgstr "Esquerda"
+
+#: vipers-video-quicktags.php:2030
+msgid "Center"
+msgstr "Centralizado"
+
+#: vipers-video-quicktags.php:2031
+msgid "Right"
+msgstr "Direita"
+
+#: vipers-video-quicktags.php:2032
+msgid "Float Left"
+msgstr "Flutuar à Esquerda"
+
+#: vipers-video-quicktags.php:2033
+msgid "Float Right"
+msgstr "Flutuar à Direita"
+
+#: vipers-video-quicktags.php:2045
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Mostrar Botões no Editor na Linha Número"
+
+#: vipers-video-quicktags.php:2050
+msgid "1"
+msgstr "1"
+
+#: vipers-video-quicktags.php:2051
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (Barra de Ferramentas Kitchen Sink)"
+
+#: vipers-video-quicktags.php:2052
+msgid "3 (Default)"
+msgstr "3 (Padrão)"
+
+#: vipers-video-quicktags.php:2064
+msgid "Feed Text"
+msgstr "Texto de Feed"
+
+#: vipers-video-quicktags.php:2067
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Insira, opcionalmente, um texto customizado para ser exibido no seu feed no lugar dos vídeos (já que não pode inserir vídeos no feed). Se deixado em branco, o padrão será: %s"
+
+#: vipers-video-quicktags.php:2071
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: vipers-video-quicktags.php:2073
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Tentar usar o Windows Media Player para rodar vídeos regularmente para usuários do Windows"
+
+#: vipers-video-quicktags.php:2078
+msgid "Advanced Settings"
+msgstr "Configurações Avançadas"
+
+#: vipers-video-quicktags.php:2080
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Se não souber o que está fazendo, pode ignorar esta seção."
+
+#: vipers-video-quicktags.php:2084
+msgid "Dynamic QTObject Loading"
+msgstr "Carregamento Dinamico QTObject"
+
+#: vipers-video-quicktags.php:2086
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Carregar o arquivo Javascript apenas se necessário. Desabilitar isto para vídeos Quicktime postados na widget de texto da barra lateral."
+
+#: vipers-video-quicktags.php:2091
+msgid "Custom CSS"
+msgstr "CSS Customizado"
+
+#: vipers-video-quicktags.php:2093
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Quer configurar facilmente um CSS customizado para controlar a exibição dos vídeos? Então clique neste texto para expandir esta opção."
+
+#: vipers-video-quicktags.php:2095
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Você pode inserir um CSS customizado no campo abaixo. Será incluído após o CSS padrão que você vê listado abaixo, que pode ser substituido usando %1$s. Para ajuda e exemplos, vide aba de Ajuda ."
+
+#: vipers-video-quicktags.php:2138
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Clique em uma pergunta para ver a resposta ou clique neste texto para expandir todas as respostas."
+
+#: vipers-video-quicktags.php:2142
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Vídeos não aparecem no meu blog, apenas os links para os vídeos. Por que isso?"
+
+#: vipers-video-quicktags.php:2145
+msgid "Here are five common causes:"
+msgstr "Aqui temos cinco motivos comuns:"
+
+#: vipers-video-quicktags.php:2147
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Você está rodando Firefox e AdBlock? AdBlock e algumas outras regras de bloqueio podem prevenir que alguns vídeos carreguem, como os hospedados no YouTube. Desabilite o AdBlock ou mude para o AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2148
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "Em seu tema pode estar faltando <?php wp_head();?> dentro de seu <head> o que significa que o arquivo Javascript necessário não pode ser adicionado automaticamente. Se este for o caso, você pode receber um aviso pop-up quando tentar ver um post com um vídeo dentro dele (a não ser que seu problema também seja #3). Edite o arquivo header.php do seu tema e adicione-o logo antes de </head>"
+
+#: vipers-video-quicktags.php:2149
+#: vipers-video-quicktags.php:2155
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Você pode ter desabilitado Javascript. Este plugin insere vídeos via Javascript para assegurar a melhor experiência. Por favor, habilite-o ."
+
+#: vipers-video-quicktags.php:2150
+#: vipers-video-quicktags.php:2156
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Você pode não ter instalado a última versão do Flash. Por favor, instale-a ."
+
+#: vipers-video-quicktags.php:2154
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "Você está rodando Firefox e AdBlock? AdBlock e algumas outras regras de bloqueio podem resultar no não carregamento de vídeos, como os hospedados no YouTube. Desabilite o AdBlock ou mude para o AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2162
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Onde você pega o código para inserir um vídeo do Viddler?"
+
+#: vipers-video-quicktags.php:2164
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Já que a URL de um vídeo do Viddler não tem nada em comum com a URL para inserir, você deve usar o formato de estilo WordPress.com. Vá para o vídeo do Viddler, clique no botão "Embed This(Inserir Isto)" abaixo do vídeo e então selecione o formato WordPress.com. Você pode colar este código diretamente em um post ou Página e ele irá inserir o video."
+
+#: vipers-video-quicktags.php:2169
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Onde eu pego o código para inserir um vídeo do Blip.tv?"
+
+#: vipers-video-quicktags.php:2171
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Já que a URL de um vídeo do Blip.tv não tem nada em comum com a URL para inserir, você deve usar o formato de estilo WordPress.com. Vá para o vídeo do Blip.tv, clique no dropdown amarelo escrito "Share" à direita do vídeo e selecione "Embed". Depois selecione "WordPress.com" do dropdown "Show Player" . Por último, clique em "Go". Você pode colar este código diretamente em um post ou Página e ele irá inserir o video."
+
+#: vipers-video-quicktags.php:2173
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "ATENÇÃO: Ignore a mensagem de alerta. Este plugin adiciona suporte para o WordPress.com para que ele funcione no seu blog."
+
+#: vipers-video-quicktags.php:2177
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Por que este plugin não suporta o site do qual eu quero inserir vídeos?"
+
+#: vipers-video-quicktags.php:2179
+msgid "There's a couple likely reasons:"
+msgstr "Podem existir algumas razões para isso:"
+
+#: vipers-video-quicktags.php:2181
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "O site pode ter uma URL de inserção que não tem nada em comum com a URL na barra de endereços. Isto significa que mesmo que você dê a este plugin a URL para o vídeo, não há uma maneira fácil de descobrir a URL de inserção."
+
+#: vipers-video-quicktags.php:2182
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "O site pode ser muito pequeno, tosco e tal para valer a pena suportá-lo. Não faz sentido que este plugin adicione suporte para um site de vídeos que apenas uma ou duas pessoas usem."
+
+#: vipers-video-quicktags.php:2183
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Eu posso nunca ter ouvido falar no site. Por favor, inicie um comentátio em meus fóruns com um link de exemplo para um vídeo do site e eu darei uma olhada nele."
+
+#: vipers-video-quicktags.php:2185
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Este plugin, no entanto, tem a capacidade de inserir qualquer arquivo Flash. Vide pergunta sobre o Flash shortcode para detalhes sobre isso."
+
+#: vipers-video-quicktags.php:2189
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "Ainda tem uns pedacinhos vermelhos (sobre os botões) na minha inserção do You Tube. Por que isso?"
+
+#: vipers-video-quicktags.php:2191
+msgid "YouTube does not provide a method to change that color."
+msgstr "You Tube não dá um método para alterar essa cor."
+
+#: vipers-video-quicktags.php:2195
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Como posso alterar o tamanho, cores etc. para um vídeo específico?"
+
+#: vipers-video-quicktags.php:2197
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Você pode controlar muitas coisas pelo sistema de shortcode do WordPress que você usa para inserir vídeos em seus posts. Shortcodes são parecidos com BBCode . Aqui tem alguns exemplos de shortcodes:"
+
+#: vipers-video-quicktags.php:2203
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Para qualquer valor não inserido será considerado o padrão."
+
+#: vipers-video-quicktags.php:2207
+#: vipers-video-quicktags.php:2223
+#: vipers-video-quicktags.php:2233
+#: vipers-video-quicktags.php:2248
+#: vipers-video-quicktags.php:2262
+#: vipers-video-quicktags.php:2272
+#: vipers-video-quicktags.php:2278
+#: vipers-video-quicktags.php:2298
+#: vipers-video-quicktags.php:2314
+#: vipers-video-quicktags.php:2328
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Quais são os parâmetros disponíveis para o shortcode %s ?"
+
+#: vipers-video-quicktags.php:2210
+#: vipers-video-quicktags.php:2226
+#: vipers-video-quicktags.php:2236
+#: vipers-video-quicktags.php:2251
+#: vipers-video-quicktags.php:2265
+#: vipers-video-quicktags.php:2281
+#: vipers-video-quicktags.php:2292
+#: vipers-video-quicktags.php:2301
+#: vipers-video-quicktags.php:2318
+#: vipers-video-quicktags.php:2332
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — largura em pixels"
+
+#: vipers-video-quicktags.php:2211
+#: vipers-video-quicktags.php:2227
+#: vipers-video-quicktags.php:2237
+#: vipers-video-quicktags.php:2252
+#: vipers-video-quicktags.php:2266
+#: vipers-video-quicktags.php:2282
+#: vipers-video-quicktags.php:2293
+#: vipers-video-quicktags.php:2302
+#: vipers-video-quicktags.php:2319
+#: vipers-video-quicktags.php:2333
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — altura em pixels"
+
+#: vipers-video-quicktags.php:2212
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — cor da borda do player em hex"
+
+#: vipers-video-quicktags.php:2213
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — cor do preenchimento do player em hex"
+
+#: vipers-video-quicktags.php:2214
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — mostrar a borda ou não (0 ou 1)"
+
+#: vipers-video-quicktags.php:2215
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — mostrar vídeos relacionados, URL, detalhes de inserção etc. no final da exibição do vídeo (0 ou 1)"
+
+#: vipers-video-quicktags.php:2216
+#: vipers-video-quicktags.php:2257
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — mostrar botão de tela cheia (0 ou 1)"
+
+#: vipers-video-quicktags.php:2217
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2242
+#: vipers-video-quicktags.php:2267
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — começar a rodar o vídeo automaticamente (0 ou 1)"
+
+#: vipers-video-quicktags.php:2218
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — rodar vídeo em loop (0 ou 1)"
+
+#: vipers-video-quicktags.php:2238
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — cores de fundo da barra de ferramentas em hex"
+
+#: vipers-video-quicktags.php:2239
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — cor de brilho da barra de ferramentas em hex"
+
+#: vipers-video-quicktags.php:2240
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — cor do botão/texto em hex"
+
+#: vipers-video-quicktags.php:2241
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — cor da barra de progresso em hex"
+
+#: vipers-video-quicktags.php:2243
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — mostrar vídeos relacionados (0 ou 1)"
+
+#: vipers-video-quicktags.php:2253
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — cor do player em hex"
+
+#: vipers-video-quicktags.php:2254
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — mostrar imagem do uploader (0 ou 1)"
+
+#: vipers-video-quicktags.php:2255
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — mostrar título do vídeo (0 ou 1)"
+
+#: vipers-video-quicktags.php:2256
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — mostrar autor do vídeo (0 ou 1)"
+
+#: vipers-video-quicktags.php:2274
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "Já que o formato shortcode do WordPress.com é usado para inserir vídeos do Viddler, não há parâmetros customizáveis para o shortcode do Viddler. O shortcode do WordPress.com deve ser usado como a URL do vídeo e a URL de inserção do vídeo não têm nada em comum."
+
+#: vipers-video-quicktags.php:2283
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — mostrar detalhes do vídeo (0 ou 1), defaults to 1"
+
+#: vipers-video-quicktags.php:2288
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Quais são os parâmetros disponíveis para os shortcodes do Metacafe, Blip.tv, IFILM/Spike, e MySpace?"
+
+#: vipers-video-quicktags.php:2290
+msgid "All of these video formats only support the following:"
+msgstr "Todos esses formatos de vídeo suportam apenas o seguinte:"
+
+#: vipers-video-quicktags.php:2303
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — a URL para a imagem de amostra, padroniza na mesma URL que o arquivo de vídeo mas com .jpg ao invés de .flv"
+
+#: vipers-video-quicktags.php:2304
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — cor de fundo da barra de controle do player em hex"
+
+#: vipers-video-quicktags.php:2305
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — cor do ícone/texto do player em hex"
+
+#: vipers-video-quicktags.php:2306
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — cor hover do ícone/texto do player em hex"
+
+#: vipers-video-quicktags.php:2307
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — cor de fundo do vídeo do playerem hex"
+
+#: vipers-video-quicktags.php:2308
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — porcentagem de volume, padrão é 100"
+
+#: vipers-video-quicktags.php:2309
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: vipers-video-quicktags.php:2316
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "Os resultados da inserção de um vídeo Quicktime podem variar muito a depender do computador do usuário e qual programa ele tem instalado, mas se você tem que inserir um vídeo Quicktime aqui estão os parâmetros:"
+
+#: vipers-video-quicktags.php:2320
+#: vipers-video-quicktags.php:2323
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — começar a rodar o vídeo automaticamente (0 ou 1), padrão é 0"
+
+#: vipers-video-quicktags.php:2321
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — usar imagem click-to-play (0 ou 1), padrão é 0"
+
+#: vipers-video-quicktags.php:2322
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — a URL da imagem, padrão é a mesma URL do arquivo de vídeo mas com .jpg ao invés de .mov"
+
+#: vipers-video-quicktags.php:2328
+msgid "video file"
+msgstr "arquivo de vídeo"
+
+#: vipers-video-quicktags.php:2330
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "Os resultados da inserção de um vídeo genérico podem variar muito a depender do computador do usuário e qual programa ele tem instalado, mas se você tem que inserir um vídeo genérico aqui estão os parâmetros:"
+
+#: vipers-video-quicktags.php:2334
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — tentar usar o Windows Media Player para usuários do Windows (0 ou 1)"
+
+#: vipers-video-quicktags.php:2340
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "O que é esse tal de "CSS Customizado" na aba "Configurações Adicionais" ?"
+
+#: vipers-video-quicktags.php:2342
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "É uma forma rápida e fácil de controlar a aparência dos vídeos postados no seu site sem ter que aditar o arquivo style.css. É só digitar o seu próprio código CSS no campo e ele será aplicado no cabeçalho do seu tema."
+
+#: vipers-video-quicktags.php:2343
+msgid "Some examples:"
+msgstr "Alguns exemplos:"
+
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Deixar todos os vídeos com uma borda vermelha: %s"
+
+#: vipers-video-quicktags.php:2346
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Apenas vídeos do YouTube flutuam à esquerda: %s"
+
+#: vipers-video-quicktags.php:2352
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Como eu posso inserir um arquivo Flash genérico ou um vídeo de um site que não é suportado por este plugin?"
+
+#: vipers-video-quicktags.php:2354
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "Este plugin tem um shortcode %s que pode ser usado para inserir qualquer arquivo Flash. Aqui está o formato:"
+
+#: vipers-video-quicktags.php:2359
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Por que seu plugin insere vídeos Quicktime e genéricos tão toscamente? Será que você não pode fazer um trabalho melhor que esse?"
+
+#: vipers-video-quicktags.php:2361
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Inserir vídeos Quicktime e de outros tipos é foda pra caralho e é incrivelmente dificil de fazê-los funcionar em todos os navegadores e sistemas operacionais. Eu sugiro converter o vídeo para o formato Flash Video ou até mesmo para o formato H.264 e então usar o tipo de inserção Flash Video (FLV). Existem conversores gratuitos por aí para ambos os formatos e fazendo isso você vai criar uma experiência muito melhor para seus visitantes."
+
+#: vipers-video-quicktags.php:2370
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Este plugin usa muitos scripts e pacotes criados por outros. Eles merecem crédito também, então aqui estão eles sem uma ordem em particular:"
+
+#: vipers-video-quicktags.php:2373
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "Os autores e colaboradores do SWFObject que é usado para inserir os vídeos baseados em Flash."
+
+#: vipers-video-quicktags.php:2374
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering por escrever o JW FLV Media Player que é usado para rodar FLV."
+
+#: vipers-video-quicktags.php:2375
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens por escrever o Farbtastic , a fantástic a paleta de cores em Javascript usada neste plugin."
+
+#: vipers-video-quicktags.php:2376
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh por escrever seu plugin Liz Comment Counter que me mostrou o Farbtastic e me deu algum Javascript para servir de base para minha paleta de cores e o código de cores pré selecionadas."
+
+#: vipers-video-quicktags.php:2377
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz por me ajudar com alguns Javascripts relacionados ao TinyMCE-related e por sua vez me poupando um montão de tempo."
+
+#: vipers-video-quicktags.php:2378
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns por escrever o QTObject que é usado para inserir vídeos Quicktime."
+
+#: vipers-video-quicktags.php:2379
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James por criar o pacote de ícones Silk . Este plugin usa pelo menos um dos ícones desse pacote."
+
+#: vipers-video-quicktags.php:2380
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "Os autores e colaboradores do jQuery , esse incrível pacote Javascript usado pelo WordPress."
+
+#: vipers-video-quicktags.php:2381
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Todos que ajudaram a criar o WordPress já que sem ele e sua excelente API, este plugin obviamente não existiria."
+
+#: vipers-video-quicktags.php:2382
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Todos que deram relatórios de bugs e sugestões de funcionalidades para este plugin."
+
+#: vipers-video-quicktags.php:2385
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "As pessoas a seguir foram legais o suficiente para traduzirem este plugin para outros idiomas:"
+
+#: vipers-video-quicktags.php:2388
+#, php-format
+msgid "Danish: %s"
+msgstr "Dinamarquês: %s"
+
+#: vipers-video-quicktags.php:2389
+#, php-format
+msgid "Dutch: %s"
+msgstr "Alemão: %s"
+
+#: vipers-video-quicktags.php:2390
+#, php-format
+msgid "French: %s"
+msgstr "Francês: %s"
+
+#: vipers-video-quicktags.php:2391
+#, php-format
+msgid "Italian: %s"
+msgstr "Italiano: %s"
+
+#: vipers-video-quicktags.php:2392
+#, php-format
+msgid "Polish: %s"
+msgstr "Polonês: %s"
+
+#: vipers-video-quicktags.php:2393
+#, php-format
+msgid "Russian: %s"
+msgstr "Russo: %s"
+
+#: vipers-video-quicktags.php:2396
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Se você quer usar este plugin em outro idioma e ter seu nome listado aqui, é só traduzir as linhas que se encontram junto com o mesmo no arquivo template localizado na pasta "localization" e depois enviar pra mim . Para ajuda, vide o Codex do WordPress ."
+
+#: vipers-video-quicktags.php:2403
+msgid "Click the above links to switch between tabs."
+msgstr "Clique nos links acima para navegar entre as abas."
+
+#: vipers-video-quicktags.php:2436
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"Você concorda com a lincença Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported? Um link para a mesma pode ser encontrado à esquerda.\n"
+"\n"
+"Trocando em miúdos, você não pode usar o JW's FLV Media Player em um site comercial sem comprar a licença comercial."
+
+#: vipers-video-quicktags.php:2447
+msgid "Media Type"
+msgstr "Tipo de Mídia"
+
+#: vipers-video-quicktags.php:2448
+msgid "Show Editor Button?"
+msgstr "Mostrar Botão do Editor?"
+
+#: vipers-video-quicktags.php:2449
+msgid "Default Width"
+msgstr "Largura Padrão"
+
+#: vipers-video-quicktags.php:2450
+msgid "Default Height"
+msgstr "Altura Padrão"
+
+#: vipers-video-quicktags.php:2451
+msgid "Keep Aspect Ratio?"
+msgstr "Manter Proporção?"
+
+#: vipers-video-quicktags.php:2580
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: vipers-video-quicktags.php:2597
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commercial website ."
+msgstr "JW's FLV Media Player está coberto pela licença Creative Commons Noncommercial , o que significa que você não pode usá-lo em um site comercial ."
+
+#: vipers-video-quicktags.php:2612
+msgid "Generic Video File"
+msgstr "Arquivo de Vídeo Genérico"
+
+#: vipers-video-quicktags.php:2612
+#, php-format
+msgid "This part of the plugin is fairly buggy as embedding video files is complex. Consider trying TinyMCE's native video embedder instead. Why? "
+msgstr "Esta parte do plugin é bem cheia de bugs já que inserir arquivos de vídeo é algo complexo. Considere tentar a inserção de vídeos nativa do TinyMCE's. Por que? "
+
+#: vipers-video-quicktags.php:2627
+msgid "Save Changes"
+msgstr "Salvar Alterações"
+
+#: vipers-video-quicktags.php:2628
+msgid "Reset Tab To Defaults"
+msgstr "Redefinir Aba para os Padrões"
+
+#: vipers-video-quicktags.php:2688
+#, php-format
+msgid "ERROR: %s"
+msgstr "ERRO: %s"
+
+#: vipers-video-quicktags.php:2750
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 não existe mais, logo este vídeo hospedado pelo Stage6-hosted não pode ser exibido."
+
+#: vipers-video-quicktags.php:2767
+#: vipers-video-quicktags.php:2871
+#: vipers-video-quicktags.php:2919
+#: vipers-video-quicktags.php:2983
+#: vipers-video-quicktags.php:3047
+#: vipers-video-quicktags.php:3145
+#: vipers-video-quicktags.php:3261
+#: vipers-video-quicktags.php:3307
+#: vipers-video-quicktags.php:3348
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Nenhuma URL ou ID de vídeo foi passada para o %s BBCode"
+
+#: vipers-video-quicktags.php:2797
+#: vipers-video-quicktags.php:2805
+#: vipers-video-quicktags.php:2890
+#: vipers-video-quicktags.php:2943
+#: vipers-video-quicktags.php:3005
+#: vipers-video-quicktags.php:3079
+#: vipers-video-quicktags.php:3162
+#: vipers-video-quicktags.php:3279
+#: vipers-video-quicktags.php:3324
+#: vipers-video-quicktags.php:3365
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Não foi possível reproduzir a URL, veja o formato correto de %s"
+
+#: vipers-video-quicktags.php:2809
+#: vipers-video-quicktags.php:2816
+msgid "YouTube Preview Image"
+msgstr "Imagem de Amostra do You Tube"
+
+#: vipers-video-quicktags.php:3109
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Desculpe, mas o único formato suportado para Viddler é o formato estilo WordPress.com ao invés do formato da URL. Você pode encontrá-lo na janela "Embed This (Inserir Isto)" ."
+
+#: vipers-video-quicktags.php:3128
+#: vipers-video-quicktags.php:3202
+#: vipers-video-quicktags.php:3233
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Um formato shortcode de %s inválido foi usado. Por favor, confira o código."
+
+#: vipers-video-quicktags.php:3135
+#: vipers-video-quicktags.php:3210
+#: vipers-video-quicktags.php:3244
+#: vipers-video-quicktags.php:3608
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Por favor, habilite o Javascript e Flash para assistir este vídeo %3$s ."
+
+#: vipers-video-quicktags.php:3185
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Desculpe, mas o único formato suportado para Blip.tv é o formato estilo WordPress.com. Você pode encontrá-lo em Share -> Embed -> WordPress.com."
+
+#: vipers-video-quicktags.php:3233
+#: vipers-video-quicktags.php:3244
+msgid "WordPress.com"
+msgstr "WordPress.com"
+
+#: vipers-video-quicktags.php:3389
+#: vipers-video-quicktags.php:3482
+#: vipers-video-quicktags.php:3528
+#: vipers-video-quicktags.php:3578
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "Nenhuma URL foi ao %s BBCode"
+
+#: vipers-video-quicktags.php:3578
+msgid "generic Flash embed"
+msgstr "Inserção genérica Flash"
+
+#: vipers-video-quicktags.php:3608
+msgid "Flash"
+msgstr "Flash"
+
+#. Plugin URI of an extension
+msgid "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+msgstr "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+
+#. Description of an extension
+msgid "Easily embed videos from various video websites such as YouTube, DailyMotion, and Vimeo into your posts."
+msgstr "Insira facilmente em seus posts vídeos de vários site como YouTube, DailyMotion, e Vimeo."
+
+#. Author of an extension
+msgid "Viper007Bond"
+msgstr "Viper007Bond"
+
+#. Author URI of an extension
+msgid "http://www.viper007bond.com/"
+msgstr "http://www.viper007bond.com/"
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-ru_RU.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-ru_RU.mo
new file mode 100644
index 00000000..c0a57294
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-ru_RU.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-ru_RU.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-ru_RU.po
new file mode 100644
index 00000000..b1b13464
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-ru_RU.po
@@ -0,0 +1,1334 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags v6.1.x\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-09-21 23:52-0800\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Dennis Bri \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: English\n"
+"X-Poedit-Country: UNITED STATES\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: D:\\Webserver\\htdocs\\plugindev\\wp-content\\plugins\\vipers-video-quicktags\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: vipers-video-quicktags.php:378
+#: vipers-video-quicktags.php:1375
+msgid "Default"
+msgstr "По умолчанию"
+
+#: vipers-video-quicktags.php:379
+msgid "3D Pixel Style"
+msgstr "3D Pixel Style"
+
+#: vipers-video-quicktags.php:380
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+#: vipers-video-quicktags.php:381
+msgid "Comet"
+msgstr "Comet"
+
+#: vipers-video-quicktags.php:382
+msgid "Control Panel"
+msgstr "Панель управления"
+
+#: vipers-video-quicktags.php:383
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+#: vipers-video-quicktags.php:384
+msgid "Fashion"
+msgstr "Fashion"
+
+#: vipers-video-quicktags.php:385
+msgid "Festival"
+msgstr "Festival"
+
+#: vipers-video-quicktags.php:386
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+#: vipers-video-quicktags.php:387
+msgid "Kleur"
+msgstr "Kleur"
+
+#: vipers-video-quicktags.php:388
+msgid "Magma"
+msgstr "Magma"
+
+#: vipers-video-quicktags.php:389
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+#: vipers-video-quicktags.php:390
+msgid "Nacht"
+msgstr "Nacht"
+
+#: vipers-video-quicktags.php:391
+msgid "Neon"
+msgstr "Neon"
+
+#: vipers-video-quicktags.php:392
+msgid "Pearlized"
+msgstr "Pearlized"
+
+#: vipers-video-quicktags.php:393
+msgid "Pixelize"
+msgstr "Pixelize"
+
+#: vipers-video-quicktags.php:394
+msgid "Play Casso"
+msgstr "Play Casso"
+
+#: vipers-video-quicktags.php:395
+msgid "Schoon"
+msgstr "Schoon"
+
+#: vipers-video-quicktags.php:396
+msgid "Silvery White"
+msgstr "Silvery White"
+
+#: vipers-video-quicktags.php:397
+msgid "Snel"
+msgstr "Snel"
+
+#: vipers-video-quicktags.php:398
+msgid "Stijl"
+msgstr "Stijl"
+
+#: vipers-video-quicktags.php:399
+msgid "Traganja"
+msgstr "Traganja"
+
+#: vipers-video-quicktags.php:406
+#, php-format
+msgid "This version of Viper's Video Quicktags requires WordPress 2.6 or newer. Please upgrade or use the legacy version of this plugin."
+msgstr "Эта версия Viper's Video Quicktags требует WordPress 2.6 или больше. Пожалуйста сделайте обновление или используйте предыдущую версию этого плагина."
+
+#: vipers-video-quicktags.php:414
+#, php-format
+msgid "WARNING: If you use the FLV embed feature of Viper's Video Quicktags, there is a bug in WordPress with the FTP method of upgrading plugins. It will not upload the .swf files properly. If you do embed FLV files, please manually download the plugin and upload the files to your server. If you don't embed FLV files (and only embed YouTube, etc. videos), you can safely ignore this message and upgrade automatically."
+msgstr "ВНИМАНИЕ: Если Вы используете Viper's Video Quicktags для вставки FLV, то в WordPress имеется баг по обновлению этого плагина FTP методом. Он некорректно загружает .swf файлы. Если Вы используете FLV файлы, пожалуйста, загрузите вручную плагин и файлы на Ваш сервер. Если Вы не используете FLV файлы (а только YouTube, и т.п. видео), Вы можете пропустить это сообщение и выполнить автоматическое обновление."
+
+#: vipers-video-quicktags.php:420
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Конфигурация Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:420
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+#: vipers-video-quicktags.php:431
+msgid "Settings"
+msgstr "Установки"
+
+#: vipers-video-quicktags.php:510
+#: vipers-video-quicktags.php:1121
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2420
+#: vipers-video-quicktags.php:2707
+#: vipers-video-quicktags.php:2731
+#: vipers-video-quicktags.php:2739
+#: vipers-video-quicktags.php:2824
+msgid "YouTube"
+msgstr "YouTube"
+
+#: vipers-video-quicktags.php:511
+msgid "Embed a video from YouTube"
+msgstr "Встроить видео с YouTube"
+
+#: vipers-video-quicktags.php:512
+#: vipers-video-quicktags.php:518
+#: vipers-video-quicktags.php:524
+#: vipers-video-quicktags.php:530
+#: vipers-video-quicktags.php:536
+#: vipers-video-quicktags.php:548
+#: vipers-video-quicktags.php:560
+#: vipers-video-quicktags.php:566
+#: vipers-video-quicktags.php:572
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "Пожалуйста введите URL на котором находится видео."
+
+#: vipers-video-quicktags.php:516
+#: vipers-video-quicktags.php:1122
+#: vipers-video-quicktags.php:2189
+#: vipers-video-quicktags.php:2433
+#: vipers-video-quicktags.php:2784
+#: vipers-video-quicktags.php:2798
+msgid "Google Video"
+msgstr "Google Video"
+
+#: vipers-video-quicktags.php:517
+msgid "Embed a video from Google Video"
+msgstr "Встроить видео с Google Video"
+
+#: vipers-video-quicktags.php:522
+#: vipers-video-quicktags.php:1123
+#: vipers-video-quicktags.php:2199
+#: vipers-video-quicktags.php:2446
+#: vipers-video-quicktags.php:2844
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+#: vipers-video-quicktags.php:523
+msgid "Embed a video from DailyMotion"
+msgstr "Встроить видео с DailyMotion"
+
+#: vipers-video-quicktags.php:528
+#: vipers-video-quicktags.php:1124
+#: vipers-video-quicktags.php:2214
+#: vipers-video-quicktags.php:2459
+#: vipers-video-quicktags.php:2882
+#: vipers-video-quicktags.php:2900
+msgid "Vimeo"
+msgstr "Vimeo"
+
+#: vipers-video-quicktags.php:529
+msgid "Embed a video from Vimeo"
+msgstr "Встроить видео с Vimeo"
+
+#: vipers-video-quicktags.php:534
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2472
+#: vipers-video-quicktags.php:2930
+#: vipers-video-quicktags.php:2944
+msgid "Veoh"
+msgstr "Veoh"
+
+#: vipers-video-quicktags.php:535
+msgid "Embed a video from Veoh"
+msgstr "Встроить видео с Veoh"
+
+#: vipers-video-quicktags.php:540
+#: vipers-video-quicktags.php:2130
+#: vipers-video-quicktags.php:2238
+#: vipers-video-quicktags.php:2485
+#: vipers-video-quicktags.php:2980
+#: vipers-video-quicktags.php:2987
+msgid "Viddler"
+msgstr "Viddler"
+
+#: vipers-video-quicktags.php:541
+msgid "Embed a video from Viddler"
+msgstr "Встроить видео с Viddler"
+
+#: vipers-video-quicktags.php:542
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Пожалуйста, введите тег вставки для Viddler видео в стиле WordPress.com. Подробности смотрите в этом разделе помощи. В будущем Вам не понадобится открывать это окно — Вы можете делать вставку непосредственно в редакторе."
+
+#: vipers-video-quicktags.php:546
+#: vipers-video-quicktags.php:2492
+#: vipers-video-quicktags.php:2995
+#: vipers-video-quicktags.php:3008
+msgid "Metacafe"
+msgstr "Metacafe"
+
+#: vipers-video-quicktags.php:547
+msgid "Embed a video from Metacafe"
+msgstr "Встроить видео с Metacafe"
+
+#: vipers-video-quicktags.php:552
+#: vipers-video-quicktags.php:2137
+#: vipers-video-quicktags.php:2505
+#: vipers-video-quicktags.php:3042
+#: vipers-video-quicktags.php:3050
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+#: vipers-video-quicktags.php:553
+msgid "Embed a video from Blip.tv"
+msgstr "Встроить видео с Blip.tv"
+
+#: vipers-video-quicktags.php:554
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "Пожалуйста, введите тег вставки для Blip.tv видео в стиле WordPress.com. Подробности смотрите в этом разделе помощи. В будущем Вам не понадобится открывать это окно — Вы можете делать вставку непосредственно в редакторе."
+
+#: vipers-video-quicktags.php:558
+#: vipers-video-quicktags.php:2244
+#: vipers-video-quicktags.php:2518
+#: vipers-video-quicktags.php:3065
+#: vipers-video-quicktags.php:3079
+#: vipers-video-quicktags.php:3097
+msgid "Flickr Video"
+msgstr "Flickr Video"
+
+#: vipers-video-quicktags.php:559
+msgid "Embed a video from Flickr Video"
+msgstr "Встроить видео с Flickr Video"
+
+#: vipers-video-quicktags.php:564
+#: vipers-video-quicktags.php:2531
+#: vipers-video-quicktags.php:3105
+#: vipers-video-quicktags.php:3118
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+#: vipers-video-quicktags.php:565
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "Встроить видео с IFILM/Spike.com"
+
+#: vipers-video-quicktags.php:570
+#: vipers-video-quicktags.php:3140
+#: vipers-video-quicktags.php:3153
+msgid "MySpace"
+msgstr "MySpace"
+
+#: vipers-video-quicktags.php:571
+msgid "Embed a video from MySpace"
+msgstr "Встроить видео с MySpace"
+
+#: vipers-video-quicktags.php:576
+#: vipers-video-quicktags.php:3175
+msgid "FLV"
+msgstr "FLV"
+
+#: vipers-video-quicktags.php:577
+msgid "Embed a Flash Video (FLV) file"
+msgstr "Встроить Flash Video (FLV) файл"
+
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:590
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "Пожалуйста введите URL для файла %1$s."
+
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:1125
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2558
+msgid "Flash Video (FLV)"
+msgstr "Flash Video (FLV)"
+
+#: vipers-video-quicktags.php:582
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2569
+#: vipers-video-quicktags.php:3246
+msgid "Quicktime"
+msgstr "Quicktime"
+
+#: vipers-video-quicktags.php:583
+msgid "Embed a Quicktime video file"
+msgstr "Встроить Quicktime видео файл"
+
+#: vipers-video-quicktags.php:588
+msgid "Video File"
+msgstr "Видео файл"
+
+#: vipers-video-quicktags.php:589
+msgid "Embed a generic video file"
+msgstr "Встроить обычный видео файл "
+
+#: vipers-video-quicktags.php:590
+#: vipers-video-quicktags.php:3280
+msgid "generic video"
+msgstr "обычное видео"
+
+#: vipers-video-quicktags.php:656
+msgid "Example:"
+msgstr "Пример:"
+
+#: vipers-video-quicktags.php:776
+#: vipers-video-quicktags.php:1431
+#: vipers-video-quicktags.php:1541
+#: vipers-video-quicktags.php:1626
+#: vipers-video-quicktags.php:1768
+#: vipers-video-quicktags.php:1886
+msgid "Dimensions"
+msgstr "Размерность"
+
+#: vipers-video-quicktags.php:778
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "Размерность по умолчанию для этого типа видео может быть установлена на странице параметров этого плагина. Тем не менее, Вы можете установить для него свою размерность прямо здесь:"
+
+#: vipers-video-quicktags.php:798
+msgid "Cheatin’ uh?"
+msgstr "Ой, жульничаете?"
+
+#: vipers-video-quicktags.php:1084
+msgid "Settings for this tab reset to defaults."
+msgstr "Установки для этой вкладки будут сброшены до начальных."
+
+#: vipers-video-quicktags.php:1092
+#: vipers-video-quicktags.php:1110
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+#: vipers-video-quicktags.php:1096
+msgid "Optional Comment"
+msgstr "Опциональный комментарий"
+
+#: vipers-video-quicktags.php:1108
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "Поощрите Viper007Bond за этот плагин через PayPal"
+
+#: vipers-video-quicktags.php:1120
+msgid "Additional Settings"
+msgstr "Дополнительные установки"
+
+#: vipers-video-quicktags.php:1126
+msgid "Help"
+msgstr "Помощь"
+
+#: vipers-video-quicktags.php:1127
+msgid "Credits"
+msgstr "Участники"
+
+#: vipers-video-quicktags.php:1135
+msgid "General"
+msgstr "Общие"
+
+#: vipers-video-quicktags.php:1162
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "Вы уверены в том, что Вы желаете сбросить все значения вкладок до значений по умолчанию?"
+
+#: vipers-video-quicktags.php:1174
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "Установите значения по умолчанию для этого типа видео. Все эти значения могут быть изменены индивидуально для каждой вставки. За подробностями обращайтесь к следующему разделу помощи ."
+
+#: vipers-video-quicktags.php:1179
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "Пожалуйста, подумайте над тем, что-бы использовать какой-нибудь браузер отличный от Internet Explorer. Имея ограничения присутствующие в Вашем браузере, эта конфигурационная страница не может быть настолько полнофункциональной, насколько она функциональна в таких браузерах как Firefox или Opera . При использовании таких браузеров, Вы сможете сразу, в живую, просматривать действие любой изменяемой опции в предпросмотре видео."
+
+#: vipers-video-quicktags.php:1334
+#: vipers-video-quicktags.php:1499
+#: vipers-video-quicktags.php:1576
+#: vipers-video-quicktags.php:1688
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "Не могу разобрать URL для предпросмотра. Пожалуйста проверьте то, что это полностью верный URL и он правильно набран."
+
+#: vipers-video-quicktags.php:1376
+msgid "Dark Grey"
+msgstr "Темно-серый"
+
+#: vipers-video-quicktags.php:1377
+msgid "Dark Blue"
+msgstr "Темно-голубой"
+
+#: vipers-video-quicktags.php:1378
+msgid "Light Blue"
+msgstr "Светло-голубой"
+
+#: vipers-video-quicktags.php:1379
+msgid "Green"
+msgstr "Зеленый"
+
+#: vipers-video-quicktags.php:1380
+#: vipers-video-quicktags.php:1721
+msgid "Orange"
+msgstr "Оранжевый"
+
+#: vipers-video-quicktags.php:1381
+msgid "Pink"
+msgstr "Розовый"
+
+#: vipers-video-quicktags.php:1382
+msgid "Purple"
+msgstr "Пурпурный"
+
+#: vipers-video-quicktags.php:1383
+msgid "Ruby Red"
+msgstr "Рубиновый"
+
+#: vipers-video-quicktags.php:1417
+#: vipers-video-quicktags.php:1527
+#: vipers-video-quicktags.php:1612
+#: vipers-video-quicktags.php:1754
+#: vipers-video-quicktags.php:1871
+msgid "Preview"
+msgstr "Предпросмотр"
+
+#: vipers-video-quicktags.php:1420
+#: vipers-video-quicktags.php:1530
+#: vipers-video-quicktags.php:1615
+#: vipers-video-quicktags.php:1757
+#: vipers-video-quicktags.php:1874
+msgid "Loading..."
+msgstr "Загрузка..."
+
+#: vipers-video-quicktags.php:1425
+#: vipers-video-quicktags.php:1535
+#: vipers-video-quicktags.php:1620
+#: vipers-video-quicktags.php:1762
+#: vipers-video-quicktags.php:1879
+msgid "Preview URL"
+msgstr "URL предпросмотра"
+
+#: vipers-video-quicktags.php:1434
+#: vipers-video-quicktags.php:1544
+#: vipers-video-quicktags.php:1629
+#: vipers-video-quicktags.php:1771
+msgid "pixels"
+msgstr "точек"
+
+#: vipers-video-quicktags.php:1435
+#: vipers-video-quicktags.php:1545
+#: vipers-video-quicktags.php:1772
+msgid "Maintain aspect ratio"
+msgstr "Управление пропорциями"
+
+#: vipers-video-quicktags.php:1441
+msgid "Border Color"
+msgstr "Цвет рамки"
+
+#: vipers-video-quicktags.php:1444
+#: vipers-video-quicktags.php:1452
+#: vipers-video-quicktags.php:1639
+#: vipers-video-quicktags.php:1647
+#: vipers-video-quicktags.php:1655
+#: vipers-video-quicktags.php:1663
+#: vipers-video-quicktags.php:1781
+#: vipers-video-quicktags.php:1920
+#: vipers-video-quicktags.php:1928
+#: vipers-video-quicktags.php:1936
+#: vipers-video-quicktags.php:1944
+msgid "Pick a color"
+msgstr "Выбрать цвет"
+
+#: vipers-video-quicktags.php:1449
+msgid "Fill Color"
+msgstr "Залить цветом"
+
+#: vipers-video-quicktags.php:1457
+#: vipers-video-quicktags.php:1786
+msgid "Color Presets"
+msgstr "Цветовые установки"
+
+#: vipers-video-quicktags.php:1461
+msgid "Video Format"
+msgstr "Видео-формат"
+
+#: vipers-video-quicktags.php:1466
+msgid "Low Quality FLV (smallest download) — YouTube Default"
+msgstr "Низкокачественное FLV (наименьший размер) — YouTube по умолчанию"
+
+#: vipers-video-quicktags.php:1467
+msgid "High Quality MP4 (medium download) — Plugin Default"
+msgstr "Высококачественный MP4 (средний размер) — По умолчанию для этого плагина"
+
+#: vipers-video-quicktags.php:1468
+msgid "High Quality FLV (largest download)"
+msgstr "Высококачественный FLV (большой размер)"
+
+#: vipers-video-quicktags.php:1480
+msgid "Miscellaneous"
+msgstr "Разное"
+
+#: vipers-video-quicktags.php:1482
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "Отображать детали видео после просмотра (похожее видео, код для встраивания, и т.д.)"
+
+#: vipers-video-quicktags.php:1483
+msgid "Show fullscreen button"
+msgstr "Отображать кнопку полноэкранного режима"
+
+#: vipers-video-quicktags.php:1484
+msgid "Show border"
+msgstr "Отображать рамку"
+
+#: vipers-video-quicktags.php:1485
+#: vipers-video-quicktags.php:1553
+#: vipers-video-quicktags.php:1670
+msgid "Autoplay video (not recommended)"
+msgstr "Автопроигрывание видео (не рекомендуется)"
+
+#: vipers-video-quicktags.php:1486
+msgid "Loop video playback"
+msgstr "Зациклить воспроизведение"
+
+#: vipers-video-quicktags.php:1551
+#: vipers-video-quicktags.php:1668
+msgid "Other"
+msgstr "Другое"
+
+#: vipers-video-quicktags.php:1636
+msgid "Toolbar Background Color"
+msgstr "Панель фонового цвета"
+
+#: vipers-video-quicktags.php:1644
+msgid "Toolbar Glow Color"
+msgstr "Цвет Отсвета Панели инструментов"
+
+#: vipers-video-quicktags.php:1652
+msgid "Button/Text Color"
+msgstr "Цвет Кнопок/Текста"
+
+#: vipers-video-quicktags.php:1660
+msgid "Seekbar Color"
+msgstr "Цвет Панели поиска"
+
+#: vipers-video-quicktags.php:1671
+msgid "Show related videos"
+msgstr "Показать схожее видео"
+
+#: vipers-video-quicktags.php:1720
+msgid "Default (Blue)"
+msgstr "По умолчанию (Голубой)"
+
+#: vipers-video-quicktags.php:1722
+msgid "Lime"
+msgstr "Лимонный"
+
+#: vipers-video-quicktags.php:1723
+msgid "Fuschia"
+msgstr "Фуксия"
+
+#: vipers-video-quicktags.php:1724
+msgid "White"
+msgstr "Белый"
+
+#: vipers-video-quicktags.php:1778
+msgid "Color"
+msgstr "Цвет"
+
+#: vipers-video-quicktags.php:1790
+msgid "On-Screen Info"
+msgstr "On-Screen Инфо"
+
+#: vipers-video-quicktags.php:1792
+msgid "Portrait"
+msgstr "Портрет"
+
+#: vipers-video-quicktags.php:1793
+msgid "Title"
+msgstr "Заголовок"
+
+#: vipers-video-quicktags.php:1794
+msgid "Byline"
+msgstr "Авторство"
+
+#: vipers-video-quicktags.php:1795
+msgid "Allow fullscreen"
+msgstr "Разрешить полноэкранный режим"
+
+#: vipers-video-quicktags.php:1882
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "По умолчанию, для предпросмотра используется свежее популярное видео с YouTube. Вы можете вставить сюда URL на свой FLV файл, если желаете."
+
+#: vipers-video-quicktags.php:1890
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "точек (если Вы используете стандартную тему, добавьте 20 к высоте для панели управления)"
+
+#: vipers-video-quicktags.php:1897
+msgid "Skin"
+msgstr "Тема"
+
+#: vipers-video-quicktags.php:1911
+msgid "Use Custom Colors"
+msgstr "Использовать свои цвета"
+
+#: vipers-video-quicktags.php:1917
+msgid "Control Bar Background Color"
+msgstr "Фоновый Цвет Панели Управления"
+
+#: vipers-video-quicktags.php:1925
+msgid "Icon/Text Color"
+msgstr "Цвет Иконок/Текста"
+
+#: vipers-video-quicktags.php:1933
+msgid "Icon/Text Hover Color"
+msgstr "Цвет Наведения Иконки/Текста"
+
+#: vipers-video-quicktags.php:1941
+msgid "Video Background Color"
+msgstr "Фоновый цвет для видео"
+
+#: vipers-video-quicktags.php:1949
+msgid "Advanced Parameters"
+msgstr "Расширенные параметры"
+
+#: vipers-video-quicktags.php:1952
+#: vipers-video-quicktags.php:2275
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "Строка запроса со списком дополнительных параметров для проигрывателя. Пример: %3$s"
+
+#: vipers-video-quicktags.php:1953
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "Вам необходимо будет нажать "Сохранить Изменения" для вступления в силу изменений в параметрах, из-за ограниченности моих знаний в Javascript."
+
+#: vipers-video-quicktags.php:1989
+msgid "Video Alignment"
+msgstr "Выравнивание видео"
+
+#: vipers-video-quicktags.php:1994
+msgid "Left"
+msgstr "Слева"
+
+#: vipers-video-quicktags.php:1995
+msgid "Center"
+msgstr "По центру"
+
+#: vipers-video-quicktags.php:1996
+msgid "Right"
+msgstr "Справа"
+
+#: vipers-video-quicktags.php:1997
+msgid "Float Left"
+msgstr "Всплывать слева"
+
+#: vipers-video-quicktags.php:1998
+msgid "Float Right"
+msgstr "Всплывать справа"
+
+#: vipers-video-quicktags.php:2010
+msgid "Show Buttons In Editor On Line Number"
+msgstr "Показывать Кнопки в редакторе на строке номер"
+
+#: vipers-video-quicktags.php:2015
+msgid "1"
+msgstr "1"
+
+#: vipers-video-quicktags.php:2016
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "2 (Панель Kitchen Sink)"
+
+#: vipers-video-quicktags.php:2017
+msgid "3 (Default)"
+msgstr "3 (По умолчанию)"
+
+#: vipers-video-quicktags.php:2029
+msgid "Feed Text"
+msgstr "Feed Текст"
+
+#: vipers-video-quicktags.php:2032
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "Введите какой-нибудь текст, который будет показан в фиде вместо видео (так как Вы не можете встраивать видео непосредственно в фид). Если поле будет пустым, по умолчанию будет выведено: %s"
+
+#: vipers-video-quicktags.php:2032
+#: vipers-video-quicktags.php:2662
+msgid "Click here to view the embedded video."
+msgstr "Щелкните здесь для просмотра встроенного видео."
+
+#: vipers-video-quicktags.php:2036
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+#: vipers-video-quicktags.php:2038
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "Пытаться использовать Windows Media Player для проигрывания обычных видео файлов для пользователей Windows"
+
+#: vipers-video-quicktags.php:2043
+msgid "Advanced Settings"
+msgstr "Расширенные установки"
+
+#: vipers-video-quicktags.php:2045
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "Если Вы не уверены в том, что Вы делаете, Вы просто можете пропустить этот раздел."
+
+#: vipers-video-quicktags.php:2049
+msgid "Dynamic QTObject Loading"
+msgstr "Загрузка динамического QTObject"
+
+#: vipers-video-quicktags.php:2051
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "Загружать файл Javascript если он действительно необходим. Отключите эту опцию если Вы размещаете Quicktime видео на панели виджетов."
+
+#: vipers-video-quicktags.php:2056
+msgid "Custom CSS"
+msgstr "Свой CSS"
+
+#: vipers-video-quicktags.php:2058
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "Желаете установить собственный CSS для контроля за отображением видео? Тогда просто щелкните на этом тексте для показа расширенной опции."
+
+#: vipers-video-quicktags.php:2060
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "Вы можете ввести собственный CSS в поле ввода расположенное ниже. Он переназначит значения по умолчанию для CSS элементов с помощью указания %1$s. Для помощи и примеров, смотрите раздел ."
+
+#: vipers-video-quicktags.php:2103
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "Щелкните по вопросу, что-бы просмотреть ответ, или щелкните на этом тексте, что-бы развернуть все ответы."
+
+#: vipers-video-quicktags.php:2107
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "Видео на моем блоге не выводится, вместо него видны только ссылки. Что случилось?"
+
+#: vipers-video-quicktags.php:2110
+msgid "Here are five common causes:"
+msgstr "Здесь возможны пять общих вариантов:"
+
+#: vipers-video-quicktags.php:2112
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "У Вас запущен Firefox AdBlock? AdBlock и некоторые правила блокировки могут отразиться на выводе видео, к примеру правило YouTube-хостинг. Выключите AdBlock или перейдите на AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2113
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "В Вашей теме отсутствует код <?php wp_head();?> внутри <head> который автоматически вставляет загрузку необходимого Javascript файла. В этом случае, Вы можете видеть окно предупреждения, которое всплывает когда Вы пытаетесь просмотреть страницу со встроенным видео (принимая во внимание, что это не проблема под номером #3). Отредактируйте Вашу тему, файл header.php и добавьте код сразу перед </head>"
+
+#: vipers-video-quicktags.php:2114
+#: vipers-video-quicktags.php:2120
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "Возможно у Вас отключена поддержка Javascript. Этот плагин вставляет видео через Javascript. Пожалуйста включите его ."
+
+#: vipers-video-quicktags.php:2115
+#: vipers-video-quicktags.php:2121
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "Возможно у Вас установлена не последняя версия Flash. Пожалуйста установите его ."
+
+#: vipers-video-quicktags.php:2119
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "У Вас запущен Firefox AdBlock? AdBlock и некоторые правила блокировки могут отразиться на выводе видео, к примеру правило YouTube-хостинг. Выключите AdBlock или перейдите на AdBlock Plus ."
+
+#: vipers-video-quicktags.php:2127
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "Где я могу взять код для встраивания Viddler видео?"
+
+#: vipers-video-quicktags.php:2129
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Непосредственный URL на видео для Viddler не имеет ничего общего со встраиваемым URL'ом, Вы должны использовать стилевой формат WordPress.com. Отправляйтесь за видео на Viddler, щелкните кнопку "Embed This" расположенную ниже видео, и выберите WordPress.com формат. Вы можете вставить этот код непосредственно в статью или страницу и это позволит встроить видео."
+
+#: vipers-video-quicktags.php:2134
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "Где я могу взять код для встраивания Blip.tv видео?"
+
+#: vipers-video-quicktags.php:2136
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "Непосредственный URL на видео для Blip.tv не имеет ничего общего со встраиваемым URL'ом, Вы должны использовать стилевой формат WordPress.com. Отправляйтесь за видео на Blip.tv, щелкните на желтом выпадающем списке "Share" справа от видео и выберите "Embed". Далее выберите "WordPress.com" из выпадающего списка "Show Player" и в конце нажмите "Go". Вы можете вставить этот код непосредственно в статью или страницу и это позволит встроить видео."
+
+#: vipers-video-quicktags.php:2138
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "К сведению: Проигнорируйте предупреждающее сообщение. Этот плагин обеспечит корректную поддержку для WordPress.com поэтому это видео будет работать на Вашем блоге."
+
+#: vipers-video-quicktags.php:2142
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "Почему этот плагин не поддерживает монтаж видео с сайта, с которого я хочу его встроить?"
+
+#: vipers-video-quicktags.php:2144
+msgid "There's a couple likely reasons:"
+msgstr "Здесь возможны несколько причин:"
+
+#: vipers-video-quicktags.php:2146
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "Вебсайт может использовать URL который не имеет ничего общего с URL'ом отображаемым в адресной строке. Это означает, что даже если Вы укажите URL на видео, будет совсем не просто найти URL для встраивания видео."
+
+#: vipers-video-quicktags.php:2147
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "Вебсайт может быть слишком мал, иметь какие-то специфические особенности, плохо поддерживаться и т.п. Разработчик этого плагина не видит смысл поддерживать видео с сайта, которое будет полезно одному - двум посетителям."
+
+#: vipers-video-quicktags.php:2148
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "Возможно я никогда не слышал об этом сайте. Пожалуйста расскажите об этом на моем форуме указав на пример ссылки для видео с этого сайта и я просмотрю его."
+
+#: vipers-video-quicktags.php:2150
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "Этот плагин имеет возможность встраивать любой Flash файл. Подробности смотрите здесь: короткий код вставки Flash ."
+
+#: vipers-video-quicktags.php:2154
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "На моем встроенном видео с YouTube есть красные элементы (поверх кнопок). Что не так?"
+
+#: vipers-video-quicktags.php:2156
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube не предоставляет способа для смены этого цвета."
+
+#: vipers-video-quicktags.php:2160
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "Как я могу изменить размер, цвета, и т.п. для конкретного видео?"
+
+#: vipers-video-quicktags.php:2162
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "Вы можете контролировать большинство параметров через систему коротких кодов WordPress, которые Вы используете, когда вставляете видео в Ваши статьи. Короткие коды похожи на BBCode . Вот несколько примеров:"
+
+#: vipers-video-quicktags.php:2168
+msgid "Any value that is not entered will fall back to the default."
+msgstr "Любые не введенные значения будут установлены в значения по умолчанию."
+
+#: vipers-video-quicktags.php:2172
+#: vipers-video-quicktags.php:2189
+#: vipers-video-quicktags.php:2199
+#: vipers-video-quicktags.php:2214
+#: vipers-video-quicktags.php:2228
+#: vipers-video-quicktags.php:2238
+#: vipers-video-quicktags.php:2244
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2294
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "Какие параметры доступны для краткого кода %s?"
+
+#: vipers-video-quicktags.php:2175
+#: vipers-video-quicktags.php:2192
+#: vipers-video-quicktags.php:2202
+#: vipers-video-quicktags.php:2217
+#: vipers-video-quicktags.php:2231
+#: vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2258
+#: vipers-video-quicktags.php:2267
+#: vipers-video-quicktags.php:2284
+#: vipers-video-quicktags.php:2298
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — ширина в пикселях"
+
+#: vipers-video-quicktags.php:2176
+#: vipers-video-quicktags.php:2193
+#: vipers-video-quicktags.php:2203
+#: vipers-video-quicktags.php:2218
+#: vipers-video-quicktags.php:2232
+#: vipers-video-quicktags.php:2248
+#: vipers-video-quicktags.php:2259
+#: vipers-video-quicktags.php:2268
+#: vipers-video-quicktags.php:2285
+#: vipers-video-quicktags.php:2299
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — высота в пикселях"
+
+#: vipers-video-quicktags.php:2177
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — цвет рамки плейера в hex формате"
+
+#: vipers-video-quicktags.php:2178
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — цвет плейера в hex формате"
+
+#: vipers-video-quicktags.php:2179
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — отображать рамку или нет (0 или 1)"
+
+#: vipers-video-quicktags.php:2180
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — показывать схожее видео, URL, детали о видео, и т.п. в конце просмотра (0 или 1)"
+
+#: vipers-video-quicktags.php:2181
+#: vipers-video-quicktags.php:2223
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — показывать кнопку полноэкранного просмотра (0 или 1)"
+
+#: vipers-video-quicktags.php:2182
+#: vipers-video-quicktags.php:2194
+#: vipers-video-quicktags.php:2208
+#: vipers-video-quicktags.php:2233
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — автоматически начинать проигрывание (0 или 1)"
+
+#: vipers-video-quicktags.php:2183
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — зациклить проигрывание (0 или 1)"
+
+#: vipers-video-quicktags.php:2184
+#, php-format
+msgid "%s — quality value for video playback (0 for low quality FLV, 18 for high quality MP4, 6 for high quality FLV)"
+msgstr "%s — качество проигрываемого видео (0низкокачественное FLV, 18 высококачественный MP4, 6 высококачественный FLV)"
+
+#: vipers-video-quicktags.php:2204
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — панель фонового цвета в hex"
+
+#: vipers-video-quicktags.php:2205
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — цвет отсвета панели инструментов в hex формате"
+
+#: vipers-video-quicktags.php:2206
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — цвет кнопок/текста в hex формате"
+
+#: vipers-video-quicktags.php:2207
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — цвет панели поиска в hex формате"
+
+#: vipers-video-quicktags.php:2209
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — показывать схожее видео (0 или 1)"
+
+#: vipers-video-quicktags.php:2219
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — цвет плейера в hex формате"
+
+#: vipers-video-quicktags.php:2220
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — показывать картинку загрузчика (0 или 1)"
+
+#: vipers-video-quicktags.php:2221
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — отображать заголовок видео (0 или 1)"
+
+#: vipers-video-quicktags.php:2222
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — отображать автора видео (0 или 1)"
+
+#: vipers-video-quicktags.php:2240
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "С того времени как краткий код WordPress.com используется для втавки Viddler видео, никакие другие параметры более не используются. Краткий код WordPress.com должен быть использован как URL для вставки видео и ничего более."
+
+#: vipers-video-quicktags.php:2249
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — отображать подробности о видео (0 или 1), по умолчанию 1"
+
+#: vipers-video-quicktags.php:2254
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Какие параметры доступны для коротких кодов Metacafe, Blip.tv, IFILM/Spike, и MySpace?"
+
+#: vipers-video-quicktags.php:2256
+msgid "All of these video formats only support the following:"
+msgstr "Все эти видео форматы поддерживают только следующее:"
+
+#: vipers-video-quicktags.php:2269
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — URL картинки предпросмотра, по умолчанию он такой-же как URL видео файла только с расширением .jpg вместо .flv"
+
+#: vipers-video-quicktags.php:2270
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — цвет контрольной панели плейера в hex формате"
+
+#: vipers-video-quicktags.php:2271
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — цвет иконки/текста в плейере в hex формате"
+
+#: vipers-video-quicktags.php:2272
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — цвет иконки/текста при наведении в плейере в hex формате"
+
+#: vipers-video-quicktags.php:2273
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — цвет фона на видео в плейере в hex формате"
+
+#: vipers-video-quicktags.php:2274
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — уровень звука в процентах, по умолчанию 100"
+
+#: vipers-video-quicktags.php:2275
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+#: vipers-video-quicktags.php:2282
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "Результаты вставки Quicktime видео могут разнится от того, какой пользовательский компьютер используется и какое ПО на нем установлено, но если Вы все-таки собрались встроить Quicktime видео, здесь собраны используемые для этого параметры:"
+
+#: vipers-video-quicktags.php:2286
+#: vipers-video-quicktags.php:2289
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — автоматически начинать проигрывание (0 или 1), по умолчанию 0"
+
+#: vipers-video-quicktags.php:2287
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — использовать изображение заполнитель: click-to-play (0 или 1), по умолчанию 0"
+
+#: vipers-video-quicktags.php:2288
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — URL на картинку заполнитель, по умолчанию совпадает с URL'ом видео файла, но используется .jpg вместо .mov"
+
+#: vipers-video-quicktags.php:2294
+msgid "video file"
+msgstr "видео файл"
+
+#: vipers-video-quicktags.php:2296
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "Результаты вставки обычного видео могут разнится от того, какой пользовательский компьютер используется и какое ПО на нем установлено, но если Вы все-таки собрались его встраивать, то здесь собраны используемые для этого параметры:"
+
+#: vipers-video-quicktags.php:2300
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — пытаться использовать Windows Media Player для пользователей Windows (0 или 1)"
+
+#: vipers-video-quicktags.php:2306
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr "Что такое "Свой CSS" в "Расширенных установках"?"
+
+#: vipers-video-quicktags.php:2308
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "Это быстрый и простой путь по контролю за внешним оформлением видео вставляемого в статью без необходимости редактирования файла style.css. Просто вводите свой CSS код и он выводится в заголовке Вашей темы."
+
+#: vipers-video-quicktags.php:2309
+msgid "Some examples:"
+msgstr "Несколько примеров:"
+
+#: vipers-video-quicktags.php:2311
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "Добавить красную рамку для всех видео: %s"
+
+#: vipers-video-quicktags.php:2312
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "Только YouTube видео будет всплывать слева: %s"
+
+#: vipers-video-quicktags.php:2318
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "Как я могу вставить обычный Flash файл или видео с веб сайта, которое не поддерживается этим плагином?"
+
+#: vipers-video-quicktags.php:2320
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "У этого плагина есть короткий код %s, который может использоваться для вставки любого Flash файла. Вот его формат:"
+
+#: vipers-video-quicktags.php:2325
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "Почему Ваш плагин вставляет Quicktime и другие обычные видео файлы в таком безобразном виде? Вы не можете сделать что-то получше?"
+
+#: vipers-video-quicktags.php:2327
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "Вставка Quiktime и других обычных видео файлов это вечная головная боль и невероятно тяжелая задача связанная с поддержкой различных браузеров и операционных систем. Я категорически настаиваю конвертить все видео в формат Flash Video или еще лучше в H.264 и затем использовать его как Flash Video (FLV). Для обоих форматов существуют бесплатные конвертеры."
+
+#: vipers-video-quicktags.php:2336
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "Этот плагин использует множество скриптов и пакетов созданных другими людьми и они заслуживают внимания. Вот они, в случайном порядке:"
+
+#: vipers-video-quicktags.php:2339
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "Авторы и помощники SWFObject который используется для встраивания видео базирующегося на Flash."
+
+#: vipers-video-quicktags.php:2340
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "Jeroen Wijering создатель JW FLV Media Player , который используется для проигрывания FLV."
+
+#: vipers-video-quicktags.php:2341
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "Steven Wittens создатель Farbtastic , фантастического Javascript'а для выбора цвета."
+
+#: vipers-video-quicktags.php:2342
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh создатель Liz Comment Counter - плагина, который познакомил меня с Farbtastic и многими другими Javascript'ами на которых базируется мой код для захвата и выбора цвета."
+
+#: vipers-video-quicktags.php:2343
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz помогал мне с TinyMCE Javascript и этим самым сэкономил мне уйму времени."
+
+#: vipers-video-quicktags.php:2344
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "Geoff Stearns создатель QTObject используемого для вставки Quicktime видео."
+
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James создатель Silk icon pack . Этот плагин использует не одну иконку из этого пакета."
+
+#: vipers-video-quicktags.php:2346
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "Авторы и помощники jQuery , невероятного Javascript пакета используемого в WordPress."
+
+#: vipers-video-quicktags.php:2347
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "Все те, кто помогал создавать WordPress и тех кто сделал к нему замечательный API и без которых не мог-бы существовать этот плагин."
+
+#: vipers-video-quicktags.php:2348
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "Все те, кто сообщает о найденных ошибках и вносят свои предложения в этот плагин."
+
+#: vipers-video-quicktags.php:2351
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "Следующие люди были довольно любезны, что-бы перевести этот плагин на другие языки:"
+
+#: vipers-video-quicktags.php:2354
+#, php-format
+msgid "Dutch: %s"
+msgstr "Немецкий: %s"
+
+#: vipers-video-quicktags.php:2355
+#, php-format
+msgid "Italian: %s"
+msgstr "Итальянский: %s"
+
+#: vipers-video-quicktags.php:2356
+#, php-format
+msgid "Polish: %s"
+msgstr "Польский: %s"
+
+#: vipers-video-quicktags.php:2357
+#, php-format
+msgid "Russian: %s"
+msgstr "Русский: %s"
+
+#: vipers-video-quicktags.php:2360
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "Если Вы хотите использовать этот плагин на другом языке и желаете увидеть свое имя в этом списке, просто переведите текст предоставляемый в файле шаблона расположенного в папке "localization" этого плагина и затем вышлите его мне . Для помощи читайте WordPress Codex ."
+
+#: vipers-video-quicktags.php:2367
+msgid "Click the above links to switch between tabs."
+msgstr "Для переключения между закладками воспользуйтесь ссылками расположенными выше."
+
+#: vipers-video-quicktags.php:2400
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"Вы согласны с лицензией Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported? Ссылку на нее вы можете найти с правой стороны.\n"
+"\n"
+"Если говорить коротко, то Вы не можете использовать JW's FLV Media Player на коммерческом сайте без покупки коммерческой лицензии."
+
+#: vipers-video-quicktags.php:2411
+msgid "Media Type"
+msgstr "Тип медиа"
+
+#: vipers-video-quicktags.php:2412
+msgid "Show Editor Button?"
+msgstr "Отображать кнопку редактора?"
+
+#: vipers-video-quicktags.php:2413
+msgid "Default Width"
+msgstr "Ширина по умолчанию"
+
+#: vipers-video-quicktags.php:2414
+msgid "Default Height"
+msgstr "Высота по умолчанию"
+
+#: vipers-video-quicktags.php:2415
+msgid "Keep Aspect Ratio?"
+msgstr "Сохранять пропорции?"
+
+#: vipers-video-quicktags.php:2544
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+#: vipers-video-quicktags.php:2561
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commerical website ."
+msgstr "JW's FLV Media Player находится под лицензией Creative Commons Noncommercial license , которая говорит о том, что Вы не можете его использовать на коммерческом веб сайте ."
+
+#: vipers-video-quicktags.php:2576
+msgid "Generic Video File"
+msgstr "Обычный видео файл"
+
+#: vipers-video-quicktags.php:2576
+msgid "This part of the plugin is very buggy as embedding video files can be hard. Consider trying TinyMCE's native video embedder instead."
+msgstr "Эта часть плагина очень нестабильна и не всегда корректно вставляет видео. Попробуйте оригинальный видео монтаж, прилагаемый для TinyMCE."
+
+#: vipers-video-quicktags.php:2591
+msgid "Save Changes"
+msgstr "Сохранить изменения"
+
+#: vipers-video-quicktags.php:2592
+msgid "Reset Tab To Defaults"
+msgstr "Сбросить все вкладки до значений по умолчанию"
+
+#: vipers-video-quicktags.php:2652
+#, php-format
+msgid "ERROR: %s"
+msgstr "ОШИБКА: %s"
+
+#: vipers-video-quicktags.php:2692
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 больше не существует, поэтому это Stage6 видео не может быть показано."
+
+#: vipers-video-quicktags.php:2707
+#: vipers-video-quicktags.php:2784
+#: vipers-video-quicktags.php:2824
+#: vipers-video-quicktags.php:2882
+#: vipers-video-quicktags.php:2930
+#: vipers-video-quicktags.php:2995
+#: vipers-video-quicktags.php:3065
+#: vipers-video-quicktags.php:3105
+#: vipers-video-quicktags.php:3140
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "Нет подходящего URL или видео ID для %s BBCode"
+
+#: vipers-video-quicktags.php:2731
+#: vipers-video-quicktags.php:2739
+#: vipers-video-quicktags.php:2798
+#: vipers-video-quicktags.php:2844
+#: vipers-video-quicktags.php:2900
+#: vipers-video-quicktags.php:2944
+#: vipers-video-quicktags.php:3008
+#: vipers-video-quicktags.php:3079
+#: vipers-video-quicktags.php:3118
+#: vipers-video-quicktags.php:3153
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "Не могу разобрать URL, проверьте корректность записи %s"
+
+#: vipers-video-quicktags.php:2743
+#: vipers-video-quicktags.php:2750
+msgid "YouTube Preview Image"
+msgstr "YouTube Трейлер"
+
+#: vipers-video-quicktags.php:2965
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "Извините, но единственный формат, поддерживаемый для Viddler это WordPress.com-style format отличный от этого URL. Вы можете найте его в окне "Вставить это"."
+
+#: vipers-video-quicktags.php:2980
+#: vipers-video-quicktags.php:3042
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "Вы используете некорректный формат записи: %s. Пожалуйста проверьте Ваш код."
+
+#: vipers-video-quicktags.php:2987
+#: vipers-video-quicktags.php:3050
+#: vipers-video-quicktags.php:3348
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "Пожалуйста включите Javascript и Flash для просмотра этого %3$s видео."
+
+#: vipers-video-quicktags.php:3029
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "Извините, но единственный формат, поддерживаемый для Blip.tv, это WordPress.com-style format. Вы можете найти его через Share -> Embed -> WordPress.com."
+
+#: vipers-video-quicktags.php:3175
+#: vipers-video-quicktags.php:3246
+#: vipers-video-quicktags.php:3280
+#: vipers-video-quicktags.php:3323
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "В %s BBCode нет подходящего URL "
+
+#: vipers-video-quicktags.php:3323
+msgid "generic Flash embed"
+msgstr "вставка обычного Flash"
+
+#: vipers-video-quicktags.php:3348
+msgid "Flash"
+msgstr "Flash"
+
+#: vipers-video-quicktags.php:3366
+msgid "Site Administrator: Your theme is missing inside of it's which is required for Viper's Video Quicktags. Please edit your theme's header.php and add it right before ."
+msgstr "Администратор сайта: В Вашей теме отсутствует код: внутри тега , что является необходимым для Viper's Video Quicktags. Пожалуйста отредактируйте файл Вашей темы - header.php и добавьте отсутствующий код сразу перед ."
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-zh_CN.mo b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-zh_CN.mo
new file mode 100644
index 00000000..a3b3bb3b
Binary files /dev/null and b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-zh_CN.mo differ
diff --git a/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-zh_CN.po b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-zh_CN.po
new file mode 100644
index 00000000..f3d71862
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/localization/vipers-video-quicktags-zh_CN.po
@@ -0,0 +1,1678 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Viper's Video Quicktags 简体中文语言包\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/vipers-video-quicktags\n"
+"POT-Creation-Date: 2009-09-12 09:56+0000\n"
+"PO-Revision-Date: 2009-09-16 09:29+0800\n"
+"Last-Translator: Dreamcolor \n"
+"Language-Team: Dreamcolor \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-Language: Chinese\n"
+"X-Poedit-Country: CHINA\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: \n"
+"X-Textdomain-Support: yes\n"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:247
+msgid "Click here to view the embedded video."
+msgstr "点击这里查看嵌入的视频。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:407
+#: vipers-video-quicktags.php:1422
+msgid "Default"
+msgstr "默认"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:408
+msgid "3D Pixel Style"
+msgstr "3D Pixel Style"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:409
+msgid "Atomic Red"
+msgstr "Atomic Red"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:410
+msgid "Bekle (Overlay)"
+msgstr "Bekle (Overlay)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:411
+msgid "Blue Metal"
+msgstr "Blue Metal"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:412
+msgid "Comet"
+msgstr "Comet"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:413
+msgid "Control Panel"
+msgstr "Control Panel"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:414
+msgid "Dang Dang"
+msgstr "Dang Dang"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:415
+msgid "Fashion"
+msgstr "Fashion"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:416
+msgid "Festival"
+msgstr "Festival"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:417
+msgid "Grunge Tape"
+msgstr "Grunge Tape"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:418
+msgid "Ice Cream Sneaka"
+msgstr "Ice Cream Sneaka"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:419
+msgid "Kleur"
+msgstr "Kleur"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:420
+msgid "Magma"
+msgstr "Magma"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:421
+msgid "Metarby 10"
+msgstr "Metarby 10"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:422
+msgid "Modieus (Stylish)"
+msgstr "Modieus (Stylish)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:423
+msgid "Modieus (Stylish) Slim"
+msgstr "Modieus (Stylish) Slim"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:424
+msgid "Nacht"
+msgstr "Nacht"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:425
+msgid "Neon"
+msgstr "Neon"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:426
+msgid "Pearlized"
+msgstr "Pearlized"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:427
+msgid "Pixelize"
+msgstr "Pixelize"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:428
+msgid "Play Casso"
+msgstr "Play Casso"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:429
+msgid "Schoon"
+msgstr "Schoon"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:430
+msgid "Silvery White"
+msgstr "Silvery White"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:431
+msgid "Simple"
+msgstr "Simple"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:432
+msgid "Snel"
+msgstr "Snel"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:433
+msgid "Stijl"
+msgstr "Stijl"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:434
+msgid "Traganja"
+msgstr "Traganja"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:441
+#, php-format
+msgid "Viper's Video Quicktags requires WordPress 2.8 or newer. Please upgrade ! By not upgrading, your blog is likely to be hacked ."
+msgstr "该版本的 Viper's Video Quicktags 需要 WordPress 2.8 或更高。请升级 !如果不升级,您的 Blog 可能会被入侵 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:447
+msgid "Viper's Video Quicktags Configuration"
+msgstr "Viper's Video Quicktags 配置"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:447
+msgid "Video Quicktags"
+msgstr "Video Quicktags"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:458
+msgid "Settings"
+msgstr "设置"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:548
+#: vipers-video-quicktags.php:1164
+#: vipers-video-quicktags.php:2206
+#: vipers-video-quicktags.php:2460
+#: vipers-video-quicktags.php:2772
+#: vipers-video-quicktags.php:2802
+#: vipers-video-quicktags.php:2810
+#: vipers-video-quicktags.php:2924
+msgid "YouTube"
+msgstr "YouTube"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:549
+msgid "Embed a video from YouTube"
+msgstr "嵌入 YouTube 的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:550
+#: vipers-video-quicktags.php:556
+#: vipers-video-quicktags.php:562
+#: vipers-video-quicktags.php:568
+#: vipers-video-quicktags.php:574
+#: vipers-video-quicktags.php:586
+#: vipers-video-quicktags.php:598
+#: vipers-video-quicktags.php:604
+#: vipers-video-quicktags.php:610
+msgid "Please enter the URL at which the video can be viewed."
+msgstr "请输入能够被查看的视频的链接。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:554
+#: vipers-video-quicktags.php:1165
+#: vipers-video-quicktags.php:2222
+#: vipers-video-quicktags.php:2473
+#: vipers-video-quicktags.php:2876
+#: vipers-video-quicktags.php:2895
+msgid "Google Video"
+msgstr "Google Video"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:555
+msgid "Embed a video from Google Video"
+msgstr "嵌入 Google Video 的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:560
+#: vipers-video-quicktags.php:1166
+#: vipers-video-quicktags.php:2232
+#: vipers-video-quicktags.php:2486
+#: vipers-video-quicktags.php:2948
+msgid "DailyMotion"
+msgstr "DailyMotion"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:561
+msgid "Embed a video from DailyMotion"
+msgstr "嵌入 DailyMotion 的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:566
+#: vipers-video-quicktags.php:1167
+#: vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2499
+#: vipers-video-quicktags.php:2988
+#: vipers-video-quicktags.php:3010
+msgid "Vimeo"
+msgstr "Vimeo"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:567
+msgid "Embed a video from Vimeo"
+msgstr "嵌入 Vimeo 的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:572
+#: vipers-video-quicktags.php:2261
+#: vipers-video-quicktags.php:2512
+#: vipers-video-quicktags.php:3052
+#: vipers-video-quicktags.php:3084
+msgid "Veoh"
+msgstr "Veoh"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:573
+msgid "Embed a video from Veoh"
+msgstr "嵌入 Veoh 的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:578
+#: vipers-video-quicktags.php:2164
+#: vipers-video-quicktags.php:2271
+#: vipers-video-quicktags.php:2525
+#: vipers-video-quicktags.php:3133
+#: vipers-video-quicktags.php:3140
+msgid "Viddler"
+msgstr "Viddler"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:579
+msgid "Embed a video from Viddler"
+msgstr "嵌入 Viddler 的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:580
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Viddler video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "请为 Viddler 视频输入 WordPress.com 样式的嵌入标签。查看帮助 获得更多信息。在这个功能中,您不需要真的打开这个窗口 — 您只需要直接粘帖到编辑器中即可。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:584
+#: vipers-video-quicktags.php:2532
+#: vipers-video-quicktags.php:3150
+#: vipers-video-quicktags.php:3167
+msgid "Metacafe"
+msgstr "Metacafe"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:585
+msgid "Embed a video from Metacafe"
+msgstr "嵌入 Metacafe 的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:590
+#: vipers-video-quicktags.php:2171
+#: vipers-video-quicktags.php:2545
+#: vipers-video-quicktags.php:3207
+#: vipers-video-quicktags.php:3215
+msgid "Blip.tv"
+msgstr "Blip.tv"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:591
+msgid "Embed a video from Blip.tv"
+msgstr "嵌入 Blip.tv 上的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:592
+#, php-format
+msgid "Please enter the WordPress.com-style embed tag for the Blip.tv video. See Help for details. In the future, you don't need to actually open this window — you can just paste directly into the editor."
+msgstr "请为 Blip.tv 视频输入 WordPress.com 样式的嵌入标签。查看帮助 获得更多信息。在这个功能中,您不需要真的打开这个窗口 — 您只需要直接粘帖到编辑器中即可。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:596
+#: vipers-video-quicktags.php:2277
+#: vipers-video-quicktags.php:2558
+#: vipers-video-quicktags.php:3266
+#: vipers-video-quicktags.php:3284
+#: vipers-video-quicktags.php:3302
+msgid "Flickr Video"
+msgstr "Flickr 视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:597
+msgid "Embed a video from Flickr Video"
+msgstr "嵌入 Flickr 上的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:602
+#: vipers-video-quicktags.php:2571
+#: vipers-video-quicktags.php:3312
+#: vipers-video-quicktags.php:3329
+msgid "IFILM/Spike"
+msgstr "IFILM/Spike"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:603
+msgid "Embed a video from IFILM/Spike.com"
+msgstr "嵌入 IFILM/Spike.com 上的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:608
+#: vipers-video-quicktags.php:3353
+#: vipers-video-quicktags.php:3370
+msgid "MySpace"
+msgstr "MySpace"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:609
+msgid "Embed a video from MySpace"
+msgstr "嵌入 MySpace 中的视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:614
+#: vipers-video-quicktags.php:3394
+msgid "FLV"
+msgstr "FLV"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:615
+msgid "Embed a Flash Video (FLV) file"
+msgstr "嵌入 Flash 视频 (FLV) 文件"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:616
+#: vipers-video-quicktags.php:622
+#: vipers-video-quicktags.php:628
+#, php-format
+msgid "Please enter the URL to the %1$s file."
+msgstr "请输入 %1$s 文件的链接地址。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:616
+#: vipers-video-quicktags.php:1168
+#: vipers-video-quicktags.php:2297
+#: vipers-video-quicktags.php:2598
+msgid "Flash Video (FLV)"
+msgstr "Flash 视频 (FLV)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:620
+#: vipers-video-quicktags.php:622
+#: vipers-video-quicktags.php:2313
+#: vipers-video-quicktags.php:2609
+#: vipers-video-quicktags.php:3488
+msgid "Quicktime"
+msgstr "Quicktime"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:621
+msgid "Embed a Quicktime video file"
+msgstr "嵌入 Quicktime 视频文件"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:626
+msgid "Video File"
+msgstr "视频文件"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:627
+msgid "Embed a generic video file"
+msgstr "嵌入常规视频文件"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:628
+#: vipers-video-quicktags.php:3534
+msgid "generic video"
+msgstr "常规视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:694
+msgid "Example:"
+msgstr "示例:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:814
+#: vipers-video-quicktags.php:1478
+#: vipers-video-quicktags.php:1574
+#: vipers-video-quicktags.php:1660
+#: vipers-video-quicktags.php:1802
+#: vipers-video-quicktags.php:1920
+msgid "Dimensions"
+msgstr "尺寸"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:816
+#, php-format
+msgid "The default dimensions for this video type can be set on this plugin's settings page . However, you can set custom dimensions for this one particular video here:"
+msgstr "该视频格式的默认尺寸可以在该插件的设置页面 中进行定义。然而,您也可以在这里单独设置该视频的尺寸:"
+
+#: vipers-video-quicktags.php:836
+msgid "Cheatin’ uh?"
+msgstr "想作弊吗?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1126
+msgid "Settings for this tab reset to defaults."
+msgstr "该标签下的设置已经被恢复为默认值。"
+
+# @ vipers-video-quicktags
+#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
+#. Plugin Name of an extension
+#: vipers-video-quicktags.php:1134
+#: vipers-video-quicktags.php:1148
+msgid "Viper's Video Quicktags"
+msgstr "Viper's Video Quicktags"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1138
+msgid "Optional Comment"
+msgstr "可选注释"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1153
+msgid "Donate to Viper007Bond for this plugin via PayPal"
+msgstr "通过 PayPal 赞助 Viper007Bond"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1163
+msgid "Additional Settings"
+msgstr "附加设置"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1169
+msgid "Help"
+msgstr "帮助"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1170
+msgid "Credits"
+msgstr "鸣谢"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1178
+msgid "General"
+msgstr "常规"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1205
+msgid "Are you sure you want to reset this tab's settings to the defaults?"
+msgstr "您确认想要复位该标签的设置为默认值吗?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1217
+#, php-format
+msgid "Set the defaults for this video type here. All of these settings can be overridden on individual embeds. See the Help section for details."
+msgstr "在这里设置视频的默认类型。所有设置都可以在独立嵌入项中进行修改。查看帮助章节 获得更多细节。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1222
+#, php-format
+msgid "Please consider using a browser other than Internet Explorer though. Due to limitations with your browser, these configuration pages won't be as full featured as if you were using a brower such as Firefox or Opera . If you switch, you'll be able to see the video preview update live as you change any option (rather than just a very limited number options) and more."
+msgstr "请考虑将您的 Internet Explorer 换成其他的浏览器。由于浏览器的限制,无法使用该配置页面上全部的功能。请使用像 Firefox 或 Opera 等浏览器。如果您更换了浏览器,您可以在更改了任何 设置后实时查看到预览视频的效果(不仅仅是那少量的选项)还有更多。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1377
+#: vipers-video-quicktags.php:1530
+#: vipers-video-quicktags.php:1610
+#: vipers-video-quicktags.php:1722
+msgid "Unable to parse preview URL. Please make sure it's the full URL and a valid one at that."
+msgstr "无法解析预览链接。请确认完整 链接和文件。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1423
+msgid "Dark Grey"
+msgstr "深灰色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1424
+msgid "Dark Blue"
+msgstr "深蓝色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1425
+msgid "Light Blue"
+msgstr "浅蓝"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1426
+msgid "Green"
+msgstr "绿色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1427
+#: vipers-video-quicktags.php:1755
+msgid "Orange"
+msgstr "橙色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1428
+msgid "Pink"
+msgstr "粉色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1429
+msgid "Purple"
+msgstr "紫色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1430
+msgid "Ruby Red"
+msgstr "宝石红"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1464
+#: vipers-video-quicktags.php:1560
+#: vipers-video-quicktags.php:1646
+#: vipers-video-quicktags.php:1788
+#: vipers-video-quicktags.php:1905
+msgid "Preview"
+msgstr "预览"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1467
+#: vipers-video-quicktags.php:1563
+#: vipers-video-quicktags.php:1649
+#: vipers-video-quicktags.php:1791
+#: vipers-video-quicktags.php:1908
+msgid "Loading..."
+msgstr "正在加载……"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1472
+#: vipers-video-quicktags.php:1568
+#: vipers-video-quicktags.php:1654
+#: vipers-video-quicktags.php:1796
+#: vipers-video-quicktags.php:1913
+msgid "Preview URL"
+msgstr "预览链接"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1481
+#: vipers-video-quicktags.php:1577
+#: vipers-video-quicktags.php:1663
+#: vipers-video-quicktags.php:1805
+msgid "pixels"
+msgstr "像素"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1482
+#: vipers-video-quicktags.php:1578
+#: vipers-video-quicktags.php:1806
+msgid "Maintain aspect ratio"
+msgstr "保持显示高宽比"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1488
+msgid "Border Color"
+msgstr "边框颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1491
+#: vipers-video-quicktags.php:1499
+#: vipers-video-quicktags.php:1673
+#: vipers-video-quicktags.php:1681
+#: vipers-video-quicktags.php:1689
+#: vipers-video-quicktags.php:1697
+#: vipers-video-quicktags.php:1815
+#: vipers-video-quicktags.php:1954
+#: vipers-video-quicktags.php:1962
+#: vipers-video-quicktags.php:1970
+#: vipers-video-quicktags.php:1978
+msgid "Pick a color"
+msgstr "选择一个颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1496
+msgid "Fill Color"
+msgstr "填充颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1504
+#: vipers-video-quicktags.php:1820
+msgid "Color Presets"
+msgstr "颜色方案"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1508
+msgid "Miscellaneous"
+msgstr "其它"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1510
+msgid "Enable HD video by default (not to be confused with "HQ" which can't be enabled by default and not all videos are avilable in HD)"
+msgstr "默认开启 HD 视频(请不要与 "HQ" 混淆,而且不是所有视频都有 HD 版本)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1511
+msgid "Show video details at the end of playback (related videos, embed code, etc.)"
+msgstr "播放完毕后显示视频详细信息(相关视频,嵌入代码等等。)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1512
+#: vipers-video-quicktags.php:1586
+msgid "Show fullscreen button"
+msgstr "显示全屏按钮"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1513
+msgid "Show border"
+msgstr "显示边框"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1514
+msgid "Show the search box"
+msgstr "显示搜索框"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1515
+msgid "Show the video title and rating"
+msgstr "显示视频标题和评级"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1516
+#: vipers-video-quicktags.php:1587
+#: vipers-video-quicktags.php:1704
+msgid "Autoplay video (not recommended)"
+msgstr "自动播放视频(不建议)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1517
+msgid "Loop video playback"
+msgstr "循环视频播放"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1584
+#: vipers-video-quicktags.php:1702
+msgid "Other"
+msgstr "其他"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1670
+msgid "Toolbar Background Color"
+msgstr "工具栏背景颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1678
+msgid "Toolbar Glow Color"
+msgstr "工具条耀光颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1686
+msgid "Button/Text Color"
+msgstr "按钮/文本颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1694
+msgid "Seekbar Color"
+msgstr "搜索条颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1705
+msgid "Show related videos"
+msgstr "显示相关视频"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1754
+msgid "Default (Blue)"
+msgstr "默认(蓝色)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1756
+msgid "Lime"
+msgstr "酸橙色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1757
+msgid "Fuschia"
+msgstr "梅红"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1758
+msgid "White"
+msgstr "白色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1812
+msgid "Color"
+msgstr "颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1824
+msgid "On-Screen Info"
+msgstr "屏幕显示信息"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1826
+msgid "Portrait"
+msgstr "作者头像"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1827
+msgid "Title"
+msgstr "标题"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1828
+msgid "Byline"
+msgstr "作者链接"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1829
+msgid "Allow fullscreen"
+msgstr "允许全屏"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1916
+msgid "The default preview video is the most recent featured video on YouTube. You can paste in the URL to a FLV file of your own if you wish."
+msgstr "默认预览视频为 YouTube 上最近推荐的视频。您也可以在这里输入自己的 FLV 视频的链接到这里。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1924
+msgid "pixels (if you're using the default skin, add 20 to the height for the control bar)"
+msgstr "像素(如果您使用默认皮肤,请为控制条增加 20 个像素)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1931
+msgid "Skin"
+msgstr "皮肤"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1945
+msgid "Use Custom Colors"
+msgstr "使用自定义颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1951
+msgid "Control Bar Background Color"
+msgstr "控制条背景色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1959
+msgid "Icon/Text Color"
+msgstr "图标/文本颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1967
+msgid "Icon/Text Hover Color"
+msgstr "图标/文本悬停颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1975
+msgid "Video Background Color"
+msgstr "视频背景颜色"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1983
+msgid "Advanced Parameters"
+msgstr "高级参数"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1986
+#: vipers-video-quicktags.php:2308
+#, php-format
+msgid "A query-string style list of additional parameters to pass to the player. Example: %3$s"
+msgstr "可以传递给播放器的扩展参数 的 query-string style 列表。例如:%3$s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:1987
+msgid "You will need to press "Save Changes" for these parameters to take effect due to my moderate Javascript skills."
+msgstr "您需要点击 "保存修改" 才可以看到参数生效后的效果。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2023
+msgid "Video Alignment"
+msgstr "视频对齐"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2028
+msgid "Left"
+msgstr "左"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2029
+msgid "Center"
+msgstr "中"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2030
+msgid "Right"
+msgstr "右"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2031
+msgid "Float Left"
+msgstr "左对齐"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2032
+msgid "Float Right"
+msgstr "右对齐"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2044
+msgid "Show Buttons In Editor On Line Number"
+msgstr "按钮在编辑器上的位置"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2049
+msgid "1"
+msgstr "第一行(依附与原编辑器第一行后方)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2050
+msgid "2 (Kitchen Sink Toolbar)"
+msgstr "第二行(依附与原编辑器第二行后方)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2051
+msgid "3 (Default)"
+msgstr "第三行(默认)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2063
+msgid "Feed Text"
+msgstr "订阅文本"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2066
+#, php-format
+msgid "Optionally enter some custom text to show in your feed in place of videos (as you can't embed videos in feeds). If left blank, it will default to: %s"
+msgstr "选择性的输入一些自定义文本用于显示在订阅中视频的位置(当您的订阅中无法显示视频时)。如果留空,将会使用默认文本: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2070
+msgid "Windows Media Player"
+msgstr "Windows Media Player"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2072
+msgid "Attempt to use Windows Media Player for regular video file playback for Windows users"
+msgstr "当用户使用 Windows 系统时,尝试使用 Windows Media Player 播放视频文件"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2077
+msgid "Advanced Settings"
+msgstr "高级设置"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2079
+msgid "If you don't know what you're doing, you can safely ignore this section."
+msgstr "如果您不知道以下内容的意思,您可以忽略以下内容。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2083
+msgid "Dynamic QTObject Loading"
+msgstr "动态 QTObject 读取"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2085
+msgid "Only load the Javascript file if it's needed. Disable this to post Quicktime videos in the sidebar text widget."
+msgstr "当需要的时候,仅读取 Javascript 文件。在侧栏的文本 Widget 中插入 Quicktime 视频,请禁用此项。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2090
+msgid "Custom CSS"
+msgstr "自定义 CSS"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2092
+msgid "Want to easily set some custom CSS to control the display of the videos? Then just click this text to expand this option."
+msgstr "想要简单的设置一些自定义 CSS 来控制视频的显示?只需要点击此文本来扩展出相关选项。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2094
+#, php-format
+msgid "You can enter custom CSS in the box below. It will be outputted after the default CSS you see listed which can be overridden by using %1$s. For help and examples, see the Help tab."
+msgstr "您可以在下面的输入框中输入自定义 CSS。它将使用 %1$s 后输出在下面默认 CSS 的后面。获得帮助和示例,可以查看帮助 标签。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2137
+msgid "Click on a question to see the answer or click this text to expand all answers."
+msgstr "点击问题查看答案或点击该文本展开所有答案。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2141
+msgid "Videos aren't showing up on my blog, only links to the videos are instead. What gives?"
+msgstr "视频在我的 Blog 上无法显示,仅显示出了视频的链接。怎么办?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2144
+msgid "Here are five common causes:"
+msgstr "这里有几个常见的原因:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2146
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can prevent some videos, namely YouTube-hosted ones, from loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "您正在运行 Firefox 和 AdBlock 插件吗?AdBlock 和某些屏蔽规则会阻止某些视频,例如 YouTube 视频的读取。禁用 AdBlock 或使用 AdBlock Plus 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2147
+msgid "Your theme could be missing <?php wp_head();?> inside of it's <head> which means the required Javascript file can't automatically be added. If this is the case, you may be get an alert window popping when you attempt to view a post with a video in it (assuming your problem is not also #3). Edit your theme's header.php file and add it right before </head>"
+msgstr "您的主题在 <head> 中缺少 <?php wp_head();?>,这意味着必要的 Javascript 文件将无法自动添加。如果是这个原因,您将在查看拥有视频的日志时看到一个弹出的警告窗口(如果不是这个原因,请看下一条)。编辑您主题的 header.php 文件并添加代码到 </head> 之前"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2148
+#: vipers-video-quicktags.php:2154
+#, php-format
+msgid "You may have Javascript disabled. This plugin embeds videos via Javascript to ensure the best experience. Please enable it ."
+msgstr "您禁用了 Javascript。该插件通过 Javascript 来嵌入视频以获得最好的用户体验。请开启它 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2149
+#: vipers-video-quicktags.php:2155
+#, php-format
+msgid "You may not have the latest version of Flash installed. Please install it ."
+msgstr "您没有安装最新的 Flash。请安装它 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2153
+#, php-format
+msgid "Are you running Firefox and AdBlock? AdBlock and certain block rules can result in the videos, namely YouTube-hosted ones, not loading. Disable AdBlock or switch to AdBlock Plus ."
+msgstr "您正在运行 Firefox 和 AdBlock 插件吗?AdBlock 和某些屏蔽规则会阻止某些视频,例如 YouTube 视频的读取。禁用 AdBlock 或使用 AdBlock Plus 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2161
+msgid "Where do I get the code from to embed a Viddler video?"
+msgstr "我从什么地方能够获取嵌入 Viddler 视频的代码?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2163
+msgid "Since the URL to a video on Viddler has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Viddler, click the "Embed This" button below the video, and then select the WordPress.com format. You can paste that code directly into a post or Page and it will embed the video."
+msgstr "当前没有直接能够嵌入 Viddler 视频的通用链接代码,您必须使用 WordPress.com-style 格式代码。访问 Viddler 的视频,点击视频下方的“嵌入该视频”按钮,然后点击 WordPress.com 格式。您可以直接复制该代码到日志或页面中,然后视频将被嵌入。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2168
+msgid "Where do I get the code from to embed a Blip.tv video?"
+msgstr "我从什么地方能够获取嵌入 Blip.tv 视频的代码?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2170
+msgid "Since the URL to a video on Blip.tv has nothing in common with the embed URL, you must use WordPress.com-style format. Go to the video on Blip.tv, click on the yellow "Share" dropdown to the right of the video and select "Embed". Next select "WordPress.com" from the "Show Player" dropdown. Finally press "Go". You can paste that code directly into a post or Page and it will embed the video."
+msgstr "当前没有直接能够嵌入 Blip.tv 视频的通用链接代码,您必须使用 WordPress.com-style 格式代码。访问 Blip.tv 的视频,点击视频的下拉菜单选择黄色的 "共享" 按钮并选择 "嵌入"。然后在 "显示播放器" 菜单中选择 "WordPress.com"。最后点击 "确认"。您可以直接复制该代码到日志或页面中,然后视频将被嵌入。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2172
+msgid "NOTE: Ignore the warning message. This plugin adds support for the WordPress.com so it will work on your blog."
+msgstr "注意: 忽略警告信息。该插件添加了对 WordPress.com 的支持,所以它将 正常工作在您的 Blog 上。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2176
+msgid "Why doesn't this plugin support a site I want to embed videos from?"
+msgstr "为什么插件无法嵌入某些网站上的视频呢?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2178
+msgid "There's a couple likely reasons:"
+msgstr "这里有几个可能的原因:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2180
+msgid "The website may use an embed URL that has nothing in common with the URL in your address bar. This means that even if you give this plugin the URL to the video, it has no easy way of figuring out the embed URL."
+msgstr "网站提供的链接不包含通用的嵌入链接。这意味着您提供给插件的链接,插件无法找出相应的嵌入链接。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2181
+msgid "The website may be too small, fringe case, etc. to be worth supporting. There's no real point in this plugin adding support for a video site that only one or two people will use."
+msgstr "网站规模很小或很特殊等原因不对其进行支持。插件不会对那些只有很少用户量的网站进行支持。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2182
+#, php-format
+msgid "I may have just never heard of the site. Please make a thread on my forums with an example link to a video on the site and I'll take a look at it."
+msgstr "我还没听说过的网站。请在我的论坛 上发个帖子并提供视频的示例链接,然后我会加以考虑。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2184
+#, php-format
+msgid "This plugin does have the ability to embed any Flash file though. See the Flash shortcode question for details on that."
+msgstr "该插件有能力嵌入任何 Flash 文件。查看 Flash Shortcode 问题 获得更多信息。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2188
+msgid "There are still red bits (hovering over buttons) in my YouTube embed. What gives?"
+msgstr "在嵌入的 YouTube 视频上仍然有红色标记(悬停在按钮上)。怎么回事儿?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2190
+msgid "YouTube does not provide a method to change that color."
+msgstr "YouTube 没有提供改变这个颜色的功能。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2194
+msgid "How can I change the size, colors, etc. for a specific video?"
+msgstr "我如果改变特定视频的尺寸,颜色等等信息?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2196
+#, php-format
+msgid "You can control many thing via the WordPress shortcode system that you use to embed videos in your posts. Shortcodes are similiar to BBCode . Here are some example shortcodes:"
+msgstr "您可以通过 WordPress Shortcode 系统控制视频的很多东西。Shortcode 和 BBCode 非常相似。这里有一些示例 Shortcodes:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2202
+msgid "Any value that is not entered will fall back to the default."
+msgstr "任何参数不输入将使用默认设置。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2206
+#: vipers-video-quicktags.php:2222
+#: vipers-video-quicktags.php:2232
+#: vipers-video-quicktags.php:2247
+#: vipers-video-quicktags.php:2261
+#: vipers-video-quicktags.php:2271
+#: vipers-video-quicktags.php:2277
+#: vipers-video-quicktags.php:2297
+#: vipers-video-quicktags.php:2313
+#: vipers-video-quicktags.php:2327
+#, php-format
+msgid "What are the available parameters for the %s shortcode?"
+msgstr "%s Shortcode 可用的参数是什么?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2209
+#: vipers-video-quicktags.php:2225
+#: vipers-video-quicktags.php:2235
+#: vipers-video-quicktags.php:2250
+#: vipers-video-quicktags.php:2264
+#: vipers-video-quicktags.php:2280
+#: vipers-video-quicktags.php:2291
+#: vipers-video-quicktags.php:2300
+#: vipers-video-quicktags.php:2317
+#: vipers-video-quicktags.php:2331
+#, php-format
+msgid "%s — width in pixels"
+msgstr "%s — 宽度的像素"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2210
+#: vipers-video-quicktags.php:2226
+#: vipers-video-quicktags.php:2236
+#: vipers-video-quicktags.php:2251
+#: vipers-video-quicktags.php:2265
+#: vipers-video-quicktags.php:2281
+#: vipers-video-quicktags.php:2292
+#: vipers-video-quicktags.php:2301
+#: vipers-video-quicktags.php:2318
+#: vipers-video-quicktags.php:2332
+#, php-format
+msgid "%s — height in pixels"
+msgstr "%s — 高度的像素"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2211
+#, php-format
+msgid "%s — player border color in hex"
+msgstr "%s — 十六进制的播放器边框颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2212
+#, php-format
+msgid "%s — player fill color in hex"
+msgstr "%s — 十六进制的播放器填充颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2213
+#, php-format
+msgid "%s — show a border or not (0 or 1)"
+msgstr "%s — 是否显示边框(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2214
+#, php-format
+msgid "%s — show related videos, URL, embed details, etc. at the end of playback (0 or 1)"
+msgstr "%s — 播放结束后显示相关视频、链接、嵌入详细信息等等。(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2215
+#: vipers-video-quicktags.php:2256
+#, php-format
+msgid "%s — show fullscreen button (0 or 1)"
+msgstr "%s — 显示全屏按钮(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2216
+#: vipers-video-quicktags.php:2227
+#: vipers-video-quicktags.php:2241
+#: vipers-video-quicktags.php:2266
+#, php-format
+msgid "%s — automatically start playing (0 or 1)"
+msgstr "%s — 自动开始播放(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2217
+#, php-format
+msgid "%s — loop playback (0 or 1)"
+msgstr "%s — 循环播放(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2237
+#, php-format
+msgid "%s — toolbar background color in hex"
+msgstr "%s — 十六进制的工具条背景颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2238
+#, php-format
+msgid "%s — toolbar glow color in hex"
+msgstr "%s — 十六进制的耀光颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2239
+#, php-format
+msgid "%s — button/text color in hex"
+msgstr "%s — 十六进制的按钮/文本颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2240
+#, php-format
+msgid "%s — seekbar color in hex"
+msgstr "%s — 十六进制的搜索条颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2242
+#, php-format
+msgid "%s — show related video (0 or 1)"
+msgstr "%s — 显示相关视频(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2252
+#, php-format
+msgid "%s — player color in hex"
+msgstr "%s — 十六进制的播放器颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2253
+#, php-format
+msgid "%s — show uploader's picture (0 or 1)"
+msgstr "%s — 显示上传者的照片(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2254
+#, php-format
+msgid "%s — show video title (0 or 1)"
+msgstr "%s — 显示视频标题(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2255
+#, php-format
+msgid "%s — show video author (0 or 1)"
+msgstr "%s — 显示视频作者(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2273
+msgid "Since the WordPress.com shortcode format is used for embedding Viddler videos, there are no customizable parameters for the Viddler shortcode. The WordPress.com shortcode must be used as the URL of the video and the video's embed URL share nothing in common."
+msgstr "目前 Viddler 视频需要使用 WordPress.com Shortcode 格式进行嵌入,而且没有任何可以自定义的参数。WordPress.com Shortcode 必须使用视频的链接,视频的嵌入链接没有提供任何内容。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2282
+#, php-format
+msgid "%s — show video details (0 or 1), defaults to 1"
+msgstr "%s — 显示视频详细信息(0 或 1),默认为 1"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2287
+msgid "What are the available parameters for the Metacafe, Blip.tv, IFILM/Spike, and MySpace shortcodes?"
+msgstr "Metacafe、Blip.tv、IFILM/Spike 和 MySpace 的 Shortcode 可用的参数是什么?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2289
+msgid "All of these video formats only support the following:"
+msgstr "所有这些视频格式进支持以下项目:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2302
+#, php-format
+msgid "%s — the URL to the preview image, defaults to the same URL as the video file but .jpg instead of .flv"
+msgstr "%s — 预览图片的链接,默认与视频文件相同,仅后缀名由 .flv 变成了 .jpg。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2303
+#, php-format
+msgid "%s — player control bar background color in hex"
+msgstr "%s — 十六进制的播放器控制条背景颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2304
+#, php-format
+msgid "%s — player icon/text color in hex"
+msgstr "%s — 十六进制的播放器图标/文本颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2305
+#, php-format
+msgid "%s — player icon/text hover color in hex"
+msgstr "%s — 十六进制的播放器图标/文本悬停颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2306
+#, php-format
+msgid "%s — player video background color in hex"
+msgstr "%s — 十六进制的播放器视频背景颜色值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2307
+#, php-format
+msgid "%s — volume percentage, defaults to 100"
+msgstr "%s — 音量百分比,默认为 100"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2308
+#, php-format
+msgid "%1$s — %2$s"
+msgstr "%1$s — %2$s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2315
+msgid "The results of embedding a Quicktime video can very widely depending on the user's computer and what software they have installed, but if you must embed a Quicktime video here are the parameters:"
+msgstr "嵌入 Quicktime 视频的效果很大程度上依赖于用户的电脑和他们安装的软件,但如果您必须嵌入 Quicktime 视频,以下是相关的参数:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2319
+#: vipers-video-quicktags.php:2322
+#, php-format
+msgid "%s — automatically start playing (0 or 1), defaults to 0"
+msgstr "%s — 自动开始播放(0 或 1),默认为 0"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2320
+#, php-format
+msgid "%s — use click-to-play placeholder image (0 or 1), defaults to 0"
+msgstr "%s — 使用点击播放占位图片(0 或 1),默认为 0"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2321
+#, php-format
+msgid "%s — the URL to the placeholder image, defaults to the same URL as the video file but .jpg instead of .mov"
+msgstr "%s — 占位图片的链接,默认与视频文件相同,仅后缀名由 .mov 变成了 .jpg。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2327
+msgid "video file"
+msgstr "视频文件"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2329
+msgid "The results of embedding a generic video can very widely depending on the user's computer and what software they have installed, but if you must embed a generic video here are the parameters:"
+msgstr "嵌入常规视频的效果很大程度上依赖于用户的电脑和他们安装的软件,但如果您必须嵌入常规视频,以下是相关的参数:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2333
+#, php-format
+msgid "%s — attempt to use Windows Media Player for users of Windows (0 or 1)"
+msgstr "%s — 尝试使用用户的 Windows 系统中的 Windows Media Player(0 或 1)"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2339
+msgid "What's this "Custom CSS" thing on the "Additional Settings" tab for?"
+msgstr ""附加设置" 中的 "自定义 CSS" 是做什么的?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2341
+msgid "It's a quick and easy way to control the look of videos posted on your site without having to go in and edit the style.css file. Just enter some CSS of your own into the box and it will be outputted in the header of your theme."
+msgstr "这是一个不用对 style.css 进行修改而控制发布于您站点上视频外观的方式。只需要在输入框中输入一些您自己的 CSS 然后它们将输出到主题的页眉部分。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2342
+msgid "Some examples:"
+msgstr "一些示例:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2344
+#, php-format
+msgid "Give a red border to all videos: %s"
+msgstr "为所有视频赋予红色边框:%s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2345
+#, php-format
+msgid "Float only YouTube videos to the left: %s"
+msgstr "仅将 YouTube 视频浮动到左边:%s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2351
+msgid "How can I embed a generic Flash file or a video from a website this plugin doesn't support?"
+msgstr "我怎样嵌入该插件不支持的常规 Flash 文件或视频到网站上?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2353
+#, php-format
+msgid "This plugin has a %s shortcode that can be used to embed any Flash file. Here is the format:"
+msgstr "该插件拥有一个 %s Shortcode 可以插入任何 Flash 文件。以下是格式:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2358
+msgid "Why does your plugin embed Quicktime and other regular video files so poorly? Can't you do a better job?"
+msgstr "为什么您的插件在嵌入 Quicktime 或其他常规视频文件时,功能不是很完善呢?能够做的更好?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2360
+#, php-format
+msgid "Embedding Quiktime and other regular video files is a major pain in the ass and it's incredibly hard to get it to work in all browsers and operating systems. I strongly suggest converting the video to Flash Video format or even H.264 format and then using the Flash Video (FLV) embed type. There are free converters out there for both formats and doing so will create a much better experience for your visitors."
+msgstr "嵌入 Quicktime 和其他常规视频文件很难做到在所有浏览器或操作系统中都正常工作。我强烈 建议将视频文件转换为 Flash 视频 格式或任何 H.264 格式并使用 Flash 视频嵌入的类型。目前有很多免费的转换软件可以使用,而且这样做可以给用户带来更好的访问体验。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2369
+msgid "This plugin uses many scripts and packages written by others. They deserve credit too, so here they are in no particular order:"
+msgstr "该插件使用了很多其他人编写的脚本和程序包。应该感谢他们,以下排名不分先后:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2372
+#, php-format
+msgid "The authors of and contributors to SWFObject which is used to embed the Flash-based videos."
+msgstr "嵌入 Flash 格式视频所使用的 SWFObject 的作者和贡献者们。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2373
+#, php-format
+msgid "Jeroen Wijering for writing the JW FLV Media Player which is used for FLV playback."
+msgstr "播放 FLV 所使用的 JW FLV Media Player 的作者 Jeroen Wijering 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2374
+#, php-format
+msgid "Steven Wittens for writing Farbtastic , the fantastic Javascript color picker used in this plugin."
+msgstr "插件中使用的颜色选择器 Farbtastic 的作者 Steven Wittens 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2375
+#, php-format
+msgid "Ozh for writing his Liz Comment Counter plugin which introduced me to Farbtastic and provided me with some Javascript to base my color picker and color preset code on."
+msgstr "Ozh 编写的 Liz Comment Counter 插件引导我如何使用 Farbtastic 和提供了很多嵌入颜色选择器 Javascript 代码并提供配色方案。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2376
+#, php-format
+msgid "Andrew Ozz for helping me out with some TinyMCE-related Javascript and in turn saving me a ton of time."
+msgstr "Andrew Ozz 帮助我解决了一些 TinyMCE 相关的 Javascript 问题,这为我节省了很多时间。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2377
+#, php-format
+msgid "Geoff Stearns for writing QTObject which is used to embed Quicktime videos."
+msgstr "嵌入 Quicktime 所使用的 QTObject 的作者 Geoff Stearns "
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2378
+#, php-format
+msgid "Mark James for creating the Silk icon pack . This plugin uses at least one of the icons from that pack."
+msgstr "Mark James 创作的 Silk icon pack 。本插件使用了那个包中至少一个图标。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2379
+#, php-format
+msgid "The authors of and contributors to jQuery , the awesome Javascript package used by WordPress."
+msgstr "jQuery 的作者和贡献者们,这个神奇的 Javascript 包已在 WordPress 中使用。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2380
+#, php-format
+msgid "Everyone who's helped create WordPress as without it and it's excellent API, this plugin obviously wouldn't exist."
+msgstr "每一位帮助开发 WordPress 的人们,没有他们和他们提供的 API,该插件不会编写成功。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2381
+msgid "Everyone who has provided bug reports and feature suggestions for this plugin."
+msgstr "每一位给本插件提供 Bug 报告以及功能建议的人。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2384
+msgid "The following people have been nice enough to translate this plugin into other languages:"
+msgstr "以下是将该插件翻译成其他语言的人们:"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2387
+#, php-format
+msgid "Belorussian: %s"
+msgstr "白俄罗斯: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2388
+#, php-format
+msgid "Brazilian Portuguese: %s"
+msgstr "巴西 葡萄牙语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2389
+#, php-format
+msgid "Chinese: %s"
+msgstr "中文: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2390
+#, php-format
+msgid "Danish: %s"
+msgstr "丹麦语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2391
+#, php-format
+msgid "Dutch: %s"
+msgstr "荷兰语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2392
+#, php-format
+msgid "French: %s"
+msgstr "法语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2393
+#, php-format
+msgid "Hungarian: %s"
+msgstr "匈牙利语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2394
+#, php-format
+msgid "Italian: %s"
+msgstr "意大利语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2395
+#, php-format
+msgid "Polish: %s"
+msgstr "波兰语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2396
+#, php-format
+msgid "Russian: %s"
+msgstr "俄语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2397
+#, php-format
+msgid "Spanish: %s"
+msgstr "西班牙语: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2400
+#, php-format
+msgid "If you'd like to use this plugin in another language and have your name listed here, just translate the strings in the provided template file located in this plugin's "localization" folder and then send it to me . For help, see the WordPress Codex ."
+msgstr "如果您想使用该插件的其他语言版本并想将自己的名字被列在这里,只需要翻译我们在插件的 "localization" 目录中提供的模板文件 并将其发送给我 就可以。更多帮助请看 WordPress Codex 。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2407
+msgid "Click the above links to switch between tabs."
+msgstr "在标签之间进行切换,请点击上面的链接。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2440
+msgid ""
+"Do you agree to the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported license? A link to it can be found to the left.\n"
+"\n"
+"In short though, you cannot use JW's FLV Media Player on a commercial site without purchasing a commercial license."
+msgstr ""
+"您同意 Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported 协议吗?协议的链接可以在左侧找到。\n"
+"\n"
+"简单来说,在您没有购买商业许可之前,您不能够使用 JW's FLV Media Player 与商业站点上。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2451
+msgid "Media Type"
+msgstr "媒体类型"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2452
+msgid "Show Editor Button?"
+msgstr "显示编辑器按钮?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2453
+msgid "Default Width"
+msgstr "默认宽度"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2454
+msgid "Default Height"
+msgstr "默认高度"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2455
+msgid "Keep Aspect Ratio?"
+msgstr "保持画面高宽比?"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2584
+msgid "MySpaceTV"
+msgstr "MySpaceTV"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2601
+#, php-format
+msgid "JW's FLV Media Player is covered by the Creative Commons Noncommercial license which means you cannot use it on a commercial website ."
+msgstr "JW's FLV Media Player 使用创作共用非商业 协议 ,这意味这您不能够在商业网站 中使用。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2616
+msgid "Generic Video File"
+msgstr "常规视频文件"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2616
+#, php-format
+msgid "This part of the plugin is fairly buggy as embedding video files is complex. Consider trying TinyMCE's native video embedder instead. Why? "
+msgstr "由于嵌入视频文件比较复杂,本插件这个部分存在一些问题。 建议您使用自带的 TinyMCE 编辑器的视频嵌入功能。为什么呢? "
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2631
+msgid "Save Changes"
+msgstr "保存修改"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2632
+msgid "Reset Tab To Defaults"
+msgstr "复位标签为默认值"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2693
+#, php-format
+msgid "ERROR: %s"
+msgstr "错误: %s"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2755
+msgid "Stage6 is no more, so this Stage6-hosted video cannot be displayed."
+msgstr "Stage6 已经不存在了,所以 Stage6 的视频无法显示。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2772
+#: vipers-video-quicktags.php:2876
+#: vipers-video-quicktags.php:2924
+#: vipers-video-quicktags.php:2988
+#: vipers-video-quicktags.php:3052
+#: vipers-video-quicktags.php:3150
+#: vipers-video-quicktags.php:3266
+#: vipers-video-quicktags.php:3312
+#: vipers-video-quicktags.php:3353
+#, php-format
+msgid "No URL or video ID was passed to the %s BBCode"
+msgstr "没有链接或视频的 ID 被传递给 %s BBCode"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2802
+#: vipers-video-quicktags.php:2810
+#: vipers-video-quicktags.php:2895
+#: vipers-video-quicktags.php:2948
+#: vipers-video-quicktags.php:3010
+#: vipers-video-quicktags.php:3084
+#: vipers-video-quicktags.php:3167
+#: vipers-video-quicktags.php:3284
+#: vipers-video-quicktags.php:3329
+#: vipers-video-quicktags.php:3370
+#, php-format
+msgid "Unable to parse URL, check for correct %s format"
+msgstr "无法解析链接,请检查当前 %s 的格式"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:2814
+#: vipers-video-quicktags.php:2821
+msgid "YouTube Preview Image"
+msgstr "YouTube 预览图像"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3114
+msgid "Sorry, but the only format that is supported for Viddler is the WordPress.com-style format rather than the URL. You can find it in the "Embed This" window."
+msgstr "抱歉,Viddler 仅支持 WordPress.com 样式的格式。您可以在 "嵌入该视频" 窗口中找到。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3133
+#: vipers-video-quicktags.php:3207
+#: vipers-video-quicktags.php:3238
+#, php-format
+msgid "An invalid %s shortcode format was used. Please check your code."
+msgstr "使用了无效的 %s Shortcode。请检查您的代码。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3140
+#: vipers-video-quicktags.php:3215
+#: vipers-video-quicktags.php:3249
+#: vipers-video-quicktags.php:3614
+#, php-format
+msgid "Please enable Javascript and Flash to view this %3$s video."
+msgstr "请开启 Javascript 和 Flash 来查看该 %3$s 视频。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3190
+msgid "Sorry, but the only format that is supported for Blip.tv is the WordPress.com-style format. You can find it at Share -> Embed -> WordPress.com."
+msgstr "抱歉,Blip.tv 仅支持 WordPress.com 样式的格式。您可以在 共享 -> 嵌入 -> WordPress.com 处找到。"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3238
+#: vipers-video-quicktags.php:3249
+msgid "VideoPress"
+msgstr "VideoPress"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3394
+#: vipers-video-quicktags.php:3488
+#: vipers-video-quicktags.php:3534
+#: vipers-video-quicktags.php:3584
+#, php-format
+msgid "No URL was passed to the %s BBCode"
+msgstr "没有链接被传递给 %s BBCode"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3584
+msgid "generic Flash embed"
+msgstr "常规 Flash 嵌入"
+
+# @ vipers-video-quicktags
+#: vipers-video-quicktags.php:3614
+msgid "Flash"
+msgstr "Flash"
+
+#. Plugin URI of an extension
+msgid "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+msgstr "http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"
+
+#. Description of an extension
+msgid "Easily embed videos from various video websites such as YouTube, DailyMotion, and Vimeo into your posts."
+msgstr "方便的插入不同网站上的视频到您的日志中,比如 YouTube、DailyMotion 和 Vimeo。"
+
+#. Author of an extension
+msgid "Viper007Bond"
+msgstr "Viper007Bond"
+
+#. Author URI of an extension
+msgid "http://www.viper007bond.com/"
+msgstr "http://www.viper007bond.com/"
+
diff --git a/src/wp-content/plugins/vipers-video-quicktags/readme.txt b/src/wp-content/plugins/vipers-video-quicktags/readme.txt
new file mode 100644
index 00000000..0db2e135
--- /dev/null
+++ b/src/wp-content/plugins/vipers-video-quicktags/readme.txt
@@ -0,0 +1,477 @@
+=== Viper's Video Quicktags ===
+Contributors: Viper007Bond
+Donate link: http://www.viper007bond.com/donate/
+Tags: video, quicktags, wysiwyg, tinymce, youtube, google video, dailymotion, vimeo, veoh, viddler, metacafe, blip.tv, flickr, ifilm, myspace, flv, quicktime
+Requires at least: 2.8
+Tested up to: 3.0.1
+Stable tag: trunk
+
+Allows easy and XHTML valid posting of videos from various websites such as YouTube, DailyMotion, Vimeo, and more.
+
+== Description ==
+
+Tired of copying and pasting the embed HTML from sites like YouTube? Then this plugin is for you.
+
+Just simply click one of the [new buttons](http://wordpress.org/extend/plugins/vipers-video-quicktags/screenshots/) that this plugin adds to the write screen (rich editor included) and then paste the URL that the video is located at into the prompt box -- easy as that. You can fully configure how the videos are displayed (width, height, colors, alignment on the page) and much more. Your site will even stay (X)HTML valid unlike with the code provided by most video sites.
+
+Currently supports these video sites:
+
+* [YouTube](http://www.youtube.com/) (including playlists)
+* [Google Video](http://video.google.com/)
+* [DailyMotion](http://www.dailymotion.com/)
+* [Vimeo](http://www.vimeo.com/)
+* [Veoh](http://www.veoh.com/)
+* [Viddler](http://www.viddler.com/)
+* [Metacafe](http://www.metacafe.com/)
+* [Blip.tv](http://blip.tv/)
+* [VideoPress aka WordPress.com Video](http://videopress.com/) **NEW!**
+* [Flickr](http://www.flickr.com/) videos
+* [Spike.com/IFILM](http://www.spike.com/)
+* [MySpaceTV](http://vids.myspace.com/)
+
+As well as these file types:
+
+* Flash Video Files (FLV)
+* QuickTime (MOV, etc.)
+* Generic video files (AVI, MPEG, WMV, etc.)
+
+You can also use the `[flash]` shortcode to Flash-based video from **any** website (see Help section after installing for details).
+
+If your favorite video site is not supported, please see [the FAQ](http://wordpress.org/extend/plugins/vipers-video-quicktags/faq/) for details on how to get me to include it.
+
+== Installation ==
+
+###Updgrading From A Previous Version###
+
+To upgrade from a previous version of this plugin, delete the entire folder and files from the previous version of the plugin and then follow the installation instructions below.
+
+###Installing The Plugin###
+
+Extract all files from the ZIP file, **making sure to keep the file structure intact**, and then upload it to `/wp-content/plugins/`. This should result in multiple subfolders and files.
+
+Then just visit your admin area and activate the plugin.
+
+**See Also:** ["Installing Plugins" article on the WP Codex](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins)
+
+###Installing For [WordPress MU](http://mu.wordpress.org/)###
+
+Install as stated above to `plugins`, but place `vipers-video-quicktags.php` in the `mu-plugins` folder. Just that file, nothing else.
+
+###Plugin Configuration###
+
+To configure this plugin, visit it's settings page. It can be found under the "Settings" tab in your admin area, titled "Video Quicktags".
+
+== Frequently Asked Questions ==
+
+= The videos won't show up. Only a YouTube image or a link to the video does. =
+
+Your theme lacks the `` hook. Please add it right before `` in your theme's `header.php` file.
+
+= I have the plugin running, but I have some questions about how to use it. =
+
+A help section is now included with this plugin. Please visit your admin area -> Settings -> Video Quicktags -> Help.
+
+= Why doesn't this plugin support such-and-such site? =
+
+There are few possible reasons for this:
+
+* I may have never heard of the site and simply linking it to me on [my WordPress plugin forums](http://www.viper007bond.com/wordpress-plugins/forums/viewforum.php?id=23) may make me include it in a future release.
+* The URL at which the video can be viewed has nothing in common with the embed URL. This means my plugin can't do anything with the URL you give it. Support for fetching the emded URL from the website may be added in a future version though, we'll see.
+* I have deemed the site not popular enough to warrant being added to my plugin. I don't wish to bloat my plugin with tiny little sites that only one or two people will use.
+
+= Does this plugin support other languages? =
+
+Yes, it does. Included in the `localization` folder is the translation template you can use to translate the plugin. See the [WordPress Codex](http://codex.wordpress.org/Translating_WordPress) for details. When you're done translating it, please [send me](http://www.viper007bond.com/contact/) the translation file so I can include it with the plugin.
+
+= Where can I get additional support for this plugin? =
+
+This is a free plugin and as such, you aren't guaranteed support. However I do my best to answer support questions. Just post on the [WordPress.org support forums](http://wordpress.org/tags/vipers-video-quicktags).
+
+= I love your plugin! Can I donate to you? =
+
+Sure! I do this in my free time and I appreciate all donations that I get. It makes me want to continue to update this plugin. You can find more details on [my donate page](http://www.viper007bond.com/donate/).
+
+== Screenshots ==
+
+1. TinyMCE, the plugin's buttons, and the plugin's dialog window.
+2. YouTube configuration page.
+2. DailyMotion configuration page with Farbtastic color picker showing.
+
+== Changelog ==
+
+= v6.3.0 =
+
+* **Vimeo:** Implement their new `iframe`-based embed since they seem to have broken my previous embed method.
+
+= v6.2.19 =
+
+* **General:** Remove potentially buggy SWFObject registration.
+
+= v6.2.18 =
+
+* **VideoPress:** If the [official VideoPress plugin](http://wordpress.org/extend/plugins/video/) is installed, don't take over it's shortcode.
+
+= v6.2.17 =
+
+* **TinyMCE:** Re-enable the third button row as not everyone was having issues with it. Default to the first row though.
+
+= v6.2.16 =
+
+* Default to less buttons being enabled by default due to not being able to put them on their own line anymore.
+
+= v6.2.15 =
+
+* **TinyMCE:** Trying to inject the buttons onto the third button line completely breaks TinyMCE. Only allow them to be added to the first or second line, and even then they may not show up even then. I have no idea why (I hate TinyMCE) and I frankly don't care at this point (they're going away in v7.0).
+
+= v6.2.14 =
+
+* **FLV:** Fix automatic images and make them work better.
+
+= v6.2.13 =
+
+* **FLV:** Make MP3's stream properly by not setting the image value to the MP3. Props [tranified](http://wordpress.org/support/topic/327598).
+
+= v6.2.12 =
+
+* **VideoPress:** Width/height parameter improvements.
+
+= v6.2.11 =
+
+* **FLV:** Allow periods in Flashvar names. See [http://wordpress.org/support/topic/316159](http://wordpress.org/support/topic/316159).
+
+= v6.2.10 =
+
+* **General:** Change default feed link text. Always wrap in paragraph tags regardless. Props [andrewpaulbiss](http://wordpress.org/support/topic/314764).
+* **General:** Fiddle with how settings are created.
+
+= v6.2.9 =
+
+* **General:** SWFObject issue was likely WordPress version related. I'm tired of dealing with older versions of WordPress anyway, not to mention they're insecure. Make VVQ only support WordPress 2.8+. It's for their own good.
+
+= v6.2.8 =
+
+* **General:** Revert SWFObject enqueue hack as it's failing for some users.
+
+= v6.2.7 =
+
+* **General:** Update SWFObject to version 2.2.
+* **General:** Update JW Player to version 4.5.
+* **Localization:** Added Chinese translation thanks to [Dreamcolor](http://dreamcolor.net/).
+* **Localization:** Added Spanish translation thanks to [Omi](http://equipajedemano.info/).
+
+= v6.2.6 =
+
+* **General:** Fixed an issue with pingback sending failing. The remote XML-RPC would check the referring site (your site) for the ping-to URL and due to an apostrophe in an HTML comment, it'd fail. Very, very weird. Thanks to Robert Windisch of [Inpsyde](http://inpsyde.com/)!
+
+= v6.2.5 =
+
+* **Localization:** Added Hungarian translation thanks to [jamesb](http://filmhirek.com/).
+
+= v6.2.4 =
+
+* **VideoPress:** Rebrand everything in the plugin to VideoPress rather than like WordPress.com video.
+
+= v6.2.3 =
+
+* **Localization:** Added Belorussian translation thanks to Fat Cow.
+
+= v6.2.2 =
+
+* **Localization:** Added Brazilian Portuguese translation thanks to Ricardo Martins.
+* **General:** Change `wmode` from `opaque` to `transparent` to allow transparency in FLV skins as well as other embeds.
+* **General:** Enable `allowscriptaccess` so Javascript can interact with the embeds.
+* **FLV:** Fix an upgrade bug with custom colors.
+
+= v6.2.1 =
+
+* **General:** Fix broken image URLs. Props marian.
+
+= v6.2.0 =
+
+* **WordPress.com Video:** Added support for [WordPress.com Video shortcodes](http://support.wordpress.com/videos/).
+* **FLV:** Reorder Flashvar building to properly allow overriding.
+* **FLV:** New skins.
+* **General:** Pass the non-defaulted attributes (i.e. those directly passed to the shortcode function) to the `vvq_shortcodeatts` filter.
+
+= v6.1.25 =
+
+* **General:** Fix bug introduced in v6.1.24 that made it impossible to post multiple videos in one post.
+
+= v6.1.24 =
+
+* **General:** Improvements to avoid object ID collisions.
+* **Dailymotion:** Update preview video as old one was removed.
+
+= v6.1.23 =
+
+* **YouTube:** Add the ability to enable "HD" by default. This does not affect the "HQ" button as I don't know of a way to enable that by default. Also remember that not all videos support HD (few do actually, most only support nothing or HQ).
+* **YouTube:** Changed the default preview video to one that supports HD.
+* **General:** Remove many bundled jQuery UI libraries, Farbtastic, and other items that are now bundled with WordPress.
+* **General:** Code improvements and bugfixes.
+
+= v6.1.22 =
+
+* **General:** Wrap the default feed placeholder text in paragraph tags (the vast majority of people place videos on their own line).
+
+= v6.1.21 =
+
+* **General:** Use a predictable ID for the placeholders and videos rather than a randomly generated one.
+* **General:** PHP notice fixes.
+
+= v6.1.20 =
+
+* **Localization:** Added Danish transation thanks to Georg.
+* **Localization:** Updated Italian translation thanks to Gianni Diurno.
+
+= v6.1.19 =
+
+* **Quicktime:** Added "scale=aspect" setting as apparently it's best to have.
+
+= v6.1.18 =
+
+* **YouTube:** Added support for the URL format used in the YouTube RSS feed: http://youtube.com/?v=XXXXXXXXXX
+
+= v6.1.17 =
+
+* **YouTube:** Removed all quality related features/options. YouTube now natively supports a high quality toggle in it's embed allowing the user to toggle (if the video supports it). Haven't found a way to make high quality the default yet though.
+
+= v6.1.16 =
+
+* **YouTube:** Add option to disable the video title and ratings display.
+* **Veoh:** Add support for the new URL format.
+* **General:** Additional styling updates for WordPress 2.7.
+
+= v6.1.15 =
+
+* **FLV:** Support (and detect) RTMP streams. Props axelseaa.
+* **General:** Tweak the redirect that occurs after saving the settings.
+
+= v6.1.14 =
+
+* **Google Video:** Show the fullscreen button by default, add option to disable it.
+
+= v6.1.13 =
+
+* **YouTube:** Remove the new search box by default. Option to enable it is on the settings page.
+
+= v6.1.12 =
+
+* **General:** Fix a PHP parse error that slipped into 6.1.11. Whoops!
+
+= v6.1.11 =
+
+* **General:** Don't hijack the `kml_flashembed` shortcode if it's already being processed by other plugin.
+
+= v6.1.10 =
+
+* **General:** Icon for WordPress 2.7.
+* **General:** Translation and notice bugfixes from Laurent Duretz.
+* **Localization:** French translation thanks to Laurent Duretz.
+* **Localization:** Dutch translation thanks to Sypie.
+
+= v6.1.9 =
+
+* **YouTube:** Add support for YouTube's new experimental HD-ish video.
+* **General:** Don't right-position the PayPal button as it covers up the "Help" tab in WordPress 2.7.
+
+= v6.1.8 =
+
+* **Metacafe:** Update regex to match new URL format. Props penalty.
+
+= v6.1.7 =
+
+* **General:** CSS tweak for WordPress 2.7. Probably will need more updating, but I'll wait for 2.7 to be done first.
+* **YouTube:** Remove MP4 option from settings page (you can't seek properly with it it seems), plus it's meant for the iPhone.
+
+= v6.1.6 =
+
+* **YouTube:** Default to low quality videos (what YouTube's standard embed code does). The high quality video "hack" can result in "This video is not available" on certain videos.
+
+= v6.1.5 =
+
+* **Veoh:** Support for a default image in the `[flv]` shortcode when using a `.mp4` video file.
+
+= v6.1.4 =
+
+* **Veoh:** Fix broken embeds.
+
+= v6.1.3 =
+
+* **General:** Actually remove the `wp_head()` check (I failed to do it properly in 6.1.2).
+* **General:** Don't show the binary FTP warning for WordPress 2.7 (the bug should be fixed).
+
+= v6.1.2 =
+
+* **General:** Remove `wp_head()` warning for admins. Doesn't work in themes like K2. Plugin's FAQ should cover this.
+* **General:** Add a filter to the shortcode attributes. This means plugins/themes can adjust things like the width automatically.
+* **Localization:** Russian translation thanks to [Dennis Bri](http://handynotes.ru/)
+* **General:** Properly hide some images in the admin that are there for pre-loading.
+
+= v6.1.1 =
+
+* **Vimeo:** Fixed embeds. Vimeo apparently doesn't like having `&`s in it's embed URLs, so I've switched to using Flashvars.
+* **Viddler:** Decode TinyMCE's `&` to `&` conversions which were breaking the embeds.
+* **Flash:** Decode TinyMCE's `&` to `&` conversions which were breaking the embeds.
+
+= v6.1.0 =
+
+* **YouTube:** Can now choose between high quality FLV and high quality MP4 formats.
+* **FLV:** Bundled skins.
+* **FLV:** Improvements on how custom colors are set.
+* **TinyMCE:** Can now choose what line number to display the buttons on.
+* **TinyMCE:** Automatic browser cache breaking when the plugin is (de)activated or the line number is changed.
+* **General:** SWFObject calls moved to bottom of posts rather than theme footer.
+* **General:** Admin notice warning about automatic plugin upgrade breaking SWF files, etc. (ASCII vs. binary).
+* **General:** Ability to set custom feed text via settings page.
+* **General:** Image pre-cache URL fix.
+* **General:** Settings page improvements for users without Javascript.
+* **General:** More Localization and translators added to credits page.
+* **General:** Redid admin warning message for users without the head hook.
+* **Flash:** Aliased "kml_flashembed" shortcode and "movie" parameter now used if it's there. This is to support Anarchy Media Player.
+* Other various bug fixes.
+
+= v6.0.3 =
+
+* Undo formatting applied by `wptexturize()` to the URLs of videos. Props to [nukerojo](http://freddiemercury.com.ar/) for reporting.
+
+= v6.0.2 =
+
+* Fix Write -> Page (forgot to hook in)
+* Remove FLV notice from WPMU.
+* Add help item about the red in YouTube (hovering over icons).
+
+= v6.0.1 =
+
+* Fixed a PHP error.
+
+= v6.0.0 =
+
+Complete recode literally from scratch (all new code):
+
+* Support for new video sites.
+* Settings page greatly expanded.
+* Video configuration abilities greatly expanded (colors, etc.)
+* YouTube playlists
+* And so very, very much more.
+
+= v5.4.4 =
+
+* Add the Quicktime and generic video buttons back to TinyMCE for users who prefer them over the native TinyMCE embedder.
+
+= v5.4.3 =
+
+* More code changes to try and fix hard-to-reproduce bugs under WordPress 2.5. Thanks to everyone that helped me debug including [Maciek](http://ibex.pl).
+
+= v5.4.2 =
+
+* Some code to hopefully fix some seemingly random bugs under WordPress 2.5.
+* Other minor code improvements.
+
+= v5.4.1 =
+
+* Video alignment wasn't working due to the switch to SWFObject. This has been fixed. Props to [zerocrash](http://www.zerocrash.dk/) for the bug report.
+
+= v5.4.0 =
+
+This is a hotfix version to address WordPress 2.5 plus some bugfixes and such. A minor recode of this plugin is planned to improve it, mainly the video file support.
+
+* Updated to support WordPress 2.5 and it's TinyMCE 3 (required a whole new TinyMCE plugin to be written).
+* Switched from UFO to SWFObject for the embedding of Flash video (YouTube, etc.) since UFO is deprecated.
+* Update of FLV player SWF file.
+* Removed Stage6 due to site shutdown. BBCode usage now displays an error message.
+
+= v5.3.1 =
+
+* Replace BBCode with the video in the excerpt.
+
+= v5.3.0 =
+
+* Manjor and multiple Stage6 improvements. Props Randy A. for pointing out that it wasn't working in some cases.
+* The regex can now be filtered via `vvq_searchpatterns`. This means plugins can add in new BBCodes without having to edit the plugin. See plugin source for format.
+* Other minor improvements.
+
+= v5.2.3 =
+
+* When a custom width is entered into the prompt, use math to suggest a matching height value.
+
+= v5.2.2 =
+
+* Support for the `http://www.youtube.com/w/?v=JzqumbhfxRo` URL format for YouTube due to popular request.
+
+= v5.2.1 =
+
+* Support for new Vimeo URL format (no `/clip:XXX`). Thanks to texasellis.
+
+= v5.2.0 =
+
+* [Stage6](http://stage6.divx.com/) support.
+* Regex fix for Metacafe.
+
+= v5.1.6 =
+
+* The default height for YouTube videos has changed, so plugin updated to match.
+
+= v5.1.5 =
+
+* Plugin now parses the code inside text widges, i.e. you can embed videos in your sidebar!
+
+= v5.1.4 =
+
+* Missed a regex expression for the international YouTube handling, whoops!
+
+= v5.1.3 =
+
+* YouTube.com regional support (uk.youtube.com, etc.)
+* WPMU support hopefully
+* Support for v2.x (old!) style placeholders
+* Updated FLV player file to latest version
+* Another attempt at stopping autoplaying self-hosted videos
+* Other minor fixes
+
+= v5.1.2 =
+
+* Spelling mistake ("video" instead of "vimeo") made the Vimeo button in the rich editor never be hidden. Thanks to [giuseppe](http://www.soveratonews.com/) for [pointing it out](http://www.viper007bond.com/wordpress-plugins/forums/viewtopic.php?id=527).
+
+= v5.1.1 =
+
+* Buttons weren't working in the rich editor due to a stupid mistake on my part (I forgot to replace some debug code with the correct code). Fixed with thanks to [nhdriver4](http://onovia.com/) for [pointing it out](http://www.viper007bond.com/wordpress-plugins/forums/viewtopic.php?id=526).
+
+= v5.1.0 =
+
+* Renamed the plugin file and Javascript file to match the plugin's folder name.
+* Forgot to code in FLV file BBCode->HTML (whoops!). Thanks to [Jack](http://jackcorto.dyndns.org/) for pointing this out.
+* Due to using the wrong variable on my part, you were unable to change the default width and height of videos. Now fixed and the boxes on the options page actually work.
+* Quicktime and generic video files are now inserted via Javascript in order to get around the annoying IE click-to-activate thing.
+* Default width/heights for non-Flash files can now be set. Plugin will now not prompt you for width/height by default for those. Admin area Javascript completely recoded as a result.
+* You can now opt to have the plugin always prompt you for a width and height. Option configuration via the options page.
+* Added support for [Vimeo](http://www.vimeo.com/)
+* Fixed the layering issue with Flash for things like Lightbox. Thanks to [timjohns](http://timdotnet.net/wiggumdaily/) for pointing out that I forgot to handle this. I can't figure out a way to fix it for non-Flash videos though. :(
+* Fixed buttons in TinyMCE in Internet Explorer. Issue was caused by tiny Javascript issue. Man I **HATE** that browser!
+* Due to WP 2.0.x being old and crappy, it'd add ` `'s inside `
+ used to display the dialog box
+ function OutputjQueryDialogDiv() { ?>
+
+
+