diff --git a/www/.htaccess b/www/.htaccess index e303c53..00b5c45 100644 --- a/www/.htaccess +++ b/www/.htaccess @@ -8,5 +8,7 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] - +php_value upload_max_filesize 64M +php_value post_max_size 64M +php_value memory_limit 64M # END WordPress \ No newline at end of file diff --git a/www/wp-content/plugins/advanced-custom-fields/acf.php b/www/wp-content/plugins/advanced-custom-fields/acf.php index c556a65..e3dc585 100644 --- a/www/wp-content/plugins/advanced-custom-fields/acf.php +++ b/www/wp-content/plugins/advanced-custom-fields/acf.php @@ -3,7 +3,7 @@ Plugin Name: Advanced Custom Fields Plugin URI: http://www.advancedcustomfields.com/ Description: Customise WordPress with powerful, professional and intuitive fields -Version: 4.4.5 +Version: 4.4.6 Author: Elliot Condon Author URI: http://www.elliotcondon.com/ License: GPL @@ -43,7 +43,7 @@ function __construct() 'path' => apply_filters('acf/helpers/get_path', __FILE__), 'dir' => apply_filters('acf/helpers/get_dir', __FILE__), 'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ), - 'version' => '4.4.5', + 'version' => '4.4.6', 'upgrade_version' => '3.4.1', 'include_3rd_party' => false ); @@ -161,15 +161,20 @@ function helpers_get_dir( $file ) function get_post_id( $post_id ) { - // set post_id to global - if( !$post_id ) - { - global $post; + // if not $post_id, load queried object + if( !$post_id ) { - if( $post ) - { - $post_id = intval( $post->ID ); + // try for global post (needed for setup_postdata) + $post_id = (int) get_the_ID(); + + + // try for current screen + if( !$post_id ) { + + $post_id = get_queried_object(); + } + } diff --git a/www/wp-content/plugins/advanced-custom-fields/core/api.php b/www/wp-content/plugins/advanced-custom-fields/core/api.php index f476649..8157bd5 100644 --- a/www/wp-content/plugins/advanced-custom-fields/core/api.php +++ b/www/wp-content/plugins/advanced-custom-fields/core/api.php @@ -343,7 +343,7 @@ function the_field( $field_name, $post_id = false ) { * have_rows * * This function will instantiate a global variable containing the rows of a repeater or flexible content field, -* afterwhich, it will determin if another row exists to loop through +* afterwhich, it will determine if another row exists to loop through * * @type function * @date 2/09/13 diff --git a/www/wp-content/plugins/advanced-custom-fields/core/controllers/addons.php b/www/wp-content/plugins/advanced-custom-fields/core/controllers/addons.php index 022066d..cbfb56c 100644 --- a/www/wp-content/plugins/advanced-custom-fields/core/controllers/addons.php +++ b/www/wp-content/plugins/advanced-custom-fields/core/controllers/addons.php @@ -172,11 +172,11 @@ function html() 'url' => 'http://wordpress.org/extend/plugins/acf-field-date-time-picker/' ); $free[] = array( - 'title' => __("Location Field",'acf'), + 'title' => __("Google Map Extended",'acf'), 'description' => __("Find addresses and coordinates of a desired location",'acf'), 'thumbnail' => $dir . 'images/add-ons/google-maps-field-thumb.jpg', - 'active' => class_exists('acf_field_location'), - 'url' => 'https://github.com/elliotcondon/acf-location-field/' + 'active' => class_exists('acf_field_google_map_extended'), + 'url' => 'https://wordpress.org/plugins/advanced-custom-fields-google-map-extended/' ); $free[] = array( 'title' => __("Contact Form 7 Field",'acf'), diff --git a/www/wp-content/plugins/advanced-custom-fields/core/controllers/everything_fields.php b/www/wp-content/plugins/advanced-custom-fields/core/controllers/everything_fields.php index f936733..885b5f2 100644 --- a/www/wp-content/plugins/advanced-custom-fields/core/controllers/everything_fields.php +++ b/www/wp-content/plugins/advanced-custom-fields/core/controllers/everything_fields.php @@ -209,7 +209,7 @@ function validate_page() // validate page - if( in_array( $pagenow, array( 'edit-tags.php', 'profile.php', 'user-new.php', 'user-edit.php', 'media.php' ) ) ) + if( in_array( $pagenow, array( 'edit-tags.php', 'term.php', 'profile.php', 'user-new.php', 'user-edit.php', 'media.php' ) ) ) { $return = true; } @@ -275,26 +275,43 @@ function admin_menu() $this->data['option_name'] = "shopp_category_" . $_GET['id']; } - } - if( $pagenow == "edit-tags.php" && isset($_GET['taxonomy']) ) - { - // filter - $_GET['taxonomy'] = filter_var($_GET['taxonomy'], FILTER_SANITIZE_STRING); + } elseif( $pagenow == "edit-tags.php" || $pagenow == "term.php" ) { + // vars + $taxonomy = 'post_tag'; + $term_id = 0; - $this->data['page_type'] = "taxonomy"; - $filter['ef_taxonomy'] = $_GET['taxonomy']; + // $_GET + if( !empty($_GET['taxonomy']) ) { + + $taxonomy = filter_var($_GET['taxonomy'], FILTER_SANITIZE_STRING); + + } + + if( !empty($_GET['tag_ID']) ) { + + $term_id = filter_var($_GET['tag_ID'], FILTER_SANITIZE_NUMBER_INT); + + } + + + // update filter + $filter['ef_taxonomy'] = $taxonomy; + + + // add + $this->data['page_type'] = "taxonomy"; $this->data['page_action'] = "add"; $this->data['option_name'] = ""; - if( isset($_GET['action']) && $_GET['action'] == "edit" ) - { - // filter - $_GET['tag_ID'] = filter_var($_GET['tag_ID'], FILTER_SANITIZE_NUMBER_INT); + // edit + if( $term_id ) { + $this->data['page_action'] = "edit"; - $this->data['option_name'] = $_GET['taxonomy'] . "_" . $_GET['tag_ID']; + $this->data['option_name'] = $taxonomy . "_" . $term_id; + } } diff --git a/www/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php b/www/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php index 2169e8f..bff69ff 100644 --- a/www/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php +++ b/www/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php @@ -358,7 +358,7 @@ function admin_footer()

no changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues.",'acf'); ?>

-

',''); ?>

+

',''); ?>

',''); ?>

diff --git a/www/wp-content/plugins/advanced-custom-fields/core/controllers/revisions.php b/www/wp-content/plugins/advanced-custom-fields/core/controllers/revisions.php index 83bc6db..7c8881f 100644 --- a/www/wp-content/plugins/advanced-custom-fields/core/controllers/revisions.php +++ b/www/wp-content/plugins/advanced-custom-fields/core/controllers/revisions.php @@ -115,7 +115,7 @@ function wp_post_revision_fields( $return ) { $post_id = 0; - // determin $post_id + // determine $post_id if( isset($_POST['post_id']) ) { $post_id = $_POST['post_id']; @@ -154,7 +154,7 @@ function wp_post_revision_fields( $return ) { // WP 3.5: left vs right - // Add a value of the revision ID (as there is no way to determin this within the '_wp_post_revision_field_' filter!) + // Add a value of the revision ID (as there is no way to determine this within the '_wp_post_revision_field_' filter!) if( isset($_GET['action'], $_GET['left'], $_GET['right']) && $_GET['action'] == 'diff' ) { global $left_revision, $right_revision; @@ -193,7 +193,7 @@ function wp_post_revision_field( $value, $field_name, $post = null, $direction = $post_id = 0; - // determin $post_id + // determine $post_id if( isset($post->ID) ) { // WP 3.6 diff --git a/www/wp-content/plugins/advanced-custom-fields/core/fields/select.php b/www/wp-content/plugins/advanced-custom-fields/core/fields/select.php index 76f6518..7226b5c 100644 --- a/www/wp-content/plugins/advanced-custom-fields/core/fields/select.php +++ b/www/wp-content/plugins/advanced-custom-fields/core/fields/select.php @@ -54,7 +54,7 @@ function create_field( $field ) $optgroup = false; - // determin if choices are grouped (2 levels of array) + // determine if choices are grouped (2 levels of array) if( is_array($field['choices']) ) { foreach( $field['choices'] as $k => $v ) diff --git a/www/wp-content/plugins/advanced-custom-fields/core/fields/text.php b/www/wp-content/plugins/advanced-custom-fields/core/fields/text.php index 8e2fb16..0f43e2f 100644 --- a/www/wp-content/plugins/advanced-custom-fields/core/fields/text.php +++ b/www/wp-content/plugins/advanced-custom-fields/core/fields/text.php @@ -174,7 +174,7 @@ function create_options( $field ) -

+

name; ?>"> -

+

n;n++){if(i[n]&&!a[n]&&parseInt(i[n])>0||parseInt(i[n])>parseInt(a[n]))return 1;if(a[n]&&!i[n]&&parseInt(a[n])>0||parseInt(i[n])

'+e+"

");t.prepend(e),setTimeout(function(){e.animate({opacity:0},250,function(){e.remove()})},1500)},$.fn.exists=function(){return $(this).length>0},acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){this.frame&&(this.frame.detach(),this.frame.dispose(),this.frame=null)},type:function(){var e="thickbox";return"undefined"!=typeof wp&&(e="backbone"),e},init:function(){if("backbone"!==this.type())return!1;if(!acf.helpers.isset(wp,"media","view","AttachmentCompat","prototype"))return!1;var e=wp.media.view.AttachmentCompat.prototype;e.orig_render=e.render,e.orig_dispose=e.dispose,e.className="compat-item acf_postbox no_box",e.render=function(){var e=this;return e.ignore_render?this:(this.orig_render(),setTimeout(function(){var t=e.$el.closest(".media-modal");if(!t.hasClass("acf-media-modal")&&!t.find(".media-frame-router .acf-expand-details").exists()){var i=$(['','',''+acf.l10n.core.expand_details+"",''+acf.l10n.core.collapse_details+"",""].join(""));i.on("click",function(e){e.preventDefault(),t.hasClass("acf-expanded")?t.removeClass("acf-expanded"):t.addClass("acf-expanded")}),t.find(".media-frame-router").append(i)}},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){$(document).trigger("acf/setup_fields",[e.$el])},50),this)},e.dispose=function(){$(document).trigger("acf/remove_fields",[this.$el]),this.orig_dispose()},e.save=function(e){var t={},i={};e&&e.preventDefault(),_.each(this.$el.serializeArray(),function(e){"[]"===e.name.slice(-2)&&(e.name=e.name.replace("[]",""),"undefined"==typeof i[e.name]&&(i[e.name]=-1),i[e.name]++,e.name+="["+i[e.name]+"]"),t[e.name]=e.value}),this.ignore_render=!0,this.model.saveCompat(t)}}},acf.conditional_logic={items:[],init:function(){var e=this;$(document).on("change",".field input, .field textarea, .field select",function(){$("#acf-has-changed").exists()&&$("#acf-has-changed").val(1),e.change($(this))}),$(document).on("acf/setup_fields",function(t,i){e.refresh($(i))}),e.refresh()},change:function(e){var t=this,i=e.closest(".field"),a=i.attr("data-field_key");$.each(this.items,function(e,i){$.each(i.rules,function(e,n){n.field==a&&t.refresh_field(i)})})},refresh_field:function(e){var t=this,i=$(".field_key-"+e.field);i.each(function(){var i=!0;"any"==e.allorany&&(i=!1);var a=$(this),n=!0;$.each(e.rules,function(s,o){var l=$(".field_key-"+o.field);l.hasClass("sub_field")&&(l=a.siblings(".field_key-"+o.field),n=!1,l.exists()||(a.parents("tr").each(function(){return l=$(this).find(".field_key-"+o.field),l.exists()?!1:void 0}),n=!0));var r=a.parent("tr").parent().parent("table").parent(".layout");r.exists()&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest(".layout").find("td.field_key-"+o.field)));var r=a.parent("tr").parent().parent("table").parent(".repeater");r.exists()&&"1"==r.attr("data-max_rows")&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest("table").find("td.field_key-"+o.field)));var c=t.calculate(o,l,a);if("all"==e.allorany){if(0==c)return i=!1,!1}else if(1==c)return i=!0,!1}),a.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank"),i?(a.find("input, textarea, select").removeAttr("disabled"),a.addClass("acf-conditional_logic-show"),$(document).trigger("acf/conditional_logic/show",[a,e])):(a.find("input, textarea, select").attr("disabled","disabled"),a.addClass("acf-conditional_logic-hide"),n||a.addClass("acf-show-blank"),$(document).trigger("acf/conditional_logic/hide",[a,e]))})},refresh:function(e){e=e||$("body");var t=this;$.each(this.items,function(i,a){$.each(a.rules,function(i,n){e.find('.field[data-field_key="'+a.field+'"]').exists()&&t.refresh_field(a)})})},calculate:function(e,t,i){var a=!1;if(t.hasClass("field_type-true_false")||t.hasClass("field_type-checkbox")||t.hasClass("field_type-radio")){var n=t.find('input[value="'+e.value+'"]:checked').exists();"=="==e.operator?n&&(a=!0):n||(a=!0)}else{var s=t.find("input, textarea, select").last().val();$.isArray(s)||(s=[s]),"=="==e.operator?$.inArray(e.value,s)>-1&&(a=!0):$.inArray(e.value,s)<0&&(a=!0)}return a}},$(document).ready(function(){acf.conditional_logic.init(),$(".acf_postbox > .inside > .options").each(function(){$(this).closest(".acf_postbox").addClass($(this).attr("data-layout"))}),$('#metakeyselect option[value^="field_"]').remove()}),$(window).load(function(){acf.media.init(),setTimeout(function(){try{$.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(e){}$(document).trigger("acf/setup_fields",[$("#poststuff")])},10)}),acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}}(jQuery),function($){function e(){var e=[];$(".categorychecklist input:checked, .acf-taxonomy-field input:checked, .acf-taxonomy-field option:selected").each(function(){$(this).is(":hidden")||$(this).is(":disabled")||$(this).closest(".media-frame").exists()||$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-load_save")||-1===e.indexOf($(this).val())&&e.push($(this).val())}),acf.screen.post_category=e,acf.screen.taxonomy=e,$(document).trigger("acf/update_field_groups")}acf.screen={action:"acf/location/match_field_groups_ajax",post_id:0,page_template:0,page_parent:0,page_type:0,post_category:0,post_format:0,taxonomy:0,lang:0,nonce:0},$(document).ready(function(){if(acf.screen.post_id=acf.o.post_id,acf.screen.nonce=acf.o.nonce,$("#icl-als-first").length>0){var e=$("#icl-als-first").children("a").attr("href"),t=new RegExp("lang=([^&#]*)"),i=t.exec(e);acf.screen.lang=i[1]}}),$(document).on("acf/update_field_groups",function(){return acf.screen.post_id&&$.isNumeric(acf.screen.post_id)?void $.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(e){return e?($(".acf_postbox").addClass("acf-hidden"),$(".acf_postbox-toggle").addClass("acf-hidden"),0==e.length?!1:($.each(e,function(e,t){var i=$("#acf_"+t),a=$('#adv-settings .acf_postbox-toggle[for="acf_'+t+'-hide"]');i.removeClass("acf-hidden hide-if-js"),a.removeClass("acf-hidden"),a.find('input[type="checkbox"]').attr("checked","checked"),i.find(".acf-replace-with-fields").each(function(){var e=$(this);$.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:t,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e.replaceWith(t),$(document).trigger("acf/setup_fields",i)}})})}),void $.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:e[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(e){$("#acf_style").html(e)}}))):!1}}):!1}),$(document).on("change","#page_template",function(){acf.screen.page_template=$(this).val(),$(document).trigger("acf/update_field_groups")}),$(document).on("change","#parent_id",function(){var e=$(this).val();""!=e?(acf.screen.page_type="child",acf.screen.page_parent=e):(acf.screen.page_type="parent",acf.screen.page_parent=0),$(document).trigger("acf/update_field_groups")}),$(document).on("change",'#post-formats-select input[type="radio"]',function(){var e=$(this).val();"0"==e&&(e="standard"),acf.screen.post_format=e,$(document).trigger("acf/update_field_groups")}),$(document).on("change",".categorychecklist input, .acf-taxonomy-field input, .acf-taxonomy-field select",function(){$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-save")||$(this).closest(".media-frame").exists()||setTimeout(function(){e()},1)})}(jQuery),function($){var e=acf.fields.color_picker={$el:null,$input:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this},init:function(){var e=this.$input;acf.helpers.is_clone_field(e)||this.$input.wpColorPicker()}};$(document).on("acf/setup_fields",function(t,i){$(i).find(".acf-color_picker").each(function(){e.set({$el:$(this)}).init()})})}(jQuery),function($){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this},init:function(){if(!acf.helpers.is_clone_field(this.$hidden)){this.$input.val(this.$hidden.val());var e=$.extend({},acf.l10n.date_picker,{dateFormat:this.o.save_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day});this.$input.addClass("active").datepicker(e),this.$input.datepicker("option","dateFormat",this.o.display_format),$("body > #ui-datepicker-div").length>0&&$("#ui-datepicker-div").wrap('
')}},blur:function(){this.$input.val()||this.$hidden.val("")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:$(this)}).init()})}),$(document).on("blur",'.acf-date_picker input[type="text"]',function(e){acf.fields.date_picker.set({$el:$(this).parent()}).blur()})}(jQuery),function($){var e=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-file-icon").attr("src",t.icon),i.find(".acf-file-title").text(t.title),i.find(".acf-file-name").text(t.name).attr("href",t.url),i.find(".acf-file-size").text(t.size),i.find(".acf-file-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-file-icon").attr("src",""),this.$el.find(".acf-file-title").text(""),this.$el.find(".acf-file-name").text("").attr("href",""),this.$el.find(".acf-file-size").text(""),this.$el.find(".acf-file-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?void("uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after(""+acf.l10n.file.uploadedTo+""),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id}))):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var t=0;selection.each(function(i){if(t++,t>1){var a=e.div.closest("td"),n=a.closest(".row"),s=n.closest(".repeater"),o=a.attr("data-field_key"),l="td .acf-file-uploader:first";o&&(l='td[data-field_key="'+o+'"] .acf-file-uploader'),n.next(".row").exists()||s.find(".add-row-end").trigger("click"),e.div=n.next(".row").find(l)}var r={id:i.id,title:i.attributes.title,name:i.attributes.filename,url:i.attributes.url,icon:i.attributes.icon,size:i.attributes.filesize};acf.fields.file.add(r)})}}),acf.media.frame.open(),!1}},$(document).on("click",".acf-file-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).edit()}),$(document).on("click",".acf-file-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).remove()}),$(document).on("click",".acf-file-uploader .add-file",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).popup()})}(jQuery),function($){acf.fields.google_map={$el:null,$input:null,o:{},ready:!1,geocoder:!1,map:!1,maps:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find(".value"),this.o=acf.helpers.get_atts(this.$el),this.maps[this.o.id]&&(this.map=this.maps[this.o.id]),this},init:function(){this.geocoder||(this.geocoder=new google.maps.Geocoder),this.ready=!0,acf.helpers.is_clone_field(this.$input)||this.render()},render:function(){var e=this,t=this.$el,i={zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP};this.map=new google.maps.Map(this.$el.find(".canvas")[0],i);var a=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);a.map=this.map,a.bindTo("bounds",this.map),this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map}),this.map.$el=this.$el;var n=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();n&&s&&this.update(n,s).center(),google.maps.event.addListener(a,"place_changed",function(t){var i=this.map.$el,a=i.find(".search").val();i.find(".input-address").val(a),i.find(".title h4").text(a);var n=this.getPlace();if(n.geometry){var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()}else e.geocoder.geocode({address:a},function(t,a){if(a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!t[0])return void console.log("No results found");n=t[0];var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()})}),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,i=this.map.marker.getPosition(),a=i.lat(),n=i.lng();e.set({$el:t}).update(a,n).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=this.$el,a=t.latLng.lat(),n=t.latLng.lng();e.set({$el:i}).update(a,n).sync()}),this.maps[this.o.id]=this.map},update:function(e,t){var i=new google.maps.LatLng(e,t);return this.$el.find(".input-lat").val(e),this.$el.find(".input-lng").val(t).trigger("change"),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("active"),this.$el.closest(".field").removeClass("error"),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.geocoder.geocode({latLng:i},function(t,i){if(i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.find(".title h4").text(a.formatted_address),e.find(".input-address").val(a.formatted_address).trigger("change")}),this},locate:function(){var e=this,t=this.$el;return navigator.geolocation?(t.find(".title h4").text(acf.l10n.google_map.locating+"..."),t.addClass("active"),void navigator.geolocation.getCurrentPosition(function(i){var a=i.coords.latitude,n=i.coords.longitude;e.set({$el:t}).update(a,n).sync().center()})):(alert(acf.l10n.google_map.browser_support),this)},clear:function(){this.$el.removeClass("active"),this.$el.find(".search").val(""),this.$el.find(".input-address").val(""),this.$el.find(".input-lat").val(""),this.$el.find(".input-lng").val(""),this.map.marker.setVisible(!1)},edit:function(){this.$el.removeClass("active");var e=this.$el.find(".title h4").text();this.$el.find(".search").val(e).focus()},refresh:function(){google.maps.event.trigger(this.map,"resize"),this.center()}},$(document).on("acf/setup_fields",function(e,t){$fields=$(t).find(".acf-google-map"),$fields.exists()&&("undefined"==typeof google?$.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}})}):google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}}))}),$(document).on("click",".acf-google-map .acf-sprite-remove",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).clear(),$(this).blur()}),$(document).on("click",".acf-google-map .acf-sprite-locate",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).locate(),$(this).blur()}),$(document).on("click",".acf-google-map .title h4",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).edit()}),$(document).on("keydown",".acf-google-map .search",function(e){return 13==e.which?!1:void 0}),$(document).on("blur",".acf-google-map .search",function(e){var t=$(this).closest(".acf-google-map");t.find(".input-lat").val()&&t.addClass("active")}),$(document).on("acf/fields/tab/show acf/conditional_logic/show",function(e,t){acf.fields.google_map.ready&&"google_map"==t.attr("data-field_type")&&acf.fields.google_map.set({$el:t.find(".acf-google-map")}).refresh()})}(jQuery),function($){var e=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={type:"image"},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-image-image").attr("src",t.url),i.find(".acf-image-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-image-image").attr("src",""),this.$el.find(".acf-image-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?($.each(i.filters,function(e,t){t.props.type="image"}),"uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after(""+acf.l10n.image.uploadedTo+""),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})),i.$el.find("option").each(function(){var e=$(this).attr("value");("uploaded"!=e||"all"!=t.o.library)&&-1===e.indexOf("image")&&$(this).remove()}),void i.$el.val("image").trigger("change")):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var i=0;selection.each(function(a){if(i++,i>1){var n=e.div.closest("td"),s=n.closest(".row"),o=s.closest(".repeater"),l=n.attr("data-field_key"),r="td .acf-image-uploader:first";l&&(r='td[data-field_key="'+l+'"] .acf-image-uploader'),s.next(".row").exists()||o.find(".add-row-end").trigger("click"),e.div=s.next(".row").find(r)}var c={id:a.id,url:a.attributes.url};a.attributes.sizes&&a.attributes.sizes[t.o.preview_size]&&(c.url=a.attributes.sizes[t.o.preview_size].url),acf.fields.image.add(c)})}}),acf.media.frame.open(),!1},text:{title_add:"Select Image",title_edit:"Edit Image"}},$(document).on("click",".acf-image-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).edit()}),$(document).on("click",".acf-image-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).remove()}),$(document).on("click",".acf-image-uploader .add-image",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).popup()})}(jQuery),function($){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="radio"]:checked'),this.$other=this.$el.find('input[type="text"]'),this},change:function(){"other"==this.$input.val()?(this.$other.attr("name",this.$input.attr("name")),this.$other.show()):(this.$other.attr("name",""),this.$other.hide())}},$(document).on("change",'.acf-radio-list input[type="radio"]',function(e){acf.fields.radio.set({$el:$(this).closest(".acf-radio-list")}).change()})}(jQuery),function($){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(e){return $.extend(this,e),this.$input=this.$el.children('input[type="hidden"]'),this.$left=this.$el.find(".relationship_left"),this.$right=this.$el.find(".relationship_right"),this.o=acf.helpers.get_atts(this.$el),this},init:function(){var e=this;if(!acf.helpers.is_clone_field(this.$input)){this.$right.find(".relationship_list").height(this.$left.height()-2),this.$right.find(".relationship_list").sortable({axis:"y",items:"> li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){e.$input.trigger("change")}});var t=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(i){if(!t.hasClass("loading")&&!t.hasClass("no-results")&&$(this).scrollTop()+$(this).innerHeight()>=$(this).get(0).scrollHeight){var a=parseInt(t.attr("data-paged"));t.attr("data-paged",a+1),e.set({$el:t}).fetch()}}),this.fetch()}},fetch:function(){var e=this,t=this.$el;t.addClass("loading"),$.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:$.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(i){e.set({$el:t}).render(i)}})},render:function(e){var t=this;return this.$el.removeClass("no-results").removeClass("loading"),1==this.o.paged&&this.$el.find(".relationship_left li:not(.load-more)").remove(),e&&e.html?(this.$el.find(".relationship_left .load-more").before(e.html),e.next_page_exists||this.$el.addClass("no-results"),void this.$left.find("a").each(function(){var e=$(this).attr("data-post_id");t.$right.find('a[data-post_id="'+e+'"]').exists()&&$(this).parent().addClass("hide")})):void this.$el.addClass("no-results")},add:function(e){var t=e.attr("data-post_id"),i=e.html();if(this.$right.find("a").length>=this.o.max)return alert(acf.l10n.relationship.max.replace("{max}",this.o.max)),!1;if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var a={post_id:e.attr("data-post_id"),title:e.html(),name:this.$input.attr("name")},n=_.template(acf.l10n.relationship.tmpl_li,a);this.$right.find(".relationship_list").append(n),this.$input.trigger("change"),this.$el.closest(".field").removeClass("error")},remove:function(e){e.parent().remove(),this.$left.find('a[data-post_id="'+e.attr("data-post_id")+'"]').parent("li").removeClass("hide"),this.$input.trigger("change")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:$(this)}).init()})}),$(document).on("change",".acf_relationship .select-post_type",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-post_type",t),i.attr("data-paged",1),acf.fields.relationship.set({$el:i}).fetch()}),$(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).add($(this)),$(this).blur()}),$(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).remove($(this)),$(this).blur()}),$(document).on("keyup",".acf_relationship input.relationship_search",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-s",t),i.attr("data-paged",1),clearTimeout(acf.fields.relationship.timeout),acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:i}).fetch()},500)}),$(document).on("keypress",".acf_relationship input.relationship_search",function(e){13==e.which&&e.preventDefault()})}(jQuery),function($){acf.fields.tab={add_group:function(e){var t="";t=e.is("tbody")?'':'
',e.children(".field_type-tab:first").before(t)},add_tab:function(e){var t=e.closest(".field"),i=t.parent(),a=t.attr("data-field_key"),n=e.text();i.children(".acf-tab-wrap").exists()||this.add_group(i),i.children(".acf-tab-wrap").find(".acf-tab-group").append('
  • '+n+"
  • ")},toggle:function(e){var t=this,i=e.closest(".acf-tab-wrap").parent(),a=e.attr("data-key");e.parent("li").addClass("active").siblings("li").removeClass("active"),i.children(".field_type-tab").each(function(){var e=$(this);e.attr("data-field_key")==a?t.show_tab_fields($(this)):t.hide_tab_fields($(this))})},show_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-hide").addClass("acf-tab_group-show"),$(document).trigger("acf/fields/tab/show",[$(this)])})},hide_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-show").addClass("acf-tab_group-hide"),$(document).trigger("acf/fields/tab/hide",[$(this)])})},refresh:function(e){var t=this;e.find(".acf-tab-group").each(function(){$(this).find(".acf-tab-button:first").each(function(){t.toggle($(this))})})}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-tab").each(function(){acf.fields.tab.add_tab($(this))}),acf.fields.tab.refresh($(t))}),$(document).on("click",".acf-tab-button",function(e){e.preventDefault(),acf.fields.tab.toggle($(this)),$(this).trigger("blur")}),$(document).on("acf/conditional_logic/hide",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');a.is(":hidden")||(a.parent().hide(),a.parent().siblings(":visible").exists()?a.parent().siblings(":visible").first().children("a").trigger("click"):acf.fields.tab.hide_tab_fields(t))}}),$(document).on("acf/conditional_logic/show",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');if(!a.is(":visible"))return a.parent().show(),a.parent().hasClass("active")?void a.trigger("click"):a.parent().siblings(".active").is(":hidden")?void a.trigger("click"):void 0}})}(jQuery),function($){acf.validation={status:!0,disabled:!1,run:function(){var e=this;e.status=!0,$(".field.required, .form-field.required").each(function(){e.validate($(this))})},show_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.addClass("is-active"):e.css("display","inline-block")}},hide_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.removeClass("is-active"):e.css("display","none")}},validate:function(e){var t=!1,i=null;if(e.data("validation",!0),e.is(":hidden")&&(t=!0,e.hasClass("acf-tab_group-hide"))){t=!1;var a=e.prevAll(".field_type-tab:first"),n=e.prevAll(".acf-tab-wrap:first");a.hasClass("acf-conditional_logic-hide")?t=!0:i=n.find('.acf-tab-button[data-key="'+a.attr("data-field_key")+'"]')}if(e.hasClass("acf-conditional_logic-hide")&&(t=!0),e.closest(".postbox.acf-hidden").exists()&&(t=!0),!t){if(""==e.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()&&e.data("validation",!1),e.find(".acf_wysiwyg").exists()&&"object"==typeof tinyMCE){e.data("validation",!0);var s=e.find(".wp-editor-area").attr("id"),o=tinyMCE.get(s);o&&!o.getContent()&&e.data("validation",!1)}if(e.find("select").exists()&&(e.data("validation",!0),"null"!=e.find("select").val()&&e.find("select").val()||e.data("validation",!1)),e.find('input[type="radio"]').exists()&&(e.data("validation",!1),e.find('input[type="radio"]:checked').exists()&&e.data("validation",!0)),e.find('input[type="checkbox"]').exists()&&(e.data("validation",!1),e.find('input[type="checkbox"]:checked').exists()&&e.data("validation",!0)),e.find(".acf_relationship").exists()&&(e.data("validation",!1),e.find(".acf_relationship .relationship_right input").exists()&&e.data("validation",!0)),e.find(".repeater").exists()&&(e.data("validation",!1),e.find(".repeater tr.row").exists()&&e.data("validation",!0)),e.find(".acf-gallery").exists()&&(e.data("validation",!1),e.find(".acf-gallery .thumbnail").exists()&&e.data("validation",!0)),$(document).trigger("acf/validate_field",[e]),!e.data("validation")){if(this.status=!1,e.closest(".field").addClass("error"),e.data("validation_message")){var l=e.find("p.label:first"),r=null;l.children(".acf-error-message").remove(),l.append(''+e.data("validation_message")+"")}i&&i.trigger("click")}}}},$(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(e){$(this).closest(".field").removeClass("error")}),$(document).on("click","#save-post",function(){acf.validation.disabled=!0}),$(document).on("submit","#post",function(){if(acf.validation.disabled)return!0;if(acf.validation.run(), -!acf.validation.status){var e=$(this);return e.siblings("#message").remove(),e.before('

    '+acf.l10n.validation.error+"

    "),$("#submitdiv").exists()&&($("#submitdiv").find(".disabled").removeClass("disabled"),$("#submitdiv").find(".button-disabled").removeClass("button-disabled"),$("#submitdiv").find(".button-primary-disabled").removeClass("button-primary-disabled"),acf.validation.hide_spinner($("#submitdiv .spinner"))),!1}return $(".acf_postbox.acf-hidden").remove(),!0})}(jQuery),function($){var e=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(e){return $.extend(this,e),this.$textarea=this.$el.find("textarea"),this.o=acf.helpers.get_atts(this.$el),this.o.id=this.$textarea.attr("id"),this},has_tinymce:function(){var e=!1;return"object"==typeof tinyMCE&&(e=!0),e},get_toolbar:function(){return acf.helpers.isset(this,"toolbars",this.o.toolbar)?this.toolbars[this.o.toolbar]:!1},init:function(){if(!acf.helpers.is_clone_field(this.$textarea)){var e=this.get_toolbar(),t="mceAddControl",i="theme_advanced_buttons{i}",a=$.extend({},tinyMCE.settings);if(4==tinymce.majorVersion&&(t="mceAddEditor",i="toolbar{i}"),e)for(var n=1;5>n;n++){var s="";acf.helpers.isset(e,"theme_advanced_buttons"+n)&&(s=e["theme_advanced_buttons"+n]),tinyMCE.settings[i.replace("{i}",n)]=s}tinyMCE.execCommand(t,!1,this.o.id),$(document).trigger("acf/wysiwyg/load",this.o.id),this.add_events(),tinyMCE.settings=a,wpActiveEditor=null}},add_events:function(){var e=this.o.id,t=tinyMCE.get(e);if(t){var i=$("#wp-"+e+"-wrap"),a=$(t.getBody());i.on("click",function(){$(document).trigger("acf/wysiwyg/click",e)}),a.on("focus",function(){$(document).trigger("acf/wysiwyg/focus",e)}),a.on("blur",function(){$(document).trigger("acf/wysiwyg/blur",e)})}},destroy:function(){var e=this.o.id,t="mceRemoveControl";try{var i=tinyMCE.get(e);if(!i)return;4==tinymce.majorVersion&&(t="mceRemoveEditor");var a=i.getContent();tinyMCE.execCommand(t,!1,e),this.$textarea.val(a)}catch(n){}wpActiveEditor=null}};$(document).on("acf/setup_fields",function(t,i){e.has_tinymce()&&($(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()}),setTimeout(function(){$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})},0))}),$(document).on("acf/remove_fields",function(t,i){e.has_tinymce()&&i.find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/wysiwyg/click",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/focus",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/blur",function(e,t){wpActiveEditor=null;var i=tinyMCE.get(t);if(i){var a=i.getElement();i.save(),$(a).trigger("change")}}),$(document).on("acf/sortable_start",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/sortable_stop",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})}),$(window).load(function(){if(e.has_tinymce()){var t=$("#wp-content-wrap").exists(),i=$("#wp-acf_settings-wrap").exists();mode="tmce",i&&$("#wp-acf_settings-wrap").hasClass("html-active")&&(mode="html"),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-tmce").trigger("click")},1),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-html").trigger("click"),t&&e.set({$el:$("#wp-content-wrap")}).add_events()},11)}}),$(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var e=$(this).closest(".acf_wysiwyg"),t=e.attr("data-upload");"no"==t&&$("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})}(jQuery); \ No newline at end of file +var acf={ajaxurl:"",admin_url:"",wp_version:"",post_id:0,nonce:"",l10n:null,o:null,helpers:{get_atts:null,version_compare:null,uniqid:null,sortable:null,add_message:null,is_clone_field:null,url_to_object:null},validation:null,conditional_logic:null,media:null,fields:{date_picker:null,color_picker:null,Image:null,file:null,wysiwyg:null,gallery:null,relationship:null}};!function($){acf.helpers.isset=function(){var e=arguments,t=e.length,a=null,n;if(0===t)throw new Error("Empty isset");for(a=e[0],i=1;in;n++){if(i[n]&&!a[n]&&parseInt(i[n])>0||parseInt(i[n])>parseInt(a[n]))return 1;if(a[n]&&!i[n]&&parseInt(a[n])>0||parseInt(i[n])

    '+e+"

    ");t.prepend(e),setTimeout(function(){e.animate({opacity:0},250,function(){e.remove()})},1500)},$.fn.exists=function(){return $(this).length>0},acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){this.frame&&(this.frame.detach(),this.frame.dispose(),this.frame=null)},type:function(){var e="thickbox";return"undefined"!=typeof wp&&(e="backbone"),e},init:function(){if("backbone"!==this.type())return!1;if(!acf.helpers.isset(wp,"media","view","AttachmentCompat","prototype"))return!1;var e=wp.media.view.AttachmentCompat.prototype;e.orig_render=e.render,e.orig_dispose=e.dispose,e.className="compat-item acf_postbox no_box",e.render=function(){var e=this;return e.ignore_render?this:(this.orig_render(),setTimeout(function(){var t=e.$el.closest(".media-modal");if(!t.hasClass("acf-media-modal")&&!t.find(".media-frame-router .acf-expand-details").exists()){var i=$(['','',''+acf.l10n.core.expand_details+"",''+acf.l10n.core.collapse_details+"",""].join(""));i.on("click",function(e){e.preventDefault(),t.hasClass("acf-expanded")?t.removeClass("acf-expanded"):t.addClass("acf-expanded")}),t.find(".media-frame-router").append(i)}},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){$(document).trigger("acf/setup_fields",[e.$el])},50),this)},e.dispose=function(){$(document).trigger("acf/remove_fields",[this.$el]),this.orig_dispose()},e.save=function(e){var t={},i={};e&&e.preventDefault(),_.each(this.$el.serializeArray(),function(e){"[]"===e.name.slice(-2)&&(e.name=e.name.replace("[]",""),"undefined"==typeof i[e.name]&&(i[e.name]=-1),i[e.name]++,e.name+="["+i[e.name]+"]"),t[e.name]=e.value}),this.ignore_render=!0,this.model.saveCompat(t)}}},acf.conditional_logic={items:[],init:function(){var e=this;$(document).on("change",".field input, .field textarea, .field select",function(){$("#acf-has-changed").exists()&&$("#acf-has-changed").val(1),e.change($(this))}),$(document).on("acf/setup_fields",function(t,i){e.refresh($(i))}),e.refresh()},change:function(e){var t=this,i=e.closest(".field"),a=i.attr("data-field_key");$.each(this.items,function(e,i){$.each(i.rules,function(e,n){n.field==a&&t.refresh_field(i)})})},refresh_field:function(e){var t=this,i=$(".field_key-"+e.field);i.each(function(){var i=!0;"any"==e.allorany&&(i=!1);var a=$(this),n=!0;$.each(e.rules,function(s,o){var l=$(".field_key-"+o.field);l.hasClass("sub_field")&&(l=a.siblings(".field_key-"+o.field),n=!1,l.exists()||(a.parents("tr").each(function(){return l=$(this).find(".field_key-"+o.field),l.exists()?!1:void 0}),n=!0));var r=a.parent("tr").parent().parent("table").parent(".layout");r.exists()&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest(".layout").find("td.field_key-"+o.field)));var r=a.parent("tr").parent().parent("table").parent(".repeater");r.exists()&&"1"==r.attr("data-max_rows")&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest("table").find("td.field_key-"+o.field)));var c=t.calculate(o,l,a);if("all"==e.allorany){if(0==c)return i=!1,!1}else if(1==c)return i=!0,!1}),a.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank"),i?(a.find("input, textarea, select").removeAttr("disabled"),a.addClass("acf-conditional_logic-show"),$(document).trigger("acf/conditional_logic/show",[a,e])):(a.find("input, textarea, select").attr("disabled","disabled"),a.addClass("acf-conditional_logic-hide"),n||a.addClass("acf-show-blank"),$(document).trigger("acf/conditional_logic/hide",[a,e]))})},refresh:function(e){e=e||$("body");var t=this;$.each(this.items,function(i,a){$.each(a.rules,function(i,n){e.find('.field[data-field_key="'+a.field+'"]').exists()&&t.refresh_field(a)})})},calculate:function(e,t,i){var a=!1;if(t.hasClass("field_type-true_false")||t.hasClass("field_type-checkbox")||t.hasClass("field_type-radio")){var n=t.find('input[value="'+e.value+'"]:checked').exists();"=="==e.operator?n&&(a=!0):n||(a=!0)}else{var s=t.find("input, textarea, select").last().val();$.isArray(s)||(s=[s]),"=="==e.operator?$.inArray(e.value,s)>-1&&(a=!0):$.inArray(e.value,s)<0&&(a=!0)}return a}},$(document).ready(function(){acf.conditional_logic.init(),$(".acf_postbox > .inside > .options").each(function(){$(this).closest(".acf_postbox").addClass($(this).attr("data-layout"))}),$('#metakeyselect option[value^="field_"]').remove()}),$(window).load(function(){acf.media.init(),setTimeout(function(){try{$.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(e){}$(document).trigger("acf/setup_fields",[$("#poststuff")])},10)}),acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}}(jQuery),function($){function e(){var e=[];$(".categorychecklist input:checked, .acf-taxonomy-field input:checked, .acf-taxonomy-field option:selected").each(function(){$(this).is(":hidden")||$(this).is(":disabled")||$(this).closest(".media-frame").exists()||$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-load_save")||-1===e.indexOf($(this).val())&&e.push($(this).val())}),acf.screen.post_category=e,acf.screen.taxonomy=e,$(document).trigger("acf/update_field_groups")}acf.screen={action:"acf/location/match_field_groups_ajax",post_id:0,page_template:0,page_parent:0,page_type:0,post_category:0,post_format:0,taxonomy:0,lang:0,nonce:0},$(document).ready(function(){if(acf.screen.post_id=acf.o.post_id,acf.screen.nonce=acf.o.nonce,$("#icl-als-first").length>0){var e=$("#icl-als-first").children("a").attr("href"),t=new RegExp("lang=([^&#]*)"),i=t.exec(e);acf.screen.lang=i[1]}}),$(document).on("acf/update_field_groups",function(){return acf.screen.post_id&&$.isNumeric(acf.screen.post_id)?void $.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(e){return e?($(".acf_postbox").addClass("acf-hidden"),$(".acf_postbox-toggle").addClass("acf-hidden"),0==e.length?!1:($.each(e,function(e,t){var i=$("#acf_"+t),a=$('#adv-settings .acf_postbox-toggle[for="acf_'+t+'-hide"]');i.removeClass("acf-hidden hide-if-js"),a.removeClass("acf-hidden"),a.find('input[type="checkbox"]').attr("checked","checked"),i.find(".acf-replace-with-fields").each(function(){var e=$(this);$.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:t,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e.replaceWith(t),$(document).trigger("acf/setup_fields",i)}})})}),void $.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:e[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(e){$("#acf_style").html(e)}}))):!1}}):!1}),$(document).on("change","#page_template",function(){acf.screen.page_template=$(this).val(),$(document).trigger("acf/update_field_groups")}),$(document).on("change","#parent_id",function(){var e=$(this).val();""!=e?(acf.screen.page_type="child",acf.screen.page_parent=e):(acf.screen.page_type="parent",acf.screen.page_parent=0),$(document).trigger("acf/update_field_groups")}),$(document).on("change",'#post-formats-select input[type="radio"]',function(){var e=$(this).val();"0"==e&&(e="standard"),acf.screen.post_format=e,$(document).trigger("acf/update_field_groups")}),$(document).on("change",".categorychecklist input, .acf-taxonomy-field input, .acf-taxonomy-field select",function(){$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-save")||$(this).closest(".media-frame").exists()||setTimeout(function(){e()},1)})}(jQuery),function($){var e=acf.fields.color_picker={$el:null,$input:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this},init:function(){var e=this.$input;acf.helpers.is_clone_field(e)||this.$input.wpColorPicker()}};$(document).on("acf/setup_fields",function(t,i){$(i).find(".acf-color_picker").each(function(){e.set({$el:$(this)}).init()})})}(jQuery),function($){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this},init:function(){if(!acf.helpers.is_clone_field(this.$hidden)){this.$input.val(this.$hidden.val());var e=$.extend({},acf.l10n.date_picker,{dateFormat:this.o.save_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day});this.$input.addClass("active").datepicker(e),this.$input.datepicker("option","dateFormat",this.o.display_format),$("body > #ui-datepicker-div").length>0&&$("#ui-datepicker-div").wrap('
    ')}},blur:function(){this.$input.val()||this.$hidden.val("")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:$(this)}).init()})}),$(document).on("blur",'.acf-date_picker input[type="text"]',function(e){acf.fields.date_picker.set({$el:$(this).parent()}).blur()})}(jQuery),function($){var e=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-file-icon").attr("src",t.icon),i.find(".acf-file-title").text(t.title),i.find(".acf-file-name").text(t.name).attr("href",t.url),i.find(".acf-file-size").text(t.size),i.find(".acf-file-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-file-icon").attr("src",""),this.$el.find(".acf-file-title").text(""),this.$el.find(".acf-file-name").text("").attr("href",""),this.$el.find(".acf-file-size").text(""),this.$el.find(".acf-file-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?void("uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after(""+acf.l10n.file.uploadedTo+""),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id}))):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var t=0;selection.each(function(i){if(t++,t>1){var a=e.div.closest("td"),n=a.closest(".row"),s=n.closest(".repeater"),o=a.attr("data-field_key"),l="td .acf-file-uploader:first";o&&(l='td[data-field_key="'+o+'"] .acf-file-uploader'),n.next(".row").exists()||s.find(".add-row-end").trigger("click"),e.div=n.next(".row").find(l)}var r={id:i.id,title:i.attributes.title,name:i.attributes.filename,url:i.attributes.url,icon:i.attributes.icon,size:i.attributes.filesize};acf.fields.file.add(r)})}}),acf.media.frame.open(),!1}},$(document).on("click",".acf-file-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).edit()}),$(document).on("click",".acf-file-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).remove()}),$(document).on("click",".acf-file-uploader .add-file",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).popup()})}(jQuery),function($){acf.fields.google_map={$el:null,$input:null,o:{},ready:!1,geocoder:!1,map:!1,maps:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find(".value"),this.o=acf.helpers.get_atts(this.$el),this.maps[this.o.id]&&(this.map=this.maps[this.o.id]),this},init:function(){this.geocoder||(this.geocoder=new google.maps.Geocoder),this.ready=!0,acf.helpers.is_clone_field(this.$input)||this.render()},render:function(){var e=this,t=this.$el,i={zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP};this.map=new google.maps.Map(this.$el.find(".canvas")[0],i);var a=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);a.map=this.map,a.bindTo("bounds",this.map),this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map}),this.map.$el=this.$el;var n=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();n&&s&&this.update(n,s).center(),google.maps.event.addListener(a,"place_changed",function(t){var i=this.map.$el,a=i.find(".search").val();i.find(".input-address").val(a),i.find(".title h4").text(a);var n=this.getPlace();if(n.geometry){var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()}else e.geocoder.geocode({address:a},function(t,a){if(a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!t[0])return void console.log("No results found");n=t[0];var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()})}),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,i=this.map.marker.getPosition(),a=i.lat(),n=i.lng();e.set({$el:t}).update(a,n).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=this.$el,a=t.latLng.lat(),n=t.latLng.lng();e.set({$el:i}).update(a,n).sync()}),this.maps[this.o.id]=this.map},update:function(e,t){var i=new google.maps.LatLng(e,t);return this.$el.find(".input-lat").val(e),this.$el.find(".input-lng").val(t).trigger("change"),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("active"),this.$el.closest(".field").removeClass("error"),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.geocoder.geocode({latLng:i},function(t,i){if(i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.find(".title h4").text(a.formatted_address),e.find(".input-address").val(a.formatted_address).trigger("change")}),this},locate:function(){var e=this,t=this.$el;return navigator.geolocation?(t.find(".title h4").text(acf.l10n.google_map.locating+"..."),t.addClass("active"),void navigator.geolocation.getCurrentPosition(function(i){var a=i.coords.latitude,n=i.coords.longitude;e.set({$el:t}).update(a,n).sync().center()})):(alert(acf.l10n.google_map.browser_support),this)},clear:function(){this.$el.removeClass("active"),this.$el.find(".search").val(""),this.$el.find(".input-address").val(""),this.$el.find(".input-lat").val(""),this.$el.find(".input-lng").val(""),this.map.marker.setVisible(!1)},edit:function(){this.$el.removeClass("active");var e=this.$el.find(".title h4").text();this.$el.find(".search").val(e).focus()},refresh:function(){google.maps.event.trigger(this.map,"resize"),this.center()}},$(document).on("acf/setup_fields",function(e,t){return $fields=$(t).find(".acf-google-map"),$fields.exists()?acf.helpers.isset(window,"google","load")?acf.helpers.isset(window,"google","maps","places")?!0:(google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}}),!1):($.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}})}),!1):!1}),$(document).on("click",".acf-google-map .acf-sprite-remove",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).clear(),$(this).blur()}),$(document).on("click",".acf-google-map .acf-sprite-locate",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).locate(),$(this).blur()}),$(document).on("click",".acf-google-map .title h4",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).edit()}),$(document).on("keydown",".acf-google-map .search",function(e){return 13==e.which?!1:void 0}),$(document).on("blur",".acf-google-map .search",function(e){var t=$(this).closest(".acf-google-map");t.find(".input-lat").val()&&t.addClass("active")}),$(document).on("acf/fields/tab/show acf/conditional_logic/show",function(e,t){acf.fields.google_map.ready&&"google_map"==t.attr("data-field_type")&&acf.fields.google_map.set({$el:t.find(".acf-google-map")}).refresh()})}(jQuery),function($){var e=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={type:"image"},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-image-image").attr("src",t.url),i.find(".acf-image-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-image-image").attr("src",""),this.$el.find(".acf-image-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?($.each(i.filters,function(e,t){t.props.type="image"}),"uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after(""+acf.l10n.image.uploadedTo+""),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})),i.$el.find("option").each(function(){var e=$(this).attr("value");("uploaded"!=e||"all"!=t.o.library)&&-1===e.indexOf("image")&&$(this).remove()}),void i.$el.val("image").trigger("change")):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var i=0;selection.each(function(a){if(i++,i>1){var n=e.div.closest("td"),s=n.closest(".row"),o=s.closest(".repeater"),l=n.attr("data-field_key"),r="td .acf-image-uploader:first";l&&(r='td[data-field_key="'+l+'"] .acf-image-uploader'),s.next(".row").exists()||o.find(".add-row-end").trigger("click"),e.div=s.next(".row").find(r)}var c={id:a.id,url:a.attributes.url};a.attributes.sizes&&a.attributes.sizes[t.o.preview_size]&&(c.url=a.attributes.sizes[t.o.preview_size].url),acf.fields.image.add(c)})}}),acf.media.frame.open(),!1},text:{title_add:"Select Image",title_edit:"Edit Image"}},$(document).on("click",".acf-image-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).edit()}),$(document).on("click",".acf-image-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).remove()}),$(document).on("click",".acf-image-uploader .add-image",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).popup()})}(jQuery),function($){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="radio"]:checked'),this.$other=this.$el.find('input[type="text"]'),this},change:function(){"other"==this.$input.val()?(this.$other.attr("name",this.$input.attr("name")),this.$other.show()):(this.$other.attr("name",""),this.$other.hide())}},$(document).on("change",'.acf-radio-list input[type="radio"]',function(e){acf.fields.radio.set({$el:$(this).closest(".acf-radio-list")}).change()})}(jQuery),function($){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(e){return $.extend(this,e),this.$input=this.$el.children('input[type="hidden"]'),this.$left=this.$el.find(".relationship_left"),this.$right=this.$el.find(".relationship_right"),this.o=acf.helpers.get_atts(this.$el),this},init:function(){var e=this;if(!acf.helpers.is_clone_field(this.$input)){this.$right.find(".relationship_list").height(this.$left.height()-2),this.$right.find(".relationship_list").sortable({axis:"y",items:"> li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){e.$input.trigger("change")}});var t=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(i){if(!t.hasClass("loading")&&!t.hasClass("no-results")&&$(this).scrollTop()+$(this).innerHeight()>=$(this).get(0).scrollHeight){var a=parseInt(t.attr("data-paged"));t.attr("data-paged",a+1),e.set({$el:t}).fetch()}}),this.fetch()}},fetch:function(){var e=this,t=this.$el;t.addClass("loading"),$.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:$.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(i){e.set({$el:t}).render(i)}})},render:function(e){var t=this;return this.$el.removeClass("no-results").removeClass("loading"),1==this.o.paged&&this.$el.find(".relationship_left li:not(.load-more)").remove(),e&&e.html?(this.$el.find(".relationship_left .load-more").before(e.html),e.next_page_exists||this.$el.addClass("no-results"),void this.$left.find("a").each(function(){var e=$(this).attr("data-post_id");t.$right.find('a[data-post_id="'+e+'"]').exists()&&$(this).parent().addClass("hide")})):void this.$el.addClass("no-results")},add:function(e){var t=e.attr("data-post_id"),i=e.html();if(this.$right.find("a").length>=this.o.max)return alert(acf.l10n.relationship.max.replace("{max}",this.o.max)),!1;if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var a={post_id:e.attr("data-post_id"),title:e.html(),name:this.$input.attr("name")},n=_.template(acf.l10n.relationship.tmpl_li,a);this.$right.find(".relationship_list").append(n),this.$input.trigger("change"),this.$el.closest(".field").removeClass("error")},remove:function(e){e.parent().remove(),this.$left.find('a[data-post_id="'+e.attr("data-post_id")+'"]').parent("li").removeClass("hide"),this.$input.trigger("change")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:$(this)}).init()})}),$(document).on("change",".acf_relationship .select-post_type",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-post_type",t),i.attr("data-paged",1),acf.fields.relationship.set({$el:i}).fetch()}),$(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).add($(this)),$(this).blur()}),$(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).remove($(this)),$(this).blur()}),$(document).on("keyup",".acf_relationship input.relationship_search",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-s",t),i.attr("data-paged",1),clearTimeout(acf.fields.relationship.timeout),acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:i}).fetch()},500)}),$(document).on("keypress",".acf_relationship input.relationship_search",function(e){13==e.which&&e.preventDefault()})}(jQuery),function($){acf.fields.tab={add_group:function(e){var t="";t=e.is("tbody")?'':'
    ',e.children(".field_type-tab:first").before(t)},add_tab:function(e){var t=e.closest(".field"),i=t.parent(),a=t.attr("data-field_key"),n=e.text();i.children(".acf-tab-wrap").exists()||this.add_group(i),i.children(".acf-tab-wrap").find(".acf-tab-group").append('
  • '+n+"
  • ")},toggle:function(e){var t=this,i=e.closest(".acf-tab-wrap").parent(),a=e.attr("data-key");e.parent("li").addClass("active").siblings("li").removeClass("active"),i.children(".field_type-tab").each(function(){var e=$(this);e.attr("data-field_key")==a?t.show_tab_fields($(this)):t.hide_tab_fields($(this))})},show_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-hide").addClass("acf-tab_group-show"),$(document).trigger("acf/fields/tab/show",[$(this)])})},hide_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-show").addClass("acf-tab_group-hide"),$(document).trigger("acf/fields/tab/hide",[$(this)])})},refresh:function(e){var t=this;e.find(".acf-tab-group").each(function(){$(this).find(".acf-tab-button:first").each(function(){t.toggle($(this))})})}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-tab").each(function(){acf.fields.tab.add_tab($(this))}),acf.fields.tab.refresh($(t))}),$(document).on("click",".acf-tab-button",function(e){e.preventDefault(),acf.fields.tab.toggle($(this)),$(this).trigger("blur")}),$(document).on("acf/conditional_logic/hide",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');a.is(":hidden")||(a.parent().hide(),a.parent().siblings(":visible").exists()?a.parent().siblings(":visible").first().children("a").trigger("click"):acf.fields.tab.hide_tab_fields(t))}}),$(document).on("acf/conditional_logic/show",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');if(!a.is(":visible"))return a.parent().show(),a.parent().hasClass("active")?void a.trigger("click"):a.parent().siblings(".active").is(":hidden")?void a.trigger("click"):void 0}})}(jQuery),function($){acf.validation={status:!0,disabled:!1,run:function(){var e=this;e.status=!0,$(".field.required, .form-field.required").each(function(){e.validate($(this))})},show_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.addClass("is-active"):e.css("display","inline-block")}},hide_spinner:function(e){if(e.exists()){var t=acf.o.wp_version;parseFloat(t)>=4.2?e.removeClass("is-active"):e.css("display","none")}},validate:function(e){var t=!1,i=null;if(e.data("validation",!0),e.is(":hidden")&&(t=!0,e.hasClass("acf-tab_group-hide"))){t=!1;var a=e.prevAll(".field_type-tab:first"),n=e.prevAll(".acf-tab-wrap:first");a.hasClass("acf-conditional_logic-hide")?t=!0:i=n.find('.acf-tab-button[data-key="'+a.attr("data-field_key")+'"]')}if(e.hasClass("acf-conditional_logic-hide")&&(t=!0),e.closest(".postbox.acf-hidden").exists()&&(t=!0),!t){if(""==e.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()&&e.data("validation",!1),e.find(".acf_wysiwyg").exists()&&"object"==typeof tinyMCE){e.data("validation",!0);var s=e.find(".wp-editor-area").attr("id"),o=tinyMCE.get(s);o&&!o.getContent()&&e.data("validation",!1)}if(e.find("select").exists()&&(e.data("validation",!0),"null"!=e.find("select").val()&&e.find("select").val()||e.data("validation",!1)),e.find('input[type="radio"]').exists()&&(e.data("validation",!1),e.find('input[type="radio"]:checked').exists()&&e.data("validation",!0)),e.find('input[type="checkbox"]').exists()&&(e.data("validation",!1),e.find('input[type="checkbox"]:checked').exists()&&e.data("validation",!0)),e.find(".acf_relationship").exists()&&(e.data("validation",!1),e.find(".acf_relationship .relationship_right input").exists()&&e.data("validation",!0)),e.find(".repeater").exists()&&(e.data("validation",!1),e.find(".repeater tr.row").exists()&&e.data("validation",!0)),e.find(".acf-gallery").exists()&&(e.data("validation",!1),e.find(".acf-gallery .thumbnail").exists()&&e.data("validation",!0)),$(document).trigger("acf/validate_field",[e]),!e.data("validation")){if(this.status=!1,e.closest(".field").addClass("error"),e.data("validation_message")){var l=e.find("p.label:first"),r=null;l.children(".acf-error-message").remove(),l.append(''+e.data("validation_message")+"")}i&&i.trigger("click")}}}},$(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(e){$(this).closest(".field").removeClass("error")}),$(document).on("click","#save-post",function(){acf.validation.disabled=!0}),$(document).on("submit","#post",function(){ +if(acf.validation.disabled)return!0;if(acf.validation.run(),!acf.validation.status){var e=$(this);return e.siblings("#message").remove(),e.before('

    '+acf.l10n.validation.error+"

    "),$("#submitdiv").exists()&&($("#submitdiv").find(".disabled").removeClass("disabled"),$("#submitdiv").find(".button-disabled").removeClass("button-disabled"),$("#submitdiv").find(".button-primary-disabled").removeClass("button-primary-disabled"),acf.validation.hide_spinner($("#submitdiv .spinner"))),!1}return $(".acf_postbox.acf-hidden").remove(),!0})}(jQuery),function($){var e=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(e){return $.extend(this,e),this.$textarea=this.$el.find("textarea"),this.o=acf.helpers.get_atts(this.$el),this.o.id=this.$textarea.attr("id"),this},has_tinymce:function(){var e=!1;return"object"==typeof tinyMCE&&(e=!0),e},get_toolbar:function(){return acf.helpers.isset(this,"toolbars",this.o.toolbar)?this.toolbars[this.o.toolbar]:!1},init:function(){if(!acf.helpers.is_clone_field(this.$textarea)){var e=this.get_toolbar(),t="mceAddControl",i="theme_advanced_buttons{i}",a=$.extend({},tinyMCE.settings);if(4==tinymce.majorVersion&&(t="mceAddEditor",i="toolbar{i}"),e)for(var n=1;5>n;n++){var s="";acf.helpers.isset(e,"theme_advanced_buttons"+n)&&(s=e["theme_advanced_buttons"+n]),tinyMCE.settings[i.replace("{i}",n)]=s}tinyMCE.execCommand(t,!1,this.o.id),$(document).trigger("acf/wysiwyg/load",this.o.id),this.add_events(),tinyMCE.settings=a,wpActiveEditor=null}},add_events:function(){var e=this.o.id,t=tinyMCE.get(e);if(t){var i=$("#wp-"+e+"-wrap"),a=$(t.getBody());i.on("click",function(){$(document).trigger("acf/wysiwyg/click",e)}),a.on("focus",function(){$(document).trigger("acf/wysiwyg/focus",e)}),a.on("blur",function(){$(document).trigger("acf/wysiwyg/blur",e)})}},destroy:function(){var e=this.o.id,t="mceRemoveControl";try{var i=tinyMCE.get(e);if(!i)return;4==tinymce.majorVersion&&(t="mceRemoveEditor");var a=i.getContent();tinyMCE.execCommand(t,!1,e),this.$textarea.val(a)}catch(n){}wpActiveEditor=null}};$(document).on("acf/setup_fields",function(t,i){e.has_tinymce()&&($(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()}),setTimeout(function(){$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})},0))}),$(document).on("acf/remove_fields",function(t,i){e.has_tinymce()&&i.find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/wysiwyg/click",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/focus",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/blur",function(e,t){wpActiveEditor=null;var i=tinyMCE.get(t);if(i){var a=i.getElement();i.save(),$(a).trigger("change")}}),$(document).on("acf/sortable_start",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/sortable_stop",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})}),$(window).load(function(){if(e.has_tinymce()){var t=$("#wp-content-wrap").exists(),i=$("#wp-acf_settings-wrap").exists();mode="tmce",i&&$("#wp-acf_settings-wrap").hasClass("html-active")&&(mode="html"),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-tmce").trigger("click")},1),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-html").trigger("click"),t&&e.set({$el:$("#wp-content-wrap")}).add_events()},11)}}),$(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var e=$(this).closest(".acf_wysiwyg"),t=e.attr("data-upload");"no"==t&&$("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})}(jQuery); \ No newline at end of file diff --git a/www/wp-content/plugins/advanced-custom-fields/js/input/google-map.js b/www/wp-content/plugins/advanced-custom-fields/js/input/google-map.js index 5068c65..9837774 100644 --- a/www/wp-content/plugins/advanced-custom-fields/js/input/google-map.js +++ b/www/wp-content/plugins/advanced-custom-fields/js/input/google-map.js @@ -412,31 +412,36 @@ // validate - if( ! $fields.exists() ) - { - return; - } + if( ! $fields.exists() ) return false; - // validate google - if( typeof google === 'undefined' ) - { - $.getScript('https://www.google.com/jsapi', function(){ + // no google + if( !acf.helpers.isset(window, 'google', 'load') ) { + // load API + $.getScript('https://www.google.com/jsapi', function(){ + + // load maps google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){ - - $fields.each(function(){ + + $fields.each(function(){ acf.fields.google_map.set({ $el : $(this) }).init(); }); }}); + }); + return false; + } - else - { + + + // no maps or places + if( !acf.helpers.isset(window, 'google', 'maps', 'places') ) { + google.load('maps', '3', { other_params: 'sensor=false&libraries=places', callback: function(){ $fields.each(function(){ @@ -446,9 +451,15 @@ }); }}); + + return false; } + + // return + return true; + }); diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-bg_BG.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-bg_BG.mo new file mode 100644 index 0000000..aa05970 Binary files /dev/null and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-bg_BG.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-bg_BG.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-bg_BG.po new file mode 100644 index 0000000..576d40e --- /dev/null +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-bg_BG.po @@ -0,0 +1,1852 @@ +# Copyright (C) 2014 +# This file is distributed under the same license as the package. +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" +"POT-Creation-Date: 2014-01-05 07:41:49+00:00\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: \n" +"X-Generator: Poedit 1.8.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: bg_BG\n" + +#: acf.php:455 +msgid "Field Groups" +msgstr "Групи от полета" + +#: acf.php:456 core/controllers/field_groups.php:214 +msgid "Advanced Custom Fields" +msgstr "Модерни потребителски полета" + +#: acf.php:457 +msgid "Add New" +msgstr "Създай" + +#: acf.php:458 +msgid "Add New Field Group" +msgstr "Създай нова група от полета" + +#: acf.php:459 +msgid "Edit Field Group" +msgstr "Редактирай група от полета" + +#: acf.php:460 +msgid "New Field Group" +msgstr "Нова група от полета" + +#: acf.php:461 +msgid "View Field Group" +msgstr "Разгледай група от полета" + +#: acf.php:462 +msgid "Search Field Groups" +msgstr "Търсене на групи от полета" + +#: acf.php:463 +msgid "No Field Groups found" +msgstr "Няма намерени групи от полета" + +#: acf.php:464 +msgid "No Field Groups found in Trash" +msgstr "Няма намерени групи от полета в кошчето" + +#: acf.php:567 core/views/meta_box_options.php:99 +msgid "Custom Fields" +msgstr "Потребителски полета" + +#: acf.php:585 acf.php:588 +msgid "Field group updated." +msgstr "Групата от полета бе обновена." + +#: acf.php:586 +msgid "Custom field updated." +msgstr "Потребителското поле бе обновено." + +#: acf.php:587 +msgid "Custom field deleted." +msgstr "Потребителското поле бе изтрито." + +#. translators: %s: date and time of the revision +#: acf.php:590 +msgid "Field group restored to revision from %s" +msgstr "Групата от полета бе възстановена до ревизия от %s" + +#: acf.php:591 +msgid "Field group published." +msgstr "Групата от полета бе публикувана." + +#: acf.php:592 +msgid "Field group saved." +msgstr "Групата от полета бе запазена." + +#: acf.php:593 +msgid "Field group submitted." +msgstr "Групата от полета бе изпратена." + +#: acf.php:594 +msgid "Field group scheduled for." +msgstr "Групата от полета бе планирана за публикуване." + +#: acf.php:595 +msgid "Field group draft updated." +msgstr "Черновата на групата от полета бе обновена." + +#: acf.php:730 +msgid "Thumbnail" +msgstr "Миниатюра" + +#: acf.php:731 +msgid "Medium" +msgstr "Среден" + +#: acf.php:732 +msgid "Large" +msgstr "Голям" + +#: acf.php:733 +msgid "Full" +msgstr "Пълен" + +#: core/actions/export.php:26 core/views/meta_box_fields.php:58 +msgid "Error" +msgstr "Грешка" + +#: core/actions/export.php:33 +msgid "No ACF groups selected" +msgstr "Не бяха избрани никакви групи от полета" + +#: core/api.php:1162 +msgid "Update" +msgstr "Обнови" + +#: core/api.php:1163 +msgid "Post updated" +msgstr "Публикацията бе обновена" + +#: core/controllers/addons.php:42 core/controllers/field_groups.php:307 +msgid "Add-ons" +msgstr "Разширения" + +#: core/controllers/addons.php:130 core/controllers/field_groups.php:429 +msgid "Repeater Field" +msgstr "Повтарящо поле" + +#: core/controllers/addons.php:131 +msgid "Create infinite rows of repeatable data with this versatile interface!" +msgstr "" +"Създайте безкраен брой редове от повторяеми данни чрез този гъвкав интерфейс!" + +#: core/controllers/addons.php:137 core/controllers/field_groups.php:437 +msgid "Gallery Field" +msgstr "Галерия" + +#: core/controllers/addons.php:138 +msgid "Create image galleries in a simple and intuitive interface!" +msgstr "Създайте галерии от снимки, използвайки прост и интуитивен интерфейс!" + +#: core/controllers/addons.php:144 core/controllers/field_groups.php:445 +msgid "Options Page" +msgstr "Страница с настройки" + +#: core/controllers/addons.php:145 +msgid "Create global data to use throughout your website!" +msgstr "Създайте глобални настройки, които да ползвате навсякъде в сайта си!" + +#: core/controllers/addons.php:151 +msgid "Flexible Content Field" +msgstr "Поле за гъвкаво съдържание" + +#: core/controllers/addons.php:152 +msgid "Create unique designs with a flexible content layout manager!" +msgstr "" +"Създайте уникални дизайни с помощта на мениджъра за управление на гъвкаво " +"съдържание!" + +#: core/controllers/addons.php:161 +msgid "Gravity Forms Field" +msgstr "Gravity Forms поле" + +#: core/controllers/addons.php:162 +msgid "Creates a select field populated with Gravity Forms!" +msgstr "Създава падащо поле за избор на Gravity Form!" + +#: core/controllers/addons.php:168 +msgid "Date & Time Picker" +msgstr "Избор на дата и час" + +#: core/controllers/addons.php:169 +msgid "jQuery date & time picker" +msgstr "jQuery избор на дата и час" + +#: core/controllers/addons.php:175 +msgid "Location Field" +msgstr "Поле за местоположение" + +#: core/controllers/addons.php:176 +msgid "Find addresses and coordinates of a desired location" +msgstr "Намерете адресите и координатите на желано от вас място" + +#: core/controllers/addons.php:182 +msgid "Contact Form 7 Field" +msgstr "Поле за избор на Contact Form 7 форма" + +#: core/controllers/addons.php:183 +msgid "Assign one or more contact form 7 forms to a post" +msgstr "Изберете една или повече Contact Form 7 форми." + +#: core/controllers/addons.php:193 +msgid "Advanced Custom Fields Add-Ons" +msgstr "Разширения за Модерни потребителски полета" + +#: core/controllers/addons.php:196 +msgid "" +"The following Add-ons are available to increase the functionality of the " +"Advanced Custom Fields plugin." +msgstr "" +"Тези разширения са на ваше разположение, за да увеличите наличната " +"функционалност на Модерните потребителски полета." + +#: core/controllers/addons.php:197 +msgid "" +"Each Add-on can be installed as a separate plugin (receives updates) or " +"included in your theme (does not receive updates)." +msgstr "" +"Всяко разширение може да бъде инсталирано като отделно разширение (което да " +"получава обновявания) или да бъде включено директно в темата ви (и да не " +"получава обновявания)." + +#: core/controllers/addons.php:219 core/controllers/addons.php:240 +msgid "Installed" +msgstr "Инсталиран" + +#: core/controllers/addons.php:221 +msgid "Purchase & Install" +msgstr "Купи и инсталирай" + +#: core/controllers/addons.php:242 core/controllers/field_groups.php:422 +#: core/controllers/field_groups.php:431 core/controllers/field_groups.php:439 +#: core/controllers/field_groups.php:447 core/controllers/field_groups.php:455 +msgid "Download" +msgstr "Изтегли" + +#: core/controllers/export.php:50 core/controllers/export.php:159 +msgid "Export" +msgstr "Запази във файл" + +#: core/controllers/export.php:216 +msgid "Export Field Groups" +msgstr "Запази във файл групите от полета" + +#: core/controllers/export.php:221 +msgid "Field Groups" +msgstr "Групи от полета" + +#: core/controllers/export.php:222 +msgid "Select the field groups to be exported" +msgstr "Изберете групи полета, които да бъдат запазени във файл" + +#: core/controllers/export.php:239 core/controllers/export.php:252 +msgid "Export to XML" +msgstr "Запази в XML файл" + +#: core/controllers/export.php:242 core/controllers/export.php:267 +msgid "Export to PHP" +msgstr "Запази в PHP файл" + +#: core/controllers/export.php:253 +msgid "" +"ACF will create a .xml export file which is compatible with the native WP " +"import plugin." +msgstr "" +"Ще бъде създаден .XML файл, който е съвместим с оригиналното разширение за " +"внасяне на данни в WordPress." + +#: core/controllers/export.php:254 +msgid "" +"Imported field groups will appear in the list of editable field " +"groups. This is useful for migrating fields groups between Wp websites." +msgstr "" +"Внесените групи от полета ще се показват в списъка с групи от полета, " +"налични за редакция. Това е полезно при местене на групи от полета между WP " +"сайтовете." + +#: core/controllers/export.php:256 +msgid "Select field group(s) from the list and click \"Export XML\"" +msgstr "Изберете групи полета от списъка и натиснете \"Запази в XML файл\"" + +#: core/controllers/export.php:257 +msgid "Save the .xml file when prompted" +msgstr "Запазване на .xml файла при поискване" + +#: core/controllers/export.php:258 +msgid "Navigate to Tools » Import and select WordPress" +msgstr "Идете в Инструменти » Внасяне и изберете WordPress" + +#: core/controllers/export.php:259 +msgid "Install WP import plugin if prompted" +msgstr "Инсталиране на WP разширение за внасяне на данни при поискване" + +#: core/controllers/export.php:260 +msgid "Upload and import your exported .xml file" +msgstr "Качете и внесете вашия предварително изнесен .xml файл" + +#: core/controllers/export.php:261 +msgid "Select your user and ignore Import Attachments" +msgstr "" +"Изберете желания потребител и игнорирайте \"Внасяне на прикачените файлове\"" + +#: core/controllers/export.php:262 +msgid "That's it! Happy WordPressing" +msgstr "Това е всичко! Желаем ви приятно WordPress-ване" + +#: core/controllers/export.php:268 +msgid "ACF will create the PHP code to include in your theme." +msgstr "Ще бъде създаден PHP код, който да включите в темата си." + +#: core/controllers/export.php:269 core/controllers/export.php:310 +msgid "" +"Registered field groups will not appear in the list of editable field " +"groups. This is useful for including fields in themes." +msgstr "" +"Регистрираните групи полета няма да се показват в списъка с " +"редактируеми групи полета. Това е полезно при включване на полета в теми." + +#: core/controllers/export.php:270 core/controllers/export.php:311 +msgid "" +"Please note that if you export and register field groups within the same WP, " +"you will see duplicate fields on your edit screens. To fix this, please move " +"the original field group to the trash or remove the code from your functions." +"php file." +msgstr "" +"Забележете, че ако изнесете и регистрирате групи полета в рамките на една " +"инсталация, ще виждате повторения на полетата си. За да оправите това, моля " +"преместете оригиналната група полета в кошчето, или премахнете регистриращич " +"код от вашия functions.php файл." + +#: core/controllers/export.php:272 +msgid "Select field group(s) from the list and click \"Create PHP\"" +msgstr "Изберете групи полета от списъка и натиснете върху \"Създай PHP\"" + +#: core/controllers/export.php:273 core/controllers/export.php:302 +msgid "Copy the PHP code generated" +msgstr "Копирай генерирания PHP код" + +#: core/controllers/export.php:274 core/controllers/export.php:303 +msgid "Paste into your functions.php file" +msgstr "Сложи в своя functions.php файл" + +#: core/controllers/export.php:275 core/controllers/export.php:304 +msgid "To activate any Add-ons, edit and use the code in the first few lines." +msgstr "" +"За да активирате каквито и да е разширения, редактирайте и използвайте " +"следния код в първите няколко реда." + +#: core/controllers/export.php:295 +msgid "Export Field Groups to PHP" +msgstr "Запази групите от полета в PHP файл" + +#: core/controllers/export.php:300 core/fields/tab.php:65 +msgid "Instructions" +msgstr "Инструкции" + +#: core/controllers/export.php:309 +msgid "Notes" +msgstr "Бележки" + +#: core/controllers/export.php:316 +msgid "Include in theme" +msgstr "Включи в темата" + +#: core/controllers/export.php:317 +msgid "" +"The Advanced Custom Fields plugin can be included within a theme. To do so, " +"move the ACF plugin inside your theme and add the following code to your " +"functions.php file:" +msgstr "" +"Това разширение може да бъде вградено в тема. За да направите това, " +"преместете разширението в темата и добавете следния код към вашия functions." +"php файл:" + +#: core/controllers/export.php:323 +msgid "" +"To remove all visual interfaces from the ACF plugin, you can use a constant " +"to enable lite mode. Add the following code to your functions.php file " +"before the include_once code:" +msgstr "" +"За да премахнете всички визуални интерфейси от това разширение, можете да " +"използвате константа за да включите Lite версията. За да направите това, " +"добавете следния код към вашия functions.php файл преди кода " +"include_once" + +#: core/controllers/export.php:331 +msgid "Back to export" +msgstr "Обратно към Запазване във файл" + +#: core/controllers/export.php:400 +msgid "No field groups were selected" +msgstr "Не бяха избрани групи от полета" + +#: core/controllers/field_group.php:358 +msgid "Move to trash. Are you sure?" +msgstr "Местене в кошчето. Сигурни ли сте?" + +#: core/controllers/field_group.php:359 +msgid "checked" +msgstr "избран" + +#: core/controllers/field_group.php:360 +msgid "No toggle fields available" +msgstr "Няма налични полета" + +#: core/controllers/field_group.php:361 +msgid "Field group title is required" +msgstr "Заглавието на групата с полета е задължително" + +#: core/controllers/field_group.php:362 +msgid "copy" +msgstr "копирай" + +#: core/controllers/field_group.php:363 core/views/meta_box_location.php:62 +#: core/views/meta_box_location.php:159 +msgid "or" +msgstr "или" + +#: core/controllers/field_group.php:364 core/controllers/field_group.php:395 +#: core/controllers/field_group.php:457 core/controllers/field_groups.php:148 +msgid "Fields" +msgstr "Полета" + +#: core/controllers/field_group.php:365 +msgid "Parent fields" +msgstr "Родителски полета" + +#: core/controllers/field_group.php:366 +msgid "Sibling fields" +msgstr "Полета от същото ниво" + +#: core/controllers/field_group.php:367 +msgid "Hide / Show All" +msgstr "Скрии / покажи всички" + +#: core/controllers/field_group.php:396 +msgid "Location" +msgstr "Местоположение" + +#: core/controllers/field_group.php:397 +msgid "Options" +msgstr "Настройки" + +#: core/controllers/field_group.php:459 +msgid "Show Field Key:" +msgstr "Покажи ключа на полето" + +#: core/controllers/field_group.php:460 core/fields/page_link.php:138 +#: core/fields/page_link.php:159 core/fields/post_object.php:328 +#: core/fields/post_object.php:349 core/fields/select.php:224 +#: core/fields/select.php:243 core/fields/taxonomy.php:343 +#: core/fields/user.php:285 core/fields/wysiwyg.php:256 +#: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218 +msgid "No" +msgstr "Не" + +#: core/controllers/field_group.php:461 core/fields/page_link.php:137 +#: core/fields/page_link.php:158 core/fields/post_object.php:327 +#: core/fields/post_object.php:348 core/fields/select.php:223 +#: core/fields/select.php:242 core/fields/taxonomy.php:342 +#: core/fields/user.php:284 core/fields/wysiwyg.php:255 +#: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217 +msgid "Yes" +msgstr "Да" + +#: core/controllers/field_group.php:645 +msgid "Front Page" +msgstr "Начална страница" + +#: core/controllers/field_group.php:646 +msgid "Posts Page" +msgstr "Страница с публикации" + +#: core/controllers/field_group.php:647 +msgid "Top Level Page (parent of 0)" +msgstr "Страница от първо ниво (с родител 0)" + +#: core/controllers/field_group.php:648 +msgid "Parent Page (has children)" +msgstr "Родителска страница (има деца)" + +#: core/controllers/field_group.php:649 +msgid "Child Page (has parent)" +msgstr "Дъщерна страница (има родител)" + +#: core/controllers/field_group.php:657 +msgid "Default Template" +msgstr "Шаблон по подразбиране" + +#: core/controllers/field_group.php:734 +msgid "Publish" +msgstr "Публикувай" + +#: core/controllers/field_group.php:735 +msgid "Pending Review" +msgstr "Чака одобрение" + +#: core/controllers/field_group.php:736 +msgid "Draft" +msgstr "Чернова" + +#: core/controllers/field_group.php:737 +msgid "Future" +msgstr "Бъдещ" + +#: core/controllers/field_group.php:738 +msgid "Private" +msgstr "Частен" + +#: core/controllers/field_group.php:739 +msgid "Revision" +msgstr "Ревизия" + +#: core/controllers/field_group.php:740 +msgid "Trash" +msgstr "Кошче" + +#: core/controllers/field_group.php:753 +msgid "Super Admin" +msgstr "Супер администратор" + +#: core/controllers/field_group.php:768 core/controllers/field_group.php:789 +#: core/controllers/field_group.php:796 core/fields/file.php:186 +#: core/fields/image.php:170 core/fields/page_link.php:109 +#: core/fields/post_object.php:274 core/fields/post_object.php:298 +#: core/fields/relationship.php:598 core/fields/relationship.php:622 +#: core/fields/user.php:229 +msgid "All" +msgstr "Всички" + +#: core/controllers/field_groups.php:147 +msgid "Title" +msgstr "Заглавие" + +#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253 +msgid "Changelog" +msgstr "Списък с промени" + +#: core/controllers/field_groups.php:217 +msgid "See what's new in" +msgstr "Вижте новостите" + +#: core/controllers/field_groups.php:217 +msgid "version" +msgstr "версия" + +#: core/controllers/field_groups.php:219 +msgid "Resources" +msgstr "Ресурси" + +#: core/controllers/field_groups.php:221 +msgid "Getting Started" +msgstr "Как да започнете" + +#: core/controllers/field_groups.php:222 +msgid "Field Types" +msgstr "Типове полета" + +#: core/controllers/field_groups.php:223 +msgid "Functions" +msgstr "Функции" + +#: core/controllers/field_groups.php:224 +msgid "Actions" +msgstr "Действия" + +#: core/controllers/field_groups.php:225 core/fields/relationship.php:641 +msgid "Filters" +msgstr "Филтри" + +#: core/controllers/field_groups.php:226 +msgid "'How to' guides" +msgstr "Инструкции и насоки" + +#: core/controllers/field_groups.php:227 +msgid "Tutorials" +msgstr "Уроци" + +#: core/controllers/field_groups.php:232 +msgid "Created by" +msgstr "Създаден от" + +#: core/controllers/field_groups.php:244 +msgid "Welcome to Advanced Custom Fields" +msgstr "Добре дошли в Модерни потребителски полета" + +#: core/controllers/field_groups.php:245 +msgid "Thank you for updating to the latest version!" +msgstr "Благодарим ви, че обновихте до последната версия!" + +#: core/controllers/field_groups.php:245 +msgid "is more polished and enjoyable than ever before. We hope you like it." +msgstr "" +"е по-лъскав и готин от когато и да е преди. Надяваме се, че ще ви хареса." + +#: core/controllers/field_groups.php:252 +msgid "What’s New" +msgstr "Какво ново" + +#: core/controllers/field_groups.php:255 +msgid "Download Add-ons" +msgstr "Изтегли разширения" + +#: core/controllers/field_groups.php:309 +msgid "Activation codes have grown into plugins!" +msgstr "Кодовете за активация вече са обособени като разширения!" + +#: core/controllers/field_groups.php:310 +msgid "" +"Add-ons are now activated by downloading and installing individual plugins. " +"Although these plugins will not be hosted on the wordpress.org repository, " +"each Add-on will continue to receive updates in the usual way." +msgstr "" +"Добавките вече се активират при сваляне и инсталиране на съответните " +"разширения. Въпреки, че тези разширения няма да се хостват в хранилището на " +"wordpress.org, всяка добавка ще продължи да получава обновления по " +"стандартния начин." + +#: core/controllers/field_groups.php:316 +msgid "All previous Add-ons have been successfully installed" +msgstr "Всички предходни разширения бяха инсталирани успешно" + +#: core/controllers/field_groups.php:320 +msgid "This website uses premium Add-ons which need to be downloaded" +msgstr "" +"Този уебсайт използва платени разширения, които трябва да бъдат изтеглени" + +#: core/controllers/field_groups.php:320 +msgid "Download your activated Add-ons" +msgstr "Изтеглете активираните си разширения" + +#: core/controllers/field_groups.php:325 +msgid "" +"This website does not use premium Add-ons and will not be affected by this " +"change." +msgstr "" +"Този уебсайт не използва платени разширения и няма да бъде повлиян от тази " +"промяна." + +#: core/controllers/field_groups.php:335 +msgid "Easier Development" +msgstr "По-лесна разработка" + +#: core/controllers/field_groups.php:337 +msgid "New Field Types" +msgstr "Нови типове полета" + +#: core/controllers/field_groups.php:339 +msgid "Taxonomy Field" +msgstr "Поле за таксономия" + +#: core/controllers/field_groups.php:340 +msgid "User Field" +msgstr "Поле за потребител" + +#: core/controllers/field_groups.php:341 +msgid "Email Field" +msgstr "Email поле" + +#: core/controllers/field_groups.php:342 +msgid "Password Field" +msgstr "Поле за парола" + +#: core/controllers/field_groups.php:344 +msgid "Custom Field Types" +msgstr "Потребителски типове полета" + +#: core/controllers/field_groups.php:345 +msgid "" +"Creating your own field type has never been easier! Unfortunately, version 3 " +"field types are not compatible with version 4." +msgstr "" +"Създаването на ваш собствен тип поле никога не е било по-лесно! За " +"съжаление, типовете полета на версия 3 не са съвместими с тези от версия 4." + +#: core/controllers/field_groups.php:346 +msgid "Migrating your field types is easy, please" +msgstr "Местенето на вашите типове полета е лесно, моля" + +#: core/controllers/field_groups.php:346 +msgid "follow this tutorial" +msgstr "следвай този урок" + +#: core/controllers/field_groups.php:346 +msgid "to learn more." +msgstr "за да научиш повече." + +#: core/controllers/field_groups.php:348 +msgid "Actions & Filters" +msgstr "Действия и филтри" + +#: core/controllers/field_groups.php:349 +msgid "" +"All actions & filters have received a major facelift to make customizing ACF " +"even easier! Please" +msgstr "" +"Всички действия и филтри бяха сериозно подобрени, за да направят " +"персонализирането на това разширение по-лесно! Моля" + +#: core/controllers/field_groups.php:349 +msgid "read this guide" +msgstr "прочетете този урок" + +#: core/controllers/field_groups.php:349 +msgid "to find the updated naming convention." +msgstr "за да намерите обновената конвенция за именуване." + +#: core/controllers/field_groups.php:351 +msgid "Preview draft is now working!" +msgstr "Прегледа на чернова вече работи!" + +#: core/controllers/field_groups.php:352 +msgid "This bug has been squashed along with many other little critters!" +msgstr "Този бъг бе оправен, както и много други!" + +#: core/controllers/field_groups.php:352 +msgid "See the full changelog" +msgstr "Вижте пълния списък с промени" + +#: core/controllers/field_groups.php:356 +msgid "Important" +msgstr "Важно" + +#: core/controllers/field_groups.php:358 +msgid "Database Changes" +msgstr "Промени в базата данни" + +#: core/controllers/field_groups.php:359 +msgid "" +"Absolutely no changes have been made to the database " +"between versions 3 and 4. This means you can roll back to version 3 without " +"any issues." +msgstr "" +"Абсолютно никакви промени не бяха направени по базата данни " +"между версия 3 и 4. Това означава, че можете да върнете до версия 3 без " +"никакви проблеми." + +#: core/controllers/field_groups.php:361 +msgid "Potential Issues" +msgstr "Потенциални проблеми" + +#: core/controllers/field_groups.php:362 +msgid "" +"Due to the sizable changes surrounding Add-ons, field types and action/" +"filters, your website may not operate correctly. It is important that you " +"read the full" +msgstr "" +"Поради промените свързани с вашите добавки, типове полета и действия/филтри, " +"вашия уебсайт може да не функционира правилно. Важно е да прочетете пълните" + +#: core/controllers/field_groups.php:362 +msgid "Migrating from v3 to v4" +msgstr "Миграция от версия 3 към версия 4" + +#: core/controllers/field_groups.php:362 +msgid "guide to view the full list of changes." +msgstr "инструкции за да видите пълния списък с промени." + +#: core/controllers/field_groups.php:365 +msgid "Really Important!" +msgstr "Наистина важно!" + +#: core/controllers/field_groups.php:365 +msgid "" +"If you updated the ACF plugin without prior knowledge of such changes, " +"please roll back to the latest" +msgstr "" +"Ако сте обновили това разширение без да знаете за тези промени, моля върнете " +"към последната" + +#: core/controllers/field_groups.php:365 +msgid "version 3" +msgstr "версия 3" + +#: core/controllers/field_groups.php:365 +msgid "of this plugin." +msgstr "на това разширение." + +#: core/controllers/field_groups.php:370 +msgid "Thank You" +msgstr "Благодарим ви" + +#: core/controllers/field_groups.php:371 +msgid "" +"A BIG thank you to everyone who has helped test the version " +"4 beta and for all the support I have received." +msgstr "" +"Голямо благодаря на всички, които помохнаха да тестваме " +"версия 4 и цялата подкрепа, която получихме." + +#: core/controllers/field_groups.php:372 +msgid "Without you all, this release would not have been possible!" +msgstr "Без вас, тази версия нямаше да бъде възможна!" + +#: core/controllers/field_groups.php:376 +msgid "Changelog for" +msgstr "Списък с промени за" + +#: core/controllers/field_groups.php:393 +msgid "Learn more" +msgstr "Научи повече" + +#: core/controllers/field_groups.php:399 +msgid "Overview" +msgstr "Преглед" + +#: core/controllers/field_groups.php:401 +msgid "" +"Previously, all Add-ons were unlocked via an activation code (purchased from " +"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which " +"need to be individually downloaded, installed and updated." +msgstr "" +"В миналото всички платени добавки се отключваха чрез код за активация " +"(закупен онлайн). От версия 4 насам, добавките се държат като отделни " +"разширения, които могат да бъдат отделно сваляни, инсталирани и обновявани." + +#: core/controllers/field_groups.php:403 +msgid "" +"This page will assist you in downloading and installing each available Add-" +"on." +msgstr "" +"Тази страница ще ви помогне при свалянето и инсталирането на всяко налично " +"разширение." + +#: core/controllers/field_groups.php:405 +msgid "Available Add-ons" +msgstr "Налични разширения" + +#: core/controllers/field_groups.php:407 +msgid "The following Add-ons have been detected as activated on this website." +msgstr "Следните разширения бяха намерени като активирани на този уебсайт." + +#: core/controllers/field_groups.php:420 +msgid "Name" +msgstr "Име" + +#: core/controllers/field_groups.php:421 +msgid "Activation Code" +msgstr "Код за активация" + +#: core/controllers/field_groups.php:453 +msgid "Flexible Content" +msgstr "Гъвкаво съдържание" + +#: core/controllers/field_groups.php:463 +msgid "Installation" +msgstr "Инсталация" + +#: core/controllers/field_groups.php:465 +msgid "For each Add-on available, please perform the following:" +msgstr "За всяко налично разширение, моля извършете следното:" + +#: core/controllers/field_groups.php:467 +msgid "Download the Add-on plugin (.zip file) to your desktop" +msgstr "Изтегли разширението (.zip файл) на работния си плот" + +#: core/controllers/field_groups.php:468 +msgid "Navigate to" +msgstr "Идете към" + +#: core/controllers/field_groups.php:468 +msgid "Plugins > Add New > Upload" +msgstr "Разширения -> Добави ново -> Качи" + +#: core/controllers/field_groups.php:469 +msgid "Use the uploader to browse, select and install your Add-on (.zip file)" +msgstr "" +"Използвайте инструмента за качване за да изберете, качите и инсталирате " +"вашата добавка (.zip файл)" + +#: core/controllers/field_groups.php:470 +msgid "" +"Once the plugin has been uploaded and installed, click the 'Activate Plugin' " +"link" +msgstr "" +"След като разширението е качено и инсталирано, натиснете на връзката " +"\"Активирай разширението\"" + +#: core/controllers/field_groups.php:471 +msgid "The Add-on is now installed and activated!" +msgstr "Това разширение бе инсталирано и активирано!" + +#: core/controllers/field_groups.php:485 +msgid "Awesome. Let's get to work" +msgstr "Страхотно! Да се залавяме за работа" + +#: core/controllers/input.php:63 +msgid "Expand Details" +msgstr "Разтегни за повече детайли" + +#: core/controllers/input.php:64 +msgid "Collapse Details" +msgstr "Затвори допълнителните детайли" + +#: core/controllers/input.php:67 +msgid "Validation Failed. One or more fields below are required." +msgstr "Валидацията се провали. Едно или повече полета са задължителни." + +#: core/controllers/upgrade.php:86 +msgid "Upgrade" +msgstr "Обнови" + +#: core/controllers/upgrade.php:139 +msgid "What's new" +msgstr "Какво ново" + +#: core/controllers/upgrade.php:150 +msgid "credits" +msgstr "благодарности" + +#: core/controllers/upgrade.php:684 +msgid "Modifying field group options 'show on page'" +msgstr "Променяне на настройките на групата полета 'показване на страница'" + +#: core/controllers/upgrade.php:738 +msgid "Modifying field option 'taxonomy'" +msgstr "Променяне на настройка на полето 'таксономия'" + +#: core/controllers/upgrade.php:835 +msgid "Moving user custom fields from wp_options to wp_usermeta'" +msgstr "Местене на потребителски полета от wp_options към wp_usermeta'" + +#: core/fields/_base.php:124 core/views/meta_box_location.php:74 +msgid "Basic" +msgstr "Базов" + +#: core/fields/checkbox.php:19 core/fields/taxonomy.php:319 +msgid "Checkbox" +msgstr "Отметка" + +#: core/fields/checkbox.php:20 core/fields/radio.php:19 +#: core/fields/select.php:19 core/fields/true_false.php:20 +msgid "Choice" +msgstr "Избор" + +#: core/fields/checkbox.php:146 core/fields/radio.php:147 +#: core/fields/select.php:177 +msgid "Choices" +msgstr "Избора" + +#: core/fields/checkbox.php:147 core/fields/select.php:178 +msgid "Enter each choice on a new line." +msgstr "Въвеждайте всяка стойност на нов ред." + +#: core/fields/checkbox.php:148 core/fields/select.php:179 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"За по-добър контрол можете да зададете и стойност и етикет по следния начин:" + +#: core/fields/checkbox.php:149 core/fields/radio.php:153 +#: core/fields/select.php:180 +msgid "red : Red" +msgstr "червено : Червено" + +#: core/fields/checkbox.php:149 core/fields/radio.php:154 +#: core/fields/select.php:180 +msgid "blue : Blue" +msgstr "синьо : Синьо" + +#: core/fields/checkbox.php:166 core/fields/color_picker.php:89 +#: core/fields/email.php:106 core/fields/number.php:116 +#: core/fields/radio.php:196 core/fields/select.php:197 +#: core/fields/text.php:116 core/fields/textarea.php:96 +#: core/fields/true_false.php:94 core/fields/wysiwyg.php:198 +msgid "Default Value" +msgstr "Стойност по подразбиране" + +#: core/fields/checkbox.php:167 core/fields/select.php:198 +msgid "Enter each default value on a new line" +msgstr "Въведете всяка една стойност по подразбиране на нов ред" + +#: core/fields/checkbox.php:183 core/fields/message.php:20 +#: core/fields/radio.php:212 core/fields/tab.php:20 +msgid "Layout" +msgstr "Оформление" + +#: core/fields/checkbox.php:194 core/fields/radio.php:223 +msgid "Vertical" +msgstr "Вертикален" + +#: core/fields/checkbox.php:195 core/fields/radio.php:224 +msgid "Horizontal" +msgstr "Хоризонтален" + +#: core/fields/color_picker.php:19 +msgid "Color Picker" +msgstr "Поле за избор на цвят" + +#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20 +#: core/fields/google-map.php:19 +msgid "jQuery" +msgstr "jQuery" + +#: core/fields/date_picker/date_picker.php:19 +msgid "Date Picker" +msgstr "Поле за избор на дата" + +#: core/fields/date_picker/date_picker.php:55 +msgid "Done" +msgstr "Готов" + +#: core/fields/date_picker/date_picker.php:56 +msgid "Today" +msgstr "Днес" + +#: core/fields/date_picker/date_picker.php:59 +msgid "Show a different month" +msgstr "Покажи различен месец" + +#: core/fields/date_picker/date_picker.php:126 +msgid "Save format" +msgstr "Запази формата" + +#: core/fields/date_picker/date_picker.php:127 +msgid "" +"This format will determine the value saved to the database and returned via " +"the API" +msgstr "" +"Този формат ще определи стойността, запазена в базата данни и върната от API-" +"то" + +#: core/fields/date_picker/date_picker.php:128 +msgid "\"yymmdd\" is the most versatile save format. Read more about" +msgstr "\"yymmdd\" е най-подходящия формат за запазване. Прочети повече за" + +#: core/fields/date_picker/date_picker.php:128 +#: core/fields/date_picker/date_picker.php:144 +msgid "jQuery date formats" +msgstr "jQuery формати за дата" + +#: core/fields/date_picker/date_picker.php:142 +msgid "Display format" +msgstr "Формат за извеждане" + +#: core/fields/date_picker/date_picker.php:143 +msgid "This format will be seen by the user when entering a value" +msgstr "Този формат ще бъде видян от потребителя при въвеждане на стойност" + +#: core/fields/date_picker/date_picker.php:144 +msgid "" +"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more " +"about" +msgstr "" +"\"dd/mm/yy\" или \"mm/dd/yy\" са най-използваните формати. Прочетете повече " +"за" + +#: core/fields/date_picker/date_picker.php:158 +msgid "Week Starts On" +msgstr "Седмицата започва от" + +#: core/fields/dummy.php:19 +msgid "Dummy" +msgstr "Пример" + +#: core/fields/email.php:19 +msgid "Email" +msgstr "Email" + +#: core/fields/email.php:107 core/fields/number.php:117 +#: core/fields/text.php:117 core/fields/textarea.php:97 +#: core/fields/wysiwyg.php:199 +msgid "Appears when creating a new post" +msgstr "Появява се когато създавате нова публикация" + +#: core/fields/email.php:123 core/fields/number.php:133 +#: core/fields/password.php:105 core/fields/text.php:131 +#: core/fields/textarea.php:111 +msgid "Placeholder Text" +msgstr "Информативен текст" + +#: core/fields/email.php:124 core/fields/number.php:134 +#: core/fields/password.php:106 core/fields/text.php:132 +#: core/fields/textarea.php:112 +msgid "Appears within the input" +msgstr "Появява се в текстовото поле" + +#: core/fields/email.php:138 core/fields/number.php:148 +#: core/fields/password.php:120 core/fields/text.php:146 +msgid "Prepend" +msgstr "Прикрепи" + +#: core/fields/email.php:139 core/fields/number.php:149 +#: core/fields/password.php:121 core/fields/text.php:147 +msgid "Appears before the input" +msgstr "Показва се преди текстовото поле" + +#: core/fields/email.php:153 core/fields/number.php:163 +#: core/fields/password.php:135 core/fields/text.php:161 +msgid "Append" +msgstr "Добави" + +#: core/fields/email.php:154 core/fields/number.php:164 +#: core/fields/password.php:136 core/fields/text.php:162 +msgid "Appears after the input" +msgstr "Показва се след текстовото поле" + +#: core/fields/file.php:19 +msgid "File" +msgstr "Файл" + +#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:36 +msgid "Content" +msgstr "Съдържание" + +#: core/fields/file.php:26 +msgid "Select File" +msgstr "Избери файл" + +#: core/fields/file.php:27 +msgid "Edit File" +msgstr "Редактирай файл" + +#: core/fields/file.php:28 +msgid "Update File" +msgstr "Обнови файл" + +#: core/fields/file.php:29 core/fields/image.php:30 +msgid "uploaded to this post" +msgstr "прикачен към тази публикация" + +#: core/fields/file.php:123 +msgid "No File Selected" +msgstr "Не е избран файл" + +#: core/fields/file.php:123 +msgid "Add File" +msgstr "Добави файл" + +#: core/fields/file.php:153 core/fields/image.php:118 +#: core/fields/taxonomy.php:367 +msgid "Return Value" +msgstr "Върната стойност" + +#: core/fields/file.php:164 +msgid "File Object" +msgstr "Файл под формата на обект" + +#: core/fields/file.php:165 +msgid "File URL" +msgstr "URL на файла" + +#: core/fields/file.php:166 +msgid "File ID" +msgstr "ID на файла" + +#: core/fields/file.php:175 core/fields/image.php:158 +msgid "Library" +msgstr "Библиотека" + +#: core/fields/file.php:187 core/fields/image.php:171 +msgid "Uploaded to post" +msgstr "Прикачен към тази публикация" + +#: core/fields/google-map.php:18 +msgid "Google Map" +msgstr "Google карта" + +#: core/fields/google-map.php:33 +msgid "Locating" +msgstr "Намиране" + +#: core/fields/google-map.php:34 +msgid "Sorry, this browser does not support geolocation" +msgstr "" +"Този уеб браузър не поддържа автоматично определяне на географското " +"местоположение" + +#: core/fields/google-map.php:120 +msgid "Clear location" +msgstr "Изчисти местоположението" + +#: core/fields/google-map.php:125 +msgid "Find current location" +msgstr "Намери текущото местоположение" + +#: core/fields/google-map.php:126 +msgid "Search for address..." +msgstr "Търси даден адрес..." + +#: core/fields/google-map.php:162 +msgid "Center" +msgstr "Центрирай" + +#: core/fields/google-map.php:163 +msgid "Center the initial map" +msgstr "Центрирай картата при първоначално зареждане" + +#: core/fields/google-map.php:199 +msgid "Zoom" +msgstr "Мащаб" + +#: core/fields/google-map.php:200 +msgid "Set the initial zoom level" +msgstr "Задаване на първоначален мащаб" + +#: core/fields/google-map.php:217 +msgid "Height" +msgstr "Височина" + +#: core/fields/google-map.php:218 +msgid "Customise the map height" +msgstr "Настрой височината на картата" + +#: core/fields/image.php:19 +msgid "Image" +msgstr "Картинка" + +#: core/fields/image.php:27 +msgid "Select Image" +msgstr "Избери картинка" + +#: core/fields/image.php:28 +msgid "Edit Image" +msgstr "Редактирай картинка" + +#: core/fields/image.php:29 +msgid "Update Image" +msgstr "Обнови картинка" + +#: core/fields/image.php:83 +msgid "Remove" +msgstr "Премахни" + +#: core/fields/image.php:84 core/views/meta_box_fields.php:108 +msgid "Edit" +msgstr "Редактирай" + +#: core/fields/image.php:90 +msgid "No image selected" +msgstr "Не е избрана картинка" + +#: core/fields/image.php:90 +msgid "Add Image" +msgstr "Добави картинка" + +#: core/fields/image.php:119 core/fields/relationship.php:573 +msgid "Specify the returned value on front end" +msgstr "Избери стойността, която полето ще върне" + +#: core/fields/image.php:129 +msgid "Image Object" +msgstr "Картинка под формата на обект" + +#: core/fields/image.php:130 +msgid "Image URL" +msgstr "URL на картинката" + +#: core/fields/image.php:131 +msgid "Image ID" +msgstr "ID на картинката" + +#: core/fields/image.php:139 +msgid "Preview Size" +msgstr "Размер на демонстративната миниатюра" + +#: core/fields/image.php:140 +msgid "Shown when entering data" +msgstr "Показва се при въвеждане на данни" + +#: core/fields/image.php:159 +msgid "Limit the media library choice" +msgstr "Ограничи избора от библиотеката с файлове" + +#: core/fields/message.php:19 core/fields/message.php:70 +#: core/fields/true_false.php:79 +msgid "Message" +msgstr "Съобщение" + +#: core/fields/message.php:71 +msgid "Text & HTML entered here will appear inline with the fields" +msgstr "Текст и HTML, който е въведен тук, ще се показва заедно с полетата" + +#: core/fields/message.php:72 +msgid "Please note that all text will first be passed through the wp function " +msgstr "" +"Забележете, че всичкия текст ще бъде първоначално прекаран през WP функцията" + +#: core/fields/number.php:19 +msgid "Number" +msgstr "Число" + +#: core/fields/number.php:178 +msgid "Minimum Value" +msgstr "Минимална стойност" + +#: core/fields/number.php:194 +msgid "Maximum Value" +msgstr "Максимална стойност" + +#: core/fields/number.php:210 +msgid "Step Size" +msgstr "Стъпка" + +#: core/fields/page_link.php:18 +msgid "Page Link" +msgstr "URL към страница" + +#: core/fields/page_link.php:19 core/fields/post_object.php:19 +#: core/fields/relationship.php:19 core/fields/taxonomy.php:19 +#: core/fields/user.php:19 +msgid "Relational" +msgstr "Релационен" + +#: core/fields/page_link.php:103 core/fields/post_object.php:268 +#: core/fields/relationship.php:592 core/fields/relationship.php:671 +#: core/views/meta_box_location.php:75 +msgid "Post Type" +msgstr "Тип публикации" + +#: core/fields/page_link.php:127 core/fields/post_object.php:317 +#: core/fields/select.php:214 core/fields/taxonomy.php:333 +#: core/fields/user.php:275 +msgid "Allow Null?" +msgstr "Позволи да няма стойност?" + +#: core/fields/page_link.php:148 core/fields/post_object.php:338 +#: core/fields/select.php:233 +msgid "Select multiple values?" +msgstr "Избор на множество стойности?" + +#: core/fields/password.php:19 +msgid "Password" +msgstr "Парола" + +#: core/fields/post_object.php:18 +msgid "Post Object" +msgstr "Публикация под формата на обект" + +#: core/fields/post_object.php:292 core/fields/relationship.php:616 +msgid "Filter from Taxonomy" +msgstr "Филтрирай от таксономия" + +#: core/fields/radio.php:18 +msgid "Radio Button" +msgstr "Бутон за избор" + +#: core/fields/radio.php:105 core/views/meta_box_location.php:91 +msgid "Other" +msgstr "Друг" + +#: core/fields/radio.php:148 +msgid "Enter your choices one per line" +msgstr "Въведете възможните избори, по един на ред" + +#: core/fields/radio.php:150 +msgid "Red" +msgstr "Червено" + +#: core/fields/radio.php:151 +msgid "Blue" +msgstr "Синьо" + +#: core/fields/radio.php:175 +msgid "Add 'other' choice to allow for custom values" +msgstr "" +"Добавяне на 'друго' опция, която да позволи създаване на потребителски " +"стойности" + +#: core/fields/radio.php:187 +msgid "Save 'other' values to the field's choices" +msgstr "" +"Запазване на потребителските стойности към възможните стойности на полето" + +#: core/fields/relationship.php:18 +msgid "Relationship" +msgstr "Отношение" + +#: core/fields/relationship.php:29 +msgid "Maximum values reached ( {max} values )" +msgstr "Максималния възможен брой стойности бе достигнат ( {max} стойности )" + +#: core/fields/relationship.php:428 +msgid "Search..." +msgstr "Търсене..." + +#: core/fields/relationship.php:439 +msgid "Filter by post type" +msgstr "Филтрирай по тип на публикацията" + +#: core/fields/relationship.php:572 +msgid "Return Format" +msgstr "Формат на върнатите данни" + +#: core/fields/relationship.php:583 +msgid "Post Objects" +msgstr "Публикации под формата на обекти" + +#: core/fields/relationship.php:584 +msgid "Post IDs" +msgstr "ID-та на публикации" + +#: core/fields/relationship.php:650 +msgid "Search" +msgstr "Търсене" + +#: core/fields/relationship.php:651 +msgid "Post Type Select" +msgstr "Избор на тип публикация" + +#: core/fields/relationship.php:659 +msgid "Elements" +msgstr "Елементи" + +#: core/fields/relationship.php:660 +msgid "Selected elements will be displayed in each result" +msgstr "Избраните елементи ще бъдат показани във всеки резултат" + +#: core/fields/relationship.php:669 core/views/meta_box_options.php:106 +msgid "Featured Image" +msgstr "Главна картинка" + +#: core/fields/relationship.php:670 +msgid "Post Title" +msgstr "Заглавие" + +#: core/fields/relationship.php:682 +msgid "Maximum posts" +msgstr "Максимален брой публикации" + +#: core/fields/select.php:18 core/fields/select.php:109 +#: core/fields/taxonomy.php:324 core/fields/user.php:266 +msgid "Select" +msgstr "Избери" + +#: core/fields/tab.php:19 +msgid "Tab" +msgstr "Таб" + +#: core/fields/tab.php:68 +msgid "" +"Use \"Tab Fields\" to better organize your edit screen by grouping your " +"fields together under separate tab headings." +msgstr "" +"Използвайте \"Таб полета\" за да организирате по-добре екрана си като " +"групирате полетата под съответните табове." + +#: core/fields/tab.php:69 +msgid "" +"All the fields following this \"tab field\" (or until another \"tab field\" " +"is defined) will be grouped together." +msgstr "" +"Всички полета след това \"таб поле\" (или до следващото \"таб поле\") ще " +"бъдат групирани в един таб." + +#: core/fields/tab.php:70 +msgid "Use multiple tabs to divide your fields into sections." +msgstr "Използвайте множество табове за да разделяте полетата на секции." + +#: core/fields/taxonomy.php:18 core/fields/taxonomy.php:278 +msgid "Taxonomy" +msgstr "Таксономия" + +#: core/fields/taxonomy.php:222 core/fields/taxonomy.php:231 +msgid "None" +msgstr "Няма стойност" + +#: core/fields/taxonomy.php:308 core/fields/user.php:251 +#: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:159 +msgid "Field Type" +msgstr "Тип на полето" + +#: core/fields/taxonomy.php:318 core/fields/user.php:260 +msgid "Multiple Values" +msgstr "Множество стойности" + +#: core/fields/taxonomy.php:320 core/fields/user.php:262 +msgid "Multi Select" +msgstr "Поле за множествен избор" + +#: core/fields/taxonomy.php:322 core/fields/user.php:264 +msgid "Single Value" +msgstr "Единична стойност" + +#: core/fields/taxonomy.php:323 +msgid "Radio Buttons" +msgstr "Бутони за избор" + +#: core/fields/taxonomy.php:352 +msgid "Load & Save Terms to Post" +msgstr "Зареди и запази термини към публикацията" + +#: core/fields/taxonomy.php:360 +msgid "" +"Load value based on the post's terms and update the post's terms on save" +msgstr "" +"Зареждане на стойност, базирана на термините на публикацията и обновяване на " +"термините на публикацията при запазване" + +#: core/fields/taxonomy.php:377 +msgid "Term Object" +msgstr "Термин под формата на обект" + +#: core/fields/taxonomy.php:378 +msgid "Term ID" +msgstr "ID на термин" + +#: core/fields/text.php:19 +msgid "Text" +msgstr "Текст" + +#: core/fields/text.php:176 core/fields/textarea.php:141 +msgid "Formatting" +msgstr "Форматиране" + +#: core/fields/text.php:177 core/fields/textarea.php:142 +msgid "Affects value on front end" +msgstr "Рефлектира върху върнатата стойност" + +#: core/fields/text.php:186 core/fields/textarea.php:151 +msgid "No formatting" +msgstr "Без форматиране" + +#: core/fields/text.php:187 core/fields/textarea.php:153 +msgid "Convert HTML into tags" +msgstr "Конвертирай HTML в тагове" + +#: core/fields/text.php:195 core/fields/textarea.php:126 +msgid "Character Limit" +msgstr "Лимит на броя символи" + +#: core/fields/text.php:196 core/fields/textarea.php:127 +msgid "Leave blank for no limit" +msgstr "Оставете празно за да няма лимит" + +#: core/fields/textarea.php:19 +msgid "Text Area" +msgstr "Текстово поле" + +#: core/fields/textarea.php:152 +msgid "Convert new lines into <br /> tags" +msgstr "Конвертирай новите редове в <br /> тагове" + +#: core/fields/true_false.php:19 +msgid "True / False" +msgstr "Истина / лъжа" + +#: core/fields/true_false.php:80 +msgid "eg. Show extra content" +msgstr "например Покажи допълнително съдържание" + +#: core/fields/user.php:18 core/views/meta_box_location.php:94 +msgid "User" +msgstr "Потребител" + +#: core/fields/user.php:224 +msgid "Filter by role" +msgstr "Филтрирай по роля" + +#: core/fields/wysiwyg.php:35 +msgid "Wysiwyg Editor" +msgstr "WYSIWYG редактор" + +#: core/fields/wysiwyg.php:213 +msgid "Toolbar" +msgstr "Лента с инструменти" + +#: core/fields/wysiwyg.php:245 +msgid "Show Media Upload Buttons?" +msgstr "Показване на бутоните за качване на медия?" + +#: core/views/meta_box_fields.php:24 +msgid "New Field" +msgstr "Ново поле" + +#: core/views/meta_box_fields.php:58 +msgid "Field type does not exist" +msgstr "Този тип поле не съществува" + +#: core/views/meta_box_fields.php:74 +msgid "Field Order" +msgstr "Ред на полето" + +#: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:127 +msgid "Field Label" +msgstr "Етикет на полето" + +#: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:143 +msgid "Field Name" +msgstr "Име на полето" + +#: core/views/meta_box_fields.php:78 +msgid "Field Key" +msgstr "Ключ на полето" + +#: core/views/meta_box_fields.php:90 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Няма създадени полета. Натиснете на + Добави поле бутона за " +"да създадете първото си поле." + +#: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108 +msgid "Edit this Field" +msgstr "Редактирай това поле" + +#: core/views/meta_box_fields.php:109 +msgid "Read documentation for this field" +msgstr "Прочети документацията на това поле" + +#: core/views/meta_box_fields.php:109 +msgid "Docs" +msgstr "Документация" + +#: core/views/meta_box_fields.php:110 +msgid "Duplicate this Field" +msgstr "Направи копие на това поле" + +#: core/views/meta_box_fields.php:110 +msgid "Duplicate" +msgstr "Направи копие" + +#: core/views/meta_box_fields.php:111 +msgid "Delete this Field" +msgstr "Изтрий това поле" + +#: core/views/meta_box_fields.php:111 +msgid "Delete" +msgstr "Изтрий" + +#: core/views/meta_box_fields.php:128 +msgid "This is the name which will appear on the EDIT page" +msgstr "Това име ще бъде показано на страницата за редактиране" + +#: core/views/meta_box_fields.php:144 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Една дума, без интервали. Долни черти и тирета са позволени" + +#: core/views/meta_box_fields.php:173 +msgid "Field Instructions" +msgstr "Инструкции на това поле" + +#: core/views/meta_box_fields.php:174 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Инструкции за авторите. Показват се когато се изпращат данни." + +#: core/views/meta_box_fields.php:186 +msgid "Required?" +msgstr "Задължително?" + +#: core/views/meta_box_fields.php:209 +msgid "Conditional Logic" +msgstr "Условна логика" + +#: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117 +msgid "is equal to" +msgstr "е равно на" + +#: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118 +msgid "is not equal to" +msgstr "не е равно на" + +#: core/views/meta_box_fields.php:279 +msgid "Show this field when" +msgstr "Покажи това поле когато" + +#: core/views/meta_box_fields.php:285 +msgid "all" +msgstr "всички" + +#: core/views/meta_box_fields.php:286 +msgid "any" +msgstr "поне едно" + +#: core/views/meta_box_fields.php:289 +msgid "these rules are met" +msgstr "тези правила са спазени" + +#: core/views/meta_box_fields.php:303 +msgid "Close Field" +msgstr "Затвори полето" + +#: core/views/meta_box_fields.php:316 +msgid "Drag and drop to reorder" +msgstr "Използвайте drag & drop за да смените реда" + +#: core/views/meta_box_fields.php:317 +msgid "+ Add Field" +msgstr "+ Добави поле" + +#: core/views/meta_box_location.php:48 +msgid "Rules" +msgstr "Правила" + +#: core/views/meta_box_location.php:49 +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Създайте набор от правила, които да определят кои екрани за редакция ще " +"използват тези потребителски полета" + +#: core/views/meta_box_location.php:60 +msgid "Show this field group if" +msgstr "Показвай тази група полета ако" + +#: core/views/meta_box_location.php:76 +msgid "Logged in User Type" +msgstr "Тип на влезлия потребител" + +#: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79 +msgid "Page" +msgstr "Страница" + +#: core/views/meta_box_location.php:80 +msgid "Page Type" +msgstr "Тип страница" + +#: core/views/meta_box_location.php:81 +msgid "Page Parent" +msgstr "Родителска страница" + +#: core/views/meta_box_location.php:82 +msgid "Page Template" +msgstr "Шаблон на страницата" + +#: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85 +msgid "Post" +msgstr "Публикация" + +#: core/views/meta_box_location.php:86 +msgid "Post Category" +msgstr "Категория на публикацията" + +#: core/views/meta_box_location.php:87 +msgid "Post Format" +msgstr "Формат на публикацията" + +#: core/views/meta_box_location.php:88 +msgid "Post Status" +msgstr "Статус на публикацията" + +#: core/views/meta_box_location.php:89 +msgid "Post Taxonomy" +msgstr "Таксономия на публикацията" + +#: core/views/meta_box_location.php:92 +msgid "Attachment" +msgstr "Прикачен файл" + +#: core/views/meta_box_location.php:93 +msgid "Taxonomy Term" +msgstr "Термин от дадена таксономия" + +#: core/views/meta_box_location.php:146 +msgid "and" +msgstr "и" + +#: core/views/meta_box_location.php:161 +msgid "Add rule group" +msgstr "Добави група от правила" + +#: core/views/meta_box_options.php:25 +msgid "Order No." +msgstr "Пореден номер" + +#: core/views/meta_box_options.php:26 +msgid "Field groups are created in order
    from lowest to highest" +msgstr "Групите полета се създават в
    увеличаващ се ред" + +#: core/views/meta_box_options.php:42 +msgid "Position" +msgstr "Позиция" + +#: core/views/meta_box_options.php:52 +msgid "High (after title)" +msgstr "Висок приоритет (след заглавието)" + +#: core/views/meta_box_options.php:53 +msgid "Normal (after content)" +msgstr "Нормален приоритет (след съдържанието)" + +#: core/views/meta_box_options.php:54 +msgid "Side" +msgstr "Отстрани" + +#: core/views/meta_box_options.php:64 +msgid "Style" +msgstr "Стил" + +#: core/views/meta_box_options.php:74 +msgid "Seamless (no metabox)" +msgstr "Без meta кутия" + +#: core/views/meta_box_options.php:75 +msgid "Standard (WP metabox)" +msgstr "Стандартен (WP мета кутия)" + +#: core/views/meta_box_options.php:84 +msgid "Hide on screen" +msgstr "Скрий на екрана" + +#: core/views/meta_box_options.php:85 +msgid "Select items to hide them from the edit screen" +msgstr "" +"Избери елементи, които да бъдат скрити от екрана за редактиране" + +#: core/views/meta_box_options.php:86 +msgid "" +"If multiple field groups appear on an edit screen, the first field group's " +"options will be used. (the one with the lowest order number)" +msgstr "" +"Ако няколко групи полета се показват на екрана за редакция, опциите на " +"първата група ще бъдат използвани (тази с най-ниско число на реда)." + +#: core/views/meta_box_options.php:96 +msgid "Permalink" +msgstr "Постоянен URL" + +#: core/views/meta_box_options.php:97 +msgid "Content Editor" +msgstr "Редактор на съдържание" + +#: core/views/meta_box_options.php:98 +msgid "Excerpt" +msgstr "Откъс" + +#: core/views/meta_box_options.php:100 +msgid "Discussion" +msgstr "Дискусия" + +#: core/views/meta_box_options.php:101 +msgid "Comments" +msgstr "Коментари" + +#: core/views/meta_box_options.php:102 +msgid "Revisions" +msgstr "Ревизии" + +#: core/views/meta_box_options.php:103 +msgid "Slug" +msgstr "SEO наименование" + +#: core/views/meta_box_options.php:104 +msgid "Author" +msgstr "Автор" + +#: core/views/meta_box_options.php:105 +msgid "Format" +msgstr "Формат" + +#: core/views/meta_box_options.php:107 +msgid "Categories" +msgstr "Категории" + +#: core/views/meta_box_options.php:108 +msgid "Tags" +msgstr "Тагове" + +#: core/views/meta_box_options.php:109 +msgid "Send Trackbacks" +msgstr "Изпращай обратно проследяване" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.mo index c854b7c..00d7ad6 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.po index 6871692..c612027 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cs_CZ.po @@ -5,13 +5,13 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2014-01-05 07:41:49+00:00\n" -"PO-Revision-Date: 2014-01-28 19:03+0100\n" -"Last-Translator: Jakub Machala \n" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: webees.cz s.r.o. \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 1.8.1\n" "Language: cs_CZ\n" "X-Poedit-Basepath: c:\\Users\\Jakub\\Documents\\GitHub\\wpcz\\Advanced " "Custom Fields\\moduly\n" @@ -732,7 +732,7 @@ msgstr "Potenciální problémy" #: core/controllers/field_groups.php:362 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -1000,7 +1000,7 @@ msgstr "Uložit formát" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "Tento formát určí hodnotu uloženou do databáze a vrácenou přes API" @@ -1482,7 +1482,7 @@ msgid "Formatting" msgstr "Formátování" #: core/fields/text.php:177 core/fields/textarea.php:142 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Ovlivňuje hodnotu na front endu" #: core/fields/text.php:186 core/fields/textarea.php:151 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-cy_GB.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cy_GB.mo new file mode 100644 index 0000000..271182e Binary files /dev/null and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cy_GB.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-cy_GB.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cy_GB.po new file mode 100644 index 0000000..0befedc --- /dev/null +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-cy_GB.po @@ -0,0 +1,1706 @@ +# Translation of Advanced Custom Fields in Cymraeg +# This file is distributed under the same license as the Advanced Custom Fields package. +msgid "" +msgstr "" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: \n" +"Language: cy_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +"X-Generator: Poedit 1.8.1\n" +"Project-Id-Version: Advanced Custom Fields\n" +"POT-Creation-Date: \n" + +#: core/views/meta_box_location.php:89 +msgid "Post Taxonomy" +msgstr "Tacsonomeg E-bost" + +#: core/views/meta_box_location.php:92 +msgid "Attachment" +msgstr "Atodiad" + +#: core/views/meta_box_location.php:93 +msgid "Taxonomy Term" +msgstr "Term Tacsonomeg" + +#: core/views/meta_box_location.php:146 +msgid "and" +msgstr "a" + +#: core/views/meta_box_location.php:161 +msgid "Add rule group" +msgstr "Ychwanegu rheol i'r grŵp" + +#: core/views/meta_box_options.php:25 +msgid "Order No." +msgstr "Rhif Archeb" + +#: core/views/meta_box_options.php:26 +msgid "Field groups are created in order
    from lowest to highest" +msgstr "Mae grwpiau maes yn cael eu creu mewn trefn
    o'r isaf i'r uchaf" + +#: core/views/meta_box_options.php:42 +msgid "Position" +msgstr "Safle" + +#: core/views/meta_box_options.php:52 +msgid "High (after title)" +msgstr "Uchel (ar ôl y teitl)" + +#: core/views/meta_box_options.php:53 +msgid "Normal (after content)" +msgstr "Arferol (ar ôl cynnwys)" + +#: core/views/meta_box_options.php:54 +msgid "Side" +msgstr "Ochr" + +#: core/views/meta_box_options.php:64 +msgid "Style" +msgstr "Arddull" + +#: core/views/meta_box_options.php:74 +msgid "Seamless (no metabox)" +msgstr "Yn ddi-dor (dim metaflwch)" + +#: core/views/meta_box_options.php:75 +msgid "Standard (WP metabox)" +msgstr "Safonol (metaflwch WP)" + +#: core/views/meta_box_options.php:84 +msgid "Hide on screen" +msgstr "Cuddio ar y sgrin" + +#: core/views/meta_box_options.php:85 +msgid "Select items to hide them from the edit screen" +msgstr "Dewiswch eitemau i'w cuddio o'r sgrin olygu" + +#: core/views/meta_box_options.php:86 +msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)" +msgstr "Os oes mwy nag un grŵp maes yn ymddangos ar sgrin olygu, bydd opsiynau'r grwpiau maes cyntaf yn cael eu defnyddio. (yr un sydd â'r rhif isaf yn y drefn)" + +#: core/views/meta_box_options.php:96 +msgid "Permalink" +msgstr "Dolen Barhaol" + +#: core/views/meta_box_options.php:97 +msgid "Content Editor" +msgstr "Golygydd Cynnwys" + +#: core/views/meta_box_options.php:98 +msgid "Excerpt" +msgstr "Cyfran" + +#: core/views/meta_box_options.php:100 +msgid "Discussion" +msgstr "Trafodaeth" + +#: core/views/meta_box_options.php:101 +msgid "Comments" +msgstr "Sylwadau" + +#: core/views/meta_box_options.php:102 +msgid "Revisions" +msgstr "Adolygiadau" + +#: core/views/meta_box_options.php:103 +msgid "Slug" +msgstr "Bonyn" + +#: core/views/meta_box_options.php:104 +msgid "Author" +msgstr "Awdur" + +#: core/views/meta_box_options.php:105 +msgid "Format" +msgstr "Fformat" + +#: core/views/meta_box_options.php:107 +msgid "Categories" +msgstr "Categorïau" + +#: core/views/meta_box_options.php:108 +msgid "Tags" +msgstr "Tagiau" + +#: core/views/meta_box_options.php:109 +msgid "Send Trackbacks" +msgstr "Anfon Hysbysiadau Cydnabod" + +#: core/fields/email.php:19 +msgid "Email" +msgstr "E-bost" + +#: core/fields/email.php:107 core/fields/number.php:117 +#: core/fields/text.php:117 core/fields/textarea.php:97 +#: core/fields/wysiwyg.php:199 +msgid "Appears when creating a new post" +msgstr "Mae'n ymddangos wrth greu cofnod newydd" + +#: core/fields/email.php:123 core/fields/number.php:133 +#: core/fields/password.php:105 core/fields/text.php:131 +#: core/fields/textarea.php:111 +msgid "Placeholder Text" +msgstr "Testun Dalfan" + +#: core/fields/email.php:124 core/fields/number.php:134 +#: core/fields/password.php:106 core/fields/text.php:132 +#: core/fields/textarea.php:112 +msgid "Appears within the input" +msgstr "Mae'n ymddangos yn y mewnbwn" + +#: core/fields/email.php:138 core/fields/number.php:148 +#: core/fields/password.php:120 core/fields/text.php:146 +msgid "Prepend" +msgstr "Rhagddodi" + +#: core/fields/email.php:139 core/fields/number.php:149 +#: core/fields/password.php:121 core/fields/text.php:147 +msgid "Appears before the input" +msgstr "Mae'n ymddangos cyn y mewnbwn" + +#: core/fields/email.php:153 core/fields/number.php:163 +#: core/fields/password.php:135 core/fields/text.php:161 +msgid "Append" +msgstr "Atodi" + +#: core/fields/email.php:154 core/fields/number.php:164 +#: core/fields/password.php:136 core/fields/text.php:162 +msgid "Appears after the input" +msgstr "Mae'n ymddangos ar ôl y mewnbwn" + +#: core/fields/file.php:19 +msgid "File" +msgstr "Ffeil" + +#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:36 +msgid "Content" +msgstr "Cynnwys" + +#: core/fields/file.php:26 +msgid "Select File" +msgstr "Dewis Ffeil" + +#: core/fields/file.php:27 +msgid "Edit File" +msgstr "Golygu Ffeil" + +#: core/fields/file.php:28 +msgid "Update File" +msgstr "Diweddaru Ffeil" + +#: core/fields/file.php:29 core/fields/image.php:30 +msgid "uploaded to this post" +msgstr "llwythwyd i fyny i'r cofnod yma" + +#: core/fields/file.php:123 +msgid "No File Selected" +msgstr "Dim Ffeil wedi'i Dewis" + +#: core/fields/file.php:123 +msgid "Add File" +msgstr "Ychwanegu Ffeil" + +#: core/fields/file.php:153 core/fields/image.php:118 +#: core/fields/taxonomy.php:367 +msgid "Return Value" +msgstr "Gwerth Dychwelyd" + +#: core/fields/file.php:164 +msgid "File Object" +msgstr "Gwrthrych Ffeil" + +#: core/fields/file.php:165 +msgid "File URL" +msgstr "URL Ffeil" + +#: core/fields/file.php:166 +msgid "File ID" +msgstr "ID Ffeil" + +#: core/fields/file.php:175 core/fields/image.php:158 +msgid "Library" +msgstr "Llyfrgell" + +#: core/fields/file.php:187 core/fields/image.php:171 +msgid "Uploaded to post" +msgstr "Llwythwyd i fyny i'r cofnod" + +#: core/fields/google-map.php:18 +msgid "Google Map" +msgstr "Map Google" + +#: core/fields/google-map.php:33 +msgid "Locating" +msgstr "Lleoli" + +#: core/fields/google-map.php:34 +msgid "Sorry, this browser does not support geolocation" +msgstr "Nid yw'r porwr yma'n gallu cynnal geoleoli" + +#: core/fields/google-map.php:120 +msgid "Clear location" +msgstr "Clirio'r lleoliad" + +#: core/fields/google-map.php:125 +msgid "Find current location" +msgstr "Canfod y lleoliad presennol" + +#: core/fields/google-map.php:126 +msgid "Search for address..." +msgstr "Chwilio am gyfeiriad..." + +#: core/fields/google-map.php:162 +msgid "Center" +msgstr "Canoli" + +#: core/fields/google-map.php:163 +msgid "Center the initial map" +msgstr "Canoli'r map cychwynnol" + +#: core/fields/google-map.php:199 +msgid "Zoom" +msgstr "Nesáu/Pellhau" + +#: core/fields/google-map.php:200 +msgid "Set the initial zoom level" +msgstr "Pennu'r lefel chwyddiant cychwynnol" + +#: core/fields/google-map.php:217 +msgid "Height" +msgstr "Uchder" + +#: core/fields/google-map.php:218 +msgid "Customise the map height" +msgstr "Cyfaddasu uchder y map" + +#: core/fields/image.php:19 +msgid "Image" +msgstr "Delwedd" + +#: core/fields/image.php:27 +msgid "Select Image" +msgstr "Dewis Delwedd" + +#: core/fields/image.php:28 +msgid "Edit Image" +msgstr "Golygu Delwedd" + +#: core/fields/image.php:29 +msgid "Update Image" +msgstr "Diweddaru Delwedd" + +#: core/fields/image.php:83 +msgid "Remove" +msgstr "Tynnu" + +#: core/fields/image.php:84 core/views/meta_box_fields.php:108 +msgid "Edit" +msgstr "Golygu" + +#: core/fields/image.php:90 +msgid "No image selected" +msgstr "Dim delwedd wedi'i dewis" + +#: core/fields/image.php:90 +msgid "Add Image" +msgstr "Ychwanegu Delwedd" + +#: core/fields/image.php:119 core/fields/relationship.php:573 +msgid "Specify the returned value on front end" +msgstr "Pennu'r gwerth dychwelyd ar y blaen" + +#: core/fields/image.php:129 +msgid "Image Object" +msgstr "Gwrthrych Delwedd" + +#: core/fields/image.php:130 +msgid "Image URL" +msgstr "URL Delwedd" + +#: core/fields/image.php:131 +msgid "Image ID" +msgstr "ID Delwedd" + +#: core/fields/image.php:139 +msgid "Preview Size" +msgstr "Maint y Rhagolwg" + +#: core/fields/image.php:140 +msgid "Shown when entering data" +msgstr "Yn ymddangos pan fydd data'n cael ei roi mewn" + +#: core/fields/image.php:159 +msgid "Limit the media library choice" +msgstr "Cyfyngu ar y dewis yn y llyfrgell cyfryngau" + +#: core/fields/message.php:19 core/fields/message.php:70 +#: core/fields/true_false.php:79 +msgid "Message" +msgstr "Neges" + +#: core/fields/message.php:71 +msgid "Text & HTML entered here will appear inline with the fields" +msgstr "Bydd testun a HTML sy'n cael ei roi yma'n ymddangos mewn llinell gyda'r meysydd" + +#: core/fields/message.php:72 +msgid "Please note that all text will first be passed through the wp function " +msgstr "Sylwer y bydd pob testun yn cael ei basio drwy'r nodwedd WP yn gyntaf" + +#: core/fields/number.php:19 +msgid "Number" +msgstr "Rhif" + +#: core/fields/number.php:178 +msgid "Minimum Value" +msgstr "Isafswm Gwerth" + +#: core/fields/number.php:194 +msgid "Maximum Value" +msgstr "Uchafswm Gwerth" + +#: core/fields/number.php:210 +msgid "Step Size" +msgstr "Maint y Step" + +#: core/fields/page_link.php:18 +msgid "Page Link" +msgstr "Dolen Tudalen" + +#: core/fields/page_link.php:19 core/fields/post_object.php:19 +#: core/fields/relationship.php:19 core/fields/taxonomy.php:19 +#: core/fields/user.php:19 +msgid "Relational" +msgstr "Perthynol" + +#: core/fields/page_link.php:103 core/fields/post_object.php:268 +#: core/fields/relationship.php:592 core/fields/relationship.php:671 +#: core/views/meta_box_location.php:75 +msgid "Post Type" +msgstr "Math o Gofnod" + +#: core/fields/page_link.php:127 core/fields/post_object.php:317 +#: core/fields/select.php:214 core/fields/taxonomy.php:333 +#: core/fields/user.php:275 +msgid "Allow Null?" +msgstr "Caniatáu Nwl?" + +#: core/fields/page_link.php:148 core/fields/post_object.php:338 +#: core/fields/select.php:233 +msgid "Select multiple values?" +msgstr "Dewis gwerthoedd niferus?" + +#: core/fields/password.php:19 +msgid "Password" +msgstr "Cyfrinair" + +#: core/fields/post_object.php:18 +msgid "Post Object" +msgstr "Gwrthrych Cofnod" + +#: core/fields/post_object.php:292 core/fields/relationship.php:616 +msgid "Filter from Taxonomy" +msgstr "Hidlo o'r Tacsonomeg" + +#: core/fields/radio.php:18 +msgid "Radio Button" +msgstr "Botwm Radio" + +#: core/fields/radio.php:105 core/views/meta_box_location.php:91 +msgid "Other" +msgstr "Arall" + +#: core/fields/radio.php:148 +msgid "Enter your choices one per line" +msgstr "Rhowch eich dewisiadau i mewn, un fesul llinell" + +#: core/fields/radio.php:150 +msgid "Red" +msgstr "Coch" + +#: core/fields/radio.php:151 +msgid "Blue" +msgstr "Glas" + +#: core/fields/radio.php:175 +msgid "Add 'other' choice to allow for custom values" +msgstr "Ychwanegwch ddewis 'arall' er mwyn caniatáu gwerthoedd cyfaddas" + +#: core/fields/radio.php:187 +msgid "Save 'other' values to the field's choices" +msgstr "Cadw gwerthoedd 'eraill' at y dewis o feysydd" + +#: core/fields/relationship.php:18 +msgid "Relationship" +msgstr "Perthynas" + +#: core/fields/relationship.php:29 +msgid "Maximum values reached ( {max} values )" +msgstr "Wedi cyrraedd uchafswm gwerthoedd ( {max} gwerthoedd )" + +#: core/fields/relationship.php:428 +msgid "Search..." +msgstr "Chwilio..." + +#: core/fields/relationship.php:439 +msgid "Filter by post type" +msgstr "Hidlo yn ôl y math o gofnod" + +#: core/fields/relationship.php:572 +msgid "Return Format" +msgstr "Fformat Dychwelyd" + +#: core/fields/relationship.php:583 +msgid "Post Objects" +msgstr "Gwrthrychau Cofnod" + +#: core/fields/relationship.php:584 +msgid "Post IDs" +msgstr "ID Cofnod" + +#: core/fields/relationship.php:650 +msgid "Search" +msgstr "Chwilio" + +#: core/fields/relationship.php:651 +msgid "Post Type Select" +msgstr "Dewis Math o Gofnod" + +#: core/fields/relationship.php:659 +msgid "Elements" +msgstr "Elfennau" + +#: core/fields/relationship.php:660 +msgid "Selected elements will be displayed in each result" +msgstr "Bydd yr elfennau a ddewiswyd yn ymddangos ym mhob canlyniad" + +#: core/fields/relationship.php:669 core/views/meta_box_options.php:106 +msgid "Featured Image" +msgstr "Delwedd Nodwedd" + +#: core/fields/relationship.php:670 +msgid "Post Title" +msgstr "Teitl y Cofnod" + +#: core/fields/relationship.php:682 +msgid "Maximum posts" +msgstr "Uchafswm o gofnodion" + +#: core/fields/select.php:18 core/fields/select.php:109 +#: core/fields/taxonomy.php:324 core/fields/user.php:266 +msgid "Select" +msgstr "Dewis" + +#: core/fields/tab.php:19 +msgid "Tab" +msgstr "Tab" + +#: core/fields/tab.php:68 +msgid "Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings." +msgstr "Defnyddiwch y \"Meysydd Tab\" i drefnu eich sgrin golygu yn well drwy grwpio eich meysydd gyda'i gilydd o dan benawdau tab ar wahân." + +#: core/fields/tab.php:69 +msgid "All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together." +msgstr "Bydd pob maes ar ôl y \"maes tab\" yma (neu nes y bydd \"maes tab\" arall yn cael ei greu) yn cael eu grwpio gyda'i gilydd." + +#: core/fields/tab.php:70 +msgid "Use multiple tabs to divide your fields into sections." +msgstr "Defnyddiwch dabiau niferus i rannu eich meysydd yn adrannau." + +#: core/fields/taxonomy.php:18 core/fields/taxonomy.php:278 +msgid "Taxonomy" +msgstr "Tacsonomeg" + +#: core/fields/taxonomy.php:222 core/fields/taxonomy.php:231 +msgid "None" +msgstr "Dim" + +#: core/fields/taxonomy.php:308 core/fields/user.php:251 +#: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:159 +msgid "Field Type" +msgstr "Math o Faes" + +#: core/fields/taxonomy.php:318 core/fields/user.php:260 +msgid "Multiple Values" +msgstr "Gwerthoedd Niferus" + +#: core/fields/taxonomy.php:320 core/fields/user.php:262 +msgid "Multi Select" +msgstr "Aml Ddewis" + +#: core/fields/taxonomy.php:322 core/fields/user.php:264 +msgid "Single Value" +msgstr "Gwerth Sengl" + +#: core/fields/taxonomy.php:323 +msgid "Radio Buttons" +msgstr "Botymau Radio" + +#: core/fields/taxonomy.php:352 +msgid "Load & Save Terms to Post" +msgstr "Llwytho a Chadw Telerau i'r Cofnod" + +#: core/fields/taxonomy.php:360 +msgid "Load value based on the post's terms and update the post's terms on save" +msgstr "Llwytho gwerth yn seiliedig ar delerau'r cofnod a diweddaru telerau'r cofnod wrth gadw" + +#: core/fields/taxonomy.php:377 +msgid "Term Object" +msgstr "Gwrthrych y Telerau" + +#: core/fields/taxonomy.php:378 +msgid "Term ID" +msgstr "ID y Telerau" + +#: core/fields/text.php:19 +msgid "Text" +msgstr "Testun" + +#: core/fields/text.php:176 core/fields/textarea.php:141 +msgid "Formatting" +msgstr "Fformadu" + +#: core/fields/text.php:177 core/fields/textarea.php:142 +msgid "Affects value on front end" +msgstr "Gwerth effeithiau ar y blaen" + +#: core/fields/text.php:186 core/fields/textarea.php:151 +msgid "No formatting" +msgstr "Dim fformadu" + +#: core/fields/text.php:187 core/fields/textarea.php:153 +msgid "Convert HTML into tags" +msgstr "Trosi HTML yn dagiau" + +#: core/fields/text.php:195 core/fields/textarea.php:126 +msgid "Character Limit" +msgstr "Uchafswm Nodau" + +#: core/fields/text.php:196 core/fields/textarea.php:127 +msgid "Leave blank for no limit" +msgstr "Gadewch yn wag i beidio cael uchafswm" + +#: core/fields/textarea.php:19 +msgid "Text Area" +msgstr "Ardal Testun" + +#: core/fields/textarea.php:152 +msgid "Convert new lines into <br /> tags" +msgstr "Trosi llinellau newydd yn dagiau <br />" + +#: core/fields/true_false.php:19 +msgid "True / False" +msgstr "Gwir / Gau" + +#: core/fields/true_false.php:80 +msgid "eg. Show extra content" +msgstr "ee. Dangos cynnwys ychwanegol" + +#: core/fields/user.php:18 core/views/meta_box_location.php:94 +msgid "User" +msgstr "Defnyddiwr" + +#: core/fields/user.php:224 +msgid "Filter by role" +msgstr "Hidlo fesul rôl" + +#: core/fields/wysiwyg.php:35 +msgid "Wysiwyg Editor" +msgstr "Golygydd Wysiwyg" + +#: core/fields/wysiwyg.php:213 +msgid "Toolbar" +msgstr "Bar Offer" + +#: core/fields/wysiwyg.php:245 +msgid "Show Media Upload Buttons?" +msgstr "Dangos Botymau Llwytho Cyfryngau i Fyny?" + +#: core/views/meta_box_fields.php:24 +msgid "New Field" +msgstr "Maes Newydd" + +#: core/views/meta_box_fields.php:58 +msgid "Field type does not exist" +msgstr "Nid yw'r math o faes yn bodoli" + +#: core/views/meta_box_fields.php:74 +msgid "Field Order" +msgstr "Trefn Maes" + +#: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:127 +msgid "Field Label" +msgstr "Label Maes" + +#: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:143 +msgid "Field Name" +msgstr "Enw Maes" + +#: core/views/meta_box_fields.php:78 +msgid "Field Key" +msgstr "Allwedd Maes" + +#: core/views/meta_box_fields.php:90 +msgid "No fields. Click the + Add Field button to create your first field." +msgstr "Dim meysydd. Cliciwch y botwm + Ychwanegu Maes i greu eich maes cyntaf." + +#: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108 +msgid "Edit this Field" +msgstr "Golygu'r Maes yma" + +#: core/views/meta_box_fields.php:109 +msgid "Read documentation for this field" +msgstr "Darllen dogfennaeth am y maes yma" + +#: core/views/meta_box_fields.php:109 +msgid "Docs" +msgstr "Dogfennau" + +#: core/views/meta_box_fields.php:110 +msgid "Duplicate this Field" +msgstr "Dyblygu'r Maes yma" + +#: core/views/meta_box_fields.php:110 +msgid "Duplicate" +msgstr "Dyblygu" + +#: core/views/meta_box_fields.php:111 +msgid "Delete this Field" +msgstr "Dileu'r Maes yma" + +#: core/views/meta_box_fields.php:111 +msgid "Delete" +msgstr "Dileu" + +#: core/views/meta_box_fields.php:128 +msgid "This is the name which will appear on the EDIT page" +msgstr "Dyma'r enw fydd yn ymddangos ar y dudalen GOLYGU" + +#: core/views/meta_box_fields.php:144 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Un gair, dim bylchau. Caniateir defnyddio tanlinellu a dash" + +#: core/views/meta_box_fields.php:173 +msgid "Field Instructions" +msgstr "Cyfarwyddiadau Maes" + +#: core/views/meta_box_fields.php:174 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Cyfarwyddiadau ar gyfer awduron. Yn ymddangos pan fydd data'n cael ei gyflwyno" + +#: core/views/meta_box_fields.php:186 +msgid "Required?" +msgstr "Angenrheidiol?" + +#: core/views/meta_box_fields.php:209 +msgid "Conditional Logic" +msgstr "Rhesymeg Amodol" + +#: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117 +msgid "is equal to" +msgstr "yn hafal i" + +#: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118 +msgid "is not equal to" +msgstr "ddim yn hafal i" + +#: core/views/meta_box_fields.php:279 +msgid "Show this field when" +msgstr "Dangos y maes yma pan fydd" + +#: core/views/meta_box_fields.php:285 +msgid "all" +msgstr "pob un" + +#: core/views/meta_box_fields.php:286 +msgid "any" +msgstr "unrhyw un" + +#: core/views/meta_box_fields.php:289 +msgid "these rules are met" +msgstr "o'r rheolau yma'n cael eu diwallu" + +#: core/views/meta_box_fields.php:303 +msgid "Close Field" +msgstr "Cau'r Maes" + +#: core/views/meta_box_fields.php:316 +msgid "Drag and drop to reorder" +msgstr "Llusgwch a gollwng i aildrefnu" + +#: core/views/meta_box_fields.php:317 +msgid "+ Add Field" +msgstr "+ Ychwanegu Maes" + +#: core/views/meta_box_location.php:48 +msgid "Rules" +msgstr "Rheolau" + +#: core/views/meta_box_location.php:49 +msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" +msgstr "Creu cyfres o reolau er mwyn penderfynu pa sgriniau golygu fydd yn defnyddio'r meysydd cyfaddas uwch yma" + +#: core/views/meta_box_location.php:60 +msgid "Show this field group if" +msgstr "Dangos y grŵp maes yma os" + +#: core/views/meta_box_location.php:76 +msgid "Logged in User Type" +msgstr "Math o Ddefnyddiwr sydd wedi Mewngofnodi" + +#: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79 +msgid "Page" +msgstr "Tudalen" + +#: core/views/meta_box_location.php:80 +msgid "Page Type" +msgstr "Math o Dudalen" + +#: core/views/meta_box_location.php:81 +msgid "Page Parent" +msgstr "Rhiant Dudalen" + +#: core/views/meta_box_location.php:82 +msgid "Page Template" +msgstr "Templed Tudalen" + +#: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85 +msgid "Post" +msgstr "Cofnod" + +#: core/views/meta_box_location.php:86 +msgid "Post Category" +msgstr "Categori Cofnod" + +#: core/views/meta_box_location.php:87 +msgid "Post Format" +msgstr "Fformat Cofnod" + +#: core/views/meta_box_location.php:88 +msgid "Post Status" +msgstr "Statws Cofnod" + +#: core/controllers/field_groups.php:245 +msgid "Thank you for updating to the latest version!" +msgstr "Diolch am ddiweddaru i'r fersiwn ddiweddaraf!" + +#: core/controllers/field_groups.php:245 +msgid "is more polished and enjoyable than ever before. We hope you like it." +msgstr "- gyda mwy o sglein ac yn fwy o hwyl nag erioed o'r blaen. Gobeithio y byddwch chi'n ei hoffi." + +#: core/controllers/field_groups.php:252 +msgid "What’s New" +msgstr "Beth sy'n Newydd" + +#: core/controllers/field_groups.php:255 +msgid "Download Add-ons" +msgstr "Llwytho Ychwanegion i Lawr" + +#: core/controllers/field_groups.php:309 +msgid "Activation codes have grown into plugins!" +msgstr "Mae codau gweithredu wedi tyfu'n ategolion!" + +#: core/controllers/field_groups.php:310 +msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way." +msgstr "Erbyn hyn, mae Ychwanegion yn cael eu gweithredu drwy lwytho ategolion unigol i lawr a'i gosod. Er mai nid ar storfa WordPress.org fydd yr ategolion yma'n lletya, bydd pob Ychwanegyn yn parhau i gael diweddariadau yn y ffordd arferol." + +#: core/controllers/field_groups.php:316 +msgid "All previous Add-ons have been successfully installed" +msgstr "Mae pob Ychwanegyn blaenorol wedi'u gosod yn llwyddiannus" + +#: core/controllers/field_groups.php:320 +msgid "This website uses premium Add-ons which need to be downloaded" +msgstr "Mae'r wefan yma'n defnyddio Ychwanegion premiwm sydd angen eu llwytho i lawr" + +#: core/controllers/field_groups.php:320 +msgid "Download your activated Add-ons" +msgstr "Llwytho'r Ychwanegion rydych chi wedi'u gweithredu i Lawr" + +#: core/controllers/field_groups.php:325 +msgid "This website does not use premium Add-ons and will not be affected by this change." +msgstr "Nid yw'r wefan yma'n defnyddio Ychwanegion premiwm ac ni fydd yn cael ei heffeithio gan y newid yma." + +#: core/controllers/field_groups.php:335 +msgid "Easier Development" +msgstr "Datblygu Haws" + +#: core/controllers/field_groups.php:337 +msgid "New Field Types" +msgstr "Mathau o Faes Newydd" + +#: core/controllers/field_groups.php:339 +msgid "Taxonomy Field" +msgstr "Maes Tacsonomeg" + +#: core/controllers/field_groups.php:340 +msgid "User Field" +msgstr "Maes Defnyddiwr" + +#: core/controllers/field_groups.php:341 +msgid "Email Field" +msgstr "Maes E-bost" + +#: core/controllers/field_groups.php:342 +msgid "Password Field" +msgstr "Maes Cyfrinair" + +#: core/controllers/field_groups.php:344 +msgid "Custom Field Types" +msgstr "Mathau o Faes Cyfaddas" + +#: core/controllers/field_groups.php:345 +msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4." +msgstr "Mae'n haws nag erioed i greu eich math o faes eich hunan! Yn anffodus, nid yw mathau o faes yn fersiwn 3 yn gydnaws â fersiwn 4." + +#: core/controllers/field_groups.php:346 +msgid "Migrating your field types is easy, please" +msgstr "Mae'n hawdd mudo mathau o faes," + +#: core/controllers/field_groups.php:346 +msgid "follow this tutorial" +msgstr "dilynwch y tiwtorial yma" + +#: core/controllers/field_groups.php:346 +msgid "to learn more." +msgstr "i ddysgu rhagor." + +#: core/controllers/field_groups.php:348 +msgid "Actions & Filters" +msgstr "Gweithredoedd a Hidlyddion" + +#: core/controllers/field_groups.php:349 +msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please" +msgstr "Mae pob Gweithred a Hidlydd wedi cael gweddnewidiad llwyr er mwyn ei gwneud hi hyd yn oed yn haws i gyfaddasu ACF!" + +#: core/controllers/field_groups.php:349 +msgid "read this guide" +msgstr "Darllenwch y canllawiau yma" + +#: core/controllers/field_groups.php:349 +msgid "to find the updated naming convention." +msgstr "i ganfod y confensiwn enwi diweddaraf." + +#: core/controllers/field_groups.php:351 +msgid "Preview draft is now working!" +msgstr "Mae rhagolwg drafft bellach yn gweithio!" + +#: core/controllers/field_groups.php:352 +msgid "This bug has been squashed along with many other little critters!" +msgstr "Mae'r chwilen yma, yn ogystal â sawl un arall, wedi cael ei difa!" + +#: core/controllers/field_groups.php:352 +msgid "See the full changelog" +msgstr "Gweld log llawn o'r newidiadau" + +#: core/controllers/field_groups.php:356 +msgid "Important" +msgstr "Pwysig" + +#: core/controllers/field_groups.php:358 +msgid "Database Changes" +msgstr "Newidiadau i Gronfeydd Data" + +#: core/controllers/field_groups.php:359 +msgid "Absolutely no changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues." +msgstr "Does dim un newid o gwbl wedi cael ei wneud i'r gronfa ddata rhwng fersiwn 3 a 4. Mae hyn yn golygu y gallwch fynd yn ôl i fersiwn 3 heb unrhyw drafferthion." + +#: core/controllers/field_groups.php:361 +msgid "Potential Issues" +msgstr "Trafferthion Posibl" + +#: core/controllers/field_groups.php:362 +msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full" +msgstr "Oherwydd newidiadau sy'n digwydd i faint Ychwanegion, mathau o feysydd a gweithredoedd/hidlyddion, mae'n bosibl na fydd eich gwefan yn gweithio'n gywir. Mae'n bwysig eich bod yn darllen y " + +#: core/controllers/field_groups.php:362 +msgid "Migrating from v3 to v4" +msgstr "Mudo o fersiwn 3 i fersiwn 4" + +#: core/controllers/field_groups.php:362 +msgid "guide to view the full list of changes." +msgstr "canllawiau llawn i weld y rhestr lawn o newidiadau." + +#: core/controllers/field_groups.php:365 +msgid "Really Important!" +msgstr "Pwysig Iawn!" + +#: core/controllers/field_groups.php:365 +msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest" +msgstr "Os gwnaethoch chi ddiweddaru'r ategyn ACF heb wybodaeth flaenorol am y newidiadau, dylech newid yn ôl i" + +#: core/controllers/field_groups.php:365 +msgid "version 3" +msgstr "fersiwn 3" + +#: core/controllers/field_groups.php:365 +msgid "of this plugin." +msgstr "o'r ategyn yma." + +#: core/controllers/field_groups.php:370 +msgid "Thank You" +msgstr "Diolch" + +#: core/controllers/field_groups.php:371 +msgid "A BIG thank you to everyone who has helped test the version 4 beta and for all the support I have received." +msgstr "Diolch ENFAWR i bawb sydd wedi helpu i brofi'r fersiwn 4 beta ac am yr holl gymorth rydw o wedi cael." + +#: core/controllers/field_groups.php:372 +msgid "Without you all, this release would not have been possible!" +msgstr "Hebddoch chi, fyddai rhyddhau'r fersiwn yma ddim wedi bod yn bosibl!" + +#: core/controllers/field_groups.php:376 +msgid "Changelog for" +msgstr "Log o newidiadau ar gyfer" + +#: core/controllers/field_groups.php:393 +msgid "Learn more" +msgstr "Dysgu mwy" + +#: core/controllers/field_groups.php:399 +msgid "Overview" +msgstr "Trosolwg" + +#: core/controllers/field_groups.php:401 +msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated." +msgstr "Yn flaenorol, roedd pob Ychwanegyn yn cael eu datgloi gyda chod gweithredu (drwy eu prynu o'r siop Ychwanegion ACF). Yn newydd i fersiwn 4, mae pob Ychwanegyn yn ategyn ar wahân sydd angen eu llwytho i lawr, eu gosod a'u diweddaru yn unigol." + +#: core/controllers/field_groups.php:403 +msgid "This page will assist you in downloading and installing each available Add-on." +msgstr "Bydd y dudalen yma yn eich cynorthwyo i lwytho pob Ychwanegyn sydd ar gael i lawr a'i gosod." + +#: core/controllers/field_groups.php:405 +msgid "Available Add-ons" +msgstr "Ychwanegion sydd Ar Gael" + +#: core/controllers/field_groups.php:407 +msgid "The following Add-ons have been detected as activated on this website." +msgstr "Mae'r Ychwanegion canlynol wedi cael eu canfod fel rhai sy'n weithredol ar y wefan yma." + +#: core/controllers/field_groups.php:420 +msgid "Name" +msgstr "Enw" + +#: core/controllers/field_groups.php:421 +msgid "Activation Code" +msgstr "Cod Gweithredu" + +#: core/controllers/field_groups.php:453 +msgid "Flexible Content" +msgstr "Cynnwys Hyblyg" + +#: core/controllers/field_groups.php:463 +msgid "Installation" +msgstr "Gosod" + +#: core/controllers/field_groups.php:465 +msgid "For each Add-on available, please perform the following:" +msgstr "Ar gyfer pob Ychwanegyn sydd ar gael, dylech wneud y canlynol:" + +#: core/controllers/field_groups.php:467 +msgid "Download the Add-on plugin (.zip file) to your desktop" +msgstr "Llwytho'r ategyn Ychwanegyn i lawr (ffeil .zip) i'ch bwrdd gwaith" + +#: core/controllers/field_groups.php:468 +msgid "Navigate to" +msgstr "Mynd i" + +#: core/controllers/field_groups.php:468 +msgid "Plugins > Add New > Upload" +msgstr "Ategion > Ychwanegu Newydd > Llwytho i fyny" + +#: core/controllers/field_groups.php:469 +msgid "Use the uploader to browse, select and install your Add-on (.zip file)" +msgstr "Defnyddiwch y llwythwr i chwilio, dewis a gosod eich Ychwanegyn (ffeil .zip)" + +#: core/controllers/field_groups.php:470 +msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link" +msgstr "Unwaith mae'r ategyn wedi cael ei lwytho i fyny a'i osod, cliciwch y ddolen 'Gweithredu'r Ategyn'" + +#: core/controllers/field_groups.php:471 +msgid "The Add-on is now installed and activated!" +msgstr "Mae'r Ychwanegyn wedi ei osod ac yn weithredol!" + +#: core/controllers/field_groups.php:485 +msgid "Awesome. Let's get to work" +msgstr "Gwych. Beth am ddechrau gweithio" + +#: core/controllers/input.php:63 +msgid "Expand Details" +msgstr "Ehangu Maynlion" + +#: core/controllers/input.php:64 +msgid "Collapse Details" +msgstr "Lleihau Manylion" + +#: core/controllers/input.php:67 +msgid "Validation Failed. One or more fields below are required." +msgstr "Methodd y Dilysiad. Mae angen llenwi un neu ragor o'r meysydd isod." + +#: core/controllers/upgrade.php:86 +msgid "Upgrade" +msgstr "Diweddaru" + +#: core/controllers/upgrade.php:139 +msgid "What's new" +msgstr "Beth sy'n newydd" + +#: core/controllers/upgrade.php:150 +msgid "credits" +msgstr "diolchiadau*" + +#: core/controllers/upgrade.php:684 +msgid "Modifying field group options 'show on page'" +msgstr "Addasu opsiynau grŵp maes 'dangos ar y dudalen'" + +#: core/controllers/upgrade.php:738 +msgid "Modifying field option 'taxonomy'" +msgstr "Addasu opsiwn maes 'tacsonomeg'" + +#: core/controllers/upgrade.php:835 +msgid "Moving user custom fields from wp_options to wp_usermeta'" +msgstr "Symud meysydd defnyddwyr cyfaddas o wp_options i wp_usermeta'" + +#: core/fields/_base.php:124 core/views/meta_box_location.php:74 +msgid "Basic" +msgstr "Sylfaenol" + +#: core/fields/checkbox.php:19 core/fields/taxonomy.php:319 +msgid "Checkbox" +msgstr "Blwch Ticio" + +#: core/fields/checkbox.php:20 core/fields/radio.php:19 +#: core/fields/select.php:19 core/fields/true_false.php:20 +msgid "Choice" +msgstr "Dewis" + +#: core/fields/checkbox.php:146 core/fields/radio.php:147 +#: core/fields/select.php:177 +msgid "Choices" +msgstr "Dewisiadau" + +#: core/fields/checkbox.php:147 core/fields/select.php:178 +msgid "Enter each choice on a new line." +msgstr "Rhowch bob dewis ar linell newydd." + +#: core/fields/checkbox.php:148 core/fields/select.php:179 +msgid "For more control, you may specify both a value and label like this:" +msgstr "Er mwyn cael mwy o reolaeth, gallwch nodi gwerth a label fel hyn:" + +#: core/fields/checkbox.php:149 core/fields/radio.php:153 +#: core/fields/select.php:180 +msgid "red : Red" +msgstr "coch : Coch" + +#: core/fields/checkbox.php:149 core/fields/radio.php:154 +#: core/fields/select.php:180 +msgid "blue : Blue" +msgstr "glas : Glas" + +#: core/fields/checkbox.php:166 core/fields/color_picker.php:89 +#: core/fields/email.php:106 core/fields/number.php:116 +#: core/fields/radio.php:196 core/fields/select.php:197 +#: core/fields/text.php:116 core/fields/textarea.php:96 +#: core/fields/true_false.php:94 core/fields/wysiwyg.php:198 +msgid "Default Value" +msgstr "Gwerth Diofyn" + +#: core/fields/checkbox.php:167 core/fields/select.php:198 +msgid "Enter each default value on a new line" +msgstr "Rhowch bob gwerth diofyn ar linell newydd" + +#: core/fields/checkbox.php:183 core/fields/message.php:20 +#: core/fields/radio.php:212 core/fields/tab.php:20 +msgid "Layout" +msgstr "Cynllun" + +#: core/fields/checkbox.php:194 core/fields/radio.php:223 +msgid "Vertical" +msgstr "Fertigol" + +#: core/fields/checkbox.php:195 core/fields/radio.php:224 +msgid "Horizontal" +msgstr "Llorweddol" + +#: core/fields/color_picker.php:19 +msgid "Color Picker" +msgstr "Dewiswr Lliw" + +#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20 +#: core/fields/google-map.php:19 +msgid "jQuery" +msgstr "jQuery" + +#: core/fields/date_picker/date_picker.php:19 +msgid "Date Picker" +msgstr "Dewiswr Dyddiad" + +#: core/fields/date_picker/date_picker.php:55 +msgid "Done" +msgstr "Wedi Gorffen" + +#: core/fields/date_picker/date_picker.php:56 +msgid "Today" +msgstr "Heddiw" + +#: core/fields/date_picker/date_picker.php:59 +msgid "Show a different month" +msgstr "Dangos mis gwahanol" + +#: core/fields/date_picker/date_picker.php:126 +msgid "Save format" +msgstr "Cadw'r fformat" + +#: core/fields/date_picker/date_picker.php:127 +msgid "This format will determine the value saved to the database and returned via the API" +msgstr "Bydd y fformat yma yn pennu'r gwerth sydd wedi'i gadw i'r gronfa ddata ac sy'n cael ei ddychwelyd drwy'r API" + +#: core/fields/date_picker/date_picker.php:128 +msgid "\"yymmdd\" is the most versatile save format. Read more about" +msgstr "\"yymmdd\" yw'r fformat cadw mwyaf amlbwrpas. Darllenwch fwy am" + +#: core/fields/date_picker/date_picker.php:128 +#: core/fields/date_picker/date_picker.php:144 +msgid "jQuery date formats" +msgstr "Fformatau dyddiad jQuery" + +#: core/fields/date_picker/date_picker.php:142 +msgid "Display format" +msgstr "Fformat arddangos" + +#: core/fields/date_picker/date_picker.php:143 +msgid "This format will be seen by the user when entering a value" +msgstr "Dyma'r fformat fydd y defnyddiwr yn ei weld wrth roi gwerth i mewn" + +#: core/fields/date_picker/date_picker.php:144 +msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about" +msgstr "\"dd/mm/yy\" neu \"mm/dd/yy\" yw'r fformatau arddangos sy'n cael eu defnyddio fwyaf. Darllenwch fwy am" + +#: core/fields/date_picker/date_picker.php:158 +msgid "Week Starts On" +msgstr "Wythnos yn Cychwyn Ar" + +#: core/fields/dummy.php:19 +msgid "Dummy" +msgstr "Dirprwy" + +#: acf.php:455 +msgid "Field Groups" +msgstr "Grwpiau o feysydd" + +#: acf.php:456 core/controllers/field_groups.php:214 +msgid "Advanced Custom Fields" +msgstr "Advanced Custom Fields" + +#: acf.php:457 +msgid "Add New" +msgstr "Ychwanegu Newydd" + +#: acf.php:458 +msgid "Add New Field Group" +msgstr "Ychwanegu Grŵp Maes Newydd" + +#: acf.php:459 +msgid "Edit Field Group" +msgstr "Golygu Grŵp Maes" + +#: acf.php:460 +msgid "New Field Group" +msgstr "Grŵp Maes Newydd" + +#: acf.php:461 +msgid "View Field Group" +msgstr "Gweld Grŵp Maes" + +#: acf.php:462 +msgid "Search Field Groups" +msgstr "Chwilio'r Grwpiau Maes" + +#: acf.php:463 +msgid "No Field Groups found" +msgstr "Ni ddaethpwyd o hyd i Grwpiau Maes" + +#: acf.php:464 +msgid "No Field Groups found in Trash" +msgstr "Ni ddaethpwyd o hyd i Grwpiau Maes yn y Bin" + +#: acf.php:567 core/views/meta_box_options.php:99 +msgid "Custom Fields" +msgstr "Meysydd Cyfaddas" + +#: acf.php:585 acf.php:588 +msgid "Field group updated." +msgstr "Y grŵp maes wedi'i ddiweddaru." + +#: acf.php:586 +msgid "Custom field updated." +msgstr "Y maes cyfaddas wedi'i ddiweddaru." + +#: acf.php:587 +msgid "Custom field deleted." +msgstr "Y maes cyfaddas wedi'i ddileu." + +#: acf.php:590 +msgid "Field group restored to revision from %s" +msgstr "Y grŵp maes wedi ei adfer i'r adolygiad gan %s" + +#: acf.php:591 +msgid "Field group published." +msgstr "Y grŵp maes wedi'i gyhoeddi." + +#: acf.php:592 +msgid "Field group saved." +msgstr "Y grŵp maes wedi'i gadw." + +#: acf.php:593 +msgid "Field group submitted." +msgstr "Y grŵp maes wedi'i gyflwyno." + +#: acf.php:594 +msgid "Field group scheduled for." +msgstr "Y grŵp maes wedi'i amserlennu." + +#: acf.php:595 +msgid "Field group draft updated." +msgstr "Y drafft grŵp maes wedi'i ddiweddaru." + +#: acf.php:730 +msgid "Thumbnail" +msgstr "Llun Bach" + +#: acf.php:731 +msgid "Medium" +msgstr "Canolig" + +#: acf.php:732 +msgid "Large" +msgstr "Mawr" + +#: acf.php:733 +msgid "Full" +msgstr "Llawn" + +#: core/actions/export.php:26 core/views/meta_box_fields.php:58 +msgid "Error" +msgstr "Gwall" + +#: core/actions/export.php:33 +msgid "No ACF groups selected" +msgstr "Dim grwpiau ACF wedi'u dewis" + +#: core/api.php:1162 +msgid "Update" +msgstr "Diweddaru" + +#: core/api.php:1163 +msgid "Post updated" +msgstr "Diweddarwyd y cofnod" + +#: core/controllers/addons.php:42 core/controllers/field_groups.php:307 +msgid "Add-ons" +msgstr "Ychwanegion" + +#: core/controllers/addons.php:130 core/controllers/field_groups.php:429 +msgid "Repeater Field" +msgstr "Maes Ailadrodd" + +#: core/controllers/addons.php:131 +msgid "Create infinite rows of repeatable data with this versatile interface!" +msgstr "Creu rhesi diddiwedd o ddata ailadrodd gyda'r rhyngwyneb amlbwrpas yma!" + +#: core/controllers/addons.php:137 core/controllers/field_groups.php:437 +msgid "Gallery Field" +msgstr "Maes Oriel" + +#: core/controllers/addons.php:138 +msgid "Create image galleries in a simple and intuitive interface!" +msgstr "Creu orielau delweddau mewn rhyngwyneb syml a hawdd ei ddefnyddio!" + +#: core/controllers/addons.php:144 core/controllers/field_groups.php:445 +msgid "Options Page" +msgstr "Tudalen Opsiynau" + +#: core/controllers/addons.php:145 +msgid "Create global data to use throughout your website!" +msgstr "Creu data cyffredinol i'w ddefnyddio ledled eich gwefan!" + +#: core/controllers/addons.php:151 +msgid "Flexible Content Field" +msgstr "Maes Cynnwys Hyblyg" + +#: core/controllers/addons.php:152 +msgid "Create unique designs with a flexible content layout manager!" +msgstr "Creu cynlluniau unigryw gyda rheolwr cynllun cynnwys hyblyg!" + +#: core/controllers/addons.php:161 +msgid "Gravity Forms Field" +msgstr "Maes Ffurflenni Disgyrchiant" + +#: core/controllers/addons.php:162 +msgid "Creates a select field populated with Gravity Forms!" +msgstr "Creu maes dewis sy'n defnyddio Ffurflenni Disgyrchiant!" + +#: core/controllers/addons.php:168 +msgid "Date & Time Picker" +msgstr "Dewiswr Dyddiad ac Amser" + +#: core/controllers/addons.php:169 +msgid "jQuery date & time picker" +msgstr "jQuery dewiswr dyddiad ac amser" + +#: core/controllers/addons.php:175 +msgid "Location Field" +msgstr "Maes Lleoliad" + +#: core/controllers/addons.php:176 +msgid "Find addresses and coordinates of a desired location" +msgstr "Dod o hyd i gyfeiriadau a chyfesurynnau lleoliad penodol" + +#: core/controllers/addons.php:182 +msgid "Contact Form 7 Field" +msgstr "Maes Contact Form 7" + +#: core/controllers/addons.php:183 +msgid "Assign one or more contact form 7 forms to a post" +msgstr "Pennu un nu ragor o ffurflenni Contact Form 7 i gofnod" + +#: core/controllers/addons.php:193 +msgid "Advanced Custom Fields Add-Ons" +msgstr "Ychwanegion Advanced Custom Fields" + +#: core/controllers/addons.php:196 +msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin." +msgstr "Mae'r Ychwanegion canlynol ar gael er mwyn cynyddu pa mor ymarferol yw'r ategyn Advanced Custom Fields." + +#: core/controllers/addons.php:197 +msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)." +msgstr "Gall pob Ychwanegyn gael ei osod fel ategyn ar wahân (yn derbyn diweddariadau) neu ei gynnwys yn eich thema (ddim yn derbyn diweddariadau)." + +#: core/controllers/addons.php:219 core/controllers/addons.php:240 +msgid "Installed" +msgstr "Wedi'i osod" + +#: core/controllers/addons.php:221 +msgid "Purchase & Install" +msgstr "Prynu a Gosod" + +#: core/controllers/addons.php:242 core/controllers/field_groups.php:422 +#: core/controllers/field_groups.php:431 core/controllers/field_groups.php:439 +#: core/controllers/field_groups.php:447 core/controllers/field_groups.php:455 +msgid "Download" +msgstr "Llwytho i Lawr" + +#: core/controllers/export.php:50 core/controllers/export.php:159 +msgid "Export" +msgstr "Allforio" + +#: core/controllers/export.php:216 +msgid "Export Field Groups" +msgstr "Allforio Grwpiau Maes" + +#: core/controllers/export.php:221 +msgid "Field Groups" +msgstr "Grwpiau Maes" + +#: core/controllers/export.php:222 +msgid "Select the field groups to be exported" +msgstr "Dewiswch y grwpiau maes i'w hallforio" + +#: core/controllers/export.php:239 core/controllers/export.php:252 +msgid "Export to XML" +msgstr "Allforio i XML" + +#: core/controllers/export.php:242 core/controllers/export.php:267 +msgid "Export to PHP" +msgstr "Allforio i PHP" + +#: core/controllers/export.php:253 +msgid "ACF will create a .xml export file which is compatible with the native WP import plugin." +msgstr "Bydd ACF yn creu ffeil allforio .xml sy'n gydnaws â'r ategyn mewnforio WP cynhenid." + +#: core/controllers/export.php:254 +msgid "Imported field groups will appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites." +msgstr "Bydd grwpiau maes a fewnforiwyd yn ymddangos yn y rhestr o grwpiau maes y gellir eu golygu. Mae hyn yn ddefnyddiol ar gyfer mudo grwpiau maes rhwng gwefannau WP." + +#: core/controllers/export.php:256 +msgid "Select field group(s) from the list and click \"Export XML\"" +msgstr "Dewiswch grŵp/grwpiau maes o'r rhestr a chliciwch \"Allforio XML\"" + +#: core/controllers/export.php:257 +msgid "Save the .xml file when prompted" +msgstr "Cadwch y ffeil .xml pan ofynnir i chi wneud hynny" + +#: core/controllers/export.php:258 +msgid "Navigate to Tools » Import and select WordPress" +msgstr "Ewch i Offer a Mewnforio a dewis WordPress" + +#: core/controllers/export.php:259 +msgid "Install WP import plugin if prompted" +msgstr "Gosodwch ategyn mewnbynnu WP os gofynnir i chi wneud hynny" + +#: core/controllers/export.php:260 +msgid "Upload and import your exported .xml file" +msgstr "Llwythwch eich ffeil .xml allforio i fyny a'i mewnforio" + +#: core/controllers/export.php:261 +msgid "Select your user and ignore Import Attachments" +msgstr "Dewiswch eich defnyddiwr ac anwybyddu Mewnforio Atodiadau" + +#: core/controllers/export.php:262 +msgid "That's it! Happy WordPressing" +msgstr "Dyna ni! Mwynhewch ddefnyddio WordPress" + +#: core/controllers/export.php:268 +msgid "ACF will create the PHP code to include in your theme." +msgstr "Bydd ACF yn creu'r cod PHP i'w gynnwys yn eich thema." + +#: core/controllers/export.php:269 core/controllers/export.php:310 +msgid "Registered field groups will not appear in the list of editable field groups. This is useful for including fields in themes." +msgstr "Ni fydd grwpiau maes sydd wedi'u cofrestru yn ymddangos yn y rhestr o grwpiau maes y gellir eu golygu. Mae hyn yn ddefnyddiol ar gyfer cynnwys meysydd mewn themâu." + +#: core/controllers/export.php:270 core/controllers/export.php:311 +msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file." +msgstr "Sylwer: os ydych chi'n allforio ac yn cofrestru grwpiau maes yn yr un WP, byddwch yn gweld mwy nag un maes ar eich sgrin olygu. I drwsio hyn, dylech symud y grŵp maes gwreiddiol i'r bin neu ddileu'r cod o'ch ffeil functions.php." + +#: core/controllers/export.php:272 +msgid "Select field group(s) from the list and click \"Create PHP\"" +msgstr "Dewiswch grŵp/grwpiau maes o'r rhestr a chliciwch \"Creu PHP\"" + +#: core/controllers/export.php:273 core/controllers/export.php:302 +msgid "Copy the PHP code generated" +msgstr "Copïwch y cod PHP sy'n cael ei gynhyrchu" + +#: core/controllers/export.php:274 core/controllers/export.php:303 +msgid "Paste into your functions.php file" +msgstr "Gludwch ef i'ch ffeil functions.php" + +#: core/controllers/export.php:275 core/controllers/export.php:304 +msgid "To activate any Add-ons, edit and use the code in the first few lines." +msgstr "Er mwyn gweithredu eich Ychwanegion, golygwch a defnyddiwch y cod yn yr ychydig linellau cyntaf." + +#: core/controllers/export.php:295 +msgid "Export Field Groups to PHP" +msgstr "Allforio Grwpiau Maes i PHP" + +#: core/controllers/export.php:300 core/fields/tab.php:65 +msgid "Instructions" +msgstr "Cyfarwyddiadau" + +#: core/controllers/export.php:309 +msgid "Notes" +msgstr "Nodiadau" + +#: core/controllers/export.php:316 +msgid "Include in theme" +msgstr "Cynnwys yn y thema" + +#: core/controllers/export.php:317 +msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:" +msgstr "Gellir cynnwys yr ategyn Advanced Custom Fields mewn thema. Er mwyn gwneud hynny, symudwch yr ategyn ACF mewn i'ch thema ac ychwanegu'r cod canlynol i'ch ffeil functions.php:" + +#: core/controllers/export.php:323 +msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file before the include_once code:" +msgstr "Er mwyn dileu pob rhyngwyneb gweledol o'r ategyn ACF, gallwch ddefnyddio cysonyn i alluogi modd lite. Ychwanegwch y cod canlynol i'ch ffeil functions.php cyn y cod include_once:" + +#: core/controllers/export.php:331 +msgid "Back to export" +msgstr "Yn ôl i allforio" + +#: core/controllers/export.php:400 +msgid "No field groups were selected" +msgstr "Ni chafodd grŵp maes ei ddewis" + +#: core/controllers/field_group.php:358 +msgid "Move to trash. Are you sure?" +msgstr "Symud i'r bin. Ydych chi'n siŵr?" + +#: core/controllers/field_group.php:359 +msgid "checked" +msgstr "wedi ticio" + +#: core/controllers/field_group.php:360 +msgid "No toggle fields available" +msgstr "Does dim meysydd toglo ar gael" + +#: core/controllers/field_group.php:361 +msgid "Field group title is required" +msgstr "Mae angen teitl grŵp maes" + +#: core/controllers/field_group.php:362 +msgid "copy" +msgstr "copïo" + +#: core/controllers/field_group.php:363 core/views/meta_box_location.php:62 +#: core/views/meta_box_location.php:159 +msgid "or" +msgstr "neu" + +#: core/controllers/field_group.php:364 core/controllers/field_group.php:395 +#: core/controllers/field_group.php:457 core/controllers/field_groups.php:148 +msgid "Fields" +msgstr "Meysydd" + +#: core/controllers/field_group.php:365 +msgid "Parent fields" +msgstr "Meysydd rhiant" + +#: core/controllers/field_group.php:366 +msgid "Sibling fields" +msgstr "Meysydd sibling*" + +#: core/controllers/field_group.php:367 +msgid "Hide / Show All" +msgstr "Cuddio / Dangos y Cyfan" + +#: core/controllers/field_group.php:396 +msgid "Location" +msgstr "Lleoliad" + +#: core/controllers/field_group.php:397 +msgid "Options" +msgstr "Opsiynau" + +#: core/controllers/field_group.php:459 +msgid "Show Field Key:" +msgstr "Dangos Allwedd Maes:" + +#: core/controllers/field_group.php:460 core/fields/page_link.php:138 +#: core/fields/page_link.php:159 core/fields/post_object.php:328 +#: core/fields/post_object.php:349 core/fields/select.php:224 +#: core/fields/select.php:243 core/fields/taxonomy.php:343 +#: core/fields/user.php:285 core/fields/wysiwyg.php:256 +#: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218 +msgid "No" +msgstr "Na" + +#: core/controllers/field_group.php:461 core/fields/page_link.php:137 +#: core/fields/page_link.php:158 core/fields/post_object.php:327 +#: core/fields/post_object.php:348 core/fields/select.php:223 +#: core/fields/select.php:242 core/fields/taxonomy.php:342 +#: core/fields/user.php:284 core/fields/wysiwyg.php:255 +#: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217 +msgid "Yes" +msgstr "Ie" + +#: core/controllers/field_group.php:645 +msgid "Front Page" +msgstr "Tudalen Flaen" + +#: core/controllers/field_group.php:646 +msgid "Posts Page" +msgstr "Tudalen Cofnodion" + +#: core/controllers/field_group.php:647 +msgid "Top Level Page (parent of 0)" +msgstr "Tudalen Lefel Uchaf (rhiant i 0)" + +#: core/controllers/field_group.php:648 +msgid "Parent Page (has children)" +msgstr "Tudalen Rhiant (sydd â phlant)" + +#: core/controllers/field_group.php:649 +msgid "Child Page (has parent)" +msgstr "Tudalen Plentyn (sydd â rhiant)" + +#: core/controllers/field_group.php:657 +msgid "Default Template" +msgstr "Templed Diofyn" + +#: core/controllers/field_group.php:734 +msgid "Publish" +msgstr "Cyhoeddi" + +#: core/controllers/field_group.php:735 +msgid "Pending Review" +msgstr "Adolygiad dan Ystyriaeth" + +#: core/controllers/field_group.php:736 +msgid "Draft" +msgstr "Drafft" + +#: core/controllers/field_group.php:737 +msgid "Future" +msgstr "Dyfodol" + +#: core/controllers/field_group.php:738 +msgid "Private" +msgstr "Preifat" + +#: core/controllers/field_group.php:739 +msgid "Revision" +msgstr "Adolygiad" + +#: core/controllers/field_group.php:740 +msgid "Trash" +msgstr "Bin" + +#: core/controllers/field_group.php:753 +msgid "Super Admin" +msgstr "Uwch Weinyddwr" + +#: core/controllers/field_group.php:768 core/controllers/field_group.php:789 +#: core/controllers/field_group.php:796 core/fields/file.php:186 +#: core/fields/image.php:170 core/fields/page_link.php:109 +#: core/fields/post_object.php:274 core/fields/post_object.php:298 +#: core/fields/relationship.php:598 core/fields/relationship.php:622 +#: core/fields/user.php:229 +msgid "All" +msgstr "Y Cyfan" + +#: core/controllers/field_groups.php:147 +msgid "Title" +msgstr "Teitl" + +#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253 +msgid "Changelog" +msgstr "Log o Newid" + +#: core/controllers/field_groups.php:217 +msgid "See what's new in" +msgstr "Gweld beth sy'n newydd yn" + +#: core/controllers/field_groups.php:217 +msgid "version" +msgstr "fersiwn" + +#: core/controllers/field_groups.php:219 +msgid "Resources" +msgstr "Adnoddau" + +#: core/controllers/field_groups.php:221 +msgid "Getting Started" +msgstr "Cychwyn" + +#: core/controllers/field_groups.php:222 +msgid "Field Types" +msgstr "Mathau o Feysydd" + +#: core/controllers/field_groups.php:223 +msgid "Functions" +msgstr "Swyddogaethau" + +#: core/controllers/field_groups.php:224 +msgid "Actions" +msgstr "Gweithredoedd" + +#: core/controllers/field_groups.php:225 core/fields/relationship.php:641 +msgid "Filters" +msgstr "Hidlyddion" + +#: core/controllers/field_groups.php:226 +msgid "'How to' guides" +msgstr "Canllawiau 'Sut i'" + +#: core/controllers/field_groups.php:227 +msgid "Tutorials" +msgstr "Tiwtorialau" + +#: core/controllers/field_groups.php:232 +msgid "Created by" +msgstr "Crëwyd gan" + +#: core/controllers/field_groups.php:244 +msgid "Welcome to Advanced Custom Fields" +msgstr "Croeso i Advanced Custom Fields" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.mo index 1991b80..4ae0a0a 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.po index da9cb95..950e245 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-de_DE.po @@ -3,547 +3,516 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields v4.2.0 RC1\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2013-04-27 17:35+0100\n" -"PO-Revision-Date: 2013-08-04 06:16:40-0500\n" -"Last-Translator: Martin Lettner \n" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: \n" +"Language: de_DE\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-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" "X-Poedit-Basepath: .\n" -"X-Poedit-Bookmarks: \n" +"X-Textdomain-Support: yes\n" "X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" +# @ acf #: acf.php:341 -#@ acf msgid "Field Groups" msgstr "Felder-Gruppen" -#: acf.php:342 -#: core/controllers/field_groups.php:214 -#@ acf +# @ acf +#: acf.php:342 core/controllers/field_groups.php:214 msgid "Advanced Custom Fields" msgstr "Eigene Felder" +# @ acf #: acf.php:343 -#@ acf msgid "Add New" msgstr "Neu erstellen" +# @ acf #: acf.php:344 -#@ acf msgid "Add New Field Group" msgstr "Neue Felder-Gruppe erstellen" +# @ acf #: acf.php:345 -#@ acf msgid "Edit Field Group" msgstr "Felder-Gruppe bearbeiten" +# @ acf #: acf.php:346 -#@ acf msgid "New Field Group" msgstr "Neue Felder-Gruppe" +# @ acf #: acf.php:347 -#@ acf msgid "View Field Group" msgstr "Felder-Gruppe anzeigen" +# @ acf #: acf.php:348 -#@ acf msgid "Search Field Groups" msgstr "Felder-Gruppe suchen" +# @ acf #: acf.php:349 -#@ acf msgid "No Field Groups found" msgstr "Keine Felder-Gruppen gefunden" +# @ acf #: acf.php:350 -#@ acf msgid "No Field Groups found in Trash" msgstr "Keine Felder-Gruppen im Papierkorb gefunden" -#: acf.php:458 -#: core/views/meta_box_options.php:96 -#@ acf -#@ default +# @ acf +# @ default +#: acf.php:458 core/views/meta_box_options.php:96 msgid "Custom Fields" msgstr "Eigene Felder" -#: acf.php:476 -#: acf.php:479 -#@ acf +# @ acf +#: acf.php:476 acf.php:479 msgid "Field group updated." msgstr "Felder-Gruppe aktualisiert" +# @ acf #: acf.php:477 -#@ acf msgid "Custom field updated." msgstr "Eigenes Feld aktualisiert" +# @ acf #: acf.php:478 -#@ acf msgid "Custom field deleted." msgstr "Eigenes Feld gelöscht" +# @ acf #. translators: %s: date and time of the revision #: acf.php:481 #, php-format -#@ acf msgid "Field group restored to revision from %s" msgstr "Felder-Gruppe wiederhergestellt von Revision vom %s" +# @ acf #: acf.php:482 -#@ acf msgid "Field group published." msgstr "Felder-Gruppe veröffentlicht" +# @ acf #: acf.php:483 -#@ acf msgid "Field group saved." msgstr "Felder-Gruppe gespeichert" +# @ acf #: acf.php:484 -#@ acf msgid "Field group submitted." msgstr "Felder-Gruppe übertragen" +# @ acf #: acf.php:485 -#@ acf msgid "Field group scheduled for." msgstr "Felder-Gruppe geplant für" +# @ acf #: acf.php:486 -#@ acf msgid "Field group draft updated." msgstr "Entwurf der Felder-Gruppe aktualisiert" +# @ acf #: acf.php:621 -#@ acf msgid "Thumbnail" msgstr "Miniaturbild" +# @ acf #: acf.php:622 -#@ acf msgid "Medium" msgstr "Mittel" +# @ acf #: acf.php:623 -#@ acf msgid "Large" msgstr "Groß" +# @ acf #: acf.php:624 -#@ acf msgid "Full" msgstr "Volle Größe" +# @ acf #: core/controllers/field_group.php:377 -#@ acf msgid "Options" msgstr "Optionen" -#: core/controllers/addons.php:144 -#: core/controllers/export.php:380 +# @ acf +#: core/controllers/addons.php:144 core/controllers/export.php:380 #: core/controllers/field_groups.php:448 -#@ acf msgid "Options Page" msgstr "Optionen-Seite" -#: core/fields/checkbox.php:174 -#: core/fields/message.php:20 -#: core/fields/radio.php:209 -#: core/fields/tab.php:20 -#@ acf +# @ acf +#: core/fields/checkbox.php:174 core/fields/message.php:20 +#: core/fields/radio.php:209 core/fields/tab.php:20 msgid "Layout" msgstr "Layout" +# @ acf #: core/views/meta_box_fields.php:24 -#@ acf msgid "New Field" msgstr "Neues Feld" +# @ acf #: core/views/meta_box_fields.php:88 -#@ acf msgid "Field Order" msgstr "Sortierung" -#: core/views/meta_box_fields.php:89 -#: core/views/meta_box_fields.php:141 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141 msgid "Field Label" msgstr "Bezeichnung" -#: core/views/meta_box_fields.php:90 -#: core/views/meta_box_fields.php:157 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157 msgid "Field Name" msgstr "Name" -#: core/fields/taxonomy.php:306 -#: core/fields/user.php:251 -#: core/views/meta_box_fields.php:91 -#: core/views/meta_box_fields.php:173 -#@ acf +# @ acf +#: core/fields/taxonomy.php:306 core/fields/user.php:251 +#: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:173 msgid "Field Type" msgstr "Feld-Typ" -#: core/views/meta_box_fields.php:119 -#: core/views/meta_box_fields.php:122 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122 msgid "Edit this Field" msgstr "Dieses Feld bearbeiten" -#: core/fields/image.php:84 -#: core/views/meta_box_fields.php:122 -#@ acf +# @ acf +#: core/fields/image.php:84 core/views/meta_box_fields.php:122 msgid "Edit" msgstr "Bearbeiten" +# @ acf #: core/views/meta_box_fields.php:123 -#@ acf msgid "Read documentation for this field" msgstr "Dokumentation für dieses Feld" +# @ acf #: core/views/meta_box_fields.php:123 -#@ acf msgid "Docs" msgstr "Hilfe" +# @ acf #: core/views/meta_box_fields.php:124 -#@ acf msgid "Duplicate this Field" msgstr "Dieses Feld duplizieren" +# @ acf #: core/views/meta_box_fields.php:124 -#@ acf msgid "Duplicate" msgstr "Duplizieren" +# @ acf #: core/views/meta_box_fields.php:125 -#@ acf msgid "Delete this Field" msgstr "Dieses Feld löschen" +# @ acf #: core/views/meta_box_fields.php:125 -#@ acf msgid "Delete" msgstr "Löschen" +# @ acf #: core/views/meta_box_fields.php:142 -#@ acf msgid "This is the name which will appear on the EDIT page" msgstr "Diese Bezeichnung wird im Bearbeiten-Fenster angezeigt." +# @ acf #: core/views/meta_box_fields.php:158 -#@ acf msgid "Single word, no spaces. Underscores and dashes allowed" msgstr "Ein Wort, keine Leerzeichen, Unterstrich (_) und Bindestrich (-) erlaubt." +# @ acf #: core/views/meta_box_fields.php:187 -#@ acf msgid "Field Instructions" msgstr "Feld-Anweisungen" +# @ acf #: core/views/meta_box_fields.php:317 -#@ acf msgid "Close Field" msgstr "Feld schließen" +# @ acf #: core/views/meta_box_fields.php:330 -#@ acf msgid "Drag and drop to reorder" msgstr "Mit Drag&Drop anordnen" -#: core/actions/export.php:23 -#: core/views/meta_box_fields.php:58 -#@ acf +# @ acf +#: core/actions/export.php:23 core/views/meta_box_fields.php:58 msgid "Error" msgstr "Fehler" +# @ acf #: core/actions/export.php:30 -#@ acf msgid "No ACF groups selected" msgstr "Keine ACF-Gruppen ausgewählt" -#: core/controllers/addons.php:42 -#: core/controllers/field_groups.php:311 -#@ acf +# @ acf +#: core/controllers/addons.php:42 core/controllers/field_groups.php:311 msgid "Add-ons" msgstr "Zusatz-Module" -#: core/controllers/addons.php:130 -#: core/controllers/field_groups.php:432 -#@ acf +# @ acf +#: core/controllers/addons.php:130 core/controllers/field_groups.php:432 msgid "Repeater Field" msgstr "Wiederholungs-Feld" +# @ acf #: core/controllers/addons.php:131 -#@ acf msgid "Create infinite rows of repeatable data with this versatile interface!" msgstr "Ermöglicht das Erstellen von wiederholbaren Feldern innerhalb einer Felder-Gruppe!" -#: core/controllers/addons.php:137 -#: core/controllers/field_groups.php:440 -#@ acf +# @ acf +#: core/controllers/addons.php:137 core/controllers/field_groups.php:440 msgid "Gallery Field" msgstr "Galerie-Feld" +# @ acf #: core/controllers/addons.php:138 -#@ acf msgid "Create image galleries in a simple and intuitive interface!" msgstr "Erstellen Sie Bildergalerien in einer einfachen und intuitiven Benutzeroberfläche!" +# @ acf #: core/controllers/addons.php:145 -#@ acf msgid "Create global data to use throughout your website!" msgstr "Erstellen Sie Optionen, die Sie überall in Ihrem Theme verwenden können!" +# @ acf #: core/controllers/addons.php:151 -#@ acf msgid "Flexible Content Field" msgstr "Flexibles Inhalts-Feld" +# @ acf #: core/controllers/addons.php:152 -#@ acf msgid "Create unique designs with a flexible content layout manager!" msgstr "Erstellen Sie einzigartige Designs mit einem flexiblen Content-Layout-Manager!" +# @ acf #: core/controllers/addons.php:161 -#@ acf msgid "Gravity Forms Field" msgstr "Gravity Forms Feld" +# @ acf #: core/controllers/addons.php:162 -#@ acf msgid "Creates a select field populated with Gravity Forms!" msgstr "Erstellt ein Auswahlfeld mit Formularen aus Gravity Forms!" +# @ acf #: core/controllers/addons.php:168 -#@ acf msgid "Date & Time Picker" msgstr "Datum & Zeit Auswahl" +# @ acf #: core/controllers/addons.php:169 -#@ acf msgid "jQuery date & time picker" msgstr "Ein jQuery Datum & Zeit Modul" +# @ acf #: core/controllers/addons.php:175 -#@ acf msgid "Location Field" msgstr "Adress-Felder" +# @ acf #: core/controllers/addons.php:176 -#@ acf msgid "Find addresses and coordinates of a desired location" msgstr "Finden Sie Adressen und Koordinaten eines Ortes!" +# @ acf #: core/controllers/addons.php:182 -#@ acf msgid "Contact Form 7 Field" msgstr "Contact Form 7 Felder" +# @ acf #: core/controllers/addons.php:183 -#@ acf msgid "Assign one or more contact form 7 forms to a post" msgstr "Binden Sie Contact Form 7 Formulare ein!" +# @ acf #: core/controllers/addons.php:193 -#@ acf msgid "Advanced Custom Fields Add-Ons" msgstr "Eigene Felder Zusatz-Module" +# @ acf #: core/controllers/addons.php:196 -#@ acf msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin." msgstr "Die folgenden Zusatz-Module erweitern die Funktionalität des Eigene Felder Plugins." +# @ acf #: core/controllers/addons.php:197 -#@ acf msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)." msgstr "Jedes Zusatz-Modul kann als eigenes Plugin installiert werden (inkl. Update-Möglichkeit) oder kann in ein Theme eingebunden werden (ohne Update-Möglichkeit)." -#: core/controllers/addons.php:219 -#: core/controllers/addons.php:240 -#@ acf +# @ acf +#: core/controllers/addons.php:219 core/controllers/addons.php:240 msgid "Installed" msgstr "Installiert" +# @ acf #: core/controllers/addons.php:221 -#@ acf msgid "Purchase & Install" msgstr "Kaufen & Installieren" -#: core/controllers/addons.php:242 -#: core/controllers/field_groups.php:425 -#: core/controllers/field_groups.php:434 -#: core/controllers/field_groups.php:442 -#: core/controllers/field_groups.php:450 -#: core/controllers/field_groups.php:458 -#@ acf +# @ acf +#: core/controllers/addons.php:242 core/controllers/field_groups.php:425 +#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442 +#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458 msgid "Download" msgstr "Herunterladen" -#: core/controllers/export.php:50 -#: core/controllers/export.php:159 -#@ acf +# @ acf +#: core/controllers/export.php:50 core/controllers/export.php:159 msgid "Export" msgstr "Export" +# @ acf #: core/controllers/export.php:216 -#@ acf msgid "Export Field Groups" msgstr "Felder-Gruppen exportieren" +# @ acf #: core/controllers/export.php:221 -#@ acf msgid "Field Groups" msgstr "Felder-Gruppe" +# @ acf #: core/controllers/export.php:222 -#@ acf msgid "Select the field groups to be exported" msgstr "Auswahl der zu exportierenden Felder-Gruppen" -#: core/controllers/export.php:239 -#: core/controllers/export.php:252 -#@ acf +# @ acf +#: core/controllers/export.php:239 core/controllers/export.php:252 msgid "Export to XML" msgstr "Export als XML" -#: core/controllers/export.php:242 -#: core/controllers/export.php:267 -#@ acf +# @ acf +#: core/controllers/export.php:242 core/controllers/export.php:267 msgid "Export to PHP" msgstr "Export als PHP" +# @ acf #: core/controllers/export.php:253 -#@ acf msgid "ACF will create a .xml export file which is compatible with the native WP import plugin." msgstr "ACF erstellt eine .xml-Export-Datei welche kompatibel ist zum Standard-WP-Import-Plugin." +# @ acf #: core/controllers/export.php:254 -#@ acf msgid "Imported field groups will appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites." msgstr "Importierte Felder-Gruppen werden in der Liste der bearbeitbaren Felder-Gruppen angezeigt um Felder-Gruppen zwischen WP-Websites auszutauschen." +# @ acf #: core/controllers/export.php:256 -#@ acf msgid "Select field group(s) from the list and click \"Export XML\"" msgstr "Wählen Sie die Felder-Gruppen aus der Liste und wählen Sie \"XML exportieren\"" +# @ acf #: core/controllers/export.php:257 -#@ acf msgid "Save the .xml file when prompted" msgstr "Speichern Sie die .xml-Datei bei Nachfrage" +# @ acf #: core/controllers/export.php:258 -#@ acf msgid "Navigate to Tools » Import and select WordPress" msgstr "Wechseln Sie zu Werkzeuge » Importieren und wählen Sie WordPress" +# @ acf #: core/controllers/export.php:259 -#@ acf msgid "Install WP import plugin if prompted" msgstr "Installieren Sie das WP-Import-Plugin falls nötig" +# @ acf #: core/controllers/export.php:260 -#@ acf msgid "Upload and import your exported .xml file" msgstr "Importieren Sie Ihre exportierte .xml-Datei" +# @ acf #: core/controllers/export.php:261 -#@ acf msgid "Select your user and ignore Import Attachments" msgstr "Wählen Sie Ihren Benutzer und ignorieren Sie \"Anhänge importieren\"" +# @ acf #: core/controllers/export.php:262 -#@ acf msgid "That's it! Happy WordPressing" msgstr "Das war's! Viel Spaß mit Wordpress!" +# @ acf #: core/controllers/export.php:268 -#@ acf msgid "ACF will create the PHP code to include in your theme." msgstr "ACF erstellt einen PHP-Code der in einem Theme verwendet werden kann. Diese Felder-Gruppen werden als Registrierte Felder-Gruppen bezeichnet." -#: core/controllers/export.php:269 -#: core/controllers/export.php:310 -#@ acf +# @ acf +#: core/controllers/export.php:269 core/controllers/export.php:310 msgid "Registered field groups will not appear in the list of editable field groups. This is useful for including fields in themes." msgstr "Registrierte Felder-Gruppen werden nicht in der Liste der zu bearbeitenden Felder-Gruppen angezeigt. Dies ist besonders für die Einbindung in Themes nützlich." -#: core/controllers/export.php:270 -#: core/controllers/export.php:311 -#@ acf +# @ acf +#: core/controllers/export.php:270 core/controllers/export.php:311 msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file." msgstr "Wenn Sie die exportierte Felder-Gruppe und gleichzeitig die Registrierte Felder-Gruppe verwenden, werden die Felder im Bearbeitungs-Fenster doppelt angezeigt. Um dies zu verhindern, löschen Sie bitte die Felder-Gruppe oder entfernen den PHP-Code aus der Datei functions.php." +# @ acf #: core/controllers/export.php:272 -#@ acf msgid "Select field group(s) from the list and click \"Create PHP\"" msgstr "Felder-Gruppen aus der Liste auswählen und \"PHP-Code erzeugen\" anklicken" -#: core/controllers/export.php:273 -#: core/controllers/export.php:302 -#@ acf +# @ acf +#: core/controllers/export.php:273 core/controllers/export.php:302 msgid "Copy the PHP code generated" msgstr "Den generierten PHP-Code kopieren" -#: core/controllers/export.php:274 -#: core/controllers/export.php:303 -#@ acf +# @ acf +#: core/controllers/export.php:274 core/controllers/export.php:303 msgid "Paste into your functions.php file" msgstr "In der Datei functions.php einfügen" -#: core/controllers/export.php:275 -#: core/controllers/export.php:304 -#@ acf +# @ acf +#: core/controllers/export.php:275 core/controllers/export.php:304 msgid "To activate any Add-ons, edit and use the code in the first few lines." msgstr "Um ein Zusatz-Modul zu aktivieren, editieren Sie den PHP-Code in den ersten Zeilen des PHP-Codes in der Datei functions.php" +# @ acf #: core/controllers/export.php:295 -#@ acf msgid "Export Field Groups to PHP" msgstr "Felder-Gruppen als PHP exportieren" -#: core/controllers/export.php:300 -#: core/fields/tab.php:65 -#@ acf +# @ acf +#: core/controllers/export.php:300 core/fields/tab.php:65 msgid "Instructions" msgstr "Anweisungen" +# @ acf #: core/controllers/export.php:309 -#@ acf msgid "Notes" msgstr "Hinweise" +# @ acf #: core/controllers/export.php:316 -#@ acf msgid "Include in theme" msgstr "Im Theme einbinden" +# @ acf #: core/controllers/export.php:317 -#@ acf msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:" msgstr "Das Eigene Felder Plugin kann in ein Theme eingebunden werden. Kopieren Sie den Ordner des Eigene Felder Plugins in Ihren Theme Ordner und fügen den folgenden Code in Ihre Datei functions.php:" +# @ acf #: core/controllers/export.php:331 -#@ acf msgid "Back to export" msgstr "Zurück zum Export" +# @ acf #: core/controllers/export.php:352 -#@ acf msgid "" "/**\n" " * Install Add-ons\n" @@ -563,16 +532,14 @@ msgid "" " */" msgstr "" -#: core/controllers/export.php:370 -#: core/controllers/field_group.php:375 -#: core/controllers/field_group.php:437 -#: core/controllers/field_groups.php:148 -#@ acf +# @ acf +#: core/controllers/export.php:370 core/controllers/field_group.php:375 +#: core/controllers/field_group.php:437 core/controllers/field_groups.php:148 msgid "Fields" msgstr "Felder" +# @ acf #: core/controllers/export.php:384 -#@ acf msgid "" "/**\n" " * Register Field Groups\n" @@ -582,1558 +549,1480 @@ msgid "" " */" msgstr "" +# @ acf #: core/controllers/export.php:435 -#@ acf msgid "No field groups were selected" msgstr "Keine Felder-Gruppe ausgewählt" +# @ acf #: core/controllers/field_group.php:376 -#@ acf msgid "Location" msgstr "Position" +# @ acf #: core/controllers/field_group.php:439 -#@ acf msgid "Show Field Key:" msgstr "Zeige Feld-Schlüssel:" -#: core/controllers/field_group.php:440 -#: core/fields/page_link.php:138 -#: core/fields/page_link.php:159 -#: core/fields/post_object.php:328 -#: core/fields/post_object.php:349 -#: core/fields/select.php:224 -#: core/fields/select.php:243 -#: core/fields/taxonomy.php:341 -#: core/fields/user.php:285 -#: core/fields/wysiwyg.php:229 -#: core/views/meta_box_fields.php:209 -#: core/views/meta_box_fields.php:232 -#@ acf +# @ acf +#: core/controllers/field_group.php:440 core/fields/page_link.php:138 +#: core/fields/page_link.php:159 core/fields/post_object.php:328 +#: core/fields/post_object.php:349 core/fields/select.php:224 +#: core/fields/select.php:243 core/fields/taxonomy.php:341 +#: core/fields/user.php:285 core/fields/wysiwyg.php:229 +#: core/views/meta_box_fields.php:209 core/views/meta_box_fields.php:232 msgid "No" msgstr "Nein" -#: core/controllers/field_group.php:441 -#: core/fields/page_link.php:137 -#: core/fields/page_link.php:158 -#: core/fields/post_object.php:327 -#: core/fields/post_object.php:348 -#: core/fields/select.php:223 -#: core/fields/select.php:242 -#: core/fields/taxonomy.php:340 -#: core/fields/user.php:284 -#: core/fields/wysiwyg.php:228 -#: core/views/meta_box_fields.php:208 -#: core/views/meta_box_fields.php:231 -#@ acf +# @ acf +#: core/controllers/field_group.php:441 core/fields/page_link.php:137 +#: core/fields/page_link.php:158 core/fields/post_object.php:327 +#: core/fields/post_object.php:348 core/fields/select.php:223 +#: core/fields/select.php:242 core/fields/taxonomy.php:340 +#: core/fields/user.php:284 core/fields/wysiwyg.php:228 +#: core/views/meta_box_fields.php:208 core/views/meta_box_fields.php:231 msgid "Yes" msgstr "Ja" +# @ acf #: core/controllers/field_group.php:618 -#@ acf msgid "Front Page" msgstr "Startseite" +# @ acf #: core/controllers/field_group.php:619 -#@ acf msgid "Posts Page" msgstr "Beitragseite" +# @ acf #: core/controllers/field_group.php:620 -#@ acf msgid "Top Level Page (parent of 0)" msgstr "Hauptseite (keine Übergeordnete)" +# @ acf #: core/controllers/field_group.php:621 -#@ acf msgid "Parent Page (has children)" msgstr "Eltern-Seite (hat Unterseiten)" +# @ acf #: core/controllers/field_group.php:622 -#@ acf msgid "Child Page (has parent)" msgstr "Kinder-Seite (hat übergeordnete Seite)" +# @ acf #: core/controllers/field_group.php:630 -#@ acf msgid "Default Template" msgstr "Standard-Vorlage" -#: core/controllers/field_group.php:722 -#: core/controllers/field_group.php:743 -#: core/controllers/field_group.php:750 -#: core/fields/file.php:184 -#: core/fields/image.php:170 -#: core/fields/page_link.php:109 -#: core/fields/post_object.php:274 -#: core/fields/post_object.php:298 -#: core/fields/relationship.php:574 -#: core/fields/relationship.php:598 +# @ acf +#: core/controllers/field_group.php:722 core/controllers/field_group.php:743 +#: core/controllers/field_group.php:750 core/fields/file.php:184 +#: core/fields/image.php:170 core/fields/page_link.php:109 +#: core/fields/post_object.php:274 core/fields/post_object.php:298 +#: core/fields/relationship.php:574 core/fields/relationship.php:598 #: core/fields/user.php:229 -#@ acf msgid "All" msgstr "Alle" +# @ default #: core/controllers/field_groups.php:147 -#@ default msgid "Title" msgstr "Titel" -#: core/controllers/field_groups.php:216 -#: core/controllers/field_groups.php:257 -#@ acf +# @ acf +#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257 msgid "Changelog" msgstr "Versionshinweise" +# @ acf #: core/controllers/field_groups.php:217 -#@ acf msgid "See what's new in" msgstr "Neuerungen von" +# @ acf #: core/controllers/field_groups.php:217 -#@ acf msgid "version" msgstr "Version" +# @ acf #: core/controllers/field_groups.php:219 -#@ acf msgid "Resources" msgstr "Ressourcen (engl.)" +# @ acf #: core/controllers/field_groups.php:221 -#@ acf msgid "Getting Started" msgstr "Erste Schritte" +# @ acf #: core/controllers/field_groups.php:222 -#@ acf msgid "Field Types" msgstr "Feld Typen" +# @ acf #: core/controllers/field_groups.php:223 -#@ acf msgid "Functions" msgstr "Funktionen" +# @ acf #: core/controllers/field_groups.php:224 -#@ acf msgid "Actions" msgstr "Aktionen" -#: core/controllers/field_groups.php:225 -#: core/fields/relationship.php:617 -#@ acf +# @ acf +#: core/controllers/field_groups.php:225 core/fields/relationship.php:617 msgid "Filters" msgstr "Filter" +# @ acf #: core/controllers/field_groups.php:226 -#@ acf msgid "'How to' guides" msgstr "'How to' Anleitungen" +# @ acf #: core/controllers/field_groups.php:227 -#@ acf msgid "Tutorials" msgstr "Tutorials" +# @ acf #: core/controllers/field_groups.php:232 -#@ acf msgid "Created by" msgstr "Erstellt von" +# @ acf #: core/controllers/field_groups.php:235 -#@ acf msgid "Vote" msgstr "Bewerten" +# @ acf #: core/controllers/field_groups.php:236 -#@ acf msgid "Follow" msgstr "Folgen" +# @ acf #: core/controllers/field_groups.php:248 -#@ acf msgid "Welcome to Advanced Custom Fields" msgstr "Willkommen zu Eigene Felder (ACF)" +# @ acf #: core/controllers/field_groups.php:249 -#@ acf msgid "Thank you for updating to the latest version!" msgstr "Danke für das Update auf die aktuellste Version!" +# @ acf #: core/controllers/field_groups.php:249 -#@ acf msgid "is more polished and enjoyable than ever before. We hope you like it." msgstr "ist besser und attraktiver als je zuvor. Wir hoffen es gefällt!" +# @ acf #: core/controllers/field_groups.php:256 -#@ acf msgid "What’s New" msgstr "Was ist neu" +# @ acf #: core/controllers/field_groups.php:259 -#@ acf msgid "Download Add-ons" msgstr "Zusatz-Module herunterladen" +# @ acf #: core/controllers/field_groups.php:313 -#@ acf msgid "Activation codes have grown into plugins!" msgstr "Aktivierungs-Codes sind Schnee von gestern!" +# @ acf #: core/controllers/field_groups.php:314 -#@ acf msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way." msgstr "Zusatz-Module werden nun als eigenständige Plugins angeboten und nach der Installation aktiviert. Und obwohl die Zusatz-Module nicht im WordPress Plugin-Verzeichnis aufgeführt sind, können Sie dennoch über die Update-Funktion aktuell gehalten werden." +# @ acf #: core/controllers/field_groups.php:320 -#@ acf msgid "All previous Add-ons have been successfully installed" msgstr "Alle bisherigen Zusatz-Module wurden erfolgreich aktualisiert" +# @ acf #: core/controllers/field_groups.php:324 -#@ acf msgid "This website uses premium Add-ons which need to be downloaded" msgstr "Diese Webseite nutzt Zusatz-Module mit Aktivierungs-Code, die nun heruntergeladen werden müssen." +# @ acf #: core/controllers/field_groups.php:324 -#@ acf msgid "Download your activated Add-ons" msgstr "Lade die aktivierten Zusatz-Module" +# @ acf #: core/controllers/field_groups.php:329 -#@ acf msgid "This website does not use premium Add-ons and will not be affected by this change." msgstr "Diese Webseite nutzt keine Zusatz-Module mit Aktivierungs-Code und ist dadurch nicht betroffen." +# @ acf #: core/controllers/field_groups.php:339 -#@ acf msgid "Easier Development" msgstr "Noch einfachere Entwicklungsmöglichkeiten" +# @ acf #: core/controllers/field_groups.php:341 -#@ acf msgid "New Field Types" msgstr "Neue Feld-Typen" +# @ acf #: core/controllers/field_groups.php:343 -#@ acf msgid "Taxonomy Field" msgstr "Artikel-Beziehung" +# @ acf #: core/controllers/field_groups.php:344 -#@ acf msgid "User Field" msgstr "Benutzer Feld" +# @ acf #: core/controllers/field_groups.php:345 -#@ acf msgid "Email Field" msgstr "E-Mail Feld" +# @ acf #: core/controllers/field_groups.php:346 -#@ acf msgid "Password Field" msgstr "Passwort Feld" +# @ acf #: core/controllers/field_groups.php:348 -#@ acf msgid "Custom Field Types" msgstr "Eigene Felder" +# @ acf #: core/controllers/field_groups.php:349 -#@ acf msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4." msgstr "Nie war es einfacher benutzerdefinierte Felder zu erstellen. Leider sind die Feld-Typen der Version 3 nicht kompatibel mit den Feld-Typen der Version 4." +# @ acf #: core/controllers/field_groups.php:350 -#@ acf msgid "Migrating your field types is easy, please" msgstr "Das Anpassen der Feld-Typen ist einfach: Bitte nutzen Sie" +# @ acf #: core/controllers/field_groups.php:350 -#@ acf msgid "follow this tutorial" msgstr "dieses Tutorial (engl.)" +# @ acf #: core/controllers/field_groups.php:350 -#@ acf msgid "to learn more." msgstr ", um mehr darüber zu erfahren." +# @ acf #: core/controllers/field_groups.php:352 -#@ acf msgid "Actions & Filters" msgstr "Actions & Filters" +# @ acf #: core/controllers/field_groups.php:353 -#@ acf msgid "read this guide" msgstr "diese Hinweise (engl.)" +# @ acf #: core/controllers/field_groups.php:353 -#@ acf msgid "to find the updated naming convention." msgstr "für detaillierte Informationen." +# @ acf #: core/controllers/field_groups.php:355 -#@ acf msgid "Preview draft is now working!" msgstr "Die Vorschau funktioniert jetzt auch!" +# @ acf #: core/controllers/field_groups.php:356 -#@ acf msgid "This bug has been squashed along with many other little critters!" msgstr "Dieser Fehler wurde zusammen mit vielen anderen behoben!" +# @ acf #: core/controllers/field_groups.php:356 -#@ acf msgid "See the full changelog" msgstr "Alle Anpassungen (engl.)" +# @ acf #: core/controllers/field_groups.php:360 -#@ acf msgid "Important" msgstr "Wichtig" +# @ acf #: core/controllers/field_groups.php:362 -#@ acf msgid "Database Changes" msgstr "Datenbank Anpassungen" +# @ acf #: core/controllers/field_groups.php:363 -#@ acf msgid "Absolutely no changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues." msgstr "Es wurden keine Änderungen in der Datenbank-Struktur zwischen Version 3 und 4 vorgenommen. Das bedeutet, dass Sie jederzeit zurück zu Version 3 wechseln können." +# @ acf #: core/controllers/field_groups.php:365 -#@ acf msgid "Potential Issues" msgstr "Mögliche Probleme" +# @ acf #: core/controllers/field_groups.php:366 -#@ acf -msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full" +msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full" msgstr "Durch die umfänglichen Änderungen hinsichtlich der Zusatz-Module, der Feld-Typen und der Actions/Filters, kann es passieren, dass Ihre Webseite nicht hundertprozentig funktioniert. Von daher ist es wichtig, dass Sie den" +# @ acf #: core/controllers/field_groups.php:366 -#@ acf msgid "Migrating from v3 to v4" msgstr "Leitfaden Migration von v3 zu v4 (engl.)" +# @ acf #: core/controllers/field_groups.php:366 -#@ acf msgid "guide to view the full list of changes." msgstr "unbedingt lesen, um einen Überblick über alle Änderungen zu erhalten." +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "Really Important!" msgstr "Wirklich wichtig!" +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "version 3" msgstr "Version 3" +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "of this plugin." msgstr "dieses Plugins zurückwechseln." +# @ acf #: core/controllers/field_groups.php:374 -#@ acf msgid "Thank You" msgstr "Danke!" +# @ acf #: core/controllers/field_groups.php:375 -#@ acf msgid "A BIG thank you to everyone who has helped test the version 4 beta and for all the support I have received." msgstr "Mein besonderer Dank geht an all diejenigen, die beim Testen der Version geholfen haben und für all die Unterstützung die ich erhalten habe." +# @ acf #: core/controllers/field_groups.php:376 -#@ acf msgid "Without you all, this release would not have been possible!" msgstr "Ohne diese Unterstützung wäre diese Version nie entstanden!" +# @ acf #: core/controllers/field_groups.php:380 -#@ acf msgid "Changelog for" msgstr "Versionshinweise für" +# @ acf #: core/controllers/field_groups.php:396 -#@ acf msgid "Learn more" msgstr "Ich möchte mehr wissen" +# @ acf #: core/controllers/field_groups.php:402 -#@ acf msgid "Overview" msgstr "Übersicht" +# @ acf #: core/controllers/field_groups.php:404 -#@ acf msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated." msgstr "Bisher wurden alle Zusatz-Module über einen Aktivierungscode (gekauft im ACF Store) aktiviert. In Version 4 werden alle Zusatz-Module als separate Plugins angeboten, die einzeln heruntergeladen, installiert und aktualisiert werden müssen." +# @ acf #: core/controllers/field_groups.php:406 -#@ acf msgid "This page will assist you in downloading and installing each available Add-on." msgstr "Diese Seite soll Ihnen beim Herunterladen und bei der Installation Ihrer Zusatz-Module helfen." +# @ acf #: core/controllers/field_groups.php:408 -#@ acf msgid "Available Add-ons" msgstr "Verfügbare Zusatz-Module" +# @ acf #: core/controllers/field_groups.php:410 -#@ acf msgid "The following Add-ons have been detected as activated on this website." msgstr "Die folgenden Zusatz-Module wurde als aktive Zusatz-Module erkannt." +# @ acf #: core/controllers/field_groups.php:423 -#@ acf msgid "Name" msgstr "Name" +# @ acf #: core/controllers/field_groups.php:424 -#@ acf msgid "Activation Code" msgstr "Aktivierungs-Code" +# @ acf #: core/controllers/field_groups.php:456 -#@ acf msgid "Flexible Content" msgstr "Flexibler Inhalt" +# @ acf #: core/controllers/field_groups.php:466 -#@ acf msgid "Installation" msgstr "Installation" +# @ acf #: core/controllers/field_groups.php:468 -#@ acf msgid "For each Add-on available, please perform the following:" msgstr "Für jedes Zusatz-Modul gehen Sie wie folgt vor:" +# @ acf #: core/controllers/field_groups.php:470 -#@ acf msgid "Download the Add-on plugin (.zip file) to your desktop" msgstr "Laden Sie das Zusatz-Modul Plugin (.zip Datei) herunter" +# @ acf #: core/controllers/field_groups.php:471 -#@ acf msgid "Navigate to" msgstr "Gehen Sie zu" +# @ acf #: core/controllers/field_groups.php:471 -#@ acf msgid "Plugins > Add New > Upload" msgstr "Plugins > Installieren > Hochladen" +# @ acf #: core/controllers/field_groups.php:472 -#@ acf msgid "Use the uploader to browse, select and install your Add-on (.zip file)" msgstr "Wählen Sie über \"Durchsuchen\" die .zip-Datei und laden so das Zusatz-Modul in WordPress" +# @ acf #: core/controllers/field_groups.php:473 -#@ acf msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link" msgstr "Wenn das Plugin hochgeladen und installiert wurde, aktivieren Sie das Plugin über den \"Aktivieren\"-Link" +# @ acf #: core/controllers/field_groups.php:474 -#@ acf msgid "The Add-on is now installed and activated!" msgstr "Das Zusatz-Modul ist nun installiert und aktiviert!" +# @ acf #: core/controllers/field_groups.php:488 -#@ acf msgid "Awesome. Let's get to work" msgstr "Toll. Dann mal los!" +# @ acf #: core/controllers/input.php:499 -#@ acf msgid "Validation Failed. One or more fields below are required." msgstr "Fehler bei Überprüfung: Ein oder mehrere Felder werden benötigt." +# @ acf #: core/fields/relationship.php:28 -#@ acf msgid "Maximum values reached ( {max} values )" msgstr "Max. Werte erreicht ( {max} Werte )" +# @ acf #: core/controllers/upgrade.php:86 -#@ acf msgid "Upgrade" msgstr "Aktualisieren" +# @ acf #: core/controllers/upgrade.php:684 -#@ acf msgid "Modifying field group options 'show on page'" msgstr "Anpassung Feld-Gruppe Optionen 'Zeige auf Seite'" +# @ acf #: core/controllers/upgrade.php:738 -#@ acf msgid "Modifying field option 'taxonomy'" msgstr "Anpassung Feld-Optionen 'Taxonomie'" +# @ acf #: core/controllers/upgrade.php:835 -#@ acf msgid "Moving user custom fields from wp_options to wp_usermeta'" msgstr "Bewege Benutzer Felder von 'wp_options' nach 'wp_usermeta'" -#: core/fields/_base.php:124 -#: core/views/meta_box_location.php:74 -#@ acf +# @ acf +#: core/fields/_base.php:124 core/views/meta_box_location.php:74 msgid "Basic" msgstr "Grundlegend" -#: core/fields/checkbox.php:19 -#: core/fields/taxonomy.php:317 -#@ acf +# @ acf +#: core/fields/checkbox.php:19 core/fields/taxonomy.php:317 msgid "Checkbox" msgstr "Checkbox" -#: core/fields/checkbox.php:20 -#: core/fields/radio.php:19 -#: core/fields/select.php:19 -#: core/fields/true_false.php:20 -#@ acf +# @ acf +#: core/fields/checkbox.php:20 core/fields/radio.php:19 +#: core/fields/select.php:19 core/fields/true_false.php:20 msgid "Choice" msgstr "Auswahlmöglichkeiten" -#: core/fields/checkbox.php:137 -#: core/fields/radio.php:144 +# @ acf +#: core/fields/checkbox.php:137 core/fields/radio.php:144 #: core/fields/select.php:177 -#@ acf msgid "Choices" msgstr "Auswahlmöglichkeiten" -#: core/fields/checkbox.php:138 -#: core/fields/select.php:178 -#@ acf +# @ acf +#: core/fields/checkbox.php:138 core/fields/select.php:178 msgid "Enter each choice on a new line." msgstr "Eine Auswahlmöglichkeit pro Zeile" -#: core/fields/checkbox.php:139 -#: core/fields/select.php:179 -#@ acf +# @ acf +#: core/fields/checkbox.php:139 core/fields/select.php:179 msgid "For more control, you may specify both a value and label like this:" msgstr "Für eine einfachere Bearbeitung, kann auch der Wert und eine Beschreibung wie in diesem Beispiel angeben werden:" -#: core/fields/checkbox.php:140 -#: core/fields/radio.php:150 +# @ acf +#: core/fields/checkbox.php:140 core/fields/radio.php:150 #: core/fields/select.php:180 -#@ acf msgid "red : Red" msgstr "rot : Rot" -#: core/fields/checkbox.php:140 -#: core/fields/radio.php:151 +# @ acf +#: core/fields/checkbox.php:140 core/fields/radio.php:151 #: core/fields/select.php:180 -#@ acf msgid "blue : Blue" msgstr "blau : Blau" -#: core/fields/checkbox.php:157 -#: core/fields/color_picker.php:89 -#: core/fields/email.php:69 -#: core/fields/number.php:116 -#: core/fields/radio.php:193 -#: core/fields/select.php:197 -#: core/fields/text.php:116 -#: core/fields/textarea.php:96 -#: core/fields/true_false.php:94 -#: core/fields/wysiwyg.php:171 -#@ acf +# @ acf +#: core/fields/checkbox.php:157 core/fields/color_picker.php:89 +#: core/fields/email.php:69 core/fields/number.php:116 +#: core/fields/radio.php:193 core/fields/select.php:197 +#: core/fields/text.php:116 core/fields/textarea.php:96 +#: core/fields/true_false.php:94 core/fields/wysiwyg.php:171 msgid "Default Value" msgstr "Standardwert" -#: core/fields/checkbox.php:158 -#: core/fields/select.php:198 -#@ acf +# @ acf +#: core/fields/checkbox.php:158 core/fields/select.php:198 msgid "Enter each default value on a new line" msgstr "Einen Standardwert pro Zeile. Erfordert, dass die Option 'Mehrere Werte auswählen?' aktiviert ist." +# @ acf #: core/fields/color_picker.php:19 -#@ acf msgid "Color Picker" msgstr "Farbe" -#: core/fields/color_picker.php:20 -#: core/fields/date_picker/date_picker.php:23 -#@ acf +# @ acf +#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23 msgid "jQuery" msgstr "jQuery" +# @ default #: core/fields/dummy.php:19 -#@ default msgid "Dummy" msgstr "Dummy" +# @ acf #: core/fields/email.php:19 -#@ acf msgid "Email" msgstr "E-Mail" +# @ acf #: core/fields/file.php:19 -#@ acf msgid "File" msgstr "Datei" -#: core/fields/file.php:20 -#: core/fields/image.php:20 -#: core/fields/wysiwyg.php:20 -#@ acf +# @ acf +#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20 msgid "Content" msgstr "Inhalt" +# @ acf #: core/fields/image.php:83 -#@ acf msgid "Remove" msgstr "Entfernen" +# @ acf #: core/fields/file.php:121 -#@ acf msgid "No File Selected" msgstr "Keine Datei ausgewählt" +# @ acf #: core/fields/file.php:121 -#@ acf msgid "Add File" msgstr "Datei hinzufügen" -#: core/fields/file.php:151 -#: core/fields/image.php:118 +# @ acf +#: core/fields/file.php:151 core/fields/image.php:118 #: core/fields/taxonomy.php:365 -#@ acf msgid "Return Value" msgstr "Rückgabewert" +# @ acf #: core/fields/file.php:162 -#@ acf msgid "File Object" msgstr "Datei" +# @ acf #: core/fields/file.php:163 -#@ acf msgid "File URL" msgstr "Datei-URL" +# @ acf #: core/fields/file.php:164 -#@ acf msgid "File ID" msgstr "Datei-ID" +# @ acf #: core/fields/file.php:26 -#@ acf msgid "Select File" msgstr "Datei auswählen" +# @ acf #: core/fields/file.php:28 -#@ acf msgid "Update File" msgstr "Datei aktualisieren" +# @ acf #: core/fields/image.php:19 -#@ acf msgid "Image" msgstr "Bild" +# @ acf #: core/fields/image.php:90 -#@ acf msgid "No image selected" msgstr "Kein Bild ausgewählt" +# @ acf #: core/fields/image.php:90 -#@ acf msgid "Add Image" msgstr "Bild hinzufügen" +# @ acf #: core/fields/image.php:129 -#@ acf msgid "Image Object" msgstr "Bild" +# @ acf #: core/fields/image.php:130 -#@ acf msgid "Image URL" msgstr "Bild-URL" +# @ acf #: core/fields/image.php:131 -#@ acf msgid "Image ID" msgstr "Bild-ID" +# @ acf #: core/fields/image.php:139 -#@ acf msgid "Preview Size" msgstr "Größe der Vorschau" +# @ acf #: core/fields/image.php:27 -#@ acf msgid "Select Image" msgstr "Bild auswählen" +# @ acf #: core/fields/image.php:29 -#@ acf msgid "Update Image" msgstr "Bild aktualisieren" -#: core/fields/message.php:19 -#: core/fields/message.php:70 +# @ acf +#: core/fields/message.php:19 core/fields/message.php:70 #: core/fields/true_false.php:79 -#@ acf msgid "Message" msgstr "Nachricht" +# @ acf #: core/fields/message.php:71 -#@ acf msgid "Text & HTML entered here will appear inline with the fields" msgstr "Der Text & HTML wird vor dem nächsten Feld angezeigt" +# @ acf #: core/fields/message.php:72 -#@ acf msgid "Please note that all text will first be passed through the wp function " msgstr "Der gesamte Text wird zuerst gefiltert durch die WP Funktion " +# @ acf #: core/fields/number.php:19 -#@ acf msgid "Number" msgstr "Nummer" +# @ acf #: core/fields/page_link.php:18 -#@ acf msgid "Page Link" msgstr "Link zu Seite" -#: core/fields/page_link.php:19 -#: core/fields/post_object.php:19 -#: core/fields/relationship.php:19 -#: core/fields/taxonomy.php:19 +# @ acf +#: core/fields/page_link.php:19 core/fields/post_object.php:19 +#: core/fields/relationship.php:19 core/fields/taxonomy.php:19 #: core/fields/user.php:19 -#@ acf msgid "Relational" msgstr "Beziehung" -#: core/fields/page_link.php:103 -#: core/fields/post_object.php:268 -#: core/fields/relationship.php:568 -#: core/fields/relationship.php:647 +# @ acf +#: core/fields/page_link.php:103 core/fields/post_object.php:268 +#: core/fields/relationship.php:568 core/fields/relationship.php:647 #: core/views/meta_box_location.php:75 -#@ acf msgid "Post Type" msgstr "Artikel-Typ" -#: core/fields/page_link.php:127 -#: core/fields/post_object.php:317 -#: core/fields/select.php:214 -#: core/fields/taxonomy.php:331 +# @ acf +#: core/fields/page_link.php:127 core/fields/post_object.php:317 +#: core/fields/select.php:214 core/fields/taxonomy.php:331 #: core/fields/user.php:275 -#@ acf msgid "Allow Null?" msgstr "Nichts (NULL) erlauben?" -#: core/fields/page_link.php:148 -#: core/fields/post_object.php:338 +# @ acf +#: core/fields/page_link.php:148 core/fields/post_object.php:338 #: core/fields/select.php:233 -#@ acf msgid "Select multiple values?" msgstr "Mehrere Werte auswählen?" +# @ acf #: core/fields/password.php:19 -#@ acf msgid "Password" msgstr "Passwort" +# @ acf #: core/fields/post_object.php:18 -#@ acf msgid "Post Object" msgstr "Artikel" -#: core/fields/post_object.php:292 -#: core/fields/relationship.php:592 -#@ acf +# @ acf +#: core/fields/post_object.php:292 core/fields/relationship.php:592 msgid "Filter from Taxonomy" msgstr "Mit Beziehung filtern" +# @ acf #: core/fields/radio.php:18 -#@ acf msgid "Radio Button" msgstr "Radio Button" +# @ acf #: core/fields/radio.php:145 -#@ acf msgid "Enter your choices one per line" msgstr "Eine Auswahlmöglichkeit pro Zeile" +# @ acf #: core/fields/radio.php:147 -#@ acf msgid "Red" msgstr "Rot" +# @ acf #: core/fields/radio.php:148 -#@ acf msgid "Blue" msgstr "Blau" -#: core/fields/checkbox.php:185 -#: core/fields/radio.php:220 -#@ acf +# @ acf +#: core/fields/checkbox.php:185 core/fields/radio.php:220 msgid "Vertical" msgstr "Vertikal" -#: core/fields/checkbox.php:186 -#: core/fields/radio.php:221 -#@ acf +# @ acf +#: core/fields/checkbox.php:186 core/fields/radio.php:221 msgid "Horizontal" msgstr "Horizontal" +# @ acf #: core/fields/relationship.php:18 -#@ acf msgid "Relationship" msgstr "Beziehung" +# @ acf #: core/fields/relationship.php:626 -#@ acf msgid "Search" msgstr "Suchen" +# @ acf #: core/fields/relationship.php:627 -#@ acf msgid "Post Type Select" msgstr "Auswahl Artikel-Typ" +# @ acf #: core/fields/relationship.php:635 -#@ acf msgid "Elements" msgstr "Zeige Spalten" +# @ acf #: core/fields/relationship.php:636 -#@ acf msgid "Selected elements will be displayed in each result" msgstr "Ausgewählte Optionen werden in der Liste als Spalten angezeigt" -#: core/fields/relationship.php:645 -#: core/views/meta_box_options.php:103 -#@ acf -#@ default +# @ acf +# @ default +#: core/fields/relationship.php:645 core/views/meta_box_options.php:103 msgid "Featured Image" msgstr "Artikelbild" +# @ acf #: core/fields/relationship.php:646 -#@ acf msgid "Post Title" msgstr "Beitrag-/Seiten-Titel" +# @ acf #: core/fields/relationship.php:658 -#@ acf msgid "Maximum posts" msgstr "Max. Artikel" -#: core/fields/select.php:18 -#: core/fields/select.php:109 -#: core/fields/taxonomy.php:322 -#: core/fields/user.php:266 -#@ acf +# @ acf +#: core/fields/select.php:18 core/fields/select.php:109 +#: core/fields/taxonomy.php:322 core/fields/user.php:266 msgid "Select" msgstr "Auswahlmenü" +# @ acf #: core/fields/tab.php:19 -#@ acf msgid "Tab" msgstr "Tab" +# @ acf #: core/fields/tab.php:68 -#@ acf msgid "All fields proceeding this \"tab field\" (or until another \"tab field\" is defined) will appear grouped on the edit screen." msgstr "Alle Felder nach diesem \"Tab Feld\" (oder bis ein neues \"Tab Feld\" definiert ist) werden innerhalb eines Tabs gruppiert." +# @ acf #: core/fields/tab.php:69 -#@ acf msgid "You can use multiple tabs to break up your fields into sections." msgstr "Es können mehrere Tabs definiert werden, um die Felder in mehrere Tabs aufzuteilen." -#: core/fields/taxonomy.php:18 -#: core/fields/taxonomy.php:276 -#@ acf +# @ acf +#: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276 msgid "Taxonomy" msgstr "Artikel-Beziehung" -#: core/fields/taxonomy.php:211 -#: core/fields/taxonomy.php:220 -#@ acf +# @ acf +#: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220 msgid "None" msgstr "Nur Text" -#: core/fields/taxonomy.php:316 -#: core/fields/user.php:260 -#@ acf +# @ acf +#: core/fields/taxonomy.php:316 core/fields/user.php:260 msgid "Multiple Values" msgstr "Mehrere Werte auswählen?" -#: core/fields/taxonomy.php:318 -#: core/fields/user.php:262 -#@ acf +# @ acf +#: core/fields/taxonomy.php:318 core/fields/user.php:262 msgid "Multi Select" msgstr "Auswahlmenü" -#: core/fields/taxonomy.php:320 -#: core/fields/user.php:264 -#@ acf +# @ acf +#: core/fields/taxonomy.php:320 core/fields/user.php:264 msgid "Single Value" msgstr "Einzelne Werte" +# @ acf #: core/fields/taxonomy.php:321 -#@ acf msgid "Radio Buttons" msgstr "Radio Button" +# @ acf #: core/fields/taxonomy.php:350 -#@ acf msgid "Load & Save Terms to Post" msgstr "Lade & Speichere Einträge im Artikel" +# @ acf #: core/fields/taxonomy.php:358 -#@ acf msgid "Load value based on the post's terms and update the post's terms on save" msgstr "Lade Einträge basierend auf dem Beitrag und aktualisiere die Einträge beim Speichern" +# @ acf #: core/fields/taxonomy.php:375 -#@ acf msgid "Term Object" msgstr "Datei" +# @ acf #: core/fields/taxonomy.php:376 -#@ acf msgid "Term ID" msgstr "Term ID" +# @ acf #: core/fields/text.php:19 -#@ acf msgid "Text" msgstr "Text" -#: core/fields/text.php:131 -#: core/fields/textarea.php:111 -#@ acf +# @ acf +#: core/fields/text.php:131 core/fields/textarea.php:111 msgid "Formatting" msgstr "Formatierung" +# @ acf #: core/fields/textarea.php:19 -#@ acf msgid "Text Area" msgstr "Textfeld" +# @ acf #: core/fields/true_false.php:19 -#@ acf msgid "True / False" msgstr "Ja/Nein" +# @ acf #: core/fields/true_false.php:80 -#@ acf msgid "eg. Show extra content" msgstr "z.B. Mehr Inhalt anzeigen" +# @ acf #: core/fields/user.php:18 -#@ acf msgid "User" msgstr "Benutzer" +# @ acf #: core/fields/user.php:224 -#@ acf msgid "Filter by role" msgstr "Filter nach Benutzer-Rollen" +# @ acf #: core/fields/wysiwyg.php:19 -#@ acf msgid "Wysiwyg Editor" msgstr "WYSIWYG-Editor" +# @ acf #: core/fields/wysiwyg.php:186 -#@ acf msgid "Toolbar" msgstr "Werkzeugleiste" +# @ acf #: core/fields/wysiwyg.php:218 -#@ acf msgid "Show Media Upload Buttons?" msgstr "Schaltflächen zum Hochladen von Medien anzeigen?" +# @ acf #: core/fields/date_picker/date_picker.php:22 -#@ acf msgid "Date Picker" msgstr "Datum" +# @ acf #: core/fields/date_picker/date_picker.php:30 -#@ acf msgid "Done" msgstr "Fertig" +# @ acf #: core/fields/date_picker/date_picker.php:31 -#@ acf msgid "Today" msgstr "Heute" +# @ acf #: core/fields/date_picker/date_picker.php:34 -#@ acf msgid "Show a different month" msgstr "Zeige einen anderen Monat" +# @ acf #: core/fields/date_picker/date_picker.php:105 -#@ acf msgid "Save format" msgstr "Daten-Format" +# @ acf #: core/fields/date_picker/date_picker.php:106 -#@ acf -msgid "This format will determin the value saved to the database and returned via the API" +msgid "This format will determine the value saved to the database and returned via the API" msgstr "Dieses Format wird in der Datenbank gespeichert und per API zurückgegeben." +# @ acf #: core/fields/date_picker/date_picker.php:107 -#@ acf msgid "\"yymmdd\" is the most versatile save format. Read more about" msgstr "\"yymmdd\" ist das gebräuchlichste Format zum Speichern. Lesen Sie mehr über" +# @ acf #: core/fields/date_picker/date_picker.php:107 #: core/fields/date_picker/date_picker.php:123 -#@ acf msgid "jQuery date formats" msgstr "jQuery-Datums-Format" +# @ acf #: core/fields/date_picker/date_picker.php:121 -#@ acf msgid "Display format" msgstr "Darstellungs-Format" +# @ acf #: core/fields/date_picker/date_picker.php:122 -#@ acf msgid "This format will be seen by the user when entering a value" msgstr "Dieses Format wird dem Benutzer angezeigt." +# @ acf #: core/fields/date_picker/date_picker.php:123 -#@ acf msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about" msgstr "\"dd/mm/yy\" oder \"dd.mm.yy\" sind häufig verwendete Formate. Lesen Sie mehr über" +# @ acf #: core/fields/date_picker/date_picker.php:137 -#@ acf msgid "Week Starts On" msgstr "Woche beginnt am" +# @ acf #: core/views/meta_box_fields.php:58 -#@ acf msgid "Field type does not exist" msgstr "Fehler: Feld-Typ existiert nicht!" +# @ acf #: core/views/meta_box_fields.php:63 -#@ acf msgid "Move to trash. Are you sure?" msgstr "Wirklich in den Papierkorb verschieben?" +# @ acf #: core/views/meta_box_fields.php:64 -#@ acf msgid "checked" msgstr "ausgewählt" +# @ acf #: core/views/meta_box_fields.php:65 -#@ acf msgid "No toggle fields available" msgstr "Keine Felder für Bedingungen vorhanden" +# @ acf #: core/views/meta_box_fields.php:67 -#@ acf msgid "copy" msgstr "kopiere" +# @ acf #: core/views/meta_box_fields.php:92 -#@ acf msgid "Field Key" msgstr "Feld-Schlüssel" +# @ acf #: core/views/meta_box_fields.php:104 -#@ acf msgid "No fields. Click the + Add Field button to create your first field." msgstr "Keine Felder vorhanden. Wählen Sie + Feld hinzufügen und erstellen Sie das erste Feld." +# @ acf #: core/views/meta_box_fields.php:188 -#@ acf msgid "Instructions for authors. Shown when submitting data" msgstr "Anweisungen für Autoren, wird beim Absenden von Daten angezeigt." +# @ acf #: core/views/meta_box_fields.php:200 -#@ acf msgid "Required?" msgstr "Erforderlich?" +# @ acf #: core/views/meta_box_fields.php:223 -#@ acf msgid "Conditional Logic" msgstr "Bedingungen für Anzeige" -#: core/views/meta_box_fields.php:274 -#: core/views/meta_box_location.php:116 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:274 core/views/meta_box_location.php:116 msgid "is equal to" msgstr "ist gleich" -#: core/views/meta_box_fields.php:275 -#: core/views/meta_box_location.php:117 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:275 core/views/meta_box_location.php:117 msgid "is not equal to" msgstr "ist nicht gleich" +# @ acf #: core/views/meta_box_fields.php:293 -#@ acf msgid "Show this field when" msgstr "Zeige dieses Feld, wenn" +# @ acf #: core/views/meta_box_fields.php:299 -#@ acf msgid "all" msgstr "alle" +# @ acf #: core/views/meta_box_fields.php:300 -#@ acf msgid "any" msgstr "mindestens eine" +# @ acf #: core/views/meta_box_fields.php:303 -#@ acf msgid "these rules are met" msgstr "diese(r) Regeln erfüllt sind." +# @ acf #: core/views/meta_box_fields.php:331 -#@ acf msgid "+ Add Field" msgstr "+ Feld hinzufügen" +# @ acf #: core/views/meta_box_location.php:48 -#@ acf msgid "Rules" msgstr "Regeln" +# @ acf #: core/views/meta_box_location.php:49 -#@ acf msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" msgstr "Legen Sie mit diesen Regeln fest auf welchen Bearbeitungs-Seiten diese eigenen Felder angezeigt werden sollen." +# @ acf #: core/views/meta_box_location.php:60 -#@ acf msgid "Show this field group if" msgstr "Zeige diese Felder, wenn" -#: core/views/meta_box_fields.php:68 -#: core/views/meta_box_location.php:62 +# @ acf +#: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62 #: core/views/meta_box_location.php:158 -#@ acf msgid "or" msgstr "oder" +# @ acf #: core/views/meta_box_location.php:76 -#@ acf msgid "Logged in User Type" msgstr "Angemeldete Benutzer-Rolle" -#: core/views/meta_box_location.php:78 -#: core/views/meta_box_location.php:79 -#@ acf +# @ acf +#: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79 msgid "Page" msgstr "Seite" +# @ acf #: core/views/meta_box_location.php:80 -#@ acf msgid "Page Type" msgstr "Seiten-Typ" +# @ acf #: core/views/meta_box_location.php:81 -#@ acf msgid "Page Parent" msgstr "Übergeordnete Seite" +# @ acf #: core/views/meta_box_location.php:82 -#@ acf msgid "Page Template" msgstr "Seiten-Vorlage" -#: core/views/meta_box_location.php:84 -#: core/views/meta_box_location.php:85 -#@ acf +# @ acf +#: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85 msgid "Post" msgstr "Artikel" +# @ acf #: core/views/meta_box_location.php:86 -#@ acf msgid "Post Category" msgstr "Artikel-Kategorie" +# @ acf #: core/views/meta_box_location.php:87 -#@ acf msgid "Post Format" msgstr "Artikel-Format" +# @ acf #: core/views/meta_box_location.php:88 -#@ acf msgid "Post Taxonomy" msgstr "Artikel-Beziehung" -#: core/fields/radio.php:102 -#: core/views/meta_box_location.php:90 -#@ acf +# @ acf +#: core/fields/radio.php:102 core/views/meta_box_location.php:90 msgid "Other" msgstr "Sonstige" +# @ acf #: core/views/meta_box_location.php:91 -#@ acf msgid "Taxonomy Term (Add / Edit)" msgstr "Beziehung (Hinzufügen/Bearbeiten)" +# @ acf #: core/views/meta_box_location.php:92 -#@ acf msgid "User (Add / Edit)" msgstr "Benutzer (Hinzufügen/Bearbeiten)" +# @ acf #: core/views/meta_box_location.php:145 -#@ acf msgid "and" msgstr "und" +# @ acf #: core/views/meta_box_location.php:160 -#@ acf msgid "Add rule group" msgstr "Regel-Gruppe hinzufügen" +# @ acf #: core/views/meta_box_options.php:25 -#@ acf msgid "Order No." msgstr "Sortierungs-Nr." +# @ acf #: core/views/meta_box_options.php:26 -#@ acf msgid "Field groups are created in order
    from lowest to highest" msgstr "Felder-Gruppen werden nach diesem Wert sortiert, vom niedrigsten zum höchsten Wert." +# @ acf #: core/views/meta_box_options.php:42 -#@ acf msgid "Position" msgstr "Position" +# @ acf #: core/views/meta_box_options.php:52 -#@ acf msgid "Normal" msgstr "Normal" +# @ acf #: core/views/meta_box_options.php:53 -#@ acf msgid "Side" msgstr "Seitlich" +# @ acf #: core/views/meta_box_options.php:62 -#@ acf msgid "Style" msgstr "Stil" +# @ acf #: core/views/meta_box_options.php:72 -#@ acf msgid "No Metabox" msgstr "Keine Metabox" +# @ acf #: core/views/meta_box_options.php:73 -#@ acf msgid "Standard Metabox" msgstr "Normale Metabox" +# @ acf #: core/views/meta_box_options.php:82 -#@ acf msgid "Hide on screen" msgstr "Verstecken" +# @ acf #: core/views/meta_box_options.php:83 -#@ acf msgid "Select items to hide them from the edit screen" msgstr "Ausgewählte Elemente werden versteckt." +# @ acf #: core/views/meta_box_options.php:84 -#@ acf msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)" msgstr "Sind für einen Bearbeiten-Dialog mehrere Felder-Gruppen definiert, werden die Optionen der ersten Felder-Gruppe angewendet (die mit der niedrigsten Sortierungs-Nummer)." +# @ acf #: core/views/meta_box_options.php:94 -#@ acf msgid "Content Editor" msgstr "Inhalts-Editor" +# @ default #: core/views/meta_box_options.php:95 -#@ default msgid "Excerpt" msgstr "Auszug" +# @ default #: core/views/meta_box_options.php:97 -#@ default msgid "Discussion" msgstr "Diskussion" +# @ default #: core/views/meta_box_options.php:98 -#@ default msgid "Comments" msgstr "Kommentare" +# @ default #: core/views/meta_box_options.php:99 -#@ default msgid "Revisions" msgstr "Revisionen" +# @ default #: core/views/meta_box_options.php:100 -#@ default msgid "Slug" msgstr "Titelform (Slug)" +# @ default #: core/views/meta_box_options.php:101 -#@ default msgid "Author" msgstr "Autor" +# @ default #: core/views/meta_box_options.php:102 -#@ default msgid "Format" msgstr "Format" +# @ default #: core/views/meta_box_options.php:104 -#@ default msgid "Categories" msgstr "Artikel-Kategorie" +# @ default #: core/views/meta_box_options.php:105 -#@ default msgid "Tags" msgstr "Tags" +# @ default #: core/views/meta_box_options.php:106 -#@ default msgid "Send Trackbacks" msgstr "Sende Trackbacks" +# @ acf #: core/api.php:1094 -#@ acf msgid "Update" msgstr "Aktualisieren" +# @ acf #: core/api.php:1095 -#@ acf msgid "Post updated" msgstr "Beitrag aktualisiert" +# @ acf #: core/controllers/export.php:323 -#@ acf msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file before the include_once code:" msgstr "Um alle Admin-Oberflächen des ACF Plugins zu entfernen, kann eine Konstante verwendet werden, um den Lite-Modus zu aktivieren. Dazu muss der folgende Code in die functions.php Datei vor dem include_once Code eingefügt werden:" +# @ acf #: core/controllers/field_groups.php:353 -#@ acf msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please" msgstr "" +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest" msgstr "" +# @ acf #: core/controllers/input.php:495 -#@ acf msgid "Expand Details" msgstr "Details anzeigen" +# @ acf #: core/controllers/input.php:496 -#@ acf msgid "Collapse Details" msgstr "Details ausblenden" +# @ acf #: core/controllers/upgrade.php:139 -#@ acf msgid "What's new" msgstr "Was ist neu" +# @ acf #: core/controllers/upgrade.php:150 -#@ acf msgid "credits" msgstr "Danke an" +# @ acf #: core/fields/file.php:27 -#@ acf msgid "Edit File" msgstr "Datei bearbeiten" -#: core/fields/file.php:29 -#: core/fields/image.php:30 -#@ acf +# @ acf +#: core/fields/file.php:29 core/fields/image.php:30 msgid "uploaded to this post" msgstr "zu diesem Artikel hochgeladen" -#: core/fields/file.php:173 -#: core/fields/image.php:158 -#@ acf +# @ acf +#: core/fields/file.php:173 core/fields/image.php:158 msgid "Library" msgstr "Medien" -#: core/fields/file.php:185 -#: core/fields/image.php:171 -#@ acf +# @ acf +#: core/fields/file.php:185 core/fields/image.php:171 msgid "Uploaded to post" msgstr "zum Artikel hochgeladen" +# @ acf #: core/fields/image.php:28 -#@ acf msgid "Edit Image" msgstr "Bild bearbeiten" +# @ acf #: core/fields/image.php:119 -#@ acf msgid "Specify the returned value on front end" msgstr "Legt den Rückgabewert im Front-End fest" +# @ acf #: core/fields/image.php:140 -#@ acf msgid "Shown when entering data" msgstr "Definiert die angezeigte Größe im Backend" +# @ acf #: core/fields/image.php:159 -#@ acf msgid "Limit the media library choice" msgstr "Bestimmt die mögliche Auswahl in den Medienverwaltung" +# @ acf #: core/fields/number.php:132 -#@ acf msgid "Min" msgstr "Minimum" +# @ acf #: core/fields/number.php:133 -#@ acf msgid "Specifies the minimum value allowed" msgstr "Legt den kleinsten erlaubten Wert fest" +# @ acf #: core/fields/number.php:149 -#@ acf msgid "Max" msgstr "Maximum" +# @ acf #: core/fields/number.php:150 -#@ acf msgid "Specifies the maximim value allowed" msgstr "Legt den größten erlaubten Wert fest" +# @ acf #: core/fields/number.php:166 -#@ acf msgid "Step" msgstr "Schritt" +# @ acf #: core/fields/number.php:167 -#@ acf msgid "Specifies the legal number intervals" msgstr "Legt die Schrittweite fest" -#: core/fields/number.php:183 -#: core/fields/text.php:165 +# @ acf +#: core/fields/number.php:183 core/fields/text.php:165 #: core/fields/textarea.php:146 -#@ acf msgid "Placeholder Text" msgstr "Platzhalter Text" -#: core/fields/number.php:197 -#: core/fields/text.php:180 -#@ acf +# @ acf +#: core/fields/number.php:197 core/fields/text.php:180 msgid "Prepend" msgstr "Voranstellen" -#: core/fields/number.php:211 -#: core/fields/text.php:195 -#@ acf +# @ acf +#: core/fields/number.php:211 core/fields/text.php:195 msgid "Append" msgstr "Anfügen" +# @ acf #: core/fields/radio.php:172 -#@ acf msgid "Add 'other' choice to allow for custom values" msgstr "Füge die Option 'Sonstige' für individuelle Werte hinzu" +# @ acf #: core/fields/radio.php:184 -#@ acf msgid "Save 'other' values to the field's choices" msgstr "Füge 'Sonstige' Werte zu den Auswahl Optionen hinzu" +# @ acf #: core/fields/relationship.php:424 -#@ acf msgid "Search..." msgstr "Suchen..." +# @ acf #: core/fields/relationship.php:435 -#@ acf msgid "Filter by post type" msgstr "Filter nach Beitrags Art" -#: core/fields/text.php:117 -#: core/fields/textarea.php:97 +# @ acf +#: core/fields/text.php:117 core/fields/textarea.php:97 #: core/fields/wysiwyg.php:172 -#@ acf msgid "Appears when creating a new post" msgstr "Erscheint bei der Erstellung eines neuen Beitrag" -#: core/fields/text.php:132 -#: core/fields/textarea.php:112 -#@ acf -msgid "Effects value on front end" +# @ acf +#: core/fields/text.php:132 core/fields/textarea.php:112 +msgid "Affects value on front end" msgstr "Wirkt sich auf die Anzeige im Front-End aus" -#: core/fields/text.php:141 -#: core/fields/textarea.php:121 -#@ acf +# @ acf +#: core/fields/text.php:141 core/fields/textarea.php:121 msgid "No formatting" msgstr "Keine Formatierung" -#: core/fields/text.php:142 -#: core/fields/textarea.php:123 -#@ acf +# @ acf +#: core/fields/text.php:142 core/fields/textarea.php:123 msgid "Convert HTML into tags" msgstr "Konvertieren von HTML-Tags" -#: core/fields/text.php:150 -#: core/fields/textarea.php:131 -#@ acf +# @ acf +#: core/fields/text.php:150 core/fields/textarea.php:131 msgid "Character Limit" msgstr "Max. Anzahl Zeichen" -#: core/fields/text.php:151 -#: core/fields/textarea.php:132 -#@ acf +# @ acf +#: core/fields/text.php:151 core/fields/textarea.php:132 msgid "Leave blank for no limit" msgstr "Leerlassen für kein Limit" -#: core/fields/text.php:166 -#: core/fields/textarea.php:147 -#@ acf +# @ acf +#: core/fields/text.php:166 core/fields/textarea.php:147 msgid "Appears within the input" msgstr "Platzhalter Text definieren" +# @ acf #: core/fields/text.php:181 -#@ acf msgid "Appears before the input" msgstr "Wird vor dem Eingabefeld eingefügt" +# @ acf #: core/fields/text.php:196 -#@ acf msgid "Appears after the input" msgstr "Wird hinter dem Eingabefeld eingefügt" +# @ acf #: core/fields/textarea.php:122 -#@ acf msgid "Convert new lines into <br /> tags" msgstr "Konvertiere neue Zeilen in <br />" +# @ acf #: core/views/meta_box_fields.php:66 -#@ acf msgid "Field group title is required" msgstr "Ein Titel für die Felder-Gruppe ist erforderlich" +# @ acf #: core/views/meta_box_location.php:93 -#@ acf msgid "Media Attachment (Add / Edit)" msgstr "Medienanhang (Hinzufügen / Ändern)" - diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.mo index e43c68c..ec82c5c 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.po index f72a916..8e4bbd7 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-es_ES.po @@ -8,11 +8,11 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2013-06-10 18:59-0600\n" -"Last-Translator: Héctor Garrofé \n" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Héctor Garrofé \n" "Language: es_ES\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 1.8.1\n" #: acf.php:206 msgid "Custom Fields" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.mo index 2f24494..529e03b 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.po index 4427369..05fbce1 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fa_IR.po @@ -5,13 +5,14 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2014-09-29 08:09+0330\n" -"PO-Revision-Date: 2014-09-30 14:51+0330\n" -"Last-Translator: Ghaem Omidi \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: \n" +"Language: fa_IR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.7\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e\n" "X-Poedit-Basepath: .\n" @@ -752,7 +753,7 @@ msgstr "مسائل بالقوه" #: ../core/controllers/field_groups.php:362 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -1443,7 +1444,7 @@ msgid "Formatting" msgstr "قالب بندی" #: ../core/fields/text.php:177 ../core/fields/textarea.php:165 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "موثر بر شیوه نمایش در سایت اصلی" #: ../core/fields/text.php:186 ../core/fields/textarea.php:174 @@ -1532,7 +1533,7 @@ msgstr "فرمت ذخیره" #: ../core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API قابل " diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.mo index e61c96e..34c1244 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.po index 8123bbf..04447cb 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fi_FI.po @@ -5,19 +5,19 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2015-10-06 08:30+0300\n" -"PO-Revision-Date: 2015-10-06 23:04+0300\n" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" "Language-Team: \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-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" "X-Poedit-SourceCharset: UTF-8\n" -"Last-Translator: \n" +"Last-Translator: Elliot Condon \n" "Language: fi_FI\n" "X-Poedit-SearchPath-0: .\n" @@ -731,7 +731,7 @@ msgstr "Mahdolliset ongelmat" #: core/controllers/field_groups.php:362 #, php-format msgid "" -"Due to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full %sMigrating from v3 to v4%s guide to view the full list of " "changes." @@ -983,7 +983,7 @@ msgstr "Tallennusmuoto" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "Tämä muoto määrittää tietokantaan tallennettavan ja rajapinnan palauttaman " @@ -1474,7 +1474,7 @@ msgid "Formatting" msgstr "Muotoilu" #: core/fields/text.php:177 core/fields/textarea.php:165 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Vaikuttaa arvoon front endissä" #: core/fields/text.php:186 core/fields/textarea.php:174 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.mo index 60455f4..cd68481 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.po index 4abdc4d..b61ccbc 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-fr_FR.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: Advanced Custom Field - version 3.4.1\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2013-10-22 18:19+0100\n" -"PO-Revision-Date: 2015-11-04 09:31+1000\n" +"PO-Revision-Date: 2016-04-04 10:08+1000\n" "Last-Translator: Elliot Condon \n" "Language-Team: RVOLA \n" "Language: fr\n" @@ -788,7 +788,7 @@ msgstr "Problèmes connus" #: ../core/controllers/field_groups.php:366 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not " +"Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not " "operate correctly. It is important that you read the full" msgstr "" "À cause des gros changements effectués autour des Add-ons, types de champs et actions/filtres, votre site " @@ -1511,7 +1511,7 @@ msgid "Formatting" msgstr "Formatage " #: ../core/fields/text.php:177 ../core/fields/textarea.php:142 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Modifie le contenu sur la partie publique du site" # @ acf @@ -1600,7 +1600,7 @@ msgid "Save format" msgstr "Sauvegarder format" #: ../core/fields/date_picker/date_picker.php:127 -msgid "This format will determin the value saved to the database and returned via the API" +msgid "This format will determine the value saved to the database and returned via the API" msgstr "Ce format déterminera la valeur enregistrée dans la base de données et retournée par l‘API" #: ../core/fields/date_picker/date_picker.php:128 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.mo index 8cb8dc0..68584da 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.po index b886c2a..cb477ed 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-he_IL.po @@ -7,13 +7,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Project-Id-Version: advanced-custom-fields\n" "POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: Ahrale \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Ahrale | Atar4U.com \n" "MIME-Version: 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Language: he\n" -"X-Generator: Poedit 1.7.4\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SourceCharset: UTF-8\n" # 'large' => __("Large",'acf'), @@ -1137,15 +1137,15 @@ msgid "File" msgstr "קובץ" # -#

    +#

    # # wpml-name: 5881d23e5578bda6b39632adb3d9a5cf -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "ערך השפעה על הפרונט אנד" # # -#

    +#

    # wpml-name: 767042e4dbdd6d8f737786f122d66d4f msgid "Formatting" msgstr "עיצוב" @@ -1241,7 +1241,7 @@ msgstr "פורמט תצוגה" msgid "jQuery date formats" msgstr "פורמט תאריך jQuary " -#

    +#

    #

    # # wpml-name: 859b701b589225e84b65246501039279 @@ -1249,15 +1249,15 @@ msgid "\"yymmdd\" is the most versatile save format. Read more about" msgstr "הוא פורמט השמירה הרב צדדי ביותר.קרא עוד אודות זה" # -#

    +#

    #

    # wpml-name: b32d3e0433f5fbc2fc5b2593d5129cfc -msgid "This format will determin the value saved to the database and returned via the API" +msgid "This format will determine the value saved to the database and returned via the API" msgstr "הפורמט הזה יקבע את הערך הנשמר לבסיס הנתונים ויוחזר דרך הAPI." # # -#

    +#

    # wpml-name: d3db150cd06127a833ecd279debf7729 msgid "Save format" msgstr "פורמט שמירה" @@ -2117,29 +2117,29 @@ msgid "Really Important!" msgstr "באמת חשוב!" #

    -#

    +#

    # # wpml-name: 4bbc83cd7980cfa0a8172dc3065342c7 msgid "guide to view the full list of changes." msgstr "מדריך כדי להציג את הרשימה המלאה של שינויים." #

    -#

    +#

    # # wpml-name: 1b239e26fb4421abef5ca328d1357aab msgid "Migrating from v3 to v4" msgstr "מעבר מ-גרסה 3 לגרסה 4" #

    -#

    +#

    # # wpml-name: 791934a08992b9d534fc76b7ceb175be -msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full" -msgstr "האם לשינויים ניכרים surounding תוספות, סוגי שדות ופעולה / מסננים, האתר שלך לא יפעל בצורה נכונה. זה חשוב שתקרא מלא" +msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full" +msgstr "האם לשינויים ניכרים surrounding תוספות, סוגי שדות ופעולה / מסננים, האתר שלך לא יפעל בצורה נכונה. זה חשוב שתקרא מלא" # #

    -#

    +#

    # wpml-name: a01d9190e303d23db01632f603c31708 msgid "Potential Issues" msgstr "בעיות פוטנציאליות" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-id_ID.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-id_ID.mo new file mode 100644 index 0000000..e1e0d72 Binary files /dev/null and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-id_ID.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-id_ID.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-id_ID.po new file mode 100644 index 0000000..e7e91e1 --- /dev/null +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-id_ID.po @@ -0,0 +1,1821 @@ +# Copyright (C) 2014 +# This file is distributed under the same license as the package. +msgid "" +msgstr "" +"Project-Id-Version: Advanced Custom Fields\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" +"POT-Creation-Date: 2016-01-21 00:47-0800\n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Language-Team: \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-Generator: Poedit 1.8.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" +"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;" +"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SourceCharset: UTF-8\n" +"Last-Translator: Elliot Condon \n" +"Language: id_ID\n" +"X-Poedit-SearchPath-0: .\n" + +#: acf.php:485 +msgid "Field Groups" +msgstr "Grup Bidang" + +#: acf.php:486 core/controllers/field_groups.php:214 +msgid "Advanced Custom Fields" +msgstr "" + +#: acf.php:487 +msgid "Add New" +msgstr "Tambah Baru" + +#: acf.php:488 +msgid "Add New Field Group" +msgstr "Tambah Grup Bidang Baru" + +#: acf.php:489 +msgid "Edit Field Group" +msgstr "Edit Grup Bidang" + +#: acf.php:490 +msgid "New Field Group" +msgstr "Grup Bidang Baru" + +#: acf.php:491 +msgid "View Field Group" +msgstr "Lihat Grup Bidang" + +#: acf.php:492 +msgid "Search Field Groups" +msgstr "Cari Grup Bidang" + +#: acf.php:493 +msgid "No Field Groups found" +msgstr "Tidak Ada Grup Bidang Ditemukan" + +#: acf.php:494 +msgid "No Field Groups found in Trash" +msgstr "Tidak Ditemukan Grup Bidang di Tong Sampah" + +#: acf.php:579 core/views/meta_box_options.php:99 +msgid "Custom Fields" +msgstr "Bidang Kustom" + +#: acf.php:597 acf.php:600 +msgid "Field group updated." +msgstr "Grup bidang diperbarui." + +#: acf.php:598 +msgid "Custom field updated." +msgstr "Bidang kustom diperbarui." + +#: acf.php:599 +msgid "Custom field deleted." +msgstr "Bidang kustom dihapus." + +#. translators: %s: date and time of the revision +#: acf.php:602 +#, php-format +msgid "Field group restored to revision from %s" +msgstr "Grup Bidang dikembalikan ke revisi dari %s" + +#: acf.php:603 +msgid "Field group published." +msgstr "Grup bidang diterbitkan." + +#: acf.php:604 +msgid "Field group saved." +msgstr "Grup bidang dusimpan." + +#: acf.php:605 +msgid "Field group submitted." +msgstr "Grup bidang dikirim." + +#: acf.php:606 +msgid "Field group scheduled for." +msgstr "Grup bidang dijadwalkan untuk." + +#: acf.php:607 +msgid "Field group draft updated." +msgstr "Draft grup bidang diperbarui." + +#: acf.php:742 +msgid "Thumbnail" +msgstr "" + +#: acf.php:743 +msgid "Medium" +msgstr "Sedang" + +#: acf.php:744 +msgid "Large" +msgstr "Besar" + +#: acf.php:745 +msgid "Full" +msgstr "Penuh" + +#: core/actions/export.php:26 core/views/meta_box_fields.php:58 +msgid "Error" +msgstr "" + +#: core/actions/export.php:33 +msgid "No ACF groups selected" +msgstr "Tidak ada grup ACF yang dipilih" + +#: core/api.php:1171 +msgid "Update" +msgstr "Perbarui" + +#: core/api.php:1172 +msgid "Post updated" +msgstr "Post Diperbarui" + +#: core/controllers/addons.php:42 core/controllers/field_groups.php:307 +msgid "Add-ons" +msgstr "" + +#: core/controllers/addons.php:130 core/controllers/field_groups.php:429 +msgid "Repeater Field" +msgstr "" + +#: core/controllers/addons.php:131 +msgid "Create infinite rows of repeatable data with this versatile interface!" +msgstr "" +"Buat baris batasan untuk data pengulangan dengan antarmuka serbaguna ini!" + +#: core/controllers/addons.php:137 core/controllers/field_groups.php:437 +msgid "Gallery Field" +msgstr "Bidang Galeri" + +#: core/controllers/addons.php:138 +msgid "Create image galleries in a simple and intuitive interface!" +msgstr "Buat galeri gambar sederhana dan antarmuka intuitif!" + +#: core/controllers/addons.php:144 core/controllers/field_groups.php:445 +msgid "Options Page" +msgstr "Opsi Laman" + +#: core/controllers/addons.php:145 +msgid "Create global data to use throughout your website!" +msgstr "Buat data global untuk menggunakan seluruh situs Anda!" + +#: core/controllers/addons.php:151 +msgid "Flexible Content Field" +msgstr "Bidang Konten Fleksibel" + +#: core/controllers/addons.php:152 +msgid "Create unique designs with a flexible content layout manager!" +msgstr "Buat desain unik dengan pengelola layout konten fleksibel!" + +#: core/controllers/addons.php:161 +msgid "Gravity Forms Field" +msgstr "Bidang Form Gravitasi" + +#: core/controllers/addons.php:162 +msgid "Creates a select field populated with Gravity Forms!" +msgstr "Membuat bidang pilih yang diisi dengan Form Gravitasi!" + +#: core/controllers/addons.php:168 +msgid "Date & Time Picker" +msgstr "Tanggal & Waktu" + +#: core/controllers/addons.php:169 +msgid "jQuery date & time picker" +msgstr "Tanggal jQuery & waktu" + +#: core/controllers/addons.php:175 +msgid "Location Field" +msgstr "Lokasi Bidang" + +#: core/controllers/addons.php:176 +msgid "Find addresses and coordinates of a desired location" +msgstr "Temukan alamat dan koordinat dari lokasi yang diinginkan" + +#: core/controllers/addons.php:182 +msgid "Contact Form 7 Field" +msgstr "Bidang Contact Form 7" + +#: core/controllers/addons.php:183 +msgid "Assign one or more contact form 7 forms to a post" +msgstr "Tetapkan satu atau lebih form contact form 7 kedalam post" + +#: core/controllers/addons.php:193 +msgid "Advanced Custom Fields Add-Ons" +msgstr "Add-Ons Advanced Custom Fields" + +#: core/controllers/addons.php:196 +msgid "" +"The following Add-ons are available to increase the functionality of the " +"Advanced Custom Fields plugin." +msgstr "" +"Add-ons berikut tersedia untuk meningkatkan fungsi dari plugin Advanced " +"Custom Fields." + +#: core/controllers/addons.php:197 +msgid "" +"Each Add-on can be installed as a separate plugin (receives updates) or " +"included in your theme (does not receive updates)." +msgstr "" +"Setiap Add-on dapat diinstal sebagai plugin terpisah (menerima pembaruan) " +"atau dimasukkan di tema Anda (tidak menerima pembaruan)." + +#: core/controllers/addons.php:219 core/controllers/addons.php:240 +msgid "Installed" +msgstr "Terpasang" + +#: core/controllers/addons.php:221 +msgid "Purchase & Install" +msgstr "Beli & Pasang" + +#: core/controllers/addons.php:242 core/controllers/field_groups.php:422 +#: core/controllers/field_groups.php:431 core/controllers/field_groups.php:439 +#: core/controllers/field_groups.php:447 core/controllers/field_groups.php:455 +msgid "Download" +msgstr "Unduh" + +#: core/controllers/export.php:50 core/controllers/export.php:159 +msgid "Export" +msgstr "Ekspor" + +#: core/controllers/export.php:216 +msgid "Export Field Groups" +msgstr "Ekspor Grup Bidang" + +#: core/controllers/export.php:221 +msgid "Field Groups" +msgstr "Grup Bidang" + +#: core/controllers/export.php:222 +msgid "Select the field groups to be exported" +msgstr "Pilih grup bidang untuk diekspor" + +#: core/controllers/export.php:239 core/controllers/export.php:252 +msgid "Export to XML" +msgstr "Ekspor ke XML" + +#: core/controllers/export.php:242 core/controllers/export.php:267 +msgid "Export to PHP" +msgstr "Ekspor ke PHP" + +#: core/controllers/export.php:253 +msgid "" +"ACF will create a .xml export file which is compatible with the native WP " +"import plugin." +msgstr "" +"ACF akan membuat file ekspor xml yang kompatibel dengan plugin WP import " +"asli." + +#: core/controllers/export.php:254 +msgid "" +"Imported field groups will appear in the list of editable field " +"groups. This is useful for migrating fields groups between Wp websites." +msgstr "" +"Grup bidang yang diimpor akan tampil di daftar grup bidang yang dapat " +"diedit. Berguna untuk grup bidang yang migrasi diantara situs Wp." + +#: core/controllers/export.php:256 +msgid "Select field group(s) from the list and click \"Export XML\"" +msgstr "Pilih grup bidang dari daftar dan klik \"Ekspor XML\"" + +#: core/controllers/export.php:257 +msgid "Save the .xml file when prompted" +msgstr "Simpan file .xml ketika diminta" + +#: core/controllers/export.php:258 +msgid "Navigate to Tools » Import and select WordPress" +msgstr "Arahkan ke Perkakas » Impor dan pilih Wordpress" + +#: core/controllers/export.php:259 +msgid "Install WP import plugin if prompted" +msgstr "Pasang plugin WP import jika diminta" + +#: core/controllers/export.php:260 +msgid "Upload and import your exported .xml file" +msgstr "Unggah dan impor file .xml ekspor Anda" + +#: core/controllers/export.php:261 +msgid "Select your user and ignore Import Attachments" +msgstr "Pilih pengguna Anda dan tolak Lampiran Impor" + +#: core/controllers/export.php:262 +msgid "That's it! Happy WordPressing" +msgstr "Itu saja! Selamat berWordpress" + +#: core/controllers/export.php:268 +msgid "ACF will create the PHP code to include in your theme." +msgstr "ACF akan membuat kode PHP untuk memasukkan kedalam tema." + +#: core/controllers/export.php:269 core/controllers/export.php:310 +msgid "" +"Registered field groups will not appear in the list of editable field " +"groups. This is useful for including fields in themes." +msgstr "" +"Grup bidang terdaftar tidak akan tampil di daftar grup bidang yang " +"dapat diedit. Berguna untuk memasukkan bidang didalam tema." + +#: core/controllers/export.php:270 core/controllers/export.php:311 +msgid "" +"Please note that if you export and register field groups within the same WP, " +"you will see duplicate fields on your edit screens. To fix this, please move " +"the original field group to the trash or remove the code from your functions." +"php file." +msgstr "" +"Harap catat jika ekspor dan grup bidang terdaftar Anda dalam WP yang sama, " +"Anda akan melihat bidang duplikat pada layar pengeditan. Untuk memperbaiki " +"ini, silahkan pindahkan grup bidang original ke tong sampah atau singkirkan " +"kode dari file function.php." + +#: core/controllers/export.php:272 +msgid "Select field group(s) from the list and click \"Create PHP\"" +msgstr "Pilih grup bidang dari daftar dan klik \"Buat PHP\"" + +#: core/controllers/export.php:273 core/controllers/export.php:302 +msgid "Copy the PHP code generated" +msgstr "Salin kode PHP yang dihasilkan" + +#: core/controllers/export.php:274 core/controllers/export.php:303 +msgid "Paste into your functions.php file" +msgstr "Tempel di file function.php Anda" + +#: core/controllers/export.php:275 core/controllers/export.php:304 +msgid "To activate any Add-ons, edit and use the code in the first few lines." +msgstr "" +"Untuk mengaktifkan Add-ons, edit dan gunakan kode di beberapa baris pertama." + +#: core/controllers/export.php:295 +msgid "Export Field Groups to PHP" +msgstr "Ekspor grup bidang ke PHP" + +#: core/controllers/export.php:300 core/fields/tab.php:65 +msgid "Instructions" +msgstr "Instruksi" + +#: core/controllers/export.php:309 +msgid "Notes" +msgstr "Catatan" + +#: core/controllers/export.php:316 +msgid "Include in theme" +msgstr "Masukkan kedalam tema" + +#: core/controllers/export.php:317 +msgid "" +"The Advanced Custom Fields plugin can be included within a theme. To do so, " +"move the ACF plugin inside your theme and add the following code to your " +"functions.php file:" +msgstr "" +"Plugin Advanced Custom Fields dapat dimasukkan kedalam tema. Untuk " +"melakukannya, pindahkan plugin ACF kedalam tema Anda dan tambahkan kode " +"berikut ke file function.php:" + +#: core/controllers/export.php:323 +msgid "" +"To remove all visual interfaces from the ACF plugin, you can use a constant " +"to enable lite mode. Add the following code to your functions.php file " +"before the include_once code:" +msgstr "" +"Untuk menghapus semua antarmuka visual dari plugin ACF, Anda dapat " +"menggunakan konstanta untuk mengaktifkan lite mode. Tambahkan kode berikut " +"ke file function.php kode include_once:" + +#: core/controllers/export.php:331 +msgid "Back to export" +msgstr "Kembali ke ekspor" + +#: core/controllers/export.php:400 +msgid "No field groups were selected" +msgstr "Tidak ada grup bidang yang dipilih" + +#: core/controllers/field_group.php:358 +msgid "Move to trash. Are you sure?" +msgstr "Pindahkan ke tong sampah. Yakin?" + +#: core/controllers/field_group.php:359 +msgid "checked" +msgstr "Diperiksa" + +#: core/controllers/field_group.php:360 +msgid "No toggle fields available" +msgstr "Tidak ada bidang toggle yang tersedia" + +#: core/controllers/field_group.php:361 +msgid "Field group title is required" +msgstr "Judul grup bidang diperlukan" + +#: core/controllers/field_group.php:362 +msgid "copy" +msgstr "Salin" + +#: core/controllers/field_group.php:363 core/views/meta_box_location.php:62 +#: core/views/meta_box_location.php:159 +msgid "or" +msgstr "atau" + +#: core/controllers/field_group.php:364 core/controllers/field_group.php:395 +#: core/controllers/field_group.php:457 core/controllers/field_groups.php:148 +msgid "Fields" +msgstr "Bidang" + +#: core/controllers/field_group.php:365 +msgid "Parent fields" +msgstr "Bidang parent" + +#: core/controllers/field_group.php:366 +msgid "Sibling fields" +msgstr "Bidang sibling" + +#: core/controllers/field_group.php:367 +msgid "Hide / Show All" +msgstr "Sembunyikan / Tampilkan Semua" + +#: core/controllers/field_group.php:396 +msgid "Location" +msgstr "Lokasi" + +#: core/controllers/field_group.php:397 +msgid "Options" +msgstr "Opsi" + +#: core/controllers/field_group.php:459 +msgid "Show Field Key:" +msgstr "Tampilkan Kunci Bidang:" + +#: core/controllers/field_group.php:460 core/fields/page_link.php:138 +#: core/fields/page_link.php:159 core/fields/post_object.php:340 +#: core/fields/post_object.php:361 core/fields/select.php:224 +#: core/fields/select.php:243 core/fields/taxonomy.php:499 +#: core/fields/user.php:332 core/fields/wysiwyg.php:335 +#: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218 +msgid "No" +msgstr "Tidak" + +#: core/controllers/field_group.php:461 core/fields/page_link.php:137 +#: core/fields/page_link.php:158 core/fields/post_object.php:339 +#: core/fields/post_object.php:360 core/fields/select.php:223 +#: core/fields/select.php:242 core/fields/taxonomy.php:498 +#: core/fields/user.php:331 core/fields/wysiwyg.php:334 +#: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217 +msgid "Yes" +msgstr "Ya" + +#: core/controllers/field_group.php:633 +msgid "Front Page" +msgstr "Laman Depan" + +#: core/controllers/field_group.php:634 +msgid "Posts Page" +msgstr "Laman Post" + +#: core/controllers/field_group.php:635 +msgid "Top Level Page (parent of 0)" +msgstr "Laman Tingkat Atas (parent 0)" + +#: core/controllers/field_group.php:636 +msgid "Parent Page (has children)" +msgstr "Laman Parent (memiliki anak)" + +#: core/controllers/field_group.php:637 +msgid "Child Page (has parent)" +msgstr "Laman Anak (memiliki parent)" + +#: core/controllers/field_group.php:645 +msgid "Default Template" +msgstr "Template Default" + +#: core/controllers/field_group.php:727 +msgid "Published" +msgstr "Diterbitkan" + +#: core/controllers/field_group.php:728 +msgid "Pending Review" +msgstr "Tinjauan Tertunda" + +#: core/controllers/field_group.php:729 +msgid "Draft" +msgstr "Draf" + +#: core/controllers/field_group.php:730 +msgid "Future" +msgstr "" + +#: core/controllers/field_group.php:731 +msgid "Private" +msgstr "Pribadi" + +#: core/controllers/field_group.php:732 +msgid "Revision" +msgstr "Revisi" + +#: core/controllers/field_group.php:733 +msgid "Trash" +msgstr "Tong Sampah" + +#: core/controllers/field_group.php:746 +msgid "Super Admin" +msgstr "" + +#: core/controllers/field_group.php:761 core/controllers/field_group.php:782 +#: core/controllers/field_group.php:789 core/fields/file.php:186 +#: core/fields/image.php:177 core/fields/page_link.php:109 +#: core/fields/post_object.php:286 core/fields/post_object.php:310 +#: core/fields/relationship.php:588 core/fields/relationship.php:612 +#: core/fields/user.php:276 +msgid "All" +msgstr "Semua" + +#: core/controllers/field_groups.php:147 +msgid "Title" +msgstr "Judul" + +#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253 +msgid "Changelog" +msgstr "" + +#: core/controllers/field_groups.php:217 +#, php-format +msgid "See what's new in %1$sversion %2$s%3$s" +msgstr "Lihat apa yang baru di %1$sversi %2$s%3$s" + +#: core/controllers/field_groups.php:219 +msgid "Resources" +msgstr "Sumber Daya" + +#: core/controllers/field_groups.php:221 +msgid "Getting Started" +msgstr "Perkenalan" + +#: core/controllers/field_groups.php:222 +msgid "Field Types" +msgstr "Jenis Field" + +#: core/controllers/field_groups.php:223 +msgid "Functions" +msgstr "Fungsi" + +#: core/controllers/field_groups.php:224 +msgid "Actions" +msgstr "Tindakan" + +#: core/controllers/field_groups.php:225 core/fields/relationship.php:631 +msgid "Filters" +msgstr "Saringan" + +#: core/controllers/field_groups.php:226 +msgid "'How to' guides" +msgstr "Panduan \"Bagaimana Caranya\"" + +#: core/controllers/field_groups.php:227 +msgid "Tutorials" +msgstr "Tutorial" + +#: core/controllers/field_groups.php:232 +msgid "Created by" +msgstr "Dibuat oleh" + +#: core/controllers/field_groups.php:244 +msgid "Welcome to Advanced Custom Fields" +msgstr "Selamat datang di Advanced Custom Fields" + +#: core/controllers/field_groups.php:245 +msgid "Thank you for updating to the latest version!" +msgstr "Terimakasih sudah memperbarui ke versi terbaru!" + +#: core/controllers/field_groups.php:245 +#, php-format +msgid "" +"ACF %s is more polished and enjoyable than ever before. We hope you like it." +msgstr "" +"ACF %s lebih dipoles dan menyenangkan dari sebelumnya. Kami harap Anda suka." + +#: core/controllers/field_groups.php:252 +msgid "What’s New" +msgstr "Apa yang Baru" + +#: core/controllers/field_groups.php:255 +msgid "Download Add-ons" +msgstr "Unduh Add-ons" + +#: core/controllers/field_groups.php:309 +msgid "Activation codes have grown into plugins!" +msgstr "Kode aktivasi telah menyatu ke plugin!" + +#: core/controllers/field_groups.php:310 +msgid "" +"Add-ons are now activated by downloading and installing individual plugins. " +"Although these plugins will not be hosted on the wordpress.org repository, " +"each Add-on will continue to receive updates in the usual way." +msgstr "" +"Add-ons sekarang diaktifkan dengan mengunduh dan menginstal plugin individu. " +"Meskipun plugin ini tidak akan dihost pada repositoriwordpress.org, setiap " +"Add-on akan terus menerima pembaruan dengan cara seperti biasa." + +#: core/controllers/field_groups.php:316 +msgid "All previous Add-ons have been successfully installed" +msgstr "Semua Add-ons lama berhasil terpasang" + +#: core/controllers/field_groups.php:320 +msgid "This website uses premium Add-ons which need to be downloaded" +msgstr "Website ini menggunakan Add-ons premium yang perlu diunduh" + +#: core/controllers/field_groups.php:320 +msgid "Download your activated Add-ons" +msgstr "Unduh Add-ons Anda yang diaktifkan" + +#: core/controllers/field_groups.php:325 +msgid "" +"This website does not use premium Add-ons and will not be affected by this " +"change." +msgstr "" +"Website ini tidak menggunakan Add-ons premium dan tidak akan dipengaruhi " +"oleh perubahan ini." + +#: core/controllers/field_groups.php:335 +msgid "Easier Development" +msgstr "Pengembangan Mudah" + +#: core/controllers/field_groups.php:337 +msgid "New Field Types" +msgstr "Jenis Bidang Baru" + +#: core/controllers/field_groups.php:339 +msgid "Taxonomy Field" +msgstr "Bidang Taksonomi" + +#: core/controllers/field_groups.php:340 +msgid "User Field" +msgstr "Bidang Pengguna" + +#: core/controllers/field_groups.php:341 +msgid "Email Field" +msgstr "Bidang Email" + +#: core/controllers/field_groups.php:342 +msgid "Password Field" +msgstr "Bidang Kata Sandi" + +#: core/controllers/field_groups.php:344 +msgid "Custom Field Types" +msgstr "Jenis Bidang Kustom" + +#: core/controllers/field_groups.php:345 +msgid "" +"Creating your own field type has never been easier! Unfortunately, version 3 " +"field types are not compatible with version 4." +msgstr "" +"Buat jenis bidang Anda sendiri tidak pernah mudah! Sayangnya, bidang versi 3 " +"tidak kompatibel dengan versi 4." + +#: core/controllers/field_groups.php:346 +#, php-format +msgid "" +"Migrating your field types is easy, please %sfollow this tutorial%s to learn " +"more." +msgstr "" +"Memigrasi jenis bidang Anda itu mudah, silahkan %s ikuti tutorial ini%s " +"untuk lebih lanjut." + +#: core/controllers/field_groups.php:348 +msgid "Actions & Filters" +msgstr "Tindakan & Penyaringan" + +#: core/controllers/field_groups.php:349 +#, php-format +msgid "" +"All actions & filters have received a major facelift to make customizing ACF " +"even easier! Please %sread this guide%s to find the updated naming " +"convention." +msgstr "" +"Semua tindakan dan saringan telah menerima facelift besar untuk mengkustom " +"ACF lebih mudah! Silahkan %s baca panduan ini%s untuk menemukan konvensi " +"penamaan yang diperbarui." + +#: core/controllers/field_groups.php:351 +msgid "Preview draft is now working!" +msgstr "Tinjauan draft tidak jalan!" + +#: core/controllers/field_groups.php:352 +msgid "This bug has been squashed along with many other little critters!" +msgstr "Bug ini terjepit bersama makhluk kecil lainnya!" + +#: core/controllers/field_groups.php:352 +msgid "See the full changelog" +msgstr "Lihat changelog penuh" + +#: core/controllers/field_groups.php:356 +msgid "Important" +msgstr "Penting" + +#: core/controllers/field_groups.php:358 +msgid "Database Changes" +msgstr "Perubahan Basis Data" + +#: core/controllers/field_groups.php:359 +msgid "" +"Absolutely no changes have been made to the database " +"between versions 3 and 4. This means you can roll back to version 3 without " +"any issues." +msgstr "" +"Tidak ada perubahan yang dilakukan untuk basis data antara " +"versi 3 dan 4. Ini artinya Anda dapat kembali ke versi 3 tanpa masalah " +"paapun." + +#: core/controllers/field_groups.php:361 +msgid "Potential Issues" +msgstr "Masalah Potensial" + +#: core/controllers/field_groups.php:362 +#, php-format +msgid "" +"Due to the sizable changes surrounding Add-ons, field types and action/" +"filters, your website may not operate correctly. It is important that you " +"read the full %sMigrating from v3 to v4%s guide to view the full list of " +"changes." +msgstr "" +"Karena perubahan yang cukup besar seputar Add-ons, jenis bidang dan tindakan/" +"saringan, website Anda mungkin tidak beroperasi. Penting untuk Anda membaca " +"seluruh panduan %sMigrasi dari v3 ke v4%s untuk melihat semua daftar " +"perubahan." + +#: core/controllers/field_groups.php:365 +msgid "Really Important!" +msgstr "Benar-benar penting!" + +#: core/controllers/field_groups.php:365 +#, php-format +msgid "" +"If you updated the ACF plugin without prior knowledge of such changes, " +"please roll back to the latest %sversion 3%s of this plugin." +msgstr "" +"Jika Anda memperbarui plugin ACF tanpa pengetahuan pada perubahan tersebut, " +"silahkan kembali ke %sversi 3%s terbaru dari plugin." + +#: core/controllers/field_groups.php:370 +msgid "Thank You" +msgstr "Terima Kasih" + +#: core/controllers/field_groups.php:371 +msgid "" +"A BIG thank you to everyone who has helped test the version " +"4 beta and for all the support I have received." +msgstr "" +"Terimakasih BANYAK kepada semua yang membantu menguji versi " +"4 beta dan untuk semua bantuan yang saya terima." + +#: core/controllers/field_groups.php:372 +msgid "Without you all, this release would not have been possible!" +msgstr "Tanpa kalian semua, rilis ini sepertinya tidak akan mungkin!" + +#: core/controllers/field_groups.php:376 +msgid "Changelog for" +msgstr "Changelog untuk" + +#: core/controllers/field_groups.php:393 +msgid "Learn more" +msgstr "Pelajari lebih lanjut" + +#: core/controllers/field_groups.php:399 +msgid "Overview" +msgstr "Ringkasan" + +#: core/controllers/field_groups.php:401 +msgid "" +"Previously, all Add-ons were unlocked via an activation code (purchased from " +"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which " +"need to be individually downloaded, installed and updated." +msgstr "" +"Sebelumnya, Semua Add-ons yang dibuka melalui kode aktivasi (dibeli dari " +"toko ACF Add-ons). Hal baru untuk v4, Semua Add-on berlaku sebagai plugin " +"terpisah yang perlu diunduh, dipasang dan diperbarui secara individu." + +#: core/controllers/field_groups.php:403 +msgid "" +"This page will assist you in downloading and installing each available Add-" +"on." +msgstr "" +"Halaman ini akan membantu Anda dalam mengunduh dan memasang setiap Add-on " +"yang tersedia." + +#: core/controllers/field_groups.php:405 +msgid "Available Add-ons" +msgstr "Add-ons Tersedia" + +#: core/controllers/field_groups.php:407 +msgid "The following Add-ons have been detected as activated on this website." +msgstr "" +"Add-on berikut sudah terdeteksi sebagai yang sudah diaktifkan pada situs " +"Anda." + +#: core/controllers/field_groups.php:420 core/fields/file.php:109 +msgid "Name" +msgstr "Nama" + +#: core/controllers/field_groups.php:421 +msgid "Activation Code" +msgstr "Kode Aktivasi" + +#: core/controllers/field_groups.php:453 +msgid "Flexible Content" +msgstr "Konten Fleksibel" + +#: core/controllers/field_groups.php:463 +msgid "Installation" +msgstr "Pemasangan" + +#: core/controllers/field_groups.php:465 +msgid "For each Add-on available, please perform the following:" +msgstr "Untuk setiap Add-on yang tersedia, silakan melakukan hal berikut:" + +#: core/controllers/field_groups.php:467 +msgid "Download the Add-on plugin (.zip file) to your desktop" +msgstr "Unduh Add-ons (file .zip) ke desktop Anda." + +#: core/controllers/field_groups.php:468 +#, php-format +msgid "Navigate to %sPlugins > Add New > Upload%s" +msgstr "Pindah ke %sPlugin > Tambah Baru > Unggah%s" + +#: core/controllers/field_groups.php:469 +msgid "Use the uploader to browse, select and install your Add-on (.zip file)" +msgstr "" +"Gunakah pengunggah untuk mencari, memilih dan memasang Add-on (file .zip)" + +#: core/controllers/field_groups.php:470 +msgid "" +"Once the plugin has been uploaded and installed, click the 'Activate Plugin' " +"link" +msgstr "Setelah plugin diunggah dan dipasang, klik link \"Aktifkan Plugin\"" + +#: core/controllers/field_groups.php:471 +msgid "The Add-on is now installed and activated!" +msgstr "Sekarang Add-on terpasang dan diaktifkan!" + +#: core/controllers/field_groups.php:485 +msgid "Awesome. Let's get to work" +msgstr "Keren. Mari mulai bekerja" + +#: core/controllers/input.php:63 +msgid "Expand Details" +msgstr "Perluas Rincian" + +#: core/controllers/input.php:64 +msgid "Collapse Details" +msgstr "Persempit Rincian" + +#: core/controllers/input.php:67 +msgid "Validation Failed. One or more fields below are required." +msgstr "Validasi Gagal. Satu atau lebih bidang dibawah diperlukan." + +#: core/controllers/upgrade.php:77 +msgid "Upgrade" +msgstr "Tingkatkan" + +#: core/controllers/upgrade.php:599 +msgid "Modifying field group options 'show on page'" +msgstr "Memodifikasi opsi grup bidang 'tampilkan di laman'" + +#: core/controllers/upgrade.php:653 +msgid "Modifying field option 'taxonomy'" +msgstr "Memodifikasi opsi bidang 'taksonomi'" + +#: core/controllers/upgrade.php:750 +msgid "Moving user custom fields from wp_options to wp_usermeta" +msgstr "Memindahkan bidang kustom pengguna dari wp_opstions ke wp_usermeta" + +#: core/fields/_base.php:124 core/views/meta_box_location.php:74 +msgid "Basic" +msgstr "Dasar" + +#: core/fields/checkbox.php:19 core/fields/taxonomy.php:475 +msgid "Checkbox" +msgstr "Kotak Centang" + +#: core/fields/checkbox.php:20 core/fields/radio.php:19 +#: core/fields/select.php:19 core/fields/true_false.php:20 +msgid "Choice" +msgstr "Pilihan" + +#: core/fields/checkbox.php:146 core/fields/radio.php:147 +#: core/fields/select.php:177 +msgid "Choices" +msgstr "Pilihan" + +#: core/fields/checkbox.php:147 core/fields/select.php:178 +msgid "Enter each choice on a new line." +msgstr "Masukkan setiap pilihan pada baris baru." + +#: core/fields/checkbox.php:148 core/fields/select.php:179 +msgid "For more control, you may specify both a value and label like this:" +msgstr "" +"Untuk kontrol lebih, Anda dapat menentukan nilai keduanya dan label seperti " +"ini:" + +#: core/fields/checkbox.php:149 core/fields/radio.php:153 +#: core/fields/select.php:180 +msgid "red : Red" +msgstr "" + +#: core/fields/checkbox.php:149 core/fields/radio.php:154 +#: core/fields/select.php:180 +msgid "blue : Blue" +msgstr "" + +#: core/fields/checkbox.php:166 core/fields/color_picker.php:89 +#: core/fields/email.php:106 core/fields/number.php:116 +#: core/fields/radio.php:196 core/fields/select.php:197 +#: core/fields/text.php:116 core/fields/textarea.php:103 +#: core/fields/true_false.php:94 core/fields/wysiwyg.php:277 +msgid "Default Value" +msgstr "Nilai Default" + +#: core/fields/checkbox.php:167 core/fields/select.php:198 +msgid "Enter each default value on a new line" +msgstr "Masukkan setiap default pada baris baru" + +#: core/fields/checkbox.php:183 core/fields/message.php:20 +#: core/fields/radio.php:212 core/fields/tab.php:20 +msgid "Layout" +msgstr "" + +#: core/fields/checkbox.php:194 core/fields/radio.php:223 +msgid "Vertical" +msgstr "" + +#: core/fields/checkbox.php:195 core/fields/radio.php:224 +msgid "Horizontal" +msgstr "" + +#: core/fields/color_picker.php:19 +msgid "Color Picker" +msgstr "Pengambil Warna" + +#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20 +#: core/fields/google-map.php:19 +msgid "jQuery" +msgstr "" + +#: core/fields/date_picker/date_picker.php:19 +msgid "Date Picker" +msgstr "Pengambil Tanggal" + +#: core/fields/date_picker/date_picker.php:55 +msgid "Done" +msgstr "Selesai" + +#: core/fields/date_picker/date_picker.php:56 +msgid "Today" +msgstr "Hari ini" + +#: core/fields/date_picker/date_picker.php:59 +msgid "Show a different month" +msgstr "Tampilkan bulan berbeda" + +#: core/fields/date_picker/date_picker.php:126 +msgid "Save format" +msgstr "Simpan format" + +#: core/fields/date_picker/date_picker.php:127 +msgid "" +"This format will determine the value saved to the database and returned via " +"the API" +msgstr "" +"Format ini akan menentukan hasil yang disimpan ke basis data dan " +"dikembalikan via API" + +#: core/fields/date_picker/date_picker.php:128 +msgid "\"yymmdd\" is the most versatile save format. Read more about" +msgstr "" +"\"yymmdd\" adalah yang paling berguna menyimpan format. Baca lebih lanjut" + +#: core/fields/date_picker/date_picker.php:128 +#: core/fields/date_picker/date_picker.php:144 +msgid "jQuery date formats" +msgstr "Format tanggal jQuery" + +#: core/fields/date_picker/date_picker.php:142 +msgid "Display format" +msgstr "Format tampilan" + +#: core/fields/date_picker/date_picker.php:143 +msgid "This format will be seen by the user when entering a value" +msgstr "Format akan terlihat oleh pengguna ketika memasukkan nilai" + +#: core/fields/date_picker/date_picker.php:144 +msgid "" +"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more " +"about" +msgstr "" +"\"dd/mm/yy\" atau \"mm/dd/yy\" adalah format tampilan yang sering digunakan. " +"Baca lebih lanjut" + +#: core/fields/date_picker/date_picker.php:158 +msgid "Week Starts On" +msgstr "Minggu Dimulai Pada" + +#: core/fields/dummy.php:19 +msgid "Dummy" +msgstr "" + +#: core/fields/email.php:19 +msgid "Email" +msgstr "" + +#: core/fields/email.php:107 core/fields/number.php:117 +#: core/fields/text.php:117 core/fields/textarea.php:104 +#: core/fields/wysiwyg.php:278 +msgid "Appears when creating a new post" +msgstr "Muncul ketika membuat sebuah post baru" + +#: core/fields/email.php:123 core/fields/number.php:133 +#: core/fields/password.php:105 core/fields/text.php:131 +#: core/fields/textarea.php:118 +msgid "Placeholder Text" +msgstr "Teks Placeholder" + +#: core/fields/email.php:124 core/fields/number.php:134 +#: core/fields/password.php:106 core/fields/text.php:132 +#: core/fields/textarea.php:119 +msgid "Appears within the input" +msgstr "Muncul didalam input" + +#: core/fields/email.php:138 core/fields/number.php:148 +#: core/fields/password.php:120 core/fields/text.php:146 +msgid "Prepend" +msgstr "Tambahkan" + +#: core/fields/email.php:139 core/fields/number.php:149 +#: core/fields/password.php:121 core/fields/text.php:147 +msgid "Appears before the input" +msgstr "Muncul sebelum input" + +#: core/fields/email.php:153 core/fields/number.php:163 +#: core/fields/password.php:135 core/fields/text.php:161 +msgid "Append" +msgstr "Menambahkan" + +#: core/fields/email.php:154 core/fields/number.php:164 +#: core/fields/password.php:136 core/fields/text.php:162 +msgid "Appears after the input" +msgstr "Muncul setelah input" + +#: core/fields/file.php:19 +msgid "File" +msgstr "" + +#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:37 +msgid "Content" +msgstr "Konten" + +#: core/fields/file.php:26 +msgid "Select File" +msgstr "Pilih File" + +#: core/fields/file.php:27 +msgid "Edit File" +msgstr "" + +#: core/fields/file.php:28 +msgid "Update File" +msgstr "Perbarui File" + +#: core/fields/file.php:29 core/fields/image.php:30 +msgid "uploaded to this post" +msgstr "diunggah ke post ini" + +#: core/fields/file.php:113 +msgid "Size" +msgstr "Ukuran" + +#: core/fields/file.php:123 +msgid "No File Selected" +msgstr "Tak Ada File yang Dipilih" + +#: core/fields/file.php:123 +msgid "Add File" +msgstr "Tambahkan File" + +#: core/fields/file.php:153 core/fields/image.php:125 +#: core/fields/taxonomy.php:523 +msgid "Return Value" +msgstr "Nilai Kembali" + +#: core/fields/file.php:164 +msgid "File Object" +msgstr "File Objek" + +#: core/fields/file.php:165 +msgid "File URL" +msgstr "URL File" + +#: core/fields/file.php:166 +msgid "File ID" +msgstr "ID File" + +#: core/fields/file.php:175 core/fields/image.php:165 +msgid "Library" +msgstr "Perpustakaan" + +#: core/fields/file.php:187 core/fields/image.php:178 +msgid "Uploaded to post" +msgstr "Diunggah ke post" + +#: core/fields/google-map.php:18 +msgid "Google Map" +msgstr "" + +#: core/fields/google-map.php:33 +msgid "Locating" +msgstr "Melokasikan" + +#: core/fields/google-map.php:34 +msgid "Sorry, this browser does not support geolocation" +msgstr "Maaf, browser ini tidak support geolocation" + +#: core/fields/google-map.php:120 +msgid "Clear location" +msgstr "Bersihkan lokasi" + +#: core/fields/google-map.php:125 +msgid "Find current location" +msgstr "Temukan lokasi saat ini" + +#: core/fields/google-map.php:126 +msgid "Search for address..." +msgstr "Cari alamat..." + +#: core/fields/google-map.php:162 +msgid "Center" +msgstr "Tengah" + +#: core/fields/google-map.php:163 +msgid "Center the initial map" +msgstr "Pusat peta awal" + +#: core/fields/google-map.php:199 +msgid "Zoom" +msgstr "" + +#: core/fields/google-map.php:200 +msgid "Set the initial zoom level" +msgstr "Mengatur tingkat awal zoom" + +#: core/fields/google-map.php:217 +msgid "Height" +msgstr "Tinggi" + +#: core/fields/google-map.php:218 +msgid "Customise the map height" +msgstr "Sesuaikan ketinggian peta" + +#: core/fields/image.php:19 +msgid "Image" +msgstr "Gambar" + +#: core/fields/image.php:27 +msgid "Select Image" +msgstr "Pilih Gambar" + +#: core/fields/image.php:28 +msgid "Edit Image" +msgstr "Edit Gambar" + +#: core/fields/image.php:29 +msgid "Update Image" +msgstr "Perbarui Gambar" + +#: core/fields/image.php:90 +msgid "Remove" +msgstr "Singkirkan" + +#: core/fields/image.php:91 core/views/meta_box_fields.php:108 +msgid "Edit" +msgstr "" + +#: core/fields/image.php:97 +msgid "No image selected" +msgstr "Tak ada gambar yang dipilih" + +#: core/fields/image.php:97 +msgid "Add Image" +msgstr "Tambahkan Gambar" + +#: core/fields/image.php:126 core/fields/relationship.php:563 +msgid "Specify the returned value on front end" +msgstr "Tentukan nilai dikembalikan di front-end" + +#: core/fields/image.php:136 +msgid "Image Object" +msgstr "Gambar objek" + +#: core/fields/image.php:137 +msgid "Image URL" +msgstr "URL Gambar" + +#: core/fields/image.php:138 +msgid "Image ID" +msgstr "ID Gambar" + +#: core/fields/image.php:146 +msgid "Preview Size" +msgstr "Ukuran Tinjauan" + +#: core/fields/image.php:147 +msgid "Shown when entering data" +msgstr "Tampilkan ketika memasukkan data" + +#: core/fields/image.php:166 +msgid "Limit the media library choice" +msgstr "Batasi pilihan pustaka media" + +#: core/fields/message.php:19 core/fields/message.php:70 +#: core/fields/true_false.php:79 +msgid "Message" +msgstr "Pesan" + +#: core/fields/message.php:71 +msgid "Text & HTML entered here will appear inline with the fields" +msgstr "Teks & HTML dimasukkan disini akan muncul sejajar dengan bidang" + +#: core/fields/message.php:72 +msgid "Please note that all text will first be passed through the wp function " +msgstr "Harap catat bahwa semua teks akan pertama dilewat melalui wp function" + +#: core/fields/number.php:19 +msgid "Number" +msgstr "Jumlah" + +#: core/fields/number.php:178 +msgid "Minimum Value" +msgstr "Nilai Minimum" + +#: core/fields/number.php:194 +msgid "Maximum Value" +msgstr "Nilai Maksimum" + +#: core/fields/number.php:210 +msgid "Step Size" +msgstr "Ukuran Langkah" + +#: core/fields/page_link.php:18 +msgid "Page Link" +msgstr "Link Halaman" + +#: core/fields/page_link.php:19 core/fields/post_object.php:19 +#: core/fields/relationship.php:19 core/fields/taxonomy.php:19 +#: core/fields/user.php:19 +msgid "Relational" +msgstr "Relasional" + +#: core/fields/page_link.php:103 core/fields/post_object.php:280 +#: core/fields/relationship.php:582 core/fields/relationship.php:661 +#: core/views/meta_box_location.php:75 +msgid "Post Type" +msgstr "Jenis Post" + +#: core/fields/page_link.php:127 core/fields/post_object.php:329 +#: core/fields/select.php:214 core/fields/taxonomy.php:489 +#: core/fields/user.php:322 +msgid "Allow Null?" +msgstr "Izinkan Nol?" + +#: core/fields/page_link.php:148 core/fields/post_object.php:350 +#: core/fields/select.php:233 +msgid "Select multiple values?" +msgstr "Pilih beberapa nilai?" + +#: core/fields/password.php:19 +msgid "Password" +msgstr "Kata Sandi" + +#: core/fields/post_object.php:18 +msgid "Post Object" +msgstr "Objek Post" + +#: core/fields/post_object.php:194 core/fields/relationship.php:170 +msgid "(no title)" +msgstr "(tanpa judul)" + +#: core/fields/post_object.php:304 core/fields/relationship.php:606 +msgid "Filter from Taxonomy" +msgstr "Saring untuk Taksonomi" + +#: core/fields/radio.php:18 +msgid "Radio Button" +msgstr "Tombol Radio" + +#: core/fields/radio.php:105 core/views/meta_box_location.php:91 +msgid "Other" +msgstr "Lainnya" + +#: core/fields/radio.php:148 +msgid "Enter your choices one per line" +msgstr "Masukkan pilihan Anda satu per baris" + +#: core/fields/radio.php:150 +msgid "Red" +msgstr "" + +#: core/fields/radio.php:151 +msgid "Blue" +msgstr "" + +#: core/fields/radio.php:175 +msgid "Add 'other' choice to allow for custom values" +msgstr "Tambah pilihan 'lainnya' untuk mengizinkan nilai kustom" + +#: core/fields/radio.php:187 +msgid "Save 'other' values to the field's choices" +msgstr "Simpan nilai 'lainnya' ke bidang pilihan" + +#: core/fields/relationship.php:18 +msgid "Relationship" +msgstr "Hubungan" + +#: core/fields/relationship.php:29 +msgid "Maximum values reached ( {max} values )" +msgstr "Nilai maksimum tercapai ( {max} values )" + +#: core/fields/relationship.php:457 +msgid "Search..." +msgstr "Cari ..." + +#: core/fields/relationship.php:468 +msgid "Filter by post type" +msgstr "Saring dengan jenis post" + +#: core/fields/relationship.php:562 +msgid "Return Format" +msgstr "Format Kembali" + +#: core/fields/relationship.php:573 +msgid "Post Objects" +msgstr "Objek Post" + +#: core/fields/relationship.php:574 +msgid "Post IDs" +msgstr "ID Post" + +#: core/fields/relationship.php:640 +msgid "Search" +msgstr "Cari" + +#: core/fields/relationship.php:641 +msgid "Post Type Select" +msgstr "Seleksi Jenis Post" + +#: core/fields/relationship.php:649 +msgid "Elements" +msgstr "Elemen" + +#: core/fields/relationship.php:650 +msgid "Selected elements will be displayed in each result" +msgstr "Elemen terpilih akan ditampilkan disetiap hasil" + +#: core/fields/relationship.php:659 core/views/meta_box_options.php:106 +msgid "Featured Image" +msgstr "Gambar Fitur" + +#: core/fields/relationship.php:660 +msgid "Post Title" +msgstr "Judul Post" + +#: core/fields/relationship.php:672 +msgid "Maximum posts" +msgstr "Maksimum post" + +#: core/fields/select.php:18 core/fields/select.php:109 +#: core/fields/taxonomy.php:480 core/fields/user.php:313 +msgid "Select" +msgstr "Pilih" + +#: core/fields/tab.php:19 +msgid "Tab" +msgstr "" + +#: core/fields/tab.php:68 +msgid "" +"Use \"Tab Fields\" to better organize your edit screen by grouping your " +"fields together under separate tab headings." +msgstr "" +"Gunakan \"Bidang Tab\" untuk mengatur layar edit Anda lebih baik dengan " +"mengelompokkan bidang Anda bersama dibawah judul tab terpisah." + +#: core/fields/tab.php:69 +msgid "" +"All the fields following this \"tab field\" (or until another \"tab field\" " +"is defined) will be grouped together." +msgstr "" +"Semua bidang mengikuti \"bidang tab\" ini (atau sampai \"bidang tab\" yang " +"lain ditemukan) akan dikelompokkan bersama." + +#: core/fields/tab.php:70 +msgid "Use multiple tabs to divide your fields into sections." +msgstr "Gunakan beberapa tab untuk membagi bidang Anda kedalam bagian." + +#: core/fields/taxonomy.php:18 core/fields/taxonomy.php:430 +msgid "Taxonomy" +msgstr "Taksonomi" + +#: core/fields/taxonomy.php:374 core/fields/taxonomy.php:383 +msgid "None" +msgstr "Tidak ada" + +#: core/fields/taxonomy.php:464 core/fields/user.php:298 +#: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:158 +msgid "Field Type" +msgstr "Jenis Bidang" + +#: core/fields/taxonomy.php:474 core/fields/user.php:307 +msgid "Multiple Values" +msgstr "Beberapa Nilai" + +#: core/fields/taxonomy.php:476 core/fields/user.php:309 +msgid "Multi Select" +msgstr "Pilihan Multi" + +#: core/fields/taxonomy.php:478 core/fields/user.php:311 +msgid "Single Value" +msgstr "Nilai Tunggal" + +#: core/fields/taxonomy.php:479 +msgid "Radio Buttons" +msgstr "Tombol Radio" + +#: core/fields/taxonomy.php:508 +msgid "Load & Save Terms to Post" +msgstr "Muat & Simpan Persyaratan ke Post" + +#: core/fields/taxonomy.php:516 +msgid "" +"Load value based on the post's terms and update the post's terms on save" +msgstr "" +"Muat nilai berdasarkan persyaratan post dan perbarui persyaratan post ketika " +"menyimpan" + +#: core/fields/taxonomy.php:533 +msgid "Term Object" +msgstr "Persyaratan Objek" + +#: core/fields/taxonomy.php:534 +msgid "Term ID" +msgstr "ID Persyaratan" + +#: core/fields/text.php:19 +msgid "Text" +msgstr "Teks" + +#: core/fields/text.php:176 core/fields/textarea.php:164 +msgid "Formatting" +msgstr "Format" + +#: core/fields/text.php:177 core/fields/textarea.php:165 +msgid "Affects value on front end" +msgstr "Nilai efek pada front-end" + +#: core/fields/text.php:186 core/fields/textarea.php:174 +msgid "No formatting" +msgstr "Jangan format" + +#: core/fields/text.php:187 core/fields/textarea.php:176 +msgid "Convert HTML into tags" +msgstr "Konversi HTML kedalam tag" + +#: core/fields/text.php:195 core/fields/textarea.php:133 +msgid "Character Limit" +msgstr "Batas Karakter" + +#: core/fields/text.php:196 core/fields/textarea.php:134 +msgid "Leave blank for no limit" +msgstr "Biarkan kosong untuk tidak terbatas" + +#: core/fields/textarea.php:19 +msgid "Text Area" +msgstr "Area Teks" + +#: core/fields/textarea.php:148 +msgid "Rows" +msgstr "Baris" + +#: core/fields/textarea.php:149 +msgid "Sets the textarea height" +msgstr "Atur tinggi area teks" + +#: core/fields/textarea.php:175 +msgid "Convert new lines into <br /> tags" +msgstr "Konversi baris baru ke <br /> tag" + +#: core/fields/true_false.php:19 +msgid "True / False" +msgstr "Benar / Salah" + +#: core/fields/true_false.php:80 +msgid "eg. Show extra content" +msgstr "contoh. Tampilkan konten ekstra" + +#: core/fields/user.php:18 core/views/meta_box_location.php:94 +msgid "User" +msgstr "Pengguna" + +#: core/fields/user.php:271 +msgid "Filter by role" +msgstr "Saring berdasarkan peran" + +#: core/fields/wysiwyg.php:36 +msgid "Wysiwyg Editor" +msgstr "" + +#: core/fields/wysiwyg.php:292 +msgid "Toolbar" +msgstr "" + +#: core/fields/wysiwyg.php:324 +msgid "Show Media Upload Buttons?" +msgstr "Tampilkan Tombol Unggah Media?" + +#: core/views/meta_box_fields.php:24 +msgid "New Field" +msgstr "Bidang Baru" + +#: core/views/meta_box_fields.php:58 +msgid "Field type does not exist" +msgstr "Jenis bidang tidak ada" + +#: core/views/meta_box_fields.php:74 +msgid "Field Order" +msgstr "Susunan Bidang" + +#: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:126 +msgid "Field Label" +msgstr "Label Bidang" + +#: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:142 +msgid "Field Name" +msgstr "Nama Bidang" + +#: core/views/meta_box_fields.php:78 +msgid "Field Key" +msgstr "Kunci Bidang" + +#: core/views/meta_box_fields.php:90 +msgid "" +"No fields. Click the + Add Field button to create your " +"first field." +msgstr "" +"Tidak ada bidang. Klik tombol + Tambah Bidang untuk membuat " +"bidang pertama Anda." + +#: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108 +msgid "Edit this Field" +msgstr "Edit Bidang ini" + +#: core/views/meta_box_fields.php:109 +msgid "Duplicate this Field" +msgstr "Duplikat Bidang ini" + +#: core/views/meta_box_fields.php:109 +msgid "Duplicate" +msgstr "Duplikat" + +#: core/views/meta_box_fields.php:110 +msgid "Delete this Field" +msgstr "Hapus bidang ini" + +#: core/views/meta_box_fields.php:110 +msgid "Delete" +msgstr "Hapus" + +#: core/views/meta_box_fields.php:127 +msgid "This is the name which will appear on the EDIT page" +msgstr "Ini nama yang akan muncul pada laman EDIT" + +#: core/views/meta_box_fields.php:143 +msgid "Single word, no spaces. Underscores and dashes allowed" +msgstr "Satu kata, tanpa spasi. Garis bawah dan strip dibolehkan" + +#: core/views/meta_box_fields.php:172 +msgid "Field Instructions" +msgstr "Instruksi Bidang" + +#: core/views/meta_box_fields.php:173 +msgid "Instructions for authors. Shown when submitting data" +msgstr "Instruksi untuk author. Terlihat ketika mengirim data" + +#: core/views/meta_box_fields.php:186 +msgid "Required?" +msgstr "Diperlukan?" + +#: core/views/meta_box_fields.php:209 +msgid "Conditional Logic" +msgstr "Logika Kondisional" + +#: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117 +msgid "is equal to" +msgstr "sama dengan" + +#: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118 +msgid "is not equal to" +msgstr "tidak sama dengan" + +#: core/views/meta_box_fields.php:279 +msgid "Show this field when" +msgstr "Tampilkan ini bidang ketika" + +#: core/views/meta_box_fields.php:285 +msgid "all" +msgstr "semua" + +#: core/views/meta_box_fields.php:286 +msgid "any" +msgstr "beberapa" + +#: core/views/meta_box_fields.php:289 +msgid "these rules are met" +msgstr "rule ini bertemu" + +#: core/views/meta_box_fields.php:303 +msgid "Close Field" +msgstr "Tutup Bidang" + +#: core/views/meta_box_fields.php:316 +msgid "Drag and drop to reorder" +msgstr "Seret dan jatuhkan untuk mengatur ulang" + +#: core/views/meta_box_fields.php:317 +msgid "+ Add Field" +msgstr "+ Tambah Bidang" + +#: core/views/meta_box_location.php:48 +msgid "Rules" +msgstr "Peraturan" + +#: core/views/meta_box_location.php:49 +msgid "" +"Create a set of rules to determine which edit screens will use these " +"advanced custom fields" +msgstr "" +"Buat pengaturan peraturan untuk menentukan layar edit yang akan menggunakan " +"advanced custom fields ini" + +#: core/views/meta_box_location.php:60 +msgid "Show this field group if" +msgstr "Tampilkan grup bidang jika" + +#: core/views/meta_box_location.php:76 +msgid "Logged in User Type" +msgstr "Jenis Pengguna Masuk" + +#: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79 +msgid "Post" +msgstr "" + +#: core/views/meta_box_location.php:80 +msgid "Post Category" +msgstr "Kategori Post" + +#: core/views/meta_box_location.php:81 +msgid "Post Format" +msgstr "Format Post" + +#: core/views/meta_box_location.php:82 +msgid "Post Status" +msgstr "Status Post" + +#: core/views/meta_box_location.php:83 +msgid "Post Taxonomy" +msgstr "Post Taksonomi" + +#: core/views/meta_box_location.php:85 core/views/meta_box_location.php:86 +msgid "Page" +msgstr "Laman" + +#: core/views/meta_box_location.php:87 +msgid "Page Type" +msgstr "Jenis Laman" + +#: core/views/meta_box_location.php:88 +msgid "Page Parent" +msgstr "Laman Parent" + +#: core/views/meta_box_location.php:89 +msgid "Page Template" +msgstr "Template Laman" + +#: core/views/meta_box_location.php:92 +msgid "Attachment" +msgstr "Lampiran" + +#: core/views/meta_box_location.php:93 +msgid "Taxonomy Term" +msgstr "Taksonomi Persyaratan" + +#: core/views/meta_box_location.php:146 +msgid "and" +msgstr "dan" + +#: core/views/meta_box_location.php:161 +msgid "Add rule group" +msgstr "Tambahkan peraturan grup" + +#: core/views/meta_box_options.php:25 +msgid "Order No." +msgstr "No. Urutan" + +#: core/views/meta_box_options.php:26 +msgid "Field groups are created in order
    from lowest to highest" +msgstr "Grup bidang dibuat di susunan
    dari terendah ke tertinggi" + +#: core/views/meta_box_options.php:42 +msgid "Position" +msgstr "Posisi" + +#: core/views/meta_box_options.php:52 +msgid "High (after title)" +msgstr "Tinggi (setelah judul)" + +#: core/views/meta_box_options.php:53 +msgid "Normal (after content)" +msgstr "Normal (setelah konten)" + +#: core/views/meta_box_options.php:54 +msgid "Side" +msgstr "Sisi" + +#: core/views/meta_box_options.php:64 +msgid "Style" +msgstr "Gaya" + +#: core/views/meta_box_options.php:74 +msgid "Seamless (no metabox)" +msgstr "Mulus (tanpa metabox)" + +#: core/views/meta_box_options.php:75 +msgid "Standard (WP metabox)" +msgstr "Standar (WP metabox)" + +#: core/views/meta_box_options.php:84 +msgid "Hide on screen" +msgstr "Sembunyikan pada layar" + +#: core/views/meta_box_options.php:85 +msgid "Select items to hide them from the edit screen" +msgstr "Pilih item untuk sembunyikan dari layar edit" + +#: core/views/meta_box_options.php:86 +msgid "" +"If multiple field groups appear on an edit screen, the first field group's " +"options will be used. (the one with the lowest order number)" +msgstr "" +"Jika beberapa grup bidang muncul pada layar edit, opsi grup bidang pertama " +"akan digunakan. (dengan no urutan terendah)" + +#: core/views/meta_box_options.php:96 +msgid "Permalink" +msgstr "" + +#: core/views/meta_box_options.php:97 +msgid "Content Editor" +msgstr "Konten Edior" + +#: core/views/meta_box_options.php:98 +msgid "Excerpt" +msgstr "Kutipan" + +#: core/views/meta_box_options.php:100 +msgid "Discussion" +msgstr "Diskusi" + +#: core/views/meta_box_options.php:101 +msgid "Comments" +msgstr "Komentar" + +#: core/views/meta_box_options.php:102 +msgid "Revisions" +msgstr "Revisi" + +#: core/views/meta_box_options.php:103 +msgid "Slug" +msgstr "" + +#: core/views/meta_box_options.php:104 +msgid "Author" +msgstr "" + +#: core/views/meta_box_options.php:105 +msgid "Format" +msgstr "" + +#: core/views/meta_box_options.php:107 +msgid "Categories" +msgstr "Kategori" + +#: core/views/meta_box_options.php:108 +msgid "Tags" +msgstr "Tag" + +#: core/views/meta_box_options.php:109 +msgid "Send Trackbacks" +msgstr "Kirim Pelacakan" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.mo index 72f7509..3b6d990 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.po index bab18ad..3124222 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-it_IT.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2013-11-09 15:23+0100\n" -"PO-Revision-Date: 2015-08-21 10:48+1000\n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" "Last-Translator: Elliot Condon \n" "Language-Team: Davide De Maestri \n" "Language: it_IT\n" @@ -79,7 +79,7 @@ msgstr "Campo personalizzato cancellato." #: C:\advanced-custom-fields/acf.php:571 #, php-format msgid "Field group restored to revision from %s" -msgstr "Gruppo di campi ripristinato per la revisione da %s" +msgstr "Gruppo di campi ripristinato alla revisione del %s" #: C:\advanced-custom-fields/acf.php:572 msgid "Field group published." @@ -173,7 +173,7 @@ msgstr "Flexible Content Field" #: C:\advanced-custom-fields/core/controllers/addons.php:152 msgid "Create unique designs with a flexible content layout manager!" -msgstr "Crea design unici con i contenuti flesisbili ed il gestore di layout!" +msgstr "Crea design unici con i contenuti flessibili ed il gestore di layout!" #: C:\advanced-custom-fields/core/controllers/addons.php:161 msgid "Gravity Forms Field" @@ -265,7 +265,7 @@ msgstr "Scegli il gruppo di campi da esportare" #: C:\advanced-custom-fields/core/controllers/export.php:239 #: C:\advanced-custom-fields/core/controllers/export.php:252 msgid "Export to XML" -msgstr "Esporta XML" +msgstr "Esporta in XML" #: C:\advanced-custom-fields/core/controllers/export.php:242 #: C:\advanced-custom-fields/core/controllers/export.php:267 @@ -277,7 +277,7 @@ msgid "" "ACF will create a .xml export file which is compatible with the native WP " "import plugin." msgstr "" -"ACF creerà un file di export XML che è compatibile con tutti i pulugin di " +"ACF creerà un file di export XML che è compatibile con tutti i plugin di " "importazione nativi." #: C:\advanced-custom-fields/core/controllers/export.php:254 @@ -291,11 +291,11 @@ msgstr "" #: C:\advanced-custom-fields/core/controllers/export.php:256 msgid "Select field group(s) from the list and click \"Export XML\"" -msgstr "Secgli un gruppo di campi dalla lista e clicca su \"Esporta XML\"" +msgstr "Scegli un gruppo di campi dalla lista e clicca su \"Esporta XML\"" #: C:\advanced-custom-fields/core/controllers/export.php:257 msgid "Save the .xml file when prompted" -msgstr "Ssalva il file .xml quando richiesto" +msgstr "Salva il file .xml quando richiesto" #: C:\advanced-custom-fields/core/controllers/export.php:258 msgid "Navigate to Tools » Import and select WordPress" @@ -339,13 +339,13 @@ msgid "" "php file." msgstr "" "Per favore considera che se esporti e registri un gruppo di campi nello " -"stesso WP, vedrai campi duplicati nella schermata di modifica. Per " -"modificare questo, rimuovi i gruppi di campi originali dal censtino o " -"rimuovi il codice dal tuo file functions.php" +"stesso WP, vedrai campi duplicati nella schermata di modifica. Per risolvere " +"questo, sposta il gruppo di campi originale nel cestino o rimuovi il codice " +"dal tuo file functions.php" #: C:\advanced-custom-fields/core/controllers/export.php:272 msgid "Select field group(s) from the list and click \"Create PHP\"" -msgstr "Seleziona i gruppi di campi dalla lista e clicca su \"Crea PHP\"" +msgstr "Seleziona i gruppi di campi dalla lista e clicca su \"Crea PHP\"" #: C:\advanced-custom-fields/core/controllers/export.php:273 #: C:\advanced-custom-fields/core/controllers/export.php:302 @@ -361,7 +361,7 @@ msgstr "Incolla nel tuo file functions.php" #: C:\advanced-custom-fields/core/controllers/export.php:304 msgid "To activate any Add-ons, edit and use the code in the first few lines." msgstr "" -"Per attivare qualsiasi add-ons, modifica e usa il codice nelle prime linee." +"Per attivare qualsiasi Add-ons, modifica e usa il codice nelle prime linee." #: C:\advanced-custom-fields/core/controllers/export.php:295 msgid "Export Field Groups to PHP" @@ -674,7 +674,7 @@ msgstr "Il sito web utilizza Add-ons premium che devono essere scaricati" #: C:\advanced-custom-fields/core/controllers/field_groups.php:324 msgid "Download your activated Add-ons" -msgstr "Scarica i tuoi add-ons attivati" +msgstr "Scarica i tuoi Add-ons attivati" #: C:\advanced-custom-fields/core/controllers/field_groups.php:329 msgid "" @@ -788,7 +788,7 @@ msgstr "Potenziali Problemi" #: C:\advanced-custom-fields/core/controllers/field_groups.php:366 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -898,7 +898,7 @@ msgstr "Installazione" #: C:\advanced-custom-fields/core/controllers/field_groups.php:469 msgid "For each Add-on available, please perform the following:" msgstr "" -"Per ogni Add-on disponibilie, per favore procedi come indicato di seguito:" +"Per ogni Add-on disponibile, per favore procedi come indicato di seguito:" #: C:\advanced-custom-fields/core/controllers/field_groups.php:471 msgid "Download the Add-on plugin (.zip file) to your desktop" @@ -927,7 +927,7 @@ msgstr "" #: C:\advanced-custom-fields/core/controllers/field_groups.php:475 msgid "The Add-on is now installed and activated!" -msgstr "L'Add-om è stato installato ed attivato!" +msgstr "L'Add-on è stato installato ed attivato!" #: C:\advanced-custom-fields/core/controllers/field_groups.php:489 msgid "Awesome. Let's get to work" @@ -967,7 +967,7 @@ msgstr "Modificare l'opzione del campo 'tassonomia'" #: C:\advanced-custom-fields/core/controllers/upgrade.php:835 msgid "Moving user custom fields from wp_options to wp_usermeta'" -msgstr "Spostare i campi personalizzati da wp_option a wp_usermeta" +msgstr "Spostare i campi personalizzati da wp_options a wp_usermeta" #: C:\advanced-custom-fields/core/fields/checkbox.php:19 #: C:\advanced-custom-fields/core/fields/taxonomy.php:319 @@ -1132,7 +1132,7 @@ msgstr "Seleziona file" #: C:\advanced-custom-fields/core/fields/file.php:27 msgid "Edit File" -msgstr "Modifica Fiel" +msgstr "Modifica File" #: C:\advanced-custom-fields/core/fields/file.php:28 msgid "Update File" @@ -1193,7 +1193,7 @@ msgstr "Spiacente, questo browser non supporta la geolocalizzazione" #: C:\advanced-custom-fields/core/fields/google-map.php:117 msgid "Clear location" -msgstr "Chiara posizione" +msgstr "Cancella posizione" #: C:\advanced-custom-fields/core/fields/google-map.php:122 msgid "Find current location" @@ -1201,7 +1201,7 @@ msgstr "Trova località corrente" #: C:\advanced-custom-fields/core/fields/google-map.php:123 msgid "Search for address..." -msgstr "Cerca per l'indirizzo..." +msgstr "Cerca l'indirizzo..." #: C:\advanced-custom-fields/core/fields/google-map.php:159 msgid "Center" @@ -1219,6 +1219,14 @@ msgstr "Altezza" msgid "Customise the map height" msgstr "Personalizza l'altezza della mappa" +#: C:\advanced-custom-fields/core/fields/google-map.php:199 +msgid "Zoom" +msgstr "Zoom" + +#: C:\advanced-custom-fields/core/fields/google-map.php:200 +msgid "Set the initial zoom level" +msgstr "Imposta il livello di zoom iniziale" + #: C:\advanced-custom-fields/core/fields/image.php:19 msgid "Image" msgstr "Immagine" @@ -1370,7 +1378,7 @@ msgstr "Altro" #: C:\advanced-custom-fields/core/fields/radio.php:145 msgid "Enter your choices one per line" -msgstr "Inserisci una opzione per linea" +msgstr "Inserisci un'opzione per linea" #: C:\advanced-custom-fields/core/fields/radio.php:147 msgid "Red" @@ -1386,7 +1394,7 @@ msgstr "Aggiungi l'opzione 'altro' per permettere valori personalizzati" #: C:\advanced-custom-fields/core/fields/radio.php:184 msgid "Save 'other' values to the field's choices" -msgstr "Salva i valori 'altro' per le scelte del campo" +msgstr "Salva i valori 'altro' nelle scelte del campo" #: C:\advanced-custom-fields/core/fields/relationship.php:18 msgid "Relationship" @@ -1406,7 +1414,7 @@ msgstr "Filtra per post type" #: C:\advanced-custom-fields/core/fields/relationship.php:569 msgid "Return Format" -msgstr "Restituirsci Formato" +msgstr "Restituisci Formato" #: C:\advanced-custom-fields/core/fields/relationship.php:580 msgid "Post Objects" @@ -1443,7 +1451,7 @@ msgstr "Titolo del Post" #: C:\advanced-custom-fields/core/fields/relationship.php:679 msgid "Maximum posts" -msgstr "Massimo dei post" +msgstr "Numero massimo di post" #: C:\advanced-custom-fields/core/fields/select.php:18 #: C:\advanced-custom-fields/core/fields/select.php:109 @@ -1542,8 +1550,12 @@ msgstr "Formattazione" #: C:\advanced-custom-fields/core/fields/text.php:177 #: C:\advanced-custom-fields/core/fields/textarea.php:142 -msgid "Effects value on front end" -msgstr "Valore effettivo nel front end" +msgid "Affects value on front end" +msgstr "Ha effetto sul valore nel front end" + +#: C:\advanced-custom-fields/core/fields/textarea.php:149 +msgid "Sets the textarea height" +msgstr "Imposta l'altezza della text area" #: C:\advanced-custom-fields/core/fields/text.php:186 #: C:\advanced-custom-fields/core/fields/textarea.php:151 @@ -1571,7 +1583,7 @@ msgstr "Text Area" #: C:\advanced-custom-fields/core/fields/textarea.php:152 msgid "Convert new lines into <br /> tags" -msgstr "Converti le nuove linee in tags <br />" +msgstr "Converti le nuove linee in tags <br />" #: C:\advanced-custom-fields/core/fields/true_false.php:19 msgid "True / False" @@ -1629,7 +1641,7 @@ msgstr "Salva formato" #: C:\advanced-custom-fields/core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "Questo formato determinerà il valore salvato nel database e verrà restituito " @@ -1768,15 +1780,15 @@ msgstr "Mostra questo campo quando" #: C:\advanced-custom-fields/core/views/meta_box_fields.php:285 msgid "all" -msgstr "AND" +msgstr "tutte" #: C:\advanced-custom-fields/core/views/meta_box_fields.php:286 msgid "any" -msgstr "OR" +msgstr "almeno una di" #: C:\advanced-custom-fields/core/views/meta_box_fields.php:289 msgid "these rules are met" -msgstr "queste regole incontrano" +msgstr "queste condizioni sono soddisfatte" #: C:\advanced-custom-fields/core/views/meta_box_fields.php:303 msgid "Close Field" @@ -1887,7 +1899,7 @@ msgstr "Normale (dopo il contenuto)" #: C:\advanced-custom-fields/core/views/meta_box_options.php:54 msgid "Side" -msgstr "lato" +msgstr "Lato" #: C:\advanced-custom-fields/core/views/meta_box_options.php:64 msgid "Style" @@ -1988,7 +2000,7 @@ msgstr "Invia Trackbacks" #~ msgstr "poi clicca" #~ msgid "Upgrade Database" -#~ msgstr "Aggiorna database" +#~ msgstr "Aggiorna Database" #~ msgid "Repeater field deactivated" #~ msgstr "Repeater field disattivato" @@ -2145,6 +2157,9 @@ msgstr "Invia Trackbacks" #~ msgid "+ Add Row" #~ msgstr "+ Aggiungi riga" +#~ msgid "Add Row" +#~ msgstr "Aggiungi riga" + #~ msgid "Reorder Layout" #~ msgstr "Riordina il layout" @@ -2173,6 +2188,9 @@ msgstr "Invia Trackbacks" #~ "Nessun campo. Clicca su \"+ Aggiungi un campo\" per creare il tuo primo " #~ "campo." +#~ msgid "Column Width" +#~ msgstr "Larghezza Colonna" + #~ msgid "Close Sub Field" #~ msgstr "Chiudi il campo" @@ -2192,8 +2210,8 @@ msgstr "Invia Trackbacks" #~ "Filter posts by selecting a post type
    \n" #~ "\t\t\t\tTip: deselect all post types to show all post type's posts" #~ msgstr "" -#~ "Filtra i contenuti selezionato un tipo di contenuto
    \n" -#~ "\t\t\t\tTrucco: deleziona tutti i tipi di contenuto per visualizzarne " +#~ "Filtra i contenuti selezionando un tipo di contenuto
    \n" +#~ "\t\t\t\tTrucco: deseleziona tutti i tipi di contenuto per visualizzarne " #~ "tutti i tipi" #~ msgid "Set to -1 for infinite" @@ -2211,8 +2229,11 @@ msgstr "Invia Trackbacks" #~ msgid "Table (default)" #~ msgstr "Tabella (default)" +#~ msgid "Table" +#~ msgstr "Tabella" + #~ msgid "Define how to render html tags" -#~ msgstr "Definisci come gestire i tag html" +#~ msgstr "Definisci come renderizzare i tag html" #~ msgid "HTML" #~ msgstr "HTML" @@ -2225,7 +2246,7 @@ msgstr "Invia Trackbacks" #~ msgid "No Custom Field Group found for the options page" #~ msgstr "" -#~ "Non è stato travato nessun gruppo di campi per la pagina delle opzioni" +#~ "Non è stato trovato nessun gruppo di campi per la pagina delle opzioni" #~ msgid "Create a Custom Field Group" #~ msgstr "Crea un gruppo di campi" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.mo index 0c89c3d..b34a6ee 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.po index 5c2c2f4..e1912a8 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ja.po @@ -5,14 +5,14 @@ msgstr "" "Project-Id-Version: ACF\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2013-07-09 03:49:07+00:00\n" -"PO-Revision-Date: 2013-07-26 07:40+0900\n" -"Last-Translator: Fumito MIZUNO \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Fumito MIZUNO \n" -"Language: Japanese\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 1.8.1\n" #: acf.php:325 msgid "Field Groups" @@ -774,7 +774,7 @@ msgstr "潜在的な問題" #: core/controllers/field_groups.php:366 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -1037,7 +1037,7 @@ msgstr "フォーマットを保存する" #: core/fields/date_picker/date_picker.php:106 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.mo index 8769c1a..5c696ed 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.po index 9ca738c..2713c98 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-nl_NL.po @@ -5,15 +5,16 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields - Dutch translation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-09-10 08:45+0100\n" -"PO-Revision-Date: 2013-06-10 18:59-0600\n" -"Last-Translator: Derk Oosterveld \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Inpoint \n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-KeywordsList: _e;__\n" "X-Poedit-Basepath: .\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SearchPath-0: .\n" #: acf.php:287 core/views/meta_box_options.php:94 @@ -80,7 +81,7 @@ msgstr "Groepen hersteld naar revisie van %s" #: acf.php:358 msgid "Field group published." -msgstr "Groep gepubliseerd." +msgstr "Groep gepubliceerd." #: acf.php:359 msgid "Field group saved." @@ -429,7 +430,7 @@ msgstr "Registreer veld groepen" #: core/controllers/settings.php:357 core/controllers/settings.php:474 msgid "Registered field groups will not appear in the list of editable field groups. This is useful for including fields in themes." -msgstr "Geregistreerde veld groepen verschijnen niet in de lijst met beheerbare veld groepen. Dit is handig voor het insluiten van velden in thema\'s" +msgstr "Geregistreerde veld groepen verschijnen niet in de lijst met beheerbare veld groepen. Dit is handig voor het insluiten van velden in thema's" #: core/controllers/settings.php:358 core/controllers/settings.php:475 msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file." @@ -533,11 +534,11 @@ msgstr "Upgrade database" #: core/controllers/upgrade.php:604 msgid "Modifying field group options 'show on page'" -msgstr "Wijzigen groep opties \'toon op pagina\'" +msgstr "Wijzigen groep opties 'toon op pagina'" #: core/controllers/upgrade.php:658 msgid "Modifying field option 'taxonomy'" -msgstr "Wijzigen groep opties \'toon op pagina\'" +msgstr "Wijzigen groep opties 'toon op pagina'" #: core/controllers/upgrade.php:755 msgid "Moving user custom fields from wp_options to wp_usermeta'" @@ -1081,7 +1082,7 @@ msgstr "Activeer dit filter om shortcodes te gebruiken in het WYSIWYG veld" #: core/fields/wysiwyg.php:135 msgid "Disable this filter if you encounter recursive template problems with plugins / themes" -msgstr "Schakel dit filter uit als je template problemen ondervindt met plugins/thema\'s." +msgstr "Schakel dit filter uit als je template problemen ondervindt met plugins/thema's." #: core/fields/date_picker/date_picker.php:21 msgid "Date Picker" @@ -1092,7 +1093,7 @@ msgid "Save format" msgstr "Opslaan indeling" #: core/fields/date_picker/date_picker.php:107 -msgid "This format will determin the value saved to the database and returned via the API" +msgid "This format will determine the value saved to the database and returned via the API" msgstr "De datum wordt in deze indeling opgeslagen in de database en teruggegeven door de API" #: core/fields/date_picker/date_picker.php:108 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.mo index 096e438..e57e646 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.po index d756b7f..431a9a7 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pl_PL.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields 4.4.4\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2015-12-12 15:14+0100\n" -"PO-Revision-Date: 2015-12-16 11:33+1000\n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" "Last-Translator: Elliot Condon \n" "Language-Team: Maciej Gryniuk \n" "Language: pl_PL\n" @@ -734,7 +734,7 @@ msgstr "Potencjalne błędy" #: core/controllers/field_groups.php:362 #, php-format msgid "" -"Due to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full %sMigrating from v3 to v4%s guide to view the full list of " "changes." @@ -984,7 +984,7 @@ msgstr "Format zapisu" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "Ten format określa wartość zapisywaną do bazy danych i zwracaną poprzez API" @@ -1476,7 +1476,7 @@ msgid "Formatting" msgstr "Formatowanie" #: core/fields/text.php:177 core/fields/textarea.php:165 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Określa sposób wyświetlania wartości na stronie docelowej (front-end)." #: core/fields/text.php:186 core/fields/textarea.php:174 @@ -1862,7 +1862,7 @@ msgstr "Wyślij trackbacki" #~ msgstr ", aby poznać zaktualizowane normy nazewnictwa." #~ msgid "" -#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "Due to the sizable changes surrounding Add-ons, field types and action/" #~ "filters, your website may not operate correctly. It is important that you " #~ "read the full" #~ msgstr "" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.mo index 0a00629..4b8f5dc 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.po index 1cd59a8..5ebc747 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_BR.po @@ -3,1100 +3,1021 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields v4.2.2\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2012-05-12 11:12:49+00:00\n" -"PO-Revision-Date: 2013-08-26 01:26:30+0000\n" -"Last-Translator: Augusto Simão \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Augusto Simão \n" +"Language: pt_BR\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-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: \n" -"X-Poedit-Bookmarks: \n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" +"X-Textdomain-Support: yes\n" "X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" -#: acf.php:459 -#: core/views/meta_box_options.php:98 -#@ acf -#@ default +# @ acf +# @ default +#: acf.php:459 core/views/meta_box_options.php:98 msgid "Custom Fields" msgstr "Campos Personalizados" +# @ acf #: core/controllers/upgrade.php:86 -#@ acf msgid "Upgrade" msgstr "Atualizar" -#: core/controllers/field_group.php:375 -#: core/controllers/field_group.php:437 +# @ acf +#: core/controllers/field_group.php:375 core/controllers/field_group.php:437 #: core/controllers/field_groups.php:148 -#@ acf msgid "Fields" msgstr "Campos" +# @ acf #: core/controllers/field_group.php:376 -#@ acf msgid "Location" msgstr "Local" +# @ acf #: core/controllers/field_group.php:377 -#@ acf msgid "Options" msgstr "Opções" +# @ acf #: core/controllers/input.php:523 -#@ acf msgid "Validation Failed. One or more fields below are required." msgstr "Falha na Validação. Um ou mais campos abaixo são obrigatórios." +# @ acf #: core/controllers/field_group.php:630 -#@ acf msgid "Default Template" msgstr "Modelo Padrão" +# @ acf #: core/actions/export.php:30 -#@ acf msgid "No ACF groups selected" msgstr "Nenhum grupo ACF selecionado" -#: acf.php:343 -#: core/controllers/field_groups.php:214 -#@ acf +# @ acf +#: acf.php:343 core/controllers/field_groups.php:214 msgid "Advanced Custom Fields" msgstr "Advanced Custom Fields" +# @ acf #: acf.php:342 -#@ acf msgid "Field Groups" msgstr "Grupos de Campos" +# @ acf #: acf.php:344 -#@ acf msgid "Add New" msgstr "Adicionar Novo" +# @ acf #: acf.php:345 -#@ acf msgid "Add New Field Group" msgstr "Adicionar Novo Grupo de Campos" +# @ acf #: acf.php:346 -#@ acf msgid "Edit Field Group" msgstr "Editar Grupo de Campos" +# @ acf #: acf.php:347 -#@ acf msgid "New Field Group" msgstr "Novo Grupo de Campos" +# @ acf #: acf.php:348 -#@ acf msgid "View Field Group" msgstr "Ver Grupo de Campos" +# @ acf #: acf.php:349 -#@ acf msgid "Search Field Groups" msgstr "Pesquisar Grupos de Campos" +# @ acf #: acf.php:350 -#@ acf msgid "No Field Groups found" msgstr "Nenhum Grupo de Campos encontrado" +# @ acf #: acf.php:351 -#@ acf msgid "No Field Groups found in Trash" msgstr "Nenhum Grupo de Campos encontrado na Lixeira" -#: acf.php:477 -#: acf.php:480 -#@ acf +# @ acf +#: acf.php:477 acf.php:480 msgid "Field group updated." msgstr "Grupo de campos atualizado." +# @ acf #: acf.php:478 -#@ acf msgid "Custom field updated." msgstr "Campo personalizado atualizado." +# @ acf #: acf.php:479 -#@ acf msgid "Custom field deleted." msgstr "Campo personalizado excluído." +# @ acf #. translators: %s: date and time of the revision #: acf.php:482 #, php-format -#@ acf msgid "Field group restored to revision from %s" msgstr "Grupo de campos restaurado para revisão de %s" +# @ acf #: acf.php:483 -#@ acf msgid "Field group published." msgstr "Grupo de campos publicado." +# @ acf #: acf.php:484 -#@ acf msgid "Field group saved." msgstr "Grupo de campos salvo." +# @ acf #: acf.php:485 -#@ acf msgid "Field group submitted." msgstr "Grupo de campos enviado." +# @ acf #: acf.php:486 -#@ acf msgid "Field group scheduled for." msgstr "Grupo de campos agendado." +# @ acf #: acf.php:487 -#@ acf msgid "Field group draft updated." msgstr "Rascunho de grupo de campos atualizado." +# @ default #: core/controllers/field_groups.php:147 -#@ default msgid "Title" msgstr "Título" +# @ acf #: core/views/meta_box_fields.php:24 -#@ acf msgid "New Field" msgstr "Novo Campo" +# @ acf #: core/views/meta_box_fields.php:63 -#@ acf msgid "Move to trash. Are you sure?" msgstr "Mover para a lixeira. Você tem certeza?" +# @ acf #: core/views/meta_box_fields.php:88 -#@ acf msgid "Field Order" msgstr "Ordem do Campo" -#: core/views/meta_box_fields.php:89 -#: core/views/meta_box_fields.php:141 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:89 core/views/meta_box_fields.php:141 msgid "Field Label" msgstr "Rótulo do Campo" -#: core/views/meta_box_fields.php:90 -#: core/views/meta_box_fields.php:157 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:90 core/views/meta_box_fields.php:157 msgid "Field Name" msgstr "Nome do Campo" -#: core/fields/taxonomy.php:306 -#: core/fields/user.php:251 -#: core/views/meta_box_fields.php:91 -#: core/views/meta_box_fields.php:173 -#@ acf +# @ acf +#: core/fields/taxonomy.php:306 core/fields/user.php:251 +#: core/views/meta_box_fields.php:91 core/views/meta_box_fields.php:173 msgid "Field Type" msgstr "Tipo de Campo" +# @ acf #: core/views/meta_box_fields.php:104 -#@ acf msgid "No fields. Click the + Add Field button to create your first field." msgstr "Nenhum campo. Clique no botão + Adicionar Campo para criar seu primeiro campo." -#: core/views/meta_box_fields.php:119 -#: core/views/meta_box_fields.php:122 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:119 core/views/meta_box_fields.php:122 msgid "Edit this Field" msgstr "Editar este Campo" -#: core/fields/image.php:84 -#: core/views/meta_box_fields.php:122 -#@ acf +# @ acf +#: core/fields/image.php:84 core/views/meta_box_fields.php:122 msgid "Edit" msgstr "Editar" +# @ acf #: core/views/meta_box_fields.php:123 -#@ acf msgid "Read documentation for this field" msgstr "Ler a documentação para esse campo" +# @ acf #: core/views/meta_box_fields.php:123 -#@ acf msgid "Docs" msgstr "Docs" +# @ acf #: core/views/meta_box_fields.php:124 -#@ acf msgid "Duplicate this Field" msgstr "Duplicar este Campo" +# @ acf #: core/views/meta_box_fields.php:124 -#@ acf msgid "Duplicate" msgstr "Duplicar" +# @ acf #: core/views/meta_box_fields.php:125 -#@ acf msgid "Delete this Field" msgstr "Excluir este Campo" +# @ acf #: core/views/meta_box_fields.php:125 -#@ acf msgid "Delete" msgstr "Excluir" +# @ acf #: core/views/meta_box_fields.php:142 -#@ acf msgid "This is the name which will appear on the EDIT page" msgstr "Este é o nome que irá aparecer na página de EDIÇÃO" +# @ acf #: core/views/meta_box_fields.php:158 -#@ acf msgid "Single word, no spaces. Underscores and dashes allowed" msgstr "Uma única palavra, sem espaços. Traço inferior (_) e traços (-) permitidos" +# @ acf #: core/views/meta_box_fields.php:187 -#@ acf msgid "Field Instructions" msgstr "Instruções do Campo" +# @ acf #: core/views/meta_box_fields.php:188 -#@ acf msgid "Instructions for authors. Shown when submitting data" msgstr "Instrução para os autores. Exibido quando se está enviando dados" +# @ acf #: core/views/meta_box_fields.php:200 -#@ acf msgid "Required?" msgstr "Obrigatório?" +# @ acf #: core/views/meta_box_fields.php:317 -#@ acf msgid "Close Field" msgstr "Fechar Campo" +# @ acf #: core/views/meta_box_fields.php:330 -#@ acf msgid "Drag and drop to reorder" msgstr "Clique e arraste para reorganizar" +# @ acf #: core/views/meta_box_fields.php:331 -#@ acf msgid "+ Add Field" msgstr "+ Adicionar Campo" +# @ acf #: core/views/meta_box_location.php:48 -#@ acf msgid "Rules" msgstr "Regras" +# @ acf #: core/views/meta_box_location.php:49 -#@ acf msgid "Create a set of rules to determine which edit screens will use these advanced custom fields" msgstr "Criar um conjunto de regras para determinar quais telas de edição irão utilizar esses campos avançados." -#: core/fields/_base.php:124 -#: core/views/meta_box_location.php:74 -#@ acf +# @ acf +#: core/fields/_base.php:124 core/views/meta_box_location.php:74 msgid "Basic" msgstr "Básico" -#: core/fields/page_link.php:103 -#: core/fields/post_object.php:268 -#: core/fields/relationship.php:589 -#: core/fields/relationship.php:668 +# @ acf +#: core/fields/page_link.php:103 core/fields/post_object.php:268 +#: core/fields/relationship.php:589 core/fields/relationship.php:668 #: core/views/meta_box_location.php:75 -#@ acf msgid "Post Type" msgstr "Tipo de Post" +# @ acf #: core/views/meta_box_location.php:76 -#@ acf msgid "Logged in User Type" msgstr "Tipo de Usuário Logado" -#: core/views/meta_box_location.php:78 -#: core/views/meta_box_location.php:79 -#@ acf +# @ acf +#: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79 msgid "Page" msgstr "Página" +# @ acf #: core/views/meta_box_location.php:80 -#@ acf msgid "Page Type" msgstr "Tipo de Página" +# @ acf #: core/views/meta_box_location.php:81 -#@ acf msgid "Page Parent" msgstr "Página Mãe" +# @ acf #: core/views/meta_box_location.php:82 -#@ acf msgid "Page Template" msgstr "Modelo de Página" -#: core/views/meta_box_location.php:84 -#: core/views/meta_box_location.php:85 -#@ acf +# @ acf +#: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85 msgid "Post" msgstr "Post" +# @ acf #: core/views/meta_box_location.php:86 -#@ acf msgid "Post Category" msgstr "Categoria de Post" +# @ acf #: core/views/meta_box_location.php:87 -#@ acf msgid "Post Format" msgstr "Formato de Post" +# @ acf #: core/views/meta_box_location.php:89 -#@ acf msgid "Post Taxonomy" msgstr "Taxonomia de Post" -#: core/fields/radio.php:102 -#: core/views/meta_box_location.php:91 -#@ acf +# @ acf +#: core/fields/radio.php:102 core/views/meta_box_location.php:91 msgid "Other" msgstr "Outro" -#: core/controllers/addons.php:144 -#: core/controllers/field_groups.php:448 -#@ acf +# @ acf +#: core/controllers/addons.php:144 core/controllers/field_groups.php:448 msgid "Options Page" msgstr "Página de Opções" -#: core/views/meta_box_fields.php:274 -#: core/views/meta_box_location.php:117 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:274 core/views/meta_box_location.php:117 msgid "is equal to" msgstr "é igual a" -#: core/views/meta_box_fields.php:275 -#: core/views/meta_box_location.php:118 -#@ acf +# @ acf +#: core/views/meta_box_fields.php:275 core/views/meta_box_location.php:118 msgid "is not equal to" msgstr "não é igual a" +# @ acf #: core/views/meta_box_fields.php:299 -#@ acf msgid "all" msgstr "todas" +# @ acf #: core/views/meta_box_fields.php:300 -#@ acf msgid "any" msgstr "quaisquer" +# @ acf #: core/views/meta_box_options.php:25 -#@ acf msgid "Order No." msgstr "No. de Ordem" +# @ acf #: core/views/meta_box_options.php:42 -#@ acf msgid "Position" msgstr "Posição" +# @ acf #: core/views/meta_box_options.php:54 -#@ acf msgid "Side" msgstr "Lateral" +# @ acf #: core/views/meta_box_options.php:64 -#@ acf msgid "Style" msgstr "Estilo" +# @ acf #: core/views/meta_box_options.php:75 -#@ acf msgid "Standard Metabox" msgstr "Metabox Padrão" +# @ acf #: core/views/meta_box_options.php:74 -#@ acf msgid "No Metabox" msgstr "Sem Metabox" +# @ acf #: core/views/meta_box_options.php:96 -#@ acf msgid "Content Editor" msgstr "Editor de Conteúdo" +# @ default #: core/views/meta_box_options.php:99 -#@ default msgid "Discussion" msgstr "Discussão" +# @ default #: core/views/meta_box_options.php:100 -#@ default msgid "Comments" msgstr "Comentários" +# @ default #: core/views/meta_box_options.php:102 -#@ default msgid "Slug" msgstr "Slug" +# @ default #: core/views/meta_box_options.php:103 -#@ default msgid "Author" msgstr "Autor" -#: core/controllers/field_groups.php:216 -#: core/controllers/field_groups.php:257 -#@ acf +# @ acf +#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257 msgid "Changelog" msgstr "Changelog" +# @ acf #: core/controllers/field_groups.php:217 -#@ acf msgid "See what's new in" msgstr "Veja o que há de novo na" +# @ acf #: core/controllers/field_groups.php:219 -#@ acf msgid "Resources" msgstr "Recursos (em inglês)" +# @ acf #: core/controllers/field_groups.php:232 -#@ acf msgid "Created by" msgstr "Criado por" +# @ acf #: core/controllers/field_groups.php:235 -#@ acf msgid "Vote" msgstr "Votar" +# @ acf #: core/controllers/field_groups.php:236 -#@ acf msgid "Follow" msgstr "Seguir" +# @ acf #: core/controllers/field_groups.php:424 -#@ acf msgid "Activation Code" msgstr "Código de Ativação" -#: core/controllers/addons.php:130 -#: core/controllers/field_groups.php:432 -#@ acf +# @ acf +#: core/controllers/addons.php:130 core/controllers/field_groups.php:432 msgid "Repeater Field" msgstr "Campo Repetidor" +# @ acf #: core/controllers/addons.php:151 -#@ acf msgid "Flexible Content Field" msgstr "Campo de Conteúdo Flexível" +# @ acf #: core/controllers/export.php:253 -#@ acf msgid "ACF will create a .xml export file which is compatible with the native WP import plugin." msgstr "O ACF vai criar um arquivo de exportação .xml que é compatível com o plugin de importação nativo do WP." +# @ acf #: core/controllers/export.php:259 -#@ acf msgid "Install WP import plugin if prompted" msgstr "Instale o plugin de importação do WP se necessário" +# @ acf #: core/controllers/export.php:260 -#@ acf msgid "Upload and import your exported .xml file" msgstr "Faça o upload e importe o arquivo .xml exportado" +# @ acf #: core/controllers/export.php:261 -#@ acf msgid "Select your user and ignore Import Attachments" msgstr "Selecione o seu usuário e ignore a Importação de Anexos" +# @ acf #: core/controllers/export.php:262 -#@ acf msgid "That's it! Happy WordPressing" msgstr "É isso! Feliz WordPressing" +# @ acf #: core/controllers/export.php:295 -#@ acf msgid "Export Field Groups to PHP" msgstr "Exportar Grupos de Campos para PHP" -#: core/controllers/export.php:273 -#: core/controllers/export.php:302 -#@ acf +# @ acf +#: core/controllers/export.php:273 core/controllers/export.php:302 msgid "Copy the PHP code generated" msgstr "Copie o código PHP gerado" -#: core/controllers/export.php:274 -#: core/controllers/export.php:303 -#@ acf +# @ acf +#: core/controllers/export.php:274 core/controllers/export.php:303 msgid "Paste into your functions.php file" msgstr "Cole no seu arquivo functions.php" -#: core/controllers/export.php:275 -#: core/controllers/export.php:304 -#@ acf +# @ acf +#: core/controllers/export.php:275 core/controllers/export.php:304 msgid "To activate any Add-ons, edit and use the code in the first few lines." msgstr "Para ativar qualquer Complemento, edite e utilize o código que estão nas linhas iniciais." +# @ acf #: core/controllers/export.php:426 -#@ acf msgid "No field groups were selected" msgstr "Nenhum grupo de campos foi selecionado" -#: core/fields/checkbox.php:19 -#: core/fields/taxonomy.php:317 -#@ acf +# @ acf +#: core/fields/checkbox.php:19 core/fields/taxonomy.php:317 msgid "Checkbox" msgstr "Checkbox" -#: core/fields/checkbox.php:137 -#: core/fields/radio.php:144 +# @ acf +#: core/fields/checkbox.php:137 core/fields/radio.php:144 #: core/fields/select.php:177 -#@ acf msgid "Choices" msgstr "Escolhas" +# @ acf #: core/fields/radio.php:145 -#@ acf msgid "Enter your choices one per line" msgstr "Digite cada uma de suas opções em uma nova linha." +# @ acf #: core/fields/radio.php:147 -#@ acf msgid "Red" msgstr "Vermelho" +# @ acf #: core/fields/radio.php:148 -#@ acf msgid "Blue" msgstr "Azul" -#: core/fields/checkbox.php:140 -#: core/fields/radio.php:150 +# @ acf +#: core/fields/checkbox.php:140 core/fields/radio.php:150 #: core/fields/select.php:180 -#@ acf msgid "red : Red" msgstr "vermelho : Vermelho" -#: core/fields/checkbox.php:140 -#: core/fields/radio.php:151 +# @ acf +#: core/fields/checkbox.php:140 core/fields/radio.php:151 #: core/fields/select.php:180 -#@ acf msgid "blue : Blue" msgstr "azul : Azul" +# @ acf #: core/fields/color_picker.php:19 -#@ acf msgid "Color Picker" msgstr "Seletor de Cor" +# @ acf #: core/fields/date_picker/date_picker.php:22 -#@ acf msgid "Date Picker" msgstr "Seletor de Datas" +# @ acf #: core/fields/file.php:19 -#@ acf msgid "File" msgstr "Arquivo" +# @ acf #: core/fields/file.php:123 -#@ acf msgid "No File Selected" msgstr "Nenhum Arquivo Selecionado" +# @ acf #: core/fields/file.php:123 -#@ acf msgid "Add File" msgstr "Adicionar Arquivo" -#: core/fields/file.php:153 -#: core/fields/image.php:118 +# @ acf +#: core/fields/file.php:153 core/fields/image.php:118 #: core/fields/taxonomy.php:365 -#@ acf msgid "Return Value" msgstr "Valor Retornado" +# @ acf #: core/fields/file.php:26 -#@ acf msgid "Select File" msgstr "Selecionar Arquivo" +# @ acf #: core/controllers/field_groups.php:456 -#@ acf msgid "Flexible Content" msgstr "Conteúdo Flexível" -#: core/fields/checkbox.php:174 -#: core/fields/message.php:20 -#: core/fields/radio.php:209 -#: core/fields/tab.php:20 -#@ acf +# @ acf +#: core/fields/checkbox.php:174 core/fields/message.php:20 +#: core/fields/radio.php:209 core/fields/tab.php:20 msgid "Layout" msgstr "Layout" +# @ acf #: core/controllers/field_groups.php:423 -#@ acf msgid "Name" msgstr "Nome" +# @ acf #: core/fields/image.php:19 -#@ acf msgid "Image" msgstr "Imagem" +# @ acf #: core/fields/image.php:90 -#@ acf msgid "No image selected" msgstr "Nenhuma imagem selecionada" +# @ acf #: core/fields/image.php:90 -#@ acf msgid "Add Image" msgstr "Adicionar Imagem" +# @ acf #: core/fields/image.php:130 -#@ acf msgid "Image URL" msgstr "URL da Imagem" +# @ acf #: core/fields/image.php:139 -#@ acf msgid "Preview Size" msgstr "Tamanho da Pré-visualização" +# @ acf #: acf.php:622 -#@ acf msgid "Thumbnail" msgstr "Miniatura" +# @ acf #: acf.php:623 -#@ acf msgid "Medium" msgstr "Média" +# @ acf #: acf.php:624 -#@ acf msgid "Large" msgstr "Grande" +# @ acf #: acf.php:625 -#@ acf msgid "Full" msgstr "Completo" +# @ acf #: core/fields/image.php:27 -#@ acf msgid "Select Image" msgstr "Selecionar Imagem" +# @ acf #: core/fields/page_link.php:18 -#@ acf msgid "Page Link" msgstr "Link da Página" -#: core/fields/select.php:18 -#: core/fields/select.php:109 -#: core/fields/taxonomy.php:322 -#: core/fields/user.php:266 -#@ acf +# @ acf +#: core/fields/select.php:18 core/fields/select.php:109 +#: core/fields/taxonomy.php:322 core/fields/user.php:266 msgid "Select" msgstr "Seleção" -#: core/controllers/field_group.php:741 -#: core/controllers/field_group.php:762 -#: core/controllers/field_group.php:769 -#: core/fields/file.php:186 -#: core/fields/image.php:170 -#: core/fields/page_link.php:109 -#: core/fields/post_object.php:274 -#: core/fields/post_object.php:298 -#: core/fields/relationship.php:595 -#: core/fields/relationship.php:619 +# @ acf +#: core/controllers/field_group.php:741 core/controllers/field_group.php:762 +#: core/controllers/field_group.php:769 core/fields/file.php:186 +#: core/fields/image.php:170 core/fields/page_link.php:109 +#: core/fields/post_object.php:274 core/fields/post_object.php:298 +#: core/fields/relationship.php:595 core/fields/relationship.php:619 #: core/fields/user.php:229 -#@ acf msgid "All" msgstr "Todos" -#: core/fields/page_link.php:127 -#: core/fields/post_object.php:317 -#: core/fields/select.php:214 -#: core/fields/taxonomy.php:331 +# @ acf +#: core/fields/page_link.php:127 core/fields/post_object.php:317 +#: core/fields/select.php:214 core/fields/taxonomy.php:331 #: core/fields/user.php:275 -#@ acf msgid "Allow Null?" msgstr "Permitir Nulo?" -#: core/controllers/field_group.php:441 -#: core/fields/page_link.php:137 -#: core/fields/page_link.php:158 -#: core/fields/post_object.php:327 -#: core/fields/post_object.php:348 -#: core/fields/select.php:223 -#: core/fields/select.php:242 -#: core/fields/taxonomy.php:340 -#: core/fields/user.php:284 -#: core/fields/wysiwyg.php:228 -#: core/views/meta_box_fields.php:208 -#: core/views/meta_box_fields.php:231 -#@ acf +# @ acf +#: core/controllers/field_group.php:441 core/fields/page_link.php:137 +#: core/fields/page_link.php:158 core/fields/post_object.php:327 +#: core/fields/post_object.php:348 core/fields/select.php:223 +#: core/fields/select.php:242 core/fields/taxonomy.php:340 +#: core/fields/user.php:284 core/fields/wysiwyg.php:228 +#: core/views/meta_box_fields.php:208 core/views/meta_box_fields.php:231 msgid "Yes" msgstr "Sim" -#: core/controllers/field_group.php:440 -#: core/fields/page_link.php:138 -#: core/fields/page_link.php:159 -#: core/fields/post_object.php:328 -#: core/fields/post_object.php:349 -#: core/fields/select.php:224 -#: core/fields/select.php:243 -#: core/fields/taxonomy.php:341 -#: core/fields/user.php:285 -#: core/fields/wysiwyg.php:229 -#: core/views/meta_box_fields.php:209 -#: core/views/meta_box_fields.php:232 -#@ acf +# @ acf +#: core/controllers/field_group.php:440 core/fields/page_link.php:138 +#: core/fields/page_link.php:159 core/fields/post_object.php:328 +#: core/fields/post_object.php:349 core/fields/select.php:224 +#: core/fields/select.php:243 core/fields/taxonomy.php:341 +#: core/fields/user.php:285 core/fields/wysiwyg.php:229 +#: core/views/meta_box_fields.php:209 core/views/meta_box_fields.php:232 msgid "No" msgstr "Não" -#: core/fields/page_link.php:148 -#: core/fields/post_object.php:338 +# @ acf +#: core/fields/page_link.php:148 core/fields/post_object.php:338 #: core/fields/select.php:233 -#@ acf msgid "Select multiple values?" msgstr "Selecionar vários valores?" +# @ acf #: core/fields/post_object.php:18 -#@ acf msgid "Post Object" msgstr "Objeto do Post" -#: core/fields/post_object.php:292 -#: core/fields/relationship.php:613 -#@ acf +# @ acf +#: core/fields/post_object.php:292 core/fields/relationship.php:613 msgid "Filter from Taxonomy" msgstr "Filtro de Taxonomia" +# @ acf #: core/fields/radio.php:18 -#@ acf msgid "Radio Button" msgstr "Botão de Rádio" -#: core/fields/checkbox.php:157 -#: core/fields/color_picker.php:89 -#: core/fields/email.php:106 -#: core/fields/number.php:116 -#: core/fields/radio.php:193 -#: core/fields/select.php:197 -#: core/fields/text.php:116 -#: core/fields/textarea.php:96 -#: core/fields/true_false.php:94 -#: core/fields/wysiwyg.php:171 -#@ acf +# @ acf +#: core/fields/checkbox.php:157 core/fields/color_picker.php:89 +#: core/fields/email.php:106 core/fields/number.php:116 +#: core/fields/radio.php:193 core/fields/select.php:197 +#: core/fields/text.php:116 core/fields/textarea.php:96 +#: core/fields/true_false.php:94 core/fields/wysiwyg.php:171 msgid "Default Value" msgstr "Valor Padrão" -#: core/fields/checkbox.php:185 -#: core/fields/radio.php:220 -#@ acf +# @ acf +#: core/fields/checkbox.php:185 core/fields/radio.php:220 msgid "Vertical" msgstr "Vertical" -#: core/fields/checkbox.php:186 -#: core/fields/radio.php:221 -#@ acf +# @ acf +#: core/fields/checkbox.php:186 core/fields/radio.php:221 msgid "Horizontal" msgstr "Horizontal" +# @ acf #: core/fields/relationship.php:18 -#@ acf msgid "Relationship" msgstr "Relação" +# @ acf #: core/fields/relationship.php:647 -#@ acf msgid "Search" msgstr "Pesquisa" +# @ acf #: core/fields/relationship.php:679 -#@ acf msgid "Maximum posts" msgstr "Posts máximos" +# @ acf #: core/fields/text.php:19 -#@ acf msgid "Text" msgstr "Texto" -#: core/fields/text.php:176 -#: core/fields/textarea.php:141 -#@ acf +# @ acf +#: core/fields/text.php:176 core/fields/textarea.php:141 msgid "Formatting" msgstr "Formatação" -#: core/fields/taxonomy.php:211 -#: core/fields/taxonomy.php:220 -#@ acf +# @ acf +#: core/fields/taxonomy.php:211 core/fields/taxonomy.php:220 msgid "None" msgstr "Nenhuma" +# @ acf #: core/fields/textarea.php:19 -#@ acf msgid "Text Area" msgstr "Área de Texto" +# @ acf #: core/fields/true_false.php:19 -#@ acf msgid "True / False" msgstr "Verdadeiro / Falso" -#: core/fields/message.php:19 -#: core/fields/message.php:70 +# @ acf +#: core/fields/message.php:19 core/fields/message.php:70 #: core/fields/true_false.php:79 -#@ acf msgid "Message" msgstr "Mensagem" +# @ acf #: core/fields/true_false.php:80 -#@ acf msgid "eg. Show extra content" msgstr "ex.: Mostrar conteúdo adicional" +# @ acf #: core/fields/wysiwyg.php:19 -#@ acf msgid "Wysiwyg Editor" msgstr "Editor Wysiwyg" +# @ acf #: core/fields/wysiwyg.php:186 -#@ acf msgid "Toolbar" msgstr "Barra de Ferramentas" +# @ acf #: core/fields/wysiwyg.php:218 -#@ acf msgid "Show Media Upload Buttons?" msgstr "Mostrar Botões de Upload de Mídia?" -#: core/actions/export.php:23 -#: core/views/meta_box_fields.php:58 -#@ acf +# @ acf +#: core/actions/export.php:23 core/views/meta_box_fields.php:58 msgid "Error" msgstr "Erro" -#: core/controllers/addons.php:42 -#: core/controllers/export.php:368 +# @ acf +#: core/controllers/addons.php:42 core/controllers/export.php:368 #: core/controllers/field_groups.php:311 -#@ acf msgid "Add-ons" msgstr "Complementos" +# @ acf #: core/controllers/addons.php:131 -#@ acf msgid "Create infinite rows of repeatable data with this versatile interface!" msgstr "Através desta versátil interface é prossível criar infinitas linhas de dados repetitíveis!" -#: core/controllers/addons.php:137 -#: core/controllers/field_groups.php:440 -#@ acf +# @ acf +#: core/controllers/addons.php:137 core/controllers/field_groups.php:440 msgid "Gallery Field" msgstr "Campo de Galeria" +# @ acf #: core/controllers/addons.php:138 -#@ acf msgid "Create image galleries in a simple and intuitive interface!" msgstr "Cria galerias de imagens em uma interface simples e intuitiva!" +# @ acf #: core/controllers/addons.php:145 -#@ acf msgid "Create global data to use throughout your website!" msgstr "Cria dados globais para serem usados em todo o seu site!" +# @ acf #: core/controllers/addons.php:152 -#@ acf msgid "Create unique designs with a flexible content layout manager!" msgstr "Cria designs únicos com um gerenciador de layouts de conteúdo flexivel!" +# @ acf #: core/controllers/addons.php:161 -#@ acf msgid "Gravity Forms Field" msgstr "Campo Gravity Forms" +# @ acf #: core/controllers/addons.php:162 -#@ acf msgid "Creates a select field populated with Gravity Forms!" msgstr "Cria um campo de seleção preenchido com Gravity Forms!" +# @ acf #: core/controllers/addons.php:168 -#@ acf msgid "Date & Time Picker" msgstr "Seletor de Data e Hora" +# @ acf #: core/controllers/addons.php:169 -#@ acf msgid "jQuery date & time picker" msgstr "Seletor jQuery de data e hora" +# @ acf #: core/controllers/addons.php:175 -#@ acf msgid "Location Field" msgstr "Campo de Localização" +# @ acf #: core/controllers/addons.php:176 -#@ acf msgid "Find addresses and coordinates of a desired location" msgstr "Busca endereços e coordenadas de um local desejado" +# @ acf #: core/controllers/addons.php:182 -#@ acf msgid "Contact Form 7 Field" msgstr "Campo Contact Form 7" +# @ acf #: core/controllers/addons.php:183 -#@ acf msgid "Assign one or more contact form 7 forms to a post" msgstr "Atribui um ou mais formulários Contact Form 7 para um post" +# @ acf #: core/controllers/addons.php:193 -#@ acf msgid "Advanced Custom Fields Add-Ons" msgstr "Complementos do Advanced Custom Fields" +# @ acf #: core/controllers/addons.php:196 -#@ acf msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin." msgstr "Os Complementos a seguir estão disponíveis para ampliar as funcionalidades do plugin Advanced Custom Fields." +# @ acf #: core/controllers/addons.php:197 -#@ acf msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)." msgstr "Cada Complemento pode ser instalado como um plugin separado (recebendo atualizações) ou pode ser incluído em seu tema (sem atualizações)." -#: core/controllers/addons.php:219 -#: core/controllers/addons.php:240 -#@ acf +# @ acf +#: core/controllers/addons.php:219 core/controllers/addons.php:240 msgid "Installed" msgstr "Instalado" +# @ acf #: core/controllers/addons.php:221 -#@ acf msgid "Purchase & Install" msgstr "Comprar & Instalar" -#: core/controllers/addons.php:242 -#: core/controllers/field_groups.php:425 -#: core/controllers/field_groups.php:434 -#: core/controllers/field_groups.php:442 -#: core/controllers/field_groups.php:450 -#: core/controllers/field_groups.php:458 -#@ acf +# @ acf +#: core/controllers/addons.php:242 core/controllers/field_groups.php:425 +#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442 +#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458 msgid "Download" msgstr "Download" -#: core/controllers/export.php:50 -#: core/controllers/export.php:159 -#@ acf +# @ acf +#: core/controllers/export.php:50 core/controllers/export.php:159 msgid "Export" msgstr "Exportar" +# @ acf #: core/controllers/export.php:216 -#@ acf msgid "Export Field Groups" msgstr "Exportar Grupos de Campos" +# @ acf #: core/controllers/export.php:221 -#@ acf msgid "Field Groups" msgstr "Grupos de Campos" +# @ acf #: core/controllers/export.php:222 -#@ acf msgid "Select the field groups to be exported" msgstr "Selecione os grupos de campos para serem exportados" -#: core/controllers/export.php:239 -#: core/controllers/export.php:252 -#@ acf +# @ acf +#: core/controllers/export.php:239 core/controllers/export.php:252 msgid "Export to XML" msgstr "Exportar como XML" -#: core/controllers/export.php:242 -#: core/controllers/export.php:267 -#@ acf +# @ acf +#: core/controllers/export.php:242 core/controllers/export.php:267 msgid "Export to PHP" msgstr "Exportar como PHP" +# @ acf #: core/controllers/export.php:254 -#@ acf msgid "Imported field groups will appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites." msgstr "Os grupos de campos importados irão aparecer na lista de grupos editáveis. Isso pode ser útil para migrar os grupos de campos entre sites WP." +# @ acf #: core/controllers/export.php:256 -#@ acf msgid "Select field group(s) from the list and click \"Export XML\"" msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como XML\"" +# @ acf #: core/controllers/export.php:257 -#@ acf msgid "Save the .xml file when prompted" msgstr "Salvar o arquivo .xml quando solicitado" +# @ acf #: core/controllers/export.php:258 -#@ acf msgid "Navigate to Tools » Import and select WordPress" msgstr "Navegue até Ferramentas » Importar e selecione WordPress" +# @ acf #: core/controllers/export.php:268 -#@ acf msgid "ACF will create the PHP code to include in your theme." msgstr "O ACF vai gerar o código PHP para ser incluído em seu tema." -#: core/controllers/export.php:269 -#: core/controllers/export.php:310 -#@ acf +# @ acf +#: core/controllers/export.php:269 core/controllers/export.php:310 msgid "Registered field groups will not appear in the list of editable field groups. This is useful for including fields in themes." msgstr "Os grupos de campos registrados não irão aparecer na lista de campos editáveis. Isso pode ser útil para incluir grupos de campos em temas." +# @ acf #: core/controllers/export.php:272 -#@ acf msgid "Select field group(s) from the list and click \"Create PHP\"" msgstr "Selecione o(s) grupo(s) de campos da lista e clique \"Exportar como PHP\"" -#: core/controllers/export.php:300 -#: core/fields/tab.php:65 -#@ acf +# @ acf +#: core/controllers/export.php:300 core/fields/tab.php:65 msgid "Instructions" msgstr "Instruções" +# @ acf #: core/controllers/export.php:309 -#@ acf msgid "Notes" msgstr "Observações" +# @ acf #: core/controllers/export.php:316 -#@ acf msgid "Include in theme" msgstr "Inclusão no tema" +# @ acf #: core/controllers/export.php:317 -#@ acf msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:" msgstr "O plugin Advanced Custom Fields pode ser incluído em um tema. Para fazer isso, mova o plugin ACF para dentro da pasta de seu tema e adicione o seguinte código em seu arquivo functions.php" +# @ acf #: core/controllers/export.php:331 -#@ acf msgid "Back to export" msgstr "Voltar para a exportação" +# @ acf #: core/controllers/export.php:375 -#@ acf msgid "" "/**\n" " * Register Field Groups\n" @@ -1112,798 +1033,779 @@ msgstr "" " * Você pode editar o array conforme a sua necessidade, entretanto, isso pode resultar em erros caso o array não esteja compatível com o ACF.\n" " */" +# @ acf #: core/controllers/field_group.php:439 -#@ acf msgid "Show Field Key:" msgstr "Mostrar a Chave do Campo" +# @ acf #: core/controllers/field_group.php:618 -#@ acf msgid "Front Page" msgstr "Página Inicial" +# @ acf #: core/controllers/field_group.php:619 -#@ acf msgid "Posts Page" msgstr "Página de Posts" +# @ acf #: core/controllers/field_group.php:620 -#@ acf msgid "Top Level Page (parent of 0)" msgstr "Página de nível mais alto (sem mãe)" +# @ acf #: core/controllers/field_group.php:621 -#@ acf msgid "Parent Page (has children)" msgstr "Página Mãe (tem filhos)" +# @ acf #: core/controllers/field_group.php:622 -#@ acf msgid "Child Page (has parent)" msgstr "Página filha (possui mãe)" +# @ acf #: core/controllers/field_groups.php:217 -#@ acf msgid "version" msgstr "versão" +# @ acf #: core/controllers/field_groups.php:221 -#@ acf msgid "Getting Started" msgstr "Primeiros Passos" +# @ acf #: core/controllers/field_groups.php:222 -#@ acf msgid "Field Types" msgstr "Tipos de Campos" +# @ acf #: core/controllers/field_groups.php:223 -#@ acf msgid "Functions" msgstr "Funções" +# @ acf #: core/controllers/field_groups.php:224 -#@ acf msgid "Actions" msgstr "Ações" -#: core/controllers/field_groups.php:225 -#: core/fields/relationship.php:638 -#@ acf +# @ acf +#: core/controllers/field_groups.php:225 core/fields/relationship.php:638 msgid "Filters" msgstr "Filtros" +# @ acf #: core/controllers/field_groups.php:226 -#@ acf msgid "'How to' guides" msgstr "Guias práticos" +# @ acf #: core/controllers/field_groups.php:227 -#@ acf msgid "Tutorials" msgstr "Tutoriais" +# @ acf #: core/controllers/field_groups.php:248 -#@ acf msgid "Welcome to Advanced Custom Fields" msgstr "Bem-vindo ao Advanced Custom Fields" +# @ acf #: core/controllers/field_groups.php:249 -#@ acf msgid "Thank you for updating to the latest version!" msgstr "Ele foi atualizado para a última versão!" +# @ acf #: core/controllers/field_groups.php:249 -#@ acf msgid "is more polished and enjoyable than ever before. We hope you like it." msgstr "está muito melhor e mais gostoso de usar. Esperamos que você curta." +# @ acf #: core/controllers/field_groups.php:256 -#@ acf msgid "What’s New" msgstr "O que há de novo" +# @ acf #: core/controllers/field_groups.php:259 -#@ acf msgid "Download Add-ons" msgstr "Fazer download de Complementos" +# @ acf #: core/controllers/field_groups.php:313 -#@ acf msgid "Activation codes have grown into plugins!" msgstr "Os códigos de ativação se transformaram em plugins!" +# @ acf #: core/controllers/field_groups.php:314 -#@ acf msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way." msgstr "Os complementos agora são ativados fazendo download e instalando plugins individuais. Embora esses plugins não estejam hospedados no repositório wordpress.org, cada Complemento continuará recebendo as atualizações da maneira habitual." +# @ acf #: core/controllers/field_groups.php:320 -#@ acf msgid "All previous Add-ons have been successfully installed" msgstr "Todos os Complementos anteriores foram instalados com sucesso" +# @ acf #: core/controllers/field_groups.php:324 -#@ acf msgid "This website uses premium Add-ons which need to be downloaded" msgstr "Este site usa Complementos Premium que precisam ser baixados" +# @ acf #: core/controllers/field_groups.php:324 -#@ acf msgid "Download your activated Add-ons" msgstr "Faça o download dos Complementos ativados" +# @ acf #: core/controllers/field_groups.php:329 -#@ acf msgid "This website does not use premium Add-ons and will not be affected by this change." msgstr "Este site não utiliza nenhum Complemento Premium e não será afetado por esta mudança." +# @ acf #: core/controllers/field_groups.php:339 -#@ acf msgid "Easier Development" msgstr "Desenvolvimento mais fácil" +# @ acf #: core/controllers/field_groups.php:341 -#@ acf msgid "New Field Types" msgstr "Novos Tipos de Campos" +# @ acf #: core/controllers/field_groups.php:343 -#@ acf msgid "Taxonomy Field" msgstr "Campo de Taxonomia" +# @ acf #: core/controllers/field_groups.php:344 -#@ acf msgid "User Field" msgstr "Campo de Usuário" +# @ acf #: core/controllers/field_groups.php:345 -#@ acf msgid "Email Field" msgstr "Campo de Email" +# @ acf #: core/controllers/field_groups.php:346 -#@ acf msgid "Password Field" msgstr "Campo de Senha" +# @ acf #: core/controllers/field_groups.php:348 -#@ acf msgid "Custom Field Types" msgstr "Tipos de Campos Personalizados" +# @ acf #: core/controllers/field_groups.php:349 -#@ acf msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4." msgstr "Criar o seu próprio tipo de campo nunca foi tão fácil! Infelizmente a os tipos de campos da versão 3 não são compatíveis com a versão 4." +# @ acf #: core/controllers/field_groups.php:350 -#@ acf msgid "Migrating your field types is easy, please" msgstr "Migrar os seus tipos de campos é fácil, " +# @ acf #: core/controllers/field_groups.php:350 -#@ acf msgid "follow this tutorial" msgstr "siga este tutorial (em inglês)" +# @ acf #: core/controllers/field_groups.php:350 -#@ acf msgid "to learn more." msgstr "para saber mais." +# @ acf #: core/controllers/field_groups.php:352 -#@ acf msgid "Actions & Filters" msgstr "Ações & Filtros" +# @ acf #: core/controllers/field_groups.php:353 -#@ acf msgid "read this guide" msgstr "Leia este guia (em inglês)" +# @ acf #: core/controllers/field_groups.php:353 -#@ acf msgid "to find the updated naming convention." msgstr "para encontrar convenção de nomenclaturas atualizada." +# @ acf #: core/controllers/field_groups.php:355 -#@ acf msgid "Preview draft is now working!" msgstr "A visualização de rascunhos agora está funcionando!" +# @ acf #: core/controllers/field_groups.php:356 -#@ acf msgid "This bug has been squashed along with many other little critters!" msgstr "Este problema foi liquidado junto com muitos outros bugs!" +# @ acf #: core/controllers/field_groups.php:356 -#@ acf msgid "See the full changelog" msgstr "Veja o changelog completo (em inglês)" +# @ acf #: core/controllers/field_groups.php:360 -#@ acf msgid "Important" msgstr "Importante" +# @ acf #: core/controllers/field_groups.php:362 -#@ acf msgid "Database Changes" msgstr "Alterações do Banco de Dados" +# @ acf #: core/controllers/field_groups.php:363 -#@ acf msgid "Absolutely no changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues." msgstr "Não foi feita absolutamente nenhuma alteração no banco de dados entre as versões 3 e 4. Isso significa que você pode reverter para a versão 3 sem quaisquer problemas." +# @ acf #: core/controllers/field_groups.php:365 -#@ acf msgid "Potential Issues" msgstr "Possíveis Problemas" +# @ acf #: core/controllers/field_groups.php:366 -#@ acf -msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full" +msgid "Due to the sizable changes surrounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full" msgstr "Em virtude das mudanças significativas que ocorreram com os Complementos, nos tipos de campos e nas ações/filtros, seu site poderá não funcionar corretamente. É importante que você leia todo o guia" +# @ acf #: core/controllers/field_groups.php:366 -#@ acf msgid "Migrating from v3 to v4" msgstr "Migrando da v3 para v4 (em inglês)" +# @ acf #: core/controllers/field_groups.php:366 -#@ acf msgid "guide to view the full list of changes." msgstr "para ver a lista completa de mudanças." +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "Really Important!" msgstr "Muito Importante!" +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "version 3" msgstr "versão 3" +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "of this plugin." msgstr "disponível deste plugin." +# @ acf #: core/controllers/field_groups.php:374 -#@ acf msgid "Thank You" msgstr "Obrigado" +# @ acf #: core/controllers/field_groups.php:375 -#@ acf msgid "A BIG thank you to everyone who has helped test the version 4 beta and for all the support I have received." msgstr "Um ENORME obrigado a todos que ajudaram a testar a versão 4 beta e por todo o apoio que recebi." +# @ acf #: core/controllers/field_groups.php:376 -#@ acf msgid "Without you all, this release would not have been possible!" msgstr "Sem vocês este release não seria possível!" +# @ acf #: core/controllers/field_groups.php:380 -#@ acf msgid "Changelog for" msgstr "Changelog da versão" +# @ acf #: core/controllers/field_groups.php:396 -#@ acf msgid "Learn more" msgstr "Saiba mais" +# @ acf #: core/controllers/field_groups.php:402 -#@ acf msgid "Overview" msgstr "Visão geral" +# @ acf #: core/controllers/field_groups.php:404 -#@ acf msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated." msgstr "Antes, todos os Complementos eram desbloqueados através de códigos de ativação (comprados na loja de Add-ons ACF). A novidade para na v4 é que todos os Complementos funcionam como plugins separados, que precisam ser baixados invididualmente, instalados e atualizados." +# @ acf #: core/controllers/field_groups.php:406 -#@ acf msgid "This page will assist you in downloading and installing each available Add-on." msgstr "Esta página irá te ajudar a fazer o download e a realizar a instalação de cada Complemento disponível." +# @ acf #: core/controllers/field_groups.php:408 -#@ acf msgid "Available Add-ons" msgstr "Complementos Disponíveis" +# @ acf #: core/controllers/field_groups.php:410 -#@ acf msgid "The following Add-ons have been detected as activated on this website." msgstr "Os seguintes Complementos foram detectados como ativados neste site." +# @ acf #: core/controllers/field_groups.php:466 -#@ acf msgid "Installation" msgstr "Instalação" +# @ acf #: core/controllers/field_groups.php:468 -#@ acf msgid "For each Add-on available, please perform the following:" msgstr "Para cada Complemento disponível, faça o seguinte:" +# @ acf #: core/controllers/field_groups.php:470 -#@ acf msgid "Download the Add-on plugin (.zip file) to your desktop" msgstr "Faça o download do Complemento (arquivo .zip) para a sua área de trabalho" +# @ acf #: core/controllers/field_groups.php:471 -#@ acf msgid "Navigate to" msgstr "Navegue para" +# @ acf #: core/controllers/field_groups.php:471 -#@ acf msgid "Plugins > Add New > Upload" msgstr "Plugins > Adicionar Novo > Enviar" +# @ acf #: core/controllers/field_groups.php:472 -#@ acf msgid "Use the uploader to browse, select and install your Add-on (.zip file)" msgstr "Utilize o uploader para procurar, selecionar e instalar o seu Complemento (arquivo .zip)" +# @ acf #: core/controllers/field_groups.php:473 -#@ acf msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link" msgstr "Depois de fazer o upload e instalar o plugin, clique no link 'Ativar Plugin'" +# @ acf #: core/controllers/field_groups.php:474 -#@ acf msgid "The Add-on is now installed and activated!" msgstr "O Complemento agora está instalado e ativado!" +# @ acf #: core/controllers/field_groups.php:488 -#@ acf msgid "Awesome. Let's get to work" msgstr "Fantástico. Vamos trabalhar" +# @ acf #: core/fields/relationship.php:29 -#@ acf msgid "Maximum values reached ( {max} values )" msgstr "Quantidade máxima atingida ( {max} item(s) )" +# @ acf #: core/controllers/upgrade.php:684 -#@ acf msgid "Modifying field group options 'show on page'" msgstr "Modificando as opções 'exibir na página' do grupo de campos" +# @ acf #: core/controllers/upgrade.php:738 -#@ acf msgid "Modifying field option 'taxonomy'" msgstr "Modificando a opção 'taxonomia' do campo" +# @ acf #: core/controllers/upgrade.php:835 -#@ acf msgid "Moving user custom fields from wp_options to wp_usermeta'" msgstr "Movendo os campos personalizados do usuário de wp_options para wp_usermeta" -#: core/fields/checkbox.php:20 -#: core/fields/radio.php:19 -#: core/fields/select.php:19 -#: core/fields/true_false.php:20 -#@ acf +# @ acf +#: core/fields/checkbox.php:20 core/fields/radio.php:19 +#: core/fields/select.php:19 core/fields/true_false.php:20 msgid "Choice" msgstr "Escolhas" -#: core/fields/checkbox.php:138 -#: core/fields/select.php:178 -#@ acf +# @ acf +#: core/fields/checkbox.php:138 core/fields/select.php:178 msgid "Enter each choice on a new line." msgstr "Digite cada opção em uma nova linha." -#: core/fields/checkbox.php:139 -#: core/fields/select.php:179 -#@ acf +# @ acf +#: core/fields/checkbox.php:139 core/fields/select.php:179 msgid "For more control, you may specify both a value and label like this:" msgstr "Para mais controle, você pode especificar tanto os valores quanto os rótulos, como nos exemplos:" -#: core/fields/checkbox.php:158 -#: core/fields/select.php:198 -#@ acf +# @ acf +#: core/fields/checkbox.php:158 core/fields/select.php:198 msgid "Enter each default value on a new line" msgstr "Digite cada valor padrão em uma nova linha" -#: core/fields/color_picker.php:20 -#: core/fields/date_picker/date_picker.php:23 -#@ acf +# @ acf +#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:23 msgid "jQuery" msgstr "jQuery" +# @ acf #: core/fields/date_picker/date_picker.php:30 -#@ acf msgid "Done" msgstr "Concluído" +# @ acf #: core/fields/date_picker/date_picker.php:31 -#@ acf msgid "Today" msgstr "Hoje" +# @ acf #: core/fields/date_picker/date_picker.php:34 -#@ acf msgid "Show a different month" msgstr "Mostrar um mês diferente" +# @ acf #: core/fields/date_picker/date_picker.php:105 -#@ acf msgid "Save format" msgstr "Formato dos dados" +# @ acf #: core/fields/date_picker/date_picker.php:106 -#@ acf -msgid "This format will determin the value saved to the database and returned via the API" +msgid "This format will determine the value saved to the database and returned via the API" msgstr "Este será o formato salvo no banco de dados e depois devolvido através da API" +# @ acf #: core/fields/date_picker/date_picker.php:107 -#@ acf msgid "\"yymmdd\" is the most versatile save format. Read more about" msgstr "\"yymmdd\" é o formato de gravação mais versátil. Leia mais sobre" +# @ acf #: core/fields/date_picker/date_picker.php:107 #: core/fields/date_picker/date_picker.php:123 -#@ acf msgid "jQuery date formats" msgstr "formatos de data jQuery" +# @ acf #: core/fields/date_picker/date_picker.php:121 -#@ acf msgid "Display format" msgstr "Formato de exibição" +# @ acf #: core/fields/date_picker/date_picker.php:122 -#@ acf msgid "This format will be seen by the user when entering a value" msgstr "Este é o formato que será visto pelo usuário quando um valor for digitado" +# @ acf #: core/fields/date_picker/date_picker.php:123 -#@ acf msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about" msgstr "\"dd/mm/yy\" ou \"mm/dd/yy\" são os formatos de exibição mais utilizados. Leia mais sobre" +# @ acf #: core/fields/date_picker/date_picker.php:137 -#@ acf msgid "Week Starts On" msgstr "Semana começa em" +# @ default #: core/fields/dummy.php:19 -#@ default msgid "Dummy" msgstr "Dummy" +# @ acf #: core/fields/email.php:19 -#@ acf msgid "Email" msgstr "Email" -#: core/fields/file.php:20 -#: core/fields/image.php:20 -#: core/fields/wysiwyg.php:20 -#@ acf +# @ acf +#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20 msgid "Content" msgstr "Conteúdo" +# @ acf #: core/fields/image.php:83 -#@ acf msgid "Remove" msgstr "Remover" +# @ acf #: core/fields/file.php:164 -#@ acf msgid "File Object" msgstr "Objeto do Arquivo" +# @ acf #: core/fields/file.php:165 -#@ acf msgid "File URL" msgstr "URL do Arquivo" +# @ acf #: core/fields/file.php:166 -#@ acf msgid "File ID" msgstr "ID do Arquivo" +# @ acf #: core/fields/file.php:28 -#@ acf msgid "Update File" msgstr "Atualizar Arquivo" +# @ acf #: core/fields/image.php:129 -#@ acf msgid "Image Object" msgstr "Objeto da Imagem" +# @ acf #: core/fields/image.php:131 -#@ acf msgid "Image ID" msgstr "ID da Imagem" +# @ acf #: core/fields/image.php:29 -#@ acf msgid "Update Image" msgstr "Atualizar Imagem" +# @ acf #: core/fields/message.php:71 -#@ acf msgid "Text & HTML entered here will appear inline with the fields" msgstr "O Texto & HTML digitados aqui irão aparecer em linha, como os campos" +# @ acf #: core/fields/message.php:72 -#@ acf msgid "Please note that all text will first be passed through the wp function " msgstr "Antes, todo o texto irá passar pela função " +# @ acf #: core/fields/number.php:19 -#@ acf msgid "Number" msgstr "Número" -#: core/fields/page_link.php:19 -#: core/fields/post_object.php:19 -#: core/fields/relationship.php:19 -#: core/fields/taxonomy.php:19 +# @ acf +#: core/fields/page_link.php:19 core/fields/post_object.php:19 +#: core/fields/relationship.php:19 core/fields/taxonomy.php:19 #: core/fields/user.php:19 -#@ acf msgid "Relational" msgstr "Relacional" +# @ acf #: core/fields/password.php:19 -#@ acf msgid "Password" msgstr "Senha" +# @ acf #: core/fields/relationship.php:648 -#@ acf msgid "Post Type Select" msgstr "Seleção de Tipos de Post" +# @ acf #: core/fields/relationship.php:656 -#@ acf msgid "Elements" msgstr "Elementos" +# @ acf #: core/fields/relationship.php:657 -#@ acf msgid "Selected elements will be displayed in each result" msgstr "Os elementos selecionados serão exibidos em cada resultado do filtro" +# @ acf #: core/fields/relationship.php:667 -#@ acf msgid "Post Title" msgstr "Título do Post" +# @ acf #: core/fields/tab.php:19 -#@ acf msgid "Tab" msgstr "Aba" -#: core/fields/taxonomy.php:18 -#: core/fields/taxonomy.php:276 -#@ acf +# @ acf +#: core/fields/taxonomy.php:18 core/fields/taxonomy.php:276 msgid "Taxonomy" msgstr "Taxonomia" -#: core/fields/taxonomy.php:316 -#: core/fields/user.php:260 -#@ acf +# @ acf +#: core/fields/taxonomy.php:316 core/fields/user.php:260 msgid "Multiple Values" msgstr "Vários valores" -#: core/fields/taxonomy.php:318 -#: core/fields/user.php:262 -#@ acf +# @ acf +#: core/fields/taxonomy.php:318 core/fields/user.php:262 msgid "Multi Select" msgstr "Seleção Múltipla" -#: core/fields/taxonomy.php:320 -#: core/fields/user.php:264 -#@ acf +# @ acf +#: core/fields/taxonomy.php:320 core/fields/user.php:264 msgid "Single Value" msgstr "Um único valor" +# @ acf #: core/fields/taxonomy.php:321 -#@ acf msgid "Radio Buttons" msgstr "Botões de Rádio" +# @ acf #: core/fields/taxonomy.php:350 -#@ acf msgid "Load & Save Terms to Post" msgstr "Carregar & Salvar Termos do Post" +# @ acf #: core/fields/taxonomy.php:358 -#@ acf msgid "Load value based on the post's terms and update the post's terms on save" msgstr "Carregar opções com base nos termos do post, e atualizá-los ao salvar." +# @ acf #: core/fields/taxonomy.php:375 -#@ acf msgid "Term Object" msgstr "Objeto do Termo" +# @ acf #: core/fields/taxonomy.php:376 -#@ acf msgid "Term ID" msgstr "ID do Termo" -#: core/fields/user.php:18 -#: core/views/meta_box_location.php:94 -#@ acf +# @ acf +#: core/fields/user.php:18 core/views/meta_box_location.php:94 msgid "User" msgstr "Usuário" +# @ acf #: core/fields/user.php:224 -#@ acf msgid "Filter by role" msgstr "Filtrar por função" +# @ acf #: core/views/meta_box_fields.php:58 -#@ acf msgid "Field type does not exist" msgstr "Tipo de campo não existe" +# @ acf #: core/views/meta_box_fields.php:64 -#@ acf msgid "checked" msgstr "selecionado" +# @ acf #: core/views/meta_box_fields.php:65 -#@ acf msgid "No toggle fields available" msgstr "Não há campos de alternância disponíveis" +# @ acf #: core/views/meta_box_fields.php:67 -#@ acf msgid "copy" msgstr "copiar" +# @ acf #: core/views/meta_box_fields.php:92 -#@ acf msgid "Field Key" msgstr "Chave do Campo" +# @ acf #: core/views/meta_box_fields.php:223 -#@ acf msgid "Conditional Logic" msgstr "Condições para exibição" +# @ acf #: core/views/meta_box_fields.php:293 -#@ acf msgid "Show this field when" msgstr "Mostrar este campo se" +# @ acf #: core/views/meta_box_fields.php:303 -#@ acf msgid "these rules are met" msgstr "regras forem atendidas" +# @ acf #: core/views/meta_box_location.php:60 -#@ acf msgid "Show this field group if" msgstr "Mostrar este grupo de campos se" -#: core/views/meta_box_fields.php:68 -#: core/views/meta_box_location.php:62 +# @ acf +#: core/views/meta_box_fields.php:68 core/views/meta_box_location.php:62 #: core/views/meta_box_location.php:159 -#@ acf msgid "or" msgstr "ou" +# @ acf #: core/views/meta_box_location.php:146 -#@ acf msgid "and" msgstr "e" +# @ acf #: core/views/meta_box_location.php:161 -#@ acf msgid "Add rule group" msgstr "Adicionar grupo de regras" +# @ acf #: core/views/meta_box_options.php:26 -#@ acf msgid "Field groups are created in order
    from lowest to highest" msgstr "Grupos de campo são criados na ordem
    do menor para o maior valor" +# @ acf #: core/views/meta_box_options.php:84 -#@ acf msgid "Hide on screen" msgstr "Ocultar na tela" +# @ acf #: core/views/meta_box_options.php:85 -#@ acf msgid "Select items to hide them from the edit screen" msgstr "Selecione os itens deverão ser ocultados na tela de edição" +# @ acf #: core/views/meta_box_options.php:86 -#@ acf msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)" msgstr "Se vários grupos de campos aparecem em uma tela de edição, as opções do primeiro grupo de campos é a que será utilizada. (aquele com o menor número de ordem)" +# @ default #: core/views/meta_box_options.php:97 -#@ default msgid "Excerpt" msgstr "Resumo" +# @ default #: core/views/meta_box_options.php:101 -#@ default msgid "Revisions" msgstr "Revisões" +# @ default #: core/views/meta_box_options.php:104 -#@ default msgid "Format" msgstr "Formato" -#: core/fields/relationship.php:666 -#: core/views/meta_box_options.php:105 -#@ acf -#@ default +# @ acf +# @ default +#: core/fields/relationship.php:666 core/views/meta_box_options.php:105 msgid "Featured Image" msgstr "Imagem Destacada" +# @ default #: core/views/meta_box_options.php:106 -#@ default msgid "Categories" msgstr "Categorias" +# @ default #: core/views/meta_box_options.php:107 -#@ default msgid "Tags" msgstr "Tags" +# @ default #: core/views/meta_box_options.php:108 -#@ default msgid "Send Trackbacks" msgstr "Enviar Trackbacks" -#: core/controllers/export.php:270 -#: core/controllers/export.php:311 -#@ acf +# @ acf +#: core/controllers/export.php:270 core/controllers/export.php:311 msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file." msgstr "Note que se você exportar e registrar os grupos de campos dentro de um mesmo WP, você verá campos duplicados em sua tela de edição. Para corrigir isso, mova o grupo de campos original para a lixeira ou remova o código de seu arquivo functions.php." +# @ acf #: core/controllers/export.php:323 -#@ acf msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file before the include_once code:" msgstr "Para remover todas as interfaces visuais do plugin ACF, basta utilizar uma constante para habilitar o modo Lite. Adicione o seguinte código em seu arquivo functions.php, antes do código include_once (sugerido anteriormente):" +# @ acf #: core/controllers/field_groups.php:353 -#@ acf msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please" msgstr "Todas as ações & filtros sofreram alterações significativas para tornar a personalização do ACF ainda mai fácil! " +# @ acf #: core/fields/relationship.php:436 -#@ acf msgid "Filter by post type" msgstr "Filtrar por tipo de post" +# @ acf #: core/fields/relationship.php:425 -#@ acf msgid "Search..." msgstr "Pesquisar..." +# @ acf #: core/api.php:1094 -#@ acf msgid "Update" msgstr "Atualizar" +# @ acf #: core/api.php:1095 -#@ acf msgid "Post updated" msgstr "Post atualizado" +# @ acf #: core/controllers/export.php:352 -#@ acf msgid "" "/**\n" " * Install Add-ons\n" @@ -1935,291 +1837,267 @@ msgstr "" " * - http://www.advancedcustomfields.com/resources/getting-started/including-lite-mode-in-a-plugin-theme/\n" " */" +# @ default #: core/controllers/field_group.php:707 -#@ default msgid "Publish" msgstr "Publicar" +# @ default #: core/controllers/field_group.php:708 -#@ default msgid "Pending Review" msgstr "Revisão Pendente" +# @ default #: core/controllers/field_group.php:709 -#@ default msgid "Draft" msgstr "Rascunho" +# @ default #: core/controllers/field_group.php:710 -#@ default msgid "Future" msgstr "Futuro" +# @ default #: core/controllers/field_group.php:711 -#@ default msgid "Private" msgstr "Privado" +# @ default #: core/controllers/field_group.php:712 -#@ default msgid "Revision" msgstr "Revisão" +# @ default #: core/controllers/field_group.php:713 -#@ default msgid "Trash" msgstr "Lixeira" +# @ default #: core/controllers/field_group.php:726 -#@ default msgid "Super Admin" msgstr "Super Admin" +# @ acf #: core/controllers/field_groups.php:369 -#@ acf msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest" msgstr "Se você atualizou o plugin ACF sem ter o conhecimento prévio dessas mudanças, reverta para a última versão" +# @ acf #: core/controllers/input.php:519 -#@ acf msgid "Expand Details" msgstr "Expandir Detalhes" +# @ acf #: core/controllers/input.php:520 -#@ acf msgid "Collapse Details" msgstr "Recolher Detalhes" +# @ acf #: core/controllers/upgrade.php:139 -#@ acf msgid "What's new" msgstr "O que há de novo" +# @ acf #: core/controllers/upgrade.php:150 -#@ acf msgid "credits" msgstr "créditos" -#: core/fields/email.php:107 -#: core/fields/number.php:117 -#: core/fields/text.php:117 -#: core/fields/textarea.php:97 +# @ acf +#: core/fields/email.php:107 core/fields/number.php:117 +#: core/fields/text.php:117 core/fields/textarea.php:97 #: core/fields/wysiwyg.php:172 -#@ acf msgid "Appears when creating a new post" msgstr "Aparece quando é criado o novo post" -#: core/fields/email.php:123 -#: core/fields/number.php:133 -#: core/fields/password.php:105 -#: core/fields/text.php:131 +# @ acf +#: core/fields/email.php:123 core/fields/number.php:133 +#: core/fields/password.php:105 core/fields/text.php:131 #: core/fields/textarea.php:111 -#@ acf msgid "Placeholder Text" msgstr "Texto Placeholder" -#: core/fields/email.php:124 -#: core/fields/number.php:134 -#: core/fields/password.php:106 -#: core/fields/text.php:132 +# @ acf +#: core/fields/email.php:124 core/fields/number.php:134 +#: core/fields/password.php:106 core/fields/text.php:132 #: core/fields/textarea.php:112 -#@ acf msgid "Appears within the input" msgstr "Texto que aparecerá dentro do campo (até que algo seja digitado)" -#: core/fields/email.php:138 -#: core/fields/number.php:148 -#: core/fields/password.php:120 -#: core/fields/text.php:146 -#@ acf +# @ acf +#: core/fields/email.php:138 core/fields/number.php:148 +#: core/fields/password.php:120 core/fields/text.php:146 msgid "Prepend" msgstr "Prefixo" -#: core/fields/email.php:139 -#: core/fields/number.php:149 -#: core/fields/password.php:121 -#: core/fields/text.php:147 -#@ acf +# @ acf +#: core/fields/email.php:139 core/fields/number.php:149 +#: core/fields/password.php:121 core/fields/text.php:147 msgid "Appears before the input" msgstr "Texto que aparecerá antes do campo" -#: core/fields/email.php:153 -#: core/fields/number.php:163 -#: core/fields/password.php:135 -#: core/fields/text.php:161 -#@ acf +# @ acf +#: core/fields/email.php:153 core/fields/number.php:163 +#: core/fields/password.php:135 core/fields/text.php:161 msgid "Append" msgstr "Sufixo" -#: core/fields/email.php:154 -#: core/fields/number.php:164 -#: core/fields/password.php:136 -#: core/fields/text.php:162 -#@ acf +# @ acf +#: core/fields/email.php:154 core/fields/number.php:164 +#: core/fields/password.php:136 core/fields/text.php:162 msgid "Appears after the input" msgstr "Texto que aparecerá após o campo" +# @ acf #: core/fields/file.php:27 -#@ acf msgid "Edit File" msgstr "Editar Arquivo" -#: core/fields/file.php:29 -#: core/fields/image.php:30 -#@ acf +# @ acf +#: core/fields/file.php:29 core/fields/image.php:30 msgid "uploaded to this post" msgstr "anexada a este post" -#: core/fields/file.php:175 -#: core/fields/image.php:158 -#@ acf +# @ acf +#: core/fields/file.php:175 core/fields/image.php:158 msgid "Library" msgstr "Biblioteca" -#: core/fields/file.php:187 -#: core/fields/image.php:171 -#@ acf +# @ acf +#: core/fields/file.php:187 core/fields/image.php:171 msgid "Uploaded to post" msgstr "Anexado ao post" +# @ acf #: core/fields/image.php:28 -#@ acf msgid "Edit Image" msgstr "Editar Imagem" -#: core/fields/image.php:119 -#: core/fields/relationship.php:570 -#@ acf +# @ acf +#: core/fields/image.php:119 core/fields/relationship.php:570 msgid "Specify the returned value on front end" msgstr "Especifique a forma com os valores serão retornados no front-end" +# @ acf #: core/fields/image.php:140 -#@ acf msgid "Shown when entering data" msgstr "Exibido ao inserir os dados" +# @ acf #: core/fields/image.php:159 -#@ acf msgid "Limit the media library choice" msgstr "Determinar a escolha da biblioteca de mídia" +# @ acf #: core/fields/number.php:178 -#@ acf msgid "Minimum Value" msgstr "Valor Mínimo" +# @ acf #: core/fields/number.php:194 -#@ acf msgid "Maximum Value" msgstr "Valor Máximo" +# @ acf #: core/fields/number.php:210 -#@ acf msgid "Step Size" msgstr "Tamanho das frações" +# @ acf #: core/fields/radio.php:172 -#@ acf msgid "Add 'other' choice to allow for custom values" msgstr "Adicionar uma opção 'Outro' (que irá permitir a inserção de valores personalizados)" +# @ acf #: core/fields/radio.php:184 -#@ acf msgid "Save 'other' values to the field's choices" msgstr "Salvar os valores personalizados inseridos na opção 'Outros' na lista de escolhas" +# @ acf #: core/fields/relationship.php:569 -#@ acf msgid "Return Format" msgstr "Formato dos Dados" +# @ acf #: core/fields/relationship.php:580 -#@ acf msgid "Post Objects" msgstr "Objetos dos Posts" +# @ acf #: core/fields/relationship.php:581 -#@ acf msgid "Post IDs" msgstr "IDs dos Posts" +# @ acf #: core/fields/tab.php:68 -#@ acf msgid "Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings." msgstr "Utilize o campo \"Aba\" para organizar melhor sua tela de edição, agrupando seus campos em diferentes guias." +# @ acf #: core/fields/tab.php:69 -#@ acf msgid "All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together." msgstr "Todos os campos que seguirem este campo \"Aba\" (ou até que outra \"Aba\" seja definida) ficarão agrupados." +# @ acf #: core/fields/tab.php:70 -#@ acf msgid "Use multiple tabs to divide your fields into sections." msgstr "Aproveite para utilizar várias guias e dividir seus campos em seções." -#: core/fields/text.php:177 -#: core/fields/textarea.php:142 -#@ acf -msgid "Effects value on front end" +# @ acf +#: core/fields/text.php:177 core/fields/textarea.php:142 +msgid "Affects value on front end" msgstr "Valor dos efeitos no front-end" -#: core/fields/text.php:186 -#: core/fields/textarea.php:151 -#@ acf +# @ acf +#: core/fields/text.php:186 core/fields/textarea.php:151 msgid "No formatting" msgstr "Sem formatação" -#: core/fields/text.php:187 -#: core/fields/textarea.php:153 -#@ acf +# @ acf +#: core/fields/text.php:187 core/fields/textarea.php:153 msgid "Convert HTML into tags" msgstr "Converter HTML em tags" -#: core/fields/text.php:195 -#: core/fields/textarea.php:126 -#@ acf +# @ acf +#: core/fields/text.php:195 core/fields/textarea.php:126 msgid "Character Limit" msgstr "Limite de Caracteres" -#: core/fields/text.php:196 -#: core/fields/textarea.php:127 -#@ acf +# @ acf +#: core/fields/text.php:196 core/fields/textarea.php:127 msgid "Leave blank for no limit" msgstr "Deixe em branco para nenhum limite" +# @ acf #: core/fields/textarea.php:152 -#@ acf msgid "Convert new lines into <br /> tags" msgstr "Converter novas linhas em tags <br />" +# @ acf #: core/views/meta_box_fields.php:66 -#@ acf msgid "Field group title is required" msgstr "O título do grupo de campos é obrigatório" +# @ acf #: core/views/meta_box_location.php:88 -#@ acf msgid "Post Status" msgstr "Status do Post" +# @ acf #: core/views/meta_box_location.php:92 -#@ acf msgid "Attachment" msgstr "Anexo" +# @ acf #: core/views/meta_box_location.php:93 -#@ acf msgid "Term" msgstr "Termo" +# @ acf #: core/views/meta_box_options.php:52 -#@ acf msgid "High (after title)" msgstr "Superior (depois do título)" +# @ acf #: core/views/meta_box_options.php:53 -#@ acf msgid "Normal (after content)" msgstr "Normal (depois do editor de conteúdo)" - diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.mo index 2c1e5e6..b5c3ef0 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.po index db2fce0..dcd2894 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-pt_PT.po @@ -5,15 +5,15 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2015-07-23 11:02+0100\n" -"PO-Revision-Date: 2016-01-07 08:48+0000\n" -"Last-Translator: Pedro Mendonça \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Pedro Mendonça \n" "Language: pt_PT\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-Generator: Poedit 1.8.6\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;" @@ -76,7 +76,7 @@ msgstr "Campo personalizado actualizado." #: acf.php:599 msgid "Custom field deleted." -msgstr "Campo personalizado apagado." +msgstr "Campo personalizado eliminado." #. translators: %s: date and time of the revision #: acf.php:602 @@ -412,7 +412,7 @@ msgstr "O título do grupo de campos é obrigatório" #: core/controllers/field_group.php:362 msgid "copy" -msgstr "copiar" +msgstr "cópia" #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62 #: core/views/meta_box_location.php:159 @@ -537,7 +537,7 @@ msgstr "Título" #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253 msgid "Changelog" -msgstr "Changelog" +msgstr "Registo de alterações" #: core/controllers/field_groups.php:217 #, php-format @@ -735,7 +735,7 @@ msgstr "Possíveis problemas" #: core/controllers/field_groups.php:362 #, php-format msgid "" -"Due to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full %sMigrating from v3 to v4%s guide to view the full list of " "changes." @@ -1133,7 +1133,7 @@ msgstr "Mapa do Google" #: core/fields/google-map.php:33 msgid "Locating" -msgstr "Localizando" +msgstr "A obter localização" #: core/fields/google-map.php:34 msgid "Sorry, this browser does not support geolocation" @@ -1165,7 +1165,7 @@ msgstr "Zoom" #: core/fields/google-map.php:200 msgid "Set the initial zoom level" -msgstr "Definie o nível de zoom inicial" +msgstr "Definir o nível de zoom inicial" #: core/fields/google-map.php:217 msgid "Height" @@ -1478,7 +1478,7 @@ msgid "Formatting" msgstr "Formatação" #: core/fields/text.php:177 core/fields/textarea.php:165 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Define o formato do conteúdo na frente do site" #: core/fields/text.php:186 core/fields/textarea.php:174 @@ -1587,11 +1587,11 @@ msgstr "Duplicar" #: core/views/meta_box_fields.php:110 msgid "Delete this Field" -msgstr "Apagar este campo" +msgstr "Eliminar este campo" #: core/views/meta_box_fields.php:110 msgid "Delete" -msgstr "Apagar" +msgstr "Eliminar" #: core/views/meta_box_fields.php:127 msgid "This is the name which will appear on the EDIT page" @@ -1870,7 +1870,7 @@ msgstr "Enviar trackbacks" #, fuzzy #~ msgid "" -#~ "Do to the sizable changes surounding Add-ons, field types and action/" +#~ "Due to the sizable changes surrounding Add-ons, field types and action/" #~ "filters, your website may not operate correctly. It is important that you " #~ "read the full" #~ msgstr "" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru-RU.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru-RU.mo deleted file mode 100644 index 8392a58..0000000 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru-RU.mo and /dev/null differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.mo index 3db004c..4692da9 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.po index d516373..fc05093 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-ru_RU.po @@ -5,14 +5,14 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2013-12-03 04:25:56+00:00\n" -"PO-Revision-Date: 2014-01-05 15:33+0100\n" -"Last-Translator: Alex Torscho \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: \n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-Basepath: .\n" "X-Poedit-SearchPath-0: ./acf.pot\n" @@ -749,7 +749,7 @@ msgstr "Потенциальные проблемы" #: core/controllers/field_groups.php:366 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "Сохранить формат" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "Этот формат определит значение сохраненное в базе данных и возвращенное " @@ -1509,7 +1509,7 @@ msgid "Formatting" msgstr "Форматирование" #: core/fields/text.php:177 core/fields/textarea.php:142 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Значение эффектов в пользовательском интерфейсе" #: core/fields/text.php:186 core/fields/textarea.php:151 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.mo index 81e3adc..1f39a03 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.po index d655079..eb4a1d7 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sk_SK.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the 4.3.x package. msgid "" msgstr "" -"PO-Revision-Date: 2014-08-28 11:40+0100\n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Poedit 1.6.7\n" +"X-Generator: Poedit 1.8.1\n" "Project-Id-Version: 4.3.x\n" "POT-Creation-Date: \n" -"Last-Translator: \n" +"Last-Translator: Elliot Condon \n" "Language-Team: \n" "Language: sk\n" @@ -735,7 +735,7 @@ msgstr "Potencionálne problémy" #: core/controllers/field_groups.php:366 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -1008,7 +1008,7 @@ msgstr "Uložiť formát" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "Tento formát určí hodnotu uloženú v databáze a vrátenú hodnotu pomocou API" @@ -1483,7 +1483,7 @@ msgid "Formatting" msgstr "Formátovanie" #: core/fields/text.php:177 core/fields/textarea.php:142 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Ovplyvní hodnotu na prednej stránke" #: core/fields/text.php:186 core/fields/textarea.php:151 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.mo index 2f0a72d..fd18b08 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.po index c3fba3a..3841fa8 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sr_RS.po @@ -8,10 +8,11 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2014-04-09 10:58+0100\n" -"Last-Translator: Borisa Djuraskovic \n" -"Language-Team: LANGUAGE \n" -"X-Generator: Poedit 1.5.7\n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" +"Language-Team: \n" +"Language: sr_RS\n" +"X-Generator: Poedit 1.8.1\n" #: acf.php:455 msgid "Field Groups" @@ -307,7 +308,7 @@ msgid "" "Registered field groups will not appear in the list of editable field " "groups. This is useful for including fields in themes." msgstr "" -"Registrovano polje grupe neće < / b > se pojviti u listi uredive polja " +"Registrovano polje grupe neće < / b > se pojviti u listi uredive polja " "grupa . Ovo je korisno za uključivanje polja u temama ." #: core/controllers/export.php:270 core/controllers/export.php:311 @@ -318,7 +319,7 @@ msgid "" "php file." msgstr "" "Imajte na umu da ako eksportujete e i registrujete polja grupe u okviru " -"istog WP, videćete dupliranapolja na stranici Izmena ekrana . Da biste ovo " +"istog WP, videćete dupliranapolja na stranici Izmena ekrana . Da biste ovo " "rešili, molim vas pomerite originalno polje grupu u kantu za otpatke ili " "uklonite kod iz vaše functions.php file." @@ -361,7 +362,7 @@ msgid "" "functions.php file:" msgstr "" "Napredna custom polja plugina mogu biti uključeni u temu . Da biste to " -"uradili , pomerite ACF plugin u vašu temu i dodajte sledeći kod na vaš " +"uradili , pomerite ACF plugin u vašu temu i dodajte sledeći kod na vaš " "functions.php fajl :" #: core/controllers/export.php:323 @@ -371,7 +372,7 @@ msgid "" "before the include_once code:" msgstr "" "Da biste uklonili sve vizuelne interfejse iz ACF plugina , možete da " -"koristite konstanta da biste omogućili lagani režim. Dodajte sledeći kod na " +"koristite konstanta da biste omogućili lagani režim. Dodajte sledeći kod na " "svoju functions.php fajl pre < / b >include kod :" #: core/controllers/export.php:331 @@ -604,8 +605,8 @@ msgid "" "each Add-on will continue to receive updates in the usual way." msgstr "" "Dodaci su sada aktivirani za preuzimanjei instaliranje pojedinačnih " -"pluginove . Iako ovi pluginovi neće biti na wordpress.org spremištu , svaki " -"dodatak će nastaviti da prima updateove na uobičajen način ." +"pluginove . Iako ovi pluginovi neće biti na wordpress.org spremištu , svaki " +"dodatak će nastaviti da prima updateove na uobičajen način ." #: core/controllers/field_groups.php:316 msgid "All previous Add-ons have been successfully installed" @@ -728,12 +729,12 @@ msgstr "Potencijalna izdanja" #: core/controllers/field_groups.php:362 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" "Zbog značajnih promena okolnih dodataka , tipova polja i akcionih / " -"filtera , vaš sajt neće raditi pravilno . Važno je da ste pročitali sve" +"filtera , vaš sajt neće raditi pravilno . Važno je da ste pročitali sve" #: core/controllers/field_groups.php:362 msgid "Migrating from v3 to v4" @@ -806,7 +807,7 @@ msgid "" "This page will assist you in downloading and installing each available Add-" "on." msgstr "" -"Ova stranica će vam pomoći u preuzimate i instalirate svaki dostupan " +"Ova stranica će vam pomoći u preuzimate i instalirate svaki dostupan " "dodatak ." #: core/controllers/field_groups.php:405 @@ -999,7 +1000,7 @@ msgstr "Sačuvati format" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "Ovaj format će odrediti vrednost sačuvanu u bazi podataka i vratiti preko " @@ -1420,7 +1421,7 @@ msgid "" "is defined) will be grouped together." msgstr "" "Sva polja koja slede ovo \" tab polje \" ( ili dok drugo \" tab polje \" " -"nije definisano ) će biti grupisana zajedno ." +"nije definisano ) će biti grupisana zajedno ." #: core/fields/tab.php:70 msgid "Use multiple tabs to divide your fields into sections." @@ -1483,7 +1484,7 @@ msgid "Formatting" msgstr "Formatiranje" #: core/fields/text.php:177 core/fields/textarea.php:142 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Vrednost efekata na prednjem kraju" #: core/fields/text.php:186 core/fields/textarea.php:151 @@ -1780,7 +1781,7 @@ msgid "" "If multiple field groups appear on an edit screen, the first field group's " "options will be used. (the one with the lowest order number)" msgstr "" -"Ako se više polja grupe pojavljuju na ekranu, prvo polje grupe će se " +"Ako se više polja grupe pojavljuju na ekranu, prvo polje grupe će se " "koristiti . (onaj sa brojem najnižeg reda )" #: core/views/meta_box_options.php:96 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.mo index 3507a4a..3c3f9a2 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.po index 9672fa7..aedaaa8 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-sv_SE.po @@ -5,14 +5,14 @@ msgstr "" "Project-Id-Version: Advanced Custom Fields 4.3.0\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2013-09-25 22:42+0100\n" -"PO-Revision-Date: 2013-09-25 22:42+0100\n" -"Last-Translator: Mikael Jorhult \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Mikael Jorhult \n" -"Language: Swedish\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.7\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" @@ -742,7 +742,7 @@ msgstr "Potentiella problem" #: core/controllers/field_groups.php:366 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -1419,7 +1419,7 @@ msgid "Formatting" msgstr "Formatering" #: core/fields/text.php:177 core/fields/textarea.php:142 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Påverkar hur värdet skrivs ut" #: core/fields/text.php:186 core/fields/textarea.php:151 @@ -1496,7 +1496,7 @@ msgstr "Lagringsformat" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" "Detta format avgör hur värdet sparas i databasen och returneras via " diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.mo index 157f97e..3f1d34a 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.po index 2a140c0..0d4098a 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-tr_TR.po @@ -8,10 +8,10 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2014-09-29 21:59+0200\n" -"Last-Translator: TrStar \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: TrStar \n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.8.1\n" "Plural-Forms: nplurals=1; plural=0;\n" "Language: tr_TR\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -734,11 +734,11 @@ msgstr "Potansiyel Sorunlar" #: core/controllers/field_groups.php:362 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" -"Add-ons, alan türleri ve eylem / filtreleri surounding büyükçe " +"Add-ons, alan türleri ve eylem / filtreleri surrounding büyükçe " "değişiklikleri yapmak, web sitenizin düzgün çalışmayabilir. Bu tam okumanız " "önemlidir" @@ -1004,10 +1004,10 @@ msgstr "Kayıt biçimi" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" -"Bu biçim API aracılığıyla veritabanına kaydedilir ve iade değerini determin " +"Bu biçim API aracılığıyla veritabanına kaydedilir ve iade değerini determine " "olacak" #: core/fields/date_picker/date_picker.php:128 @@ -1490,7 +1490,7 @@ msgid "Formatting" msgstr "Biçimlendirme" #: core/fields/text.php:177 core/fields/textarea.php:142 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "Etki değerleri ön tarafta" #: core/fields/text.php:186 core/fields/textarea.php:151 diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.mo index c34c235..7b8a0a4 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.po index 4c7d6e9..5e04dea 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-uk.po @@ -5,10 +5,10 @@ msgstr "" "Project-Id-Version: ACF\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n" "POT-Creation-Date: 2012-10-04 22:38:59+00:00\n" -"PO-Revision-Date: 2013-06-10 19:00-0600\n" -"Last-Translator: Jurko Chervony \n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: UA WordPress \n" -"Language: Ukrainian\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,7 +17,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e\n" "X-Poedit-Basepath: ..\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SearchPath-0: .\n" #: acf.php:286 core/views/meta_box_options.php:94 @@ -618,7 +618,7 @@ msgstr "Зберегти формат" #: core/fields/date_picker/date_picker.php:107 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.mo b/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.mo index ec3c1d5..b076dea 100644 Binary files a/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.mo and b/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.mo differ diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.po b/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.po index d163fcd..8b0fe2d 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.po +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf-zh_CN.po @@ -5,8 +5,8 @@ msgstr "" "Project-Id-Version: acf chinese\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-05-11 19:59+0800\n" -"PO-Revision-Date: 2013-06-10 19:00-0600\n" -"Last-Translator: Amos Lee <4626395@gmail.com>\n" +"PO-Revision-Date: 2016-04-04 10:09+1000\n" +"Last-Translator: Elliot Condon \n" "Language-Team: Amos Lee <470266798@qq.com>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: _e;__\n" "X-Poedit-Basepath: .\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 1.8.1\n" "X-Poedit-SearchPath-0: ..\n" #: ../acf.php:264 @@ -715,7 +715,7 @@ msgstr "潜在问题" #: ../core/controllers/field_groups.php:366 msgid "" -"Do to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full" msgstr "" @@ -1316,7 +1316,7 @@ msgstr "保存格式" #: ../core/fields/date_picker/date_picker.php:147 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "此格式将决定存储在数据库中的值,并通过API返回。" diff --git a/www/wp-content/plugins/advanced-custom-fields/lang/acf.pot b/www/wp-content/plugins/advanced-custom-fields/lang/acf.pot index ddf160b..58fe409 100644 --- a/www/wp-content/plugins/advanced-custom-fields/lang/acf.pot +++ b/www/wp-content/plugins/advanced-custom-fields/lang/acf.pot @@ -1,4 +1,4 @@ -# Copyright (C) 2014 +# Copyright (C) 2014 # This file is distributed under the same license as the package. #, fuzzy msgid "" @@ -694,7 +694,7 @@ msgstr "" #: core/controllers/field_groups.php:362 #, php-format msgid "" -"Due to the sizable changes surounding Add-ons, field types and action/" +"Due to the sizable changes surrounding Add-ons, field types and action/" "filters, your website may not operate correctly. It is important that you " "read the full %sMigrating from v3 to v4%s guide to view the full list of " "changes." @@ -925,7 +925,7 @@ msgstr "" #: core/fields/date_picker/date_picker.php:127 msgid "" -"This format will determin the value saved to the database and returned via " +"This format will determine the value saved to the database and returned via " "the API" msgstr "" @@ -1407,7 +1407,7 @@ msgid "Formatting" msgstr "" #: core/fields/text.php:177 core/fields/textarea.php:165 -msgid "Effects value on front end" +msgid "Affects value on front end" msgstr "" #: core/fields/text.php:186 core/fields/textarea.php:174 diff --git a/www/wp-content/plugins/advanced-custom-fields/readme.txt b/www/wp-content/plugins/advanced-custom-fields/readme.txt index 7864d38..b1d022e 100644 --- a/www/wp-content/plugins/advanced-custom-fields/readme.txt +++ b/www/wp-content/plugins/advanced-custom-fields/readme.txt @@ -3,7 +3,7 @@ Contributors: elliotcondon Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin Requires at least: 3.5.0 Tested up to: 4.5.0 -Stable tag: 4.4.5 +Stable tag: 4.4.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -116,6 +116,14 @@ http://support.advancedcustomfields.com/ == Changelog == += 4.4.6 = +* Google Map field: Improved compatibility with 3rd party plugins including Google JS API +* API: Improved `get_` functions to load value from the current queried object (post, user, term) +* Core: Added support for new WP 4.5 term edit page +* Language: Updated Portuguese translation - thanks to Pedro Mendonca +* Language: Added Welsh translation - thanks to Carl Morris +* Language: Added Indonesian translation - thanks to Rio Bermano + = 4.4.5= * Core: Fixed metabox title appearing on seamless field groups * Language: Updated Portuguese translation diff --git a/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php b/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php index 6f03569..fb38536 100644 --- a/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php +++ b/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php @@ -13,7 +13,7 @@ Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/ Description: Admin panel for creating custom post types and custom taxonomies in WordPress Author: WebDevStudios -Version: 1.3.1 +Version: 1.3.3 Author URI: https://webdevstudios.com/ Text Domain: custom-post-type-ui Domain Path: /languages @@ -25,8 +25,8 @@ exit; } -define( 'CPT_VERSION', '1.3.0' ); // Left for legacy purposes. -define( 'CPTUI_VERSION', '1.3.0' ); +define( 'CPT_VERSION', '1.3.3' ); // Left for legacy purposes. +define( 'CPTUI_VERSION', '1.3.3' ); define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) ); /** diff --git a/www/wp-content/plugins/custom-post-type-ui/inc/post-types.php b/www/wp-content/plugins/custom-post-type-ui/inc/post-types.php index c7608a2..bdaf0a7 100644 --- a/www/wp-content/plugins/custom-post-type-ui/inc/post-types.php +++ b/www/wp-content/plugins/custom-post-type-ui/inc/post-types.php @@ -24,7 +24,7 @@ function cptui_post_type_enqueue_scripts() { $current_screen = get_current_screen(); - if ( ! is_object( $current_screen ) || 'post' === $current_screen->base ) { + if ( ! is_object( $current_screen ) || 'cpt-ui_page_cptui_manage_post_types' !== $current_screen->base ) { return; } @@ -203,6 +203,7 @@ function cptui_manage_post_types() { get_tr_start() . $ui->get_th_start(); echo $ui->get_label( 'name', __( 'Post Type Slug', 'custom-post-type-ui' ) ); + echo $ui->get_required_span(); echo $ui->get_th_end() . $ui->get_td_start(); echo $ui->get_text_input( array( @@ -247,6 +248,7 @@ function cptui_manage_post_types() { 'labeltext' => esc_html__( 'Plural Label', 'custom-post-type-ui' ), 'aftertext' => esc_html__( '(e.g. Movies)', 'custom-post-type-ui' ), 'helptext' => esc_html__( 'Used for the post type admin menu item.', 'custom-post-type-ui' ), + 'required' => true ) ); echo $ui->get_text_input( array( @@ -256,6 +258,7 @@ function cptui_manage_post_types() { 'labeltext' => esc_html__( 'Singular Label', 'custom-post-type-ui' ), 'aftertext' => esc_html__( '(e.g. Movie)', 'custom-post-type-ui' ), 'helptext' => esc_html__( 'Used when a singular label is needed.', 'custom-post-type-ui' ), + 'required' => true ) ); ?> @@ -370,15 +373,6 @@ function cptui_manage_post_types() { 'aftertext' => __( '(e.g. Add New Movie)', 'custom-post-type-ui' ) ) ); - echo $ui->get_text_input( array( - 'labeltext' => __( 'Edit', 'custom-post-type-ui' ), - 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ), - 'namearray' => 'cpt_labels', - 'name' => 'edit', - 'textvalue' => ( isset( $current['labels']['edit'] ) ) ? esc_attr( $current['labels']['edit'] ) : '', - 'aftertext' => __( '(e.g. Edit)', 'custom-post-type-ui' ) - ) ); - echo $ui->get_text_input( array( 'labeltext' => __( 'Edit Item', 'custom-post-type-ui' ), 'helptext' => esc_attr__( 'Used at the top of the post editor screen for an existing post type post.', 'custom-post-type-ui' ), @@ -397,15 +391,6 @@ function cptui_manage_post_types() { 'aftertext' => __( '(e.g. New Movie)', 'custom-post-type-ui' ) ) ); - echo $ui->get_text_input( array( - 'labeltext' => __( 'View', 'custom-post-type-ui' ), - 'helptext' => esc_attr__( 'Used in the admin bar when viewing a published post in the post type.', 'custom-post-type-ui' ), - 'namearray' => 'cpt_labels', - 'name' => 'view', - 'textvalue' => ( isset( $current['labels']['view'] ) ) ? esc_attr( $current['labels']['view'] ) : '', - 'aftertext' => __( '(e.g. View)', 'custom-post-type-ui' ) - ) ); - echo $ui->get_text_input( array( 'labeltext' => __( 'View Item', 'custom-post-type-ui' ), 'helptext' => esc_attr__( 'Used in the admin bar when viewing editor screen for a published post in the post type.', 'custom-post-type-ui' ), diff --git a/www/wp-content/plugins/custom-post-type-ui/inc/support.php b/www/wp-content/plugins/custom-post-type-ui/inc/support.php index 905d1c1..e2fe764 100644 --- a/www/wp-content/plugins/custom-post-type-ui/inc/support.php +++ b/www/wp-content/plugins/custom-post-type-ui/inc/support.php @@ -24,7 +24,7 @@ function cptui_support_enqueue_scripts() { $current_screen = get_current_screen(); - if ( ! is_object( $current_screen ) || 'post' === $current_screen->base ) { + if ( ! is_object( $current_screen ) || 'cpt-ui_page_cptui_support' !== $current_screen->base ) { return; } diff --git a/www/wp-content/plugins/custom-post-type-ui/inc/taxonomies.php b/www/wp-content/plugins/custom-post-type-ui/inc/taxonomies.php index e4cb4a0..b8675fb 100644 --- a/www/wp-content/plugins/custom-post-type-ui/inc/taxonomies.php +++ b/www/wp-content/plugins/custom-post-type-ui/inc/taxonomies.php @@ -24,7 +24,7 @@ function cptui_taxonomies_enqueue_scripts() { $currentScreen = get_current_screen(); - if ( ! is_object( $currentScreen ) || $currentScreen->base == "post" ) { + if ( ! is_object( $currentScreen ) || 'cpt-ui_page_cptui_manage_taxonomies' !== $currentScreen->base ) { return; } diff --git a/www/wp-content/plugins/custom-post-type-ui/readme.txt b/www/wp-content/plugins/custom-post-type-ui/readme.txt index eca3210..05634e0 100644 --- a/www/wp-content/plugins/custom-post-type-ui/readme.txt +++ b/www/wp-content/plugins/custom-post-type-ui/readme.txt @@ -1,21 +1,21 @@ === Custom Post Type UI === -Contributors: tw2113, williamsba1, webdevstudios +Contributors: webdevstudios, tw2113, vegasgeek, modemlooper, williamsba1 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056 Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom Requires at least: 4.2 Tested up to: 4.5 -Stable tag: 1.3.1 +Stable tag: 1.3.3 License: GPLv2 Admin UI for creating custom post types and custom taxonomies in WordPress == Description == -This plugin provides an easy to use interface to create and administer custom post types and taxonomies in WordPress. This plugin is created for WordPress 3.x. +This plugin provides an easy to use interface for creating and administrating custom post types and taxonomies in WordPress. This plugin is created for WordPress 3.0 and higher. -Please note that this plugin will NOT handle display of registered post types or taxonomies in your current theme. It will simply register them for you. +Please note that Custom Post Type UI alone will not display post types or taxonomies data in customized places within your site; it simply registers them for you to use. Check out [Custom Post Type UI Extended](https://pluginize.com/product/custom-post-type-ui-extended/?utm_source=cptui-wporg&utm_medium=text&utm_campaign=cptui_description) for an easy way to display post type content from any registered types on your site, including those created with Custom Post Type UI and more. -All official development on this plugin is on GitHub. Version bumps will still be published here on WordPress.org. You can find the repo at [https://github.com/WebDevStudios/custom-post-type-ui](https://github.com/WebDevStudios/custom-post-type-ui). Please file confirmed issues, bugs, and enhancement ideas there, when possible. +All official development on this plugin is on GitHub. New releases are still published here on WordPress.org. The version shown here should be considered the latest stable release. You can find the repo at [https://github.com/WebDevStudios/custom-post-type-ui](https://github.com/WebDevStudios/custom-post-type-ui). Please file confirmed issues, bugs, and enhancement ideas there, when possible. == Screenshots == @@ -24,12 +24,26 @@ All official development on this plugin is on GitHub. Version bumps will still b 3. Add new taxonomy screen and tab. 4. Edit taxonomy screen and tab. 5. Registered post types and taxonomies from CPTUI -6. Import/Export screen. -7. Help/support screen. -8. Update Information/Donate screen. +6. Import/Export Post Types screen. +7. Import/Export Taxonomies screen. +8. Get Code screen. +9. Debug Info screen. +10. Help/support screen. +11. About/Update Information/Donate screen. == Changelog == += 1.3.3 - 2016-4-5 = +* Revert Changes for ajax/heartbeat API requests before post type registration. 3rd party or other plugins were breaking because post types were not registered. + += 1.3.2 - 2016-4-5 = +* Fixed: Logic issue with cptui js files loading where they weren't meant to. +* Fixed: Required markers missing on required post type fields. +* Fixed: Removed excess labels that are not used by WordPress core. +* Added: New contributors to readme file. Welcome John and Ryan. +* Updated: New screenshot from 1.3.0 release. Moved to assets folder so users will no longer download as part of CPTUI. +* Updated: Better prevention of running our code during ajax/heartbeat api requests. + = 1.3.1 - 2016-3-25 = * Fixed: Logic issue for default values of `public` parameter for taxonomies added in 1.3.0. @@ -194,6 +208,17 @@ All official development on this plugin is on GitHub. Version bumps will still b == Upgrade Notice == += 1.3.3 - 2016-4-5 = +* Revert Changes for ajax/heartbeat API requests before post type registration. 3rd party or other plugins were breaking because post types were not registered. + += 1.3.2 - 2016-4-5 = +* Fixed: Logic issue with cptui js files loading where they weren't meant to. +* Fixed: Required markers missing on required post type fields. +* Fixed: Removed excess labels that are not used by WordPress core. +* Added: New contributors to readme file. Welcome John and Ryan. +* Updated: New screenshot from 1.3.0 release. Moved to assets folder so users will no longer download as part of CPTUI. +* Updated: Better prevention of running our code during ajax/heartbeat api requests. + = 1.3.1 - 2016-3-25 = * Fixed: Logic issue for default values of `public` parameter for taxonomies added in 1.3.0. diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-1.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-1.png deleted file mode 100644 index 8773b7c..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-1.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-2.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-2.png deleted file mode 100644 index 6b3c75c..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-2.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-3.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-3.png deleted file mode 100644 index afa81a4..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-3.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-4.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-4.png deleted file mode 100644 index 14773c8..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-4.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-5.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-5.png deleted file mode 100644 index 6274ac4..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-5.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-6.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-6.png deleted file mode 100644 index 6562574..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-6.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-7.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-7.png deleted file mode 100644 index df3b422..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-7.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-8.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-8.png deleted file mode 100644 index b2599cb..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-8.png and /dev/null differ diff --git a/www/wp-content/plugins/custom-post-type-ui/screenshot-9.png b/www/wp-content/plugins/custom-post-type-ui/screenshot-9.png deleted file mode 100644 index b7d3dee..0000000 Binary files a/www/wp-content/plugins/custom-post-type-ui/screenshot-9.png and /dev/null differ diff --git a/www/wp-content/themes/ation2016/functions.php b/www/wp-content/themes/ation2016/functions.php index 82d2c93..be4173e 100755 --- a/www/wp-content/themes/ation2016/functions.php +++ b/www/wp-content/themes/ation2016/functions.php @@ -37,6 +37,9 @@ function __construct() { add_action( 'init', array( $this, 'register_post_types' ) ); add_action( 'init', array( $this, 'register_taxonomies' ) ); add_action( 'wp_enqueue_scripts', array( $this, 'loadScripts' ) ); + @ini_set( 'upload_max_size', '64M' ); + @ini_set( 'post_max_size', '64M' ); + @ini_set( 'max_execution_time', '300' ); parent::__construct(); } diff --git a/www/wp-content/themes/ation2016/src/scripts/main.js b/www/wp-content/themes/ation2016/src/scripts/main.js index cfecbc9..622d5fd 100644 --- a/www/wp-content/themes/ation2016/src/scripts/main.js +++ b/www/wp-content/themes/ation2016/src/scripts/main.js @@ -34,7 +34,7 @@ jQuery( document ).ready( function( $ ) { }); // Filter grid items based on their work category, on the click of a filter - $('.work-bar a').click( function(e) { + $('#service-filter a').click( function(e) { e.preventDefault(); var filter = $(this).data('filter'); $blocks.isotope({ diff --git a/www/wp-content/themes/ation2016/src/styles/components/_about.scss b/www/wp-content/themes/ation2016/src/styles/components/_about.scss new file mode 100644 index 0000000..9802bed --- /dev/null +++ b/www/wp-content/themes/ation2016/src/styles/components/_about.scss @@ -0,0 +1,7 @@ +.about-members { + .row { + div { + padding: 0; + } + } +} \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/src/styles/components/_work.scss b/www/wp-content/themes/ation2016/src/styles/components/_work.scss index 3ae31cb..4061bc6 100644 --- a/www/wp-content/themes/ation2016/src/styles/components/_work.scss +++ b/www/wp-content/themes/ation2016/src/styles/components/_work.scss @@ -3,6 +3,10 @@ $work-bar-box-shadow-color: rgba(168,168,168,0.64); $work-bar-box-shadow: 0px 4px 15px 0px $work-bar-box-shadow-color; .work-bar { + + &.about-bar { + margin-bottom: 0; + } background-color: $orange; color: white; text-align: center; diff --git a/www/wp-content/themes/ation2016/src/styles/site.scss b/www/wp-content/themes/ation2016/src/styles/site.scss index 56f0075..1e6bd1c 100644 --- a/www/wp-content/themes/ation2016/src/styles/site.scss +++ b/www/wp-content/themes/ation2016/src/styles/site.scss @@ -24,6 +24,7 @@ $header-height-sticky: 70px; @import 'components/home'; @import 'components/work'; @import 'components/services'; +@import 'components/about'; @import 'components/footer'; @import 'components/mobile-menu'; diff --git a/www/wp-content/themes/ation2016/static/scripts/main.js b/www/wp-content/themes/ation2016/static/scripts/main.js index cfecbc9..622d5fd 100644 --- a/www/wp-content/themes/ation2016/static/scripts/main.js +++ b/www/wp-content/themes/ation2016/static/scripts/main.js @@ -34,7 +34,7 @@ jQuery( document ).ready( function( $ ) { }); // Filter grid items based on their work category, on the click of a filter - $('.work-bar a').click( function(e) { + $('#service-filter a').click( function(e) { e.preventDefault(); var filter = $(this).data('filter'); $blocks.isotope({ diff --git a/www/wp-content/themes/ation2016/static/scripts/main.min.js b/www/wp-content/themes/ation2016/static/scripts/main.min.js index 5660f41..cf30810 100644 --- a/www/wp-content/themes/ation2016/static/scripts/main.min.js +++ b/www/wp-content/themes/ation2016/static/scripts/main.min.js @@ -1 +1 @@ -jQuery(document).ready(function(o){function e(){console.log("Called Mobile Toggle"),c.toggleClass("mobile-active"),a.toggleClass("mobile-active"),o("body").toggleClass("mobile-active"),l()}function l(){c.hasClass("mobile-active")?a.on("touchmove",function(o){o.preventDefault()}):a.off("touchmove")}o(window).scroll(function(){o(this).scrollTop()>1?o("header").addClass("sticky"):o("header").removeClass("sticky")});var t=o(".blocks");t.isotope({percentPosition:!0,itemSelector:".block",columnWidth:".block"}),t.imagesLoaded().progress(function(){t.isotope("layout")}).done(function(){if(console.log("imagesloaded done"),t&&window.location.hash){var o=window.location.hash.replace("#",".");t.isotope({filter:o,percentPosition:!0,itemSelector:".block",columnWidth:".block"})}}),o(".work-bar a").click(function(e){e.preventDefault();var l=o(this).data("filter");t.isotope({filter:l,percentPosition:!0,itemSelector:".block",columnWidth:".block"}),console.log("Filtered by",l)});var i=o("#vimeo_player")[0];if(i){var n=$f(i);n.addEvent("ready",function(){console.log("muting vimeo"),n.api("setVolume",0)})}var c=o("#mobile-menu"),a=o("#page"),s=o(".mobile-btn");s.on("click",function(o){console.log("Clicked Mobile Button"),o.preventDefault(),e()})}); \ No newline at end of file +jQuery(document).ready(function(o){function e(){console.log("Called Mobile Toggle"),c.toggleClass("mobile-active"),a.toggleClass("mobile-active"),o("body").toggleClass("mobile-active"),l()}function l(){c.hasClass("mobile-active")?a.on("touchmove",function(o){o.preventDefault()}):a.off("touchmove")}o(window).scroll(function(){o(this).scrollTop()>1?o("header").addClass("sticky"):o("header").removeClass("sticky")});var i=o(".blocks");i.isotope({percentPosition:!0,itemSelector:".block",columnWidth:".block"}),i.imagesLoaded().progress(function(){i.isotope("layout")}).done(function(){if(console.log("imagesloaded done"),i&&window.location.hash){var o=window.location.hash.replace("#",".");i.isotope({filter:o,percentPosition:!0,itemSelector:".block",columnWidth:".block"})}}),o("#service-filter a").click(function(e){e.preventDefault();var l=o(this).data("filter");i.isotope({filter:l,percentPosition:!0,itemSelector:".block",columnWidth:".block"}),console.log("Filtered by",l)});var t=o("#vimeo_player")[0];if(t){var n=$f(t);n.addEvent("ready",function(){console.log("muting vimeo"),n.api("setVolume",0)})}var c=o("#mobile-menu"),a=o("#page"),s=o(".mobile-btn");s.on("click",function(o){console.log("Clicked Mobile Button"),o.preventDefault(),e()})}); \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/static/styles/site.css b/www/wp-content/themes/ation2016/static/styles/site.css index c1fe8c6..3d7173b 100644 --- a/www/wp-content/themes/ation2016/static/styles/site.css +++ b/www/wp-content/themes/ation2016/static/styles/site.css @@ -5929,6 +5929,8 @@ html, body { font-family: "Source Sans Pro", sans-serif; margin-bottom: 15px; box-shadow: 0px 4px 15px 0px rgba(168, 168, 168, 0.64); } + .work-bar.about-bar { + margin-bottom: 0; } .work-bar a, .work-bar a:hover { color: inherit; } @@ -5988,6 +5990,9 @@ html, body { flex: 1 0 auto; margin-top: 0; } +.about-members .row div { + padding: 0; } + footer { border-top: 1px solid #eeeeee; background-color: #a8a8a8; } diff --git a/www/wp-content/themes/ation2016/static/styles/site.min.css b/www/wp-content/themes/ation2016/static/styles/site.min.css index e34240c..8f8636c 100644 --- a/www/wp-content/themes/ation2016/static/styles/site.min.css +++ b/www/wp-content/themes/ation2016/static/styles/site.min.css @@ -2,4 +2,4 @@ * Bootstrap v3.3.6 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.label,sub,sup{vertical-align:baseline}hr,img{border:0}body,legend,pre{color:#333}body,figure{margin:0}.img-responsive,.img-thumbnail,.table,label{max-width:100%}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px}@font-face{font-family:Lato;font-style:normal;font-weight:300;src:local('Lato Light'),local('Lato-Light'),url(https://fonts.gstatic.com/s/lato/v11/nj47mAZe0mYUIySgfn0wpQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:400;src:local('Lato Regular'),local('Lato-Regular'),url(https://fonts.gstatic.com/s/lato/v11/v0SdcGFAl2aezM9Vq_aFTQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:700;src:local('Lato Bold'),local('Lato-Bold'),url(https://fonts.gstatic.com/s/lato/v11/DvlFBScY1r-FMtZSYIYoYw.ttf) format('truetype')}@font-face{font-family:Lato;font-style:italic;font-weight:400;src:local('Lato Italic'),local('Lato-Italic'),url(https://fonts.gstatic.com/s/lato/v11/LqowQDslGv4DmUBAfWa2Vw.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:300;src:local('Source Sans Pro Light'),local('SourceSansPro-Light'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGMw1o1eFRj7wYC6JbISqOjY.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro'),local('SourceSansPro-Regular'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNzbP97U9sKh0jjxbPbfOKg.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local('SourceSansPro-Bold'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGLsbIrGiHa6JIepkyt5c0A0.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local('SourceSansPro-It'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/M2Jd71oPJhLKp0zdtTvoM0DauxaEVho0aInXGvhmB4k.ttf) format('truetype')}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{vertical-align:middle}svg:not(:root){overflow:hidden}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open>.btn-danger.dropdown-toggle,.open>.btn-default.dropdown-toggle,.open>.btn-info.dropdown-toggle,.open>.btn-primary.dropdown-toggle,.open>.btn-warning.dropdown-toggle{background-image:none}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot);src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.img-responsive{display:block;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:all .2s ease-in-out;display:inline-block;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 form input[type=submit],.h1 small,.h2 .small,.h2 form input[type=submit],.h2 small,.h3 .small,.h3 form input[type=submit],.h3 small,.h4 .small,.h4 form input[type=submit],.h4 small,.h5 .small,.h5 form input[type=submit],.h5 small,.h6 .small,.h6 form input[type=submit],.h6 small,form .h1 input[type=submit],form .h2 input[type=submit],form .h3 input[type=submit],form .h4 input[type=submit],form .h5 input[type=submit],form .h6 input[type=submit],form h1 input[type=submit],form h2 input[type=submit],form h3 input[type=submit],form h4 input[type=submit],form h5 input[type=submit],form h6 input[type=submit],h1 .small,h1 form input[type=submit],h1 small,h2 .small,h2 form input[type=submit],h2 small,h3 .small,h3 form input[type=submit],h3 small,h4 .small,h4 form input[type=submit],h4 small,h5 .small,h5 form input[type=submit],h5 small,h6 .small,h6 form input[type=submit],h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 form input[type=submit],.h1 small,.h2 .small,.h2 form input[type=submit],.h2 small,.h3 .small,.h3 form input[type=submit],.h3 small,form .h1 input[type=submit],form .h2 input[type=submit],form .h3 input[type=submit],form h1 input[type=submit],form h2 input[type=submit],form h3 input[type=submit],h1 .small,h1 form input[type=submit],h1 small,h2 .small,h2 form input[type=submit],h2 small,h3 .small,h3 form input[type=submit],h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}p,pre{margin:0 0 10px}.h4 .small,.h4 form input[type=submit],.h4 small,.h5 .small,.h5 form input[type=submit],.h5 small,.h6 .small,.h6 form input[type=submit],.h6 small,form .h4 input[type=submit],form .h5 input[type=submit],form .h6 input[type=submit],form h4 input[type=submit],form h5 input[type=submit],form h6 input[type=submit],h4 .small,h4 form input[type=submit],h4 small,h5 .small,h5 form input[type=submit],h5 small,h6 .small,h6 form input[type=submit],h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}dt,kbd kbd,label{font-weight:700}@media (min-width:768px){.lead{font-size:21px}}.small,form input[type=submit],small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.initialism,.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}ol,ul{margin-bottom:10px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:20px}dd,dt{line-height:1.42857}dd{margin-left:0}.dl-horizontal dd:after,.dl-horizontal dd:before{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dropdown-menu>li>a,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote form input[type=submit],blockquote small,form blockquote input[type=submit]{display:block;font-size:80%;line-height:1.42857;color:#777}blockquote .small:before,blockquote footer:before,blockquote form input[type=submit]:before,blockquote small:before,form blockquote input[type=submit]:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%}caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse form input[type=submit]:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right form input[type=submit]:before,blockquote.pull-right small:before,form .blockquote-reverse input[type=submit]:before,form blockquote.pull-right input[type=submit]:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse form input[type=submit]:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right form input[type=submit]:after,blockquote.pull-right small:after,form .blockquote-reverse input[type=submit]:after,form blockquote.pull-right input[type=submit]:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;box-shadow:none}pre{display:block;padding:9.5px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.container-fluid:after,.container-fluid:before,.container:after,.container:before,.row:after,.row:before{display:table;content:" "}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.container,.container-fluid{padding-left:15px;padding-right:15px}.pre-scrollable{overflow-y:scroll}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.work-grid .blocks .block{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.work-grid .blocks .block{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6,.work-grid .blocks .block{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.work-grid .blocks .block{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4,.work-grid .blocks .block{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}fieldset{margin:0;min-width:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px}input[type=search]{box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{font-size:14px;line-height:1.42857;color:#555;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=radio]:focus,input[type=file]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm>input[type=date].form-control,.input-group-sm>input[type=date].input-group-addon,.input-group-sm>input[type=time].form-control,.input-group-sm>input[type=time].input-group-addon,.input-group-sm>input[type=datetime-local].form-control,.input-group-sm>input[type=datetime-local].input-group-addon,.input-group-sm>input[type=month].form-control,.input-group-sm>input[type=month].input-group-addon,input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg>input[type=date].form-control,.input-group-lg>input[type=date].input-group-addon,.input-group-lg>input[type=time].form-control,.input-group-lg>input[type=time].input-group-addon,.input-group-lg>input[type=datetime-local].form-control,.input-group-lg>input[type=datetime-local].input-group-addon,.input-group-lg>input[type=month].form-control,.input-group-lg>input[type=month].input-group-addon,input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm{height:30px;line-height:30px}.input-group-sm>.input-group-btn>select[multiple].btn,.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg{height:46px;line-height:46px}.input-group-lg>.input-group-btn>select[multiple].btn,.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.collapsing,.dropdown,.dropup{position:relative}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:" ";display:table}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857;white-space:nowrap}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{font-weight:400;color:#333}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:12px;color:#777}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:after,.btn-toolbar:before{content:" ";display:table}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn .caret,.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group{float:left}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before{content:" ";display:table}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group,.input-group-btn,.input-group-btn>.btn{position:relative}.input-group{display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:after,.nav:before{content:" ";display:table}.nav>li,.nav>li>a{display:block;position:relative}.nav:after{clear:both}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li,.nav-tabs.nav-justified>li{float:none}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:after,.navbar:before{content:" ";display:table}.navbar-header:after,.navbar-header:before{content:" ";display:table}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:after,.navbar-collapse:before{content:" ";display:table}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar{border-radius:4px}.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.embed-responsive,.modal,.modal-open,.progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}.navbar-static-top{z-index:1000;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-danger,.progress-striped .progress-bar-info,.progress-striped .progress-bar-success,.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px}@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.navbar-btn{margin-top:8px;margin-bottom:8px}.btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#090909;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li+li:before{content:"/ ";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.33333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:after,.pager:before{content:" ";display:table}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.close,.list-group-item>.badge{float:right}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.label:empty{display:none}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.alert,.thumbnail{margin-bottom:20px}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.alert{padding:15px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-bar-info{background-color:#5bc0de}.progress-bar-warning{background-color:#f0ad4e}.progress-bar-danger{background-color:#d9534f}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active form .list-group-item-heading>input[type=submit],.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:focus form .list-group-item-heading>input[type=submit],.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover form .list-group-item-heading>input[type=submit],form .list-group-item.active .list-group-item-heading>input[type=submit],form .list-group-item.active:focus .list-group-item-heading>input[type=submit],form .list-group-item.active:hover .list-group-item-heading>input[type=submit]{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a,form .panel-title>input[type=submit],form .panel-title>input[type=submit]>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel-body{padding:15px}.panel-body:after,.panel-body:before{content:" ";display:table}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{margin-top:0;font-size:16px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-break:auto;line-height:1.42857;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before{display:table;content:" "}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.carousel-control,.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;letter-spacing:normal;text-align:left;text-align:start;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;letter-spacing:normal;text-align:left;text-align:start;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.carousel-caption,.carousel-control{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);text-align:center}.mobile-menu,.work-bar{text-transform:uppercase}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.carousel,.carousel-inner{position:relative}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{display:block;max-width:100%;height:auto;line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;font-size:20px;background-color:transparent}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.affix,header{position:fixed}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:after,.clearfix:before{content:" ";display:table}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.services .flex .service h1,.services .flex .service p,.work-bar,aside,form input,form label,form select,form textarea,h1,h2,h3,h4,h5,h6,header .mobile-btn,header nav ul li,li,p{font-family:"Source Sans Pro",sans-serif}aside.grey,h1.grey,h2.grey,h3.grey,h4.grey,h5.grey,h6.grey,li,li.grey,p,p.grey{color:#a8a8a8}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}a,header,header nav ul li a{color:#ff7200}h1,h2,h3,h4,h5,h6{margin-bottom:.7em}p{margin-bottom:20px}p:first-of-type{margin-top:20px}li,p{font-size:18px}li.large,p.large{font-size:22px}a:hover{color:#cc5b00}.admin-bar header{top:32px}header{width:100%;text-align:center;height:100px;background:#fff;transition:all .3s ease,box-shadow 0s ease;top:0}header li{line-height:100px;font-size:25px;transition:all .3s ease}header.sticky{height:70px;box-shadow:-1px 2px 10px -1px #a8a8a8;z-index:1000}.home-bg,body,html{height:100%}header.sticky li{line-height:70px;font-size:15px}header.sticky .header-logo img{max-height:50px}header .header-logo{display:block;padding-left:20px;padding-top:10px;padding-bottom:10px}header .header-logo img{max-height:70px;transition:all .3s ease}header nav ul{list-style-type:none;margin:0}header nav ul li{display:inline-block;padding-right:20px}.services .flex,.services .flex .service{display:-webkit-flex;display:-ms-flexbox}section#content{margin-top:100px}.home-bg{width:100%;margin-bottom:40px}.videoWrapper{position:relative;padding-bottom:56.25%;height:0;border-bottom:1px solid #eee}.videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.work-bar{background-color:#ff7200;color:#fff;text-align:center;line-height:60px;font-size:18px;margin-bottom:15px;box-shadow:0 4px 15px 0 rgba(168,168,168,.64)}.work-bar a,.work-bar a:hover{color:inherit}.work-grid{z-index:-1;margin-bottom:50px}.work-grid .blocks .block{margin-bottom:10px}.services .bubbles{background-color:transparent;margin-bottom:40px}.mobile-menu,footer{background-color:#a8a8a8}.services .bubbles a{border-radius:50px;width:70px;height:70px}.services .flex{display:flex;overflow:hidden;flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap}.services .flex .service{display:flex;color:#fff;margin-bottom:20px}.services .flex .service .content{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#a8a8a8;padding:20px}.services .flex .service h1{margin-top:0;text-align:center;font-size:25px;margin-left:-20px;padding-left:20px;line-height:1.5;border-bottom:5px solid #ff7200;font-weight:200}.services .flex .service p{color:#fff}.services .flex .service p:first-of-type{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;margin-top:0}footer{border-top:1px solid #eee}footer .footer-links:first-child ul{float:left}footer .footer-links ul{list-style-type:none;margin:0;padding:0;float:right}@media (max-width:767px){footer .footer-links ul{float:left}}footer .footer-links ul li{display:inline-block;padding-right:20px;color:#fff;font-size:12px;line-height:36px}footer .footer-links ul li a,footer .footer-links ul li a:hover{color:#fff}.mobile-menu{box-sizing:border-box;position:fixed;top:0;right:-225px;width:225px;min-height:100%;height:100%;overflow-y:auto;transition:right .2s ease-in;padding:0 1em;border-left:1px solid #a8a8a8}#page,.mobile-menu.mobile-active{right:0}.video-contain,body.mobile-active{overflow:hidden}.mobile-menu li.top-mobile-bar a{padding:10px}.mobile-menu>ul{padding:0;margin:0;list-style-type:none}.admin-bar .mobile-menu>ul{margin-top:32px}@media screen and (max-width:782px){.admin-bar .mobile-menu>ul{margin-top:46px}}.mobile-menu>ul ul{margin:0 1em;padding:0;list-style-type:none}.mobile-menu>ul ul a:hover,.mobile-menu>ul ul a:link,.mobile-menu>ul ul a:visited{font-size:.8em;color:#ff7200;text-decoration:none;padding:10px;line-height:1.5em}.mobile-menu>ul>li{font-size:16px;font-weight:500;border-bottom:1px solid #fff}.mobile-menu>ul>li a{color:#fff;padding:20px 10px;display:block;text-decoration:none}.mobile-menu>ul>li a:hover{text-decoration:none}#mobile-menu{right:-225px}#mobile-menu.mobile-active{right:0;transition:right .2s ease-in}#page{position:relative;transition:right .2s ease-in,opacity .2s ease-in;opacity:1}#page.mobile-active{right:225px;opacity:.4;height:100%;overflow:hidden;width:100%}header .mobile-btn{font-size:30px;text-decoration:none;line-height:70px}header .mobile-btn:hover{text-decoration:none}#mobile-menu .mobile-btn{font-size:20px;color:#fff;text-decoration:none}#mobile-menu .mobile-btn:hover{text-decoration:none}.ation-btn,form input[type=submit]{border:3px solid transparent;color:#fff;background-color:#ff7200;transition:.2s;text-transform:uppercase;padding:10px;font-size:20px;font-family:"Source Sans Pro",sans-serif;margin-bottom:20px;text-align:center;letter-spacing:1px}.ation-btn.small,form input[type=submit]{font-size:14px}.ation-btn.no-marg-bot,form input[type=submit]{margin-bottom:0}.ation-btn:hover,form input[type=submit]:hover{color:#ff7200;background-color:#fff;border-color:#ff7200;text-decoration:none}.btn-circle{margin-top:2px;margin-left:2px;margin-right:2px;width:70px;height:70px;padding:0;border-radius:50px;background-size:120%;background-repeat:no-repeat;background-position:-8.5px 2px}img{max-width:100%;display:block;height:auto}img.aligncenter{margin:auto}.video-contain{position:relative;padding-bottom:54%;padding-top:25px;height:0}.video-contain iframe{position:absolute;top:0;left:0;width:100%;height:100%}.marg-bot-40,form{margin-bottom:40px}form label{font-size:16px}body{background-color:#fff} \ No newline at end of file + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.label,sub,sup{vertical-align:baseline}hr,img{border:0}body,legend,pre{color:#333}body,figure{margin:0}.img-responsive,.img-thumbnail,.table,label{max-width:100%}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px}@font-face{font-family:Lato;font-style:normal;font-weight:300;src:local('Lato Light'),local('Lato-Light'),url(https://fonts.gstatic.com/s/lato/v11/nj47mAZe0mYUIySgfn0wpQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:400;src:local('Lato Regular'),local('Lato-Regular'),url(https://fonts.gstatic.com/s/lato/v11/v0SdcGFAl2aezM9Vq_aFTQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:700;src:local('Lato Bold'),local('Lato-Bold'),url(https://fonts.gstatic.com/s/lato/v11/DvlFBScY1r-FMtZSYIYoYw.ttf) format('truetype')}@font-face{font-family:Lato;font-style:italic;font-weight:400;src:local('Lato Italic'),local('Lato-Italic'),url(https://fonts.gstatic.com/s/lato/v11/LqowQDslGv4DmUBAfWa2Vw.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:300;src:local('Source Sans Pro Light'),local('SourceSansPro-Light'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGMw1o1eFRj7wYC6JbISqOjY.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro'),local('SourceSansPro-Regular'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNzbP97U9sKh0jjxbPbfOKg.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local('SourceSansPro-Bold'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGLsbIrGiHa6JIepkyt5c0A0.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local('SourceSansPro-It'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/M2Jd71oPJhLKp0zdtTvoM0DauxaEVho0aInXGvhmB4k.ttf) format('truetype')}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{vertical-align:middle}svg:not(:root){overflow:hidden}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open>.btn-danger.dropdown-toggle,.open>.btn-default.dropdown-toggle,.open>.btn-info.dropdown-toggle,.open>.btn-primary.dropdown-toggle,.open>.btn-warning.dropdown-toggle{background-image:none}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot);src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.img-responsive{display:block;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:all .2s ease-in-out;display:inline-block;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 form input[type=submit],.h1 small,.h2 .small,.h2 form input[type=submit],.h2 small,.h3 .small,.h3 form input[type=submit],.h3 small,.h4 .small,.h4 form input[type=submit],.h4 small,.h5 .small,.h5 form input[type=submit],.h5 small,.h6 .small,.h6 form input[type=submit],.h6 small,form .h1 input[type=submit],form .h2 input[type=submit],form .h3 input[type=submit],form .h4 input[type=submit],form .h5 input[type=submit],form .h6 input[type=submit],form h1 input[type=submit],form h2 input[type=submit],form h3 input[type=submit],form h4 input[type=submit],form h5 input[type=submit],form h6 input[type=submit],h1 .small,h1 form input[type=submit],h1 small,h2 .small,h2 form input[type=submit],h2 small,h3 .small,h3 form input[type=submit],h3 small,h4 .small,h4 form input[type=submit],h4 small,h5 .small,h5 form input[type=submit],h5 small,h6 .small,h6 form input[type=submit],h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 form input[type=submit],.h1 small,.h2 .small,.h2 form input[type=submit],.h2 small,.h3 .small,.h3 form input[type=submit],.h3 small,form .h1 input[type=submit],form .h2 input[type=submit],form .h3 input[type=submit],form h1 input[type=submit],form h2 input[type=submit],form h3 input[type=submit],h1 .small,h1 form input[type=submit],h1 small,h2 .small,h2 form input[type=submit],h2 small,h3 .small,h3 form input[type=submit],h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}p,pre{margin:0 0 10px}.h4 .small,.h4 form input[type=submit],.h4 small,.h5 .small,.h5 form input[type=submit],.h5 small,.h6 .small,.h6 form input[type=submit],.h6 small,form .h4 input[type=submit],form .h5 input[type=submit],form .h6 input[type=submit],form h4 input[type=submit],form h5 input[type=submit],form h6 input[type=submit],h4 .small,h4 form input[type=submit],h4 small,h5 .small,h5 form input[type=submit],h5 small,h6 .small,h6 form input[type=submit],h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}dt,kbd kbd,label{font-weight:700}@media (min-width:768px){.lead{font-size:21px}}.small,form input[type=submit],small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.initialism,.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}ol,ul{margin-bottom:10px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:20px}dd,dt{line-height:1.42857}dd{margin-left:0}.dl-horizontal dd:after,.dl-horizontal dd:before{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dropdown-menu>li>a,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote form input[type=submit],blockquote small,form blockquote input[type=submit]{display:block;font-size:80%;line-height:1.42857;color:#777}blockquote .small:before,blockquote footer:before,blockquote form input[type=submit]:before,blockquote small:before,form blockquote input[type=submit]:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%}caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse form input[type=submit]:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right form input[type=submit]:before,blockquote.pull-right small:before,form .blockquote-reverse input[type=submit]:before,form blockquote.pull-right input[type=submit]:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse form input[type=submit]:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right form input[type=submit]:after,blockquote.pull-right small:after,form .blockquote-reverse input[type=submit]:after,form blockquote.pull-right input[type=submit]:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;box-shadow:none}pre{display:block;padding:9.5px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.container-fluid:after,.container-fluid:before,.container:after,.container:before,.row:after,.row:before{display:table;content:" "}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.container,.container-fluid{padding-left:15px;padding-right:15px}.pre-scrollable{overflow-y:scroll}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.work-grid .blocks .block{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.work-grid .blocks .block{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6,.work-grid .blocks .block{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.work-grid .blocks .block{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4,.work-grid .blocks .block{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}fieldset{margin:0;min-width:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px}input[type=search]{box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{font-size:14px;line-height:1.42857;color:#555;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=radio]:focus,input[type=file]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm>input[type=date].form-control,.input-group-sm>input[type=date].input-group-addon,.input-group-sm>input[type=time].form-control,.input-group-sm>input[type=time].input-group-addon,.input-group-sm>input[type=datetime-local].form-control,.input-group-sm>input[type=datetime-local].input-group-addon,.input-group-sm>input[type=month].form-control,.input-group-sm>input[type=month].input-group-addon,input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg>input[type=date].form-control,.input-group-lg>input[type=date].input-group-addon,.input-group-lg>input[type=time].form-control,.input-group-lg>input[type=time].input-group-addon,.input-group-lg>input[type=datetime-local].form-control,.input-group-lg>input[type=datetime-local].input-group-addon,.input-group-lg>input[type=month].form-control,.input-group-lg>input[type=month].input-group-addon,input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm{height:30px;line-height:30px}.input-group-sm>.input-group-btn>select[multiple].btn,.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg{height:46px;line-height:46px}.input-group-lg>.input-group-btn>select[multiple].btn,.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.collapsing,.dropdown,.dropup{position:relative}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:" ";display:table}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857;white-space:nowrap}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{font-weight:400;color:#333}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:12px;color:#777}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:after,.btn-toolbar:before{content:" ";display:table}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn .caret,.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group{float:left}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before{content:" ";display:table}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group,.input-group-btn,.input-group-btn>.btn{position:relative}.input-group{display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:after,.nav:before{content:" ";display:table}.nav>li,.nav>li>a{display:block;position:relative}.nav:after{clear:both}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li,.nav-tabs.nav-justified>li{float:none}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:after,.navbar:before{content:" ";display:table}.navbar-header:after,.navbar-header:before{content:" ";display:table}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:after,.navbar-collapse:before{content:" ";display:table}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar{border-radius:4px}.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.embed-responsive,.modal,.modal-open,.progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}.navbar-static-top{z-index:1000;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-danger,.progress-striped .progress-bar-info,.progress-striped .progress-bar-success,.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px}@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.navbar-btn{margin-top:8px;margin-bottom:8px}.btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#090909;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li+li:before{content:"/ ";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.33333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:after,.pager:before{content:" ";display:table}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.close,.list-group-item>.badge{float:right}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.label:empty{display:none}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.alert,.thumbnail{margin-bottom:20px}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.alert{padding:15px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-bar-info{background-color:#5bc0de}.progress-bar-warning{background-color:#f0ad4e}.progress-bar-danger{background-color:#d9534f}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active form .list-group-item-heading>input[type=submit],.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:focus form .list-group-item-heading>input[type=submit],.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover form .list-group-item-heading>input[type=submit],form .list-group-item.active .list-group-item-heading>input[type=submit],form .list-group-item.active:focus .list-group-item-heading>input[type=submit],form .list-group-item.active:hover .list-group-item-heading>input[type=submit]{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a,form .panel-title>input[type=submit],form .panel-title>input[type=submit]>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel-body{padding:15px}.panel-body:after,.panel-body:before{content:" ";display:table}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{margin-top:0;font-size:16px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-break:auto;line-height:1.42857;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before{display:table;content:" "}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.carousel-control,.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;letter-spacing:normal;text-align:left;text-align:start;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;letter-spacing:normal;text-align:left;text-align:start;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.carousel-caption,.carousel-control{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);text-align:center}.mobile-menu,.work-bar{text-transform:uppercase}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.carousel,.carousel-inner{position:relative}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{display:block;max-width:100%;height:auto;line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;font-size:20px;background-color:transparent}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.affix,header{position:fixed}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:after,.clearfix:before{content:" ";display:table}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.services .flex .service h1,.services .flex .service p,.work-bar,aside,form input,form label,form select,form textarea,h1,h2,h3,h4,h5,h6,header .mobile-btn,header nav ul li,li,p{font-family:"Source Sans Pro",sans-serif}aside.grey,h1.grey,h2.grey,h3.grey,h4.grey,h5.grey,h6.grey,li,li.grey,p,p.grey{color:#a8a8a8}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}a,header,header nav ul li a{color:#ff7200}h1,h2,h3,h4,h5,h6{margin-bottom:.7em}p{margin-bottom:20px}p:first-of-type{margin-top:20px}li,p{font-size:18px}li.large,p.large{font-size:22px}a:hover{color:#cc5b00}.admin-bar header{top:32px}header{width:100%;text-align:center;height:100px;background:#fff;transition:all .3s ease,box-shadow 0s ease;top:0}header li{line-height:100px;font-size:25px;transition:all .3s ease}header.sticky{height:70px;box-shadow:-1px 2px 10px -1px #a8a8a8;z-index:1000}.home-bg,body,html{height:100%}header.sticky li{line-height:70px;font-size:15px}header.sticky .header-logo img{max-height:50px}header .header-logo{display:block;padding-left:20px;padding-top:10px;padding-bottom:10px}header .header-logo img{max-height:70px;transition:all .3s ease}header nav ul{list-style-type:none;margin:0}header nav ul li{display:inline-block;padding-right:20px}.services .flex,.services .flex .service{display:-webkit-flex;display:-ms-flexbox}section#content{margin-top:100px}.home-bg{width:100%;margin-bottom:40px}.videoWrapper{position:relative;padding-bottom:56.25%;height:0;border-bottom:1px solid #eee}.videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.work-bar{background-color:#ff7200;color:#fff;text-align:center;line-height:60px;font-size:18px;margin-bottom:15px;box-shadow:0 4px 15px 0 rgba(168,168,168,.64)}.work-bar.about-bar{margin-bottom:0}.work-bar a,.work-bar a:hover{color:inherit}.work-grid{z-index:-1;margin-bottom:50px}.work-grid .blocks .block{margin-bottom:10px}.services .bubbles{background-color:transparent;margin-bottom:40px}.mobile-menu,footer{background-color:#a8a8a8}.services .bubbles a{border-radius:50px;width:70px;height:70px}.services .flex{display:flex;overflow:hidden;flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap}.services .flex .service{display:flex;color:#fff;margin-bottom:20px}.services .flex .service .content{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#a8a8a8;padding:20px}.services .flex .service h1{margin-top:0;text-align:center;font-size:25px;margin-left:-20px;padding-left:20px;line-height:1.5;border-bottom:5px solid #ff7200;font-weight:200}.services .flex .service p{color:#fff}.services .flex .service p:first-of-type{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;margin-top:0}.about-members .row div{padding:0}footer{border-top:1px solid #eee}footer .footer-links:first-child ul{float:left}footer .footer-links ul{list-style-type:none;margin:0;padding:0;float:right}@media (max-width:767px){footer .footer-links ul{float:left}}footer .footer-links ul li{display:inline-block;padding-right:20px;color:#fff;font-size:12px;line-height:36px}footer .footer-links ul li a,footer .footer-links ul li a:hover{color:#fff}.mobile-menu{box-sizing:border-box;position:fixed;top:0;right:-225px;width:225px;min-height:100%;height:100%;overflow-y:auto;transition:right .2s ease-in;padding:0 1em;border-left:1px solid #a8a8a8}#page,.mobile-menu.mobile-active{right:0}.video-contain,body.mobile-active{overflow:hidden}.mobile-menu li.top-mobile-bar a{padding:10px}.mobile-menu>ul{padding:0;margin:0;list-style-type:none}.admin-bar .mobile-menu>ul{margin-top:32px}@media screen and (max-width:782px){.admin-bar .mobile-menu>ul{margin-top:46px}}.mobile-menu>ul ul{margin:0 1em;padding:0;list-style-type:none}.mobile-menu>ul ul a:hover,.mobile-menu>ul ul a:link,.mobile-menu>ul ul a:visited{font-size:.8em;color:#ff7200;text-decoration:none;padding:10px;line-height:1.5em}.mobile-menu>ul>li{font-size:16px;font-weight:500;border-bottom:1px solid #fff}.mobile-menu>ul>li a{color:#fff;padding:20px 10px;display:block;text-decoration:none}.mobile-menu>ul>li a:hover{text-decoration:none}#mobile-menu{right:-225px}#mobile-menu.mobile-active{right:0;transition:right .2s ease-in}#page{position:relative;transition:right .2s ease-in,opacity .2s ease-in;opacity:1}#page.mobile-active{right:225px;opacity:.4;height:100%;overflow:hidden;width:100%}header .mobile-btn{font-size:30px;text-decoration:none;line-height:70px}header .mobile-btn:hover{text-decoration:none}#mobile-menu .mobile-btn{font-size:20px;color:#fff;text-decoration:none}#mobile-menu .mobile-btn:hover{text-decoration:none}.ation-btn,form input[type=submit]{border:3px solid transparent;color:#fff;background-color:#ff7200;transition:.2s;text-transform:uppercase;padding:10px;font-size:20px;font-family:"Source Sans Pro",sans-serif;margin-bottom:20px;text-align:center;letter-spacing:1px}.ation-btn.small,form input[type=submit]{font-size:14px}.ation-btn.no-marg-bot,form input[type=submit]{margin-bottom:0}.ation-btn:hover,form input[type=submit]:hover{color:#ff7200;background-color:#fff;border-color:#ff7200;text-decoration:none}.btn-circle{margin-top:2px;margin-left:2px;margin-right:2px;width:70px;height:70px;padding:0;border-radius:50px;background-size:120%;background-repeat:no-repeat;background-position:-8.5px 2px}img{max-width:100%;display:block;height:auto}img.aligncenter{margin:auto}.video-contain{position:relative;padding-bottom:54%;padding-top:25px;height:0}.video-contain iframe{position:absolute;top:0;left:0;width:100%;height:100%}.marg-bot-40,form{margin-bottom:40px}form label{font-size:16px}body{background-color:#fff} \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/templates/page-about.twig b/www/wp-content/themes/ation2016/templates/page-about.twig index f0936d6..3203b72 100644 --- a/www/wp-content/themes/ation2016/templates/page-about.twig +++ b/www/wp-content/themes/ation2016/templates/page-about.twig @@ -4,15 +4,33 @@ {% for semester in semesters %} -
    +

    {{ semester.name }}

    - {% for member in semester.members %} -

    {{ member.name }}

    - {% endfor %} +
    +
    + {% if semester.members %} + {% for member in semester.members %} + + {% endfor %} + {% else %} +
    +

    No members.

    +
    + {% endif %} +
    +
    {% endfor %} diff --git a/www/wp-content/themes/ation2016/templates/page-work.twig b/www/wp-content/themes/ation2016/templates/page-work.twig index eb55762..9c4a5fa 100644 --- a/www/wp-content/themes/ation2016/templates/page-work.twig +++ b/www/wp-content/themes/ation2016/templates/page-work.twig @@ -1,7 +1,7 @@ {% extends "base.twig" %} {% block content %} -
    +
    {% for service in services %}