diff --git a/wp-content/plugins/gp-premium/blog/functions/customizer.php b/wp-content/plugins/gp-premium/blog/functions/customizer.php index c8c16f8f..6eefcb53 100644 --- a/wp-content/plugins/gp-premium/blog/functions/customizer.php +++ b/wp-content/plugins/gp-premium/blog/functions/customizer.php @@ -537,13 +537,33 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { ) ); + $wp_customize->add_setting( + 'generate_blog_settings[post_image_size]', + array( + 'default' => $defaults['post_image_size'], + 'type' => 'option', + 'sanitize_callback' => 'generate_premium_sanitize_choices', + ) + ); + + $wp_customize->add_control( + 'generate_blog_settings[post_image_size]', + array( + 'type' => 'select', + 'label' => __( 'Media Attachment Size', 'gp-premium' ), + 'section' => 'generate_blog_section', + 'choices' => generate_blog_get_image_sizes(), + 'settings' => 'generate_blog_settings[post_image_size]', + 'active_callback' => 'generate_premium_featured_image_active', + ) + ); + // Width $wp_customize->add_setting( 'generate_blog_settings[post_image_width]', array( 'default' => $defaults['post_image_width'], 'capability' => 'edit_theme_options', 'type' => 'option', - 'transport' => 'postMessage', 'sanitize_callback' => 'generate_premium_sanitize_empty_absint', ) ); @@ -554,11 +574,6 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'type' => 'number', 'label' => __( 'Width', 'gp-premium' ), 'section' => 'generate_blog_section', - 'input_attrs' => array( - 'style' => 'text-align:center;', - 'placeholder' => __( 'Auto', 'gp-premium' ), - 'min' => 5, - ), 'settings' => 'generate_blog_settings[post_image_width]', 'active_callback' => 'generate_premium_featured_image_active', ) @@ -570,7 +585,6 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'default' => $defaults['post_image_height'], 'capability' => 'edit_theme_options', 'type' => 'option', - 'transport' => 'postMessage', 'sanitize_callback' => 'generate_premium_sanitize_empty_absint', ) ); @@ -581,24 +595,21 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'type' => 'number', 'label' => __( 'Height', 'gp-premium' ), 'section' => 'generate_blog_section', - 'input_attrs' => array( - 'style' => 'text-align:center;', - 'placeholder' => __( 'Auto', 'gp-premium' ), - 'min' => 5, - ), 'settings' => 'generate_blog_settings[post_image_height]', 'active_callback' => 'generate_premium_featured_image_active', ) ); - // Save dimensions $wp_customize->add_control( - new GeneratePress_Refresh_Button_Customize_Control( + new GeneratePress_Information_Customize_Control( $wp_customize, - 'post_image_apply_sizes', + 'generate_regenerate_images_notice', array( - 'section' => 'generate_blog_section', - 'label' => __( 'Apply', 'gp-premium' ), + 'section' => 'generate_blog_section', + 'description' => sprintf( + __( 'We will attempt to serve exact image sizes based on your width/height settings. If that is not possible, we will resize your images using CSS. Learn more about featured image sizing %s.', 'gp-premium' ), + '' . __( 'here', 'gp-premium' ) . '' + ), 'settings' => ( isset( $wp_customize->selective_refresh ) ) ? array() : 'blogname', 'active_callback' => 'generate_premium_featured_image_active', ) @@ -701,13 +712,33 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { ) ); + $wp_customize->add_setting( + 'generate_blog_settings[single_post_image_size]', + array( + 'default' => $defaults['single_post_image_size'], + 'type' => 'option', + 'sanitize_callback' => 'generate_premium_sanitize_choices', + ) + ); + + $wp_customize->add_control( + 'generate_blog_settings[single_post_image_size]', + array( + 'type' => 'select', + 'label' => __( 'Media Attachment Size', 'gp-premium' ), + 'section' => 'generate_blog_section', + 'choices' => generate_blog_get_image_sizes(), + 'settings' => 'generate_blog_settings[single_post_image_size]', + 'active_callback' => 'generate_premium_featured_image_active', + ) + ); + // Width $wp_customize->add_setting( 'generate_blog_settings[single_post_image_width]', array( 'default' => $defaults['single_post_image_width'], 'capability' => 'edit_theme_options', 'type' => 'option', - 'transport' => 'postMessage', 'sanitize_callback' => 'generate_premium_sanitize_empty_absint', ) ); @@ -718,13 +749,8 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'type' => 'number', 'label' => __( 'Width', 'gp-premium' ), 'section' => 'generate_blog_section', - 'input_attrs' => array( - 'style' => 'text-align:center;', - 'placeholder' => __( 'Auto', 'gp-premium' ), - 'min' => 5, - ), 'settings' => 'generate_blog_settings[single_post_image_width]', - 'active_callback' => 'generate_premium_single_featured_image_active', + 'active_callback' => 'generate_premium_featured_image_active', ) ); @@ -734,7 +760,6 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'default' => $defaults['single_post_image_height'], 'capability' => 'edit_theme_options', 'type' => 'option', - 'transport' => 'postMessage', 'sanitize_callback' => 'generate_premium_sanitize_empty_absint', ) ); @@ -745,26 +770,23 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'type' => 'number', 'label' => __( 'Height', 'gp-premium' ), 'section' => 'generate_blog_section', - 'input_attrs' => array( - 'style' => 'text-align:center;', - 'placeholder' => __( 'Auto', 'gp-premium' ), - 'min' => 5, - ), 'settings' => 'generate_blog_settings[single_post_image_height]', - 'active_callback' => 'generate_premium_single_featured_image_active', + 'active_callback' => 'generate_premium_featured_image_active', ) ); - // Save dimensions $wp_customize->add_control( - new GeneratePress_Refresh_Button_Customize_Control( + new GeneratePress_Information_Customize_Control( $wp_customize, - 'single_post_image_apply_sizes', + 'generate_regenerate_single_post_images_notice', array( - 'section' => 'generate_blog_section', - 'label' => __( 'Apply', 'gp-premium' ), + 'section' => 'generate_blog_section', + 'description' => sprintf( + __( 'We will attempt to serve exact image sizes based on your width/height settings. If that is not possible, we will resize your images using CSS. Learn more about featured image sizing %s.', 'gp-premium' ), + '' . __( 'here', 'gp-premium' ) . '' + ), 'settings' => ( isset( $wp_customize->selective_refresh ) ) ? array() : 'blogname', - 'active_callback' => 'generate_premium_single_featured_image_active', + 'active_callback' => 'generate_premium_featured_image_active', ) ) ); @@ -865,13 +887,33 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { ) ); + $wp_customize->add_setting( + 'generate_blog_settings[page_post_image_size]', + array( + 'default' => $defaults['page_post_image_size'], + 'type' => 'option', + 'sanitize_callback' => 'generate_premium_sanitize_choices', + ) + ); + + $wp_customize->add_control( + 'generate_blog_settings[page_post_image_size]', + array( + 'type' => 'select', + 'label' => __( 'Media Attachment Size', 'gp-premium' ), + 'section' => 'generate_blog_section', + 'choices' => generate_blog_get_image_sizes(), + 'settings' => 'generate_blog_settings[page_post_image_size]', + 'active_callback' => 'generate_premium_featured_image_active', + ) + ); + // Width $wp_customize->add_setting( 'generate_blog_settings[page_post_image_width]', array( 'default' => $defaults['page_post_image_width'], 'capability' => 'edit_theme_options', 'type' => 'option', - 'transport' => 'postMessage', 'sanitize_callback' => 'generate_premium_sanitize_empty_absint', ) ); @@ -882,13 +924,8 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'type' => 'number', 'label' => __( 'Width', 'gp-premium' ), 'section' => 'generate_blog_section', - 'input_attrs' => array( - 'style' => 'text-align:center;', - 'placeholder' => __( 'Auto', 'gp-premium' ), - 'min' => 5, - ), 'settings' => 'generate_blog_settings[page_post_image_width]', - 'active_callback' => 'generate_premium_single_page_featured_image_active', + 'active_callback' => 'generate_premium_featured_image_active', ) ); @@ -898,7 +935,6 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'default' => $defaults['page_post_image_height'], 'capability' => 'edit_theme_options', 'type' => 'option', - 'transport' => 'postMessage', 'sanitize_callback' => 'generate_premium_sanitize_empty_absint', ) ); @@ -909,26 +945,23 @@ if ( ! function_exists( 'generate_blog_customize_register' ) ) { 'type' => 'number', 'label' => __( 'Height', 'gp-premium' ), 'section' => 'generate_blog_section', - 'input_attrs' => array( - 'style' => 'text-align:center;', - 'placeholder' => __( 'Auto', 'gp-premium' ), - 'min' => 5, - ), 'settings' => 'generate_blog_settings[page_post_image_height]', - 'active_callback' => 'generate_premium_single_page_featured_image_active', + 'active_callback' => 'generate_premium_featured_image_active', ) ); - // Save dimensions $wp_customize->add_control( - new GeneratePress_Refresh_Button_Customize_Control( + new GeneratePress_Information_Customize_Control( $wp_customize, - 'page_post_image_apply_sizes', + 'generate_regenerate_page_images_notice', array( - 'section' => 'generate_blog_section', - 'label' => __( 'Apply', 'gp-premium' ), + 'section' => 'generate_blog_section', + 'description' => sprintf( + __( 'We will attempt to serve exact image sizes based on your width/height settings. If that is not possible, we will resize your images using CSS. Learn more about featured image sizing %s.', 'gp-premium' ), + '' . __( 'here', 'gp-premium' ) . '' + ), 'settings' => ( isset( $wp_customize->selective_refresh ) ) ? array() : 'blogname', - 'active_callback' => 'generate_premium_single_page_featured_image_active', + 'active_callback' => 'generate_premium_featured_image_active', ) ) ); @@ -1042,34 +1075,6 @@ add_action( 'customize_controls_print_styles', 'generate_blog_customizer_control function generate_blog_customizer_controls_css() { ?> true, 'post_image_position' => '', 'post_image_alignment' => 'post-image-aligned-center', + 'post_image_size' => 'full', 'post_image_width' => '', 'post_image_height' => '', 'post_image_padding' => true, 'single_post_image' => true, 'single_post_image_position' => 'inside-content', 'single_post_image_alignment' => 'center', + 'single_post_image_size' => 'full', 'single_post_image_width' => '', 'single_post_image_height' => '', 'single_post_image_padding' => true, 'page_post_image' => true, 'page_post_image_position' => 'above-content', 'page_post_image_alignment' => 'center', + 'page_post_image_size' => 'full', 'page_post_image_width' => '', 'page_post_image_height' => '', 'page_post_image_padding' => true, @@ -47,7 +50,7 @@ if ( ! function_exists( 'generate_blog_get_defaults' ) ) { 'single_post_navigation' => true, 'column_layout' => false, 'columns' => '50', - 'featured_column' => false + 'featured_column' => false, ); return apply_filters( 'generate_blog_option_defaults', $generate_blog_defaults ); diff --git a/wp-content/plugins/gp-premium/blog/functions/generate-blog.php b/wp-content/plugins/gp-premium/blog/functions/generate-blog.php index 5a2cacb8..23a5373a 100644 --- a/wp-content/plugins/gp-premium/blog/functions/generate-blog.php +++ b/wp-content/plugins/gp-premium/blog/functions/generate-blog.php @@ -122,6 +122,22 @@ if ( ! function_exists( 'generate_blog_post_classes' ) ) { $classes[] = 'no-featured-image-padding'; } + $atts = generate_get_blog_image_attributes(); + + if ( ! is_singular() && has_post_thumbnail() && ! empty( $atts ) ) { + $values = array( + $atts['width'], + $atts['height'], + $atts['crop'], + ); + + $image_src = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID(), 'full' ), $values ); + + if ( $image_src && ( ! $image_src[3] || ! apply_filters( 'generate_use_featured_image_size_match', true ) ) ) { + $classes[] = 'resize-featured-image'; + } + } + return $classes; } } @@ -288,6 +304,36 @@ if ( ! function_exists( 'generate_blog_css' ) ) { $return .= '}'; } + $atts = generate_get_blog_image_attributes(); + + if ( ! empty( $atts ) ) { + $image_width = $atts['width'] && 9999 !== $atts['width'] ? 'width: ' . $atts['width'] . 'px;' : ''; + $image_height = $atts['height'] && 9999 !== $atts['height'] ? 'height: ' . $atts['height'] . 'px;' : ''; + $image_crop = $atts['crop'] ? '-o-object-fit: cover;object-fit: cover;' : ''; + + if ( ! $image_width && $image_height ) { + $image_crop = '-o-object-fit: cover;object-fit: cover;'; + } + + if ( ! is_singular() ) { + $return .= '.resize-featured-image .post-image img {' . $image_width . $image_height . $image_crop . '}'; + } + + if ( is_single() || is_page() ) { + $values = array( + $atts['width'], + $atts['height'], + $atts['crop'], + ); + + $image_src = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID(), 'full' ), $values ); + + if ( $image_src && ( ! $image_src[3] || ! apply_filters( 'generate_use_featured_image_size_match', true ) ) ) { + $return .= '.featured-image img {' . $image_width . $image_height . $image_crop . '}'; + } + } + } + return $return; } } diff --git a/wp-content/plugins/gp-premium/blog/functions/images.php b/wp-content/plugins/gp-premium/blog/functions/images.php index 78dba4c5..ddd62801 100644 --- a/wp-content/plugins/gp-premium/blog/functions/images.php +++ b/wp-content/plugins/gp-premium/blog/functions/images.php @@ -1,8 +1,73 @@ 'full', + ); + + foreach ( $sizes as $key => $name ) { + $new_sizes[ $name ] = $name; + } + + return $new_sizes; +} + +add_filter( 'generate_page_header_default_size', 'generate_blog_set_featured_image_size' ); +/** + * Set our featured image sizes. + * + * @since 1.10.0 + * + * @param string $size The existing size. + * @return string The new size. + */ +function generate_blog_set_featured_image_size( $size ) { + $settings = wp_parse_args( + get_option( 'generate_blog_settings', array() ), + generate_blog_get_defaults() + ); + + if ( ! is_singular() ) { + $size = $settings['post_image_size']; + } + + if ( is_single() ) { + $size = $settings['single_post_image_size']; + } + + if ( is_page() ) { + $size = $settings['page_post_image_size']; + } + + $atts = generate_get_blog_image_attributes(); + + if ( ! empty( $atts ) ) { + $values = array( + $atts['width'], + $atts['height'], + $atts['crop'], + ); + + $image_src = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID(), 'full' ), $values ); + + if ( $image_src && $image_src[3] && apply_filters( 'generate_use_featured_image_size_match', true ) ) { + return $values; + } else { + return $size; + } + } + + return $size; } if ( ! function_exists( 'generate_get_blog_image_attributes' ) ) { @@ -110,7 +175,7 @@ if ( ! function_exists( 'generate_blog_setup' ) ) { add_filter( 'generate_featured_image_output', 'generate_blog_featured_image' ); /** - * Filter our core featured image so we can include support for resized images. + * Remove featured image if set or using WooCommerce. * * @since 1.5 * @return string The image HTML @@ -121,35 +186,11 @@ function generate_blog_featured_image( $output ) { generate_blog_get_defaults() ); - $image_atts = generate_get_blog_image_attributes(); - $image_id = get_post_thumbnail_id( get_the_ID(), 'full' ); - if ( ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) || ! $settings['post_image'] ) { return false; } - if ( $image_atts && function_exists( 'ipq_get_theme_image' ) ) { - $image_html = ipq_get_theme_image( $image_id, - array( - array( $image_atts[ 'width' ], $image_atts[ 'height' ], $image_atts[ 'crop' ] ) - ), - array( - 'itemprop' => 'image', - ) - ); - } else { - return $output; - } - - return apply_filters( 'generate_resized_featured_image_output', sprintf( - '
- - %2$s - -
', - esc_url( get_permalink() ), - $image_html - ), $image_html ); + return $output; } /** @@ -168,7 +209,6 @@ function generate_blog_single_featured_image() { generate_blog_get_defaults() ); - $image_atts = generate_get_blog_image_attributes(); $image_id = get_post_thumbnail_id( get_the_ID(), 'full' ); if ( function_exists( 'generate_page_header_get_image' ) && generate_page_header_get_image( 'ID' ) ) { @@ -183,32 +223,17 @@ function generate_blog_single_featured_image() { return false; } - if ( $image_atts && function_exists( 'ipq_get_theme_image' ) ) { - - $image_html = ipq_get_theme_image( $image_id, - array( - array( $image_atts[ 'width' ], $image_atts[ 'height' ], $image_atts[ 'crop' ] ) - ), + $image_html = apply_filters( 'post_thumbnail_html', + wp_get_attachment_image( $image_id, apply_filters( 'generate_page_header_default_size', 'full' ), '', array( 'itemprop' => 'image', ) - ); - - } else { - - $image_html = apply_filters( 'post_thumbnail_html', - wp_get_attachment_image( $image_id, apply_filters( 'generate_page_header_default_size', 'full' ), '', - array( - 'itemprop' => 'image', - ) - ), - get_the_ID(), - $image_id, - apply_filters( 'generate_page_header_default_size', 'full' ), - '' - ); - - } + ), + get_the_ID(), + $image_id, + apply_filters( 'generate_page_header_default_size', 'full' ), + '' + ); $location = generate_blog_get_singular_template(); diff --git a/wp-content/plugins/gp-premium/blog/functions/js/controls.js b/wp-content/plugins/gp-premium/blog/functions/js/controls.js index 4a6c7026..bda598c5 100644 --- a/wp-content/plugins/gp-premium/blog/functions/js/controls.js +++ b/wp-content/plugins/gp-premium/blog/functions/js/controls.js @@ -5,9 +5,10 @@ jQuery( document ).ready( function($) { 'generate_blog_settings-post_image_padding', 'generate_blog_settings-post_image_position', 'generate_blog_settings-post_image_alignment', + 'generate_blog_settings-post_image_size', 'generate_blog_settings-post_image_width', 'generate_blog_settings-post_image_height', - 'post_image_apply_sizes', + 'generate_regenerate_images_notice', ]; $.each( featured_image_archive_controls, function( index, value ) { @@ -19,9 +20,10 @@ jQuery( document ).ready( function($) { 'generate_blog_settings-single_post_image_padding', 'generate_blog_settings-single_post_image_position', 'generate_blog_settings-single_post_image_alignment', + 'generate_blog_settings-single_post_image_size', 'generate_blog_settings-single_post_image_width', 'generate_blog_settings-single_post_image_height', - 'single_post_image_apply_sizes', + 'generate_regenerate_single_post_images_notice', ]; $.each( featured_image_single_controls, function( index, value ) { @@ -39,9 +41,10 @@ jQuery( document ).ready( function($) { 'generate_blog_settings-page_post_image_padding', 'generate_blog_settings-page_post_image_position', 'generate_blog_settings-page_post_image_alignment', + 'generate_blog_settings-page_post_image_size', 'generate_blog_settings-page_post_image_width', 'generate_blog_settings-page_post_image_height', - 'page_post_image_apply_sizes', + 'generate_regenerate_page_images_notice', ]; $.each( featured_image_page_controls, function( index, value ) { diff --git a/wp-content/plugins/gp-premium/changelog.txt b/wp-content/plugins/gp-premium/changelog.txt index 3431d7af..802e651f 100644 --- a/wp-content/plugins/gp-premium/changelog.txt +++ b/wp-content/plugins/gp-premium/changelog.txt @@ -1,5 +1,32 @@ == changelog == += 1.10.0 = + +* Blog: Remove existing on-the-fly featured image resizer (Image Processing Queue) +* Blog: Choose from existing image sizes for featured images +* Blog: Use CSS to further resize featured images if necessary +* Blog: Fix edge case persistent transient bug with old image resizer +* Elements: Fix broken closing element in metabox +* General: Change scroll variable to gpscroll in smooth scroll script to avoid conflicts +* General: Update responsive widths in Customizer +* General: Fix responsive Customizer views when using RTL +* Menu Plus: Don't output sticky nav branding if sticky nav is disabled +* Menu Plus: Fix focus when off canvas overlay is opened (a11y) +* Menu Plus: Fix sticky navigation jump when navigation branding is in use +* Sections: Fix visible block editor when Sections are enabled +* WooCommerce: Use minmax in grid template definitions to fix overflow issue +* WooCommerce: Prevent add to cart panel interfering with back to top button on mobile +* WooCommerce: WooCommerce: Fix secondary image position if HTML isn't ordered correctly +* General: Add/update all translations over 50% complete. Big thanks to all contributors! +* Translation: Added Arabic - thank you anass! +* Translation: Added Bengali - thank you gtmroy! +* Translation: Added Spanish (Spain) - thank you davidperez (closemarketing.es)! +* Translation: Added Spanish (Argentina) - thank you bratorr! +* Translation: Added Finnish - thank you Stedi! +* Translation: Add Dutch - thank you Robin! +* Translation: Added Ukrainian - thank you EUROMEDIA! +* Translation: Vietnamese added - thank you themevi! + = 1.9.1 = * Blog: Fix "null" in infinite scroll load more button text * WooCommerce: Fix hidden added to cart panel on mobile when sticky nav active diff --git a/wp-content/plugins/gp-premium/elements/class-hero.php b/wp-content/plugins/gp-premium/elements/class-hero.php index c63c473b..3dbe7561 100644 --- a/wp-content/plugins/gp-premium/elements/class-hero.php +++ b/wp-content/plugins/gp-premium/elements/class-hero.php @@ -101,7 +101,7 @@ class GeneratePress_Hero { wp_add_inline_style( 'generate-style', self::build_css() ); if ( $options['parallax'] ) { - wp_enqueue_script( 'generate-hero-parallax', plugin_dir_url( __FILE__ ) . '/assets/js/parallax.min.js', array(), GP_PREMIUM_VERSION, true ); + wp_enqueue_script( 'generate-hero-parallax', plugin_dir_url( __FILE__ ) . 'assets/js/parallax.min.js', array(), GP_PREMIUM_VERSION, true ); wp_localize_script( 'generate-hero-parallax', 'hero', array( 'parallax' => apply_filters( 'generate_hero_parallax_speed', 2 ), ) ); diff --git a/wp-content/plugins/gp-premium/elements/class-metabox.php b/wp-content/plugins/gp-premium/elements/class-metabox.php index 848b6365..fe892093 100644 --- a/wp-content/plugins/gp-premium/elements/class-metabox.php +++ b/wp-content/plugins/gp-premium/elements/class-metabox.php @@ -1077,7 +1077,7 @@ class GeneratePress_Elements_Metabox { /> - + diff --git a/wp-content/plugins/gp-premium/elements/elements.php b/wp-content/plugins/gp-premium/elements/elements.php index 2f9298fb..c2c83c4f 100644 --- a/wp-content/plugins/gp-premium/elements/elements.php +++ b/wp-content/plugins/gp-premium/elements/elements.php @@ -23,10 +23,15 @@ function generate_premium_do_elements() { 'post_status' => 'publish', 'numberposts' => 500, 'fields' => 'ids', - 'order' => 'ASC', 'suppress_filters' => false, ); + $custom_args = apply_filters( 'generate_elements_custom_args', array( + 'order' => 'ASC', + ) ); + + $args = array_merge( $args, $custom_args ); + // Prevent Polylang from altering the query. if ( function_exists( 'pll_get_post_language' ) ) { $args['lang'] = ''; diff --git a/wp-content/plugins/gp-premium/general/js/smooth-scroll.js b/wp-content/plugins/gp-premium/general/js/smooth-scroll.js index c3388c51..ea406c22 100644 --- a/wp-content/plugins/gp-premium/general/js/smooth-scroll.js +++ b/wp-content/plugins/gp-premium/general/js/smooth-scroll.js @@ -706,7 +706,7 @@ if (window.Element && !Element.prototype.closest) { })); /* GP */ -var scroll = new SmoothScroll( smooth.elements.join(), { +var gpscroll = new SmoothScroll( smooth.elements.join(), { speed: smooth.duration, offset: function( anchor, toggle ) { var body = document.body, diff --git a/wp-content/plugins/gp-premium/general/js/smooth-scroll.min.js b/wp-content/plugins/gp-premium/general/js/smooth-scroll.min.js index 0b877001..3f14ee24 100644 --- a/wp-content/plugins/gp-premium/general/js/smooth-scroll.min.js +++ b/wp-content/plugins/gp-premium/general/js/smooth-scroll.min.js @@ -1 +1 @@ -window.Element&&!Element.prototype.closest&&(Element.prototype.closest=function(e){var t,n=(this.document||this.ownerDocument).querySelectorAll(e),o=this;do{for(t=n.length;0<=--t&&n.item(t)!==o;);}while(t<0&&(o=o.parentElement));return o}),function(){if("function"==typeof window.CustomEvent)return;function e(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),n}e.prototype=window.Event.prototype,window.CustomEvent=e}(),function(){for(var a=0,e=["ms","moz","webkit","o"],t=0;t=h)return E.cancelScroll(!0),o=t,i=u,0===(n=r)&&document.body.focus(),i||(n.focus(),document.activeElement!==n&&(n.setAttribute("tabindex","-1"),n.focus(),n.style.outline="none"),A.scrollTo(0,o)),I("scrollStop",s,r,c),!(S=m=null)},y=function(e){var t,n,o;m||(m=e),i=(p+=e-m)/parseInt(s.speed,10),a=l+f*(n=i=1=h)return E.cancelScroll(!0),o=t,i=u,0===(n=r)&&document.body.focus(),i||(n.focus(),document.activeElement!==n&&(n.setAttribute("tabindex","-1"),n.focus(),n.style.outline="none"),A.scrollTo(0,o)),I("scrollStop",s,r,c),!(S=m=null)},y=function(e){var t,n,o;m||(m=e),i=(p+=e-m)/parseInt(s.speed,10),a=l+f*(n=i=1\n" -"Language-Team: Michal Janata \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/libs\n" -"X-Poedit-SearchPathExcluded-3: sites/classes/class-site-widget-importer.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Obrázky na pozadí" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Tělo" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Hlavička" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Primární navigace" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "Navigace" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Opakovat" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Opakovat x" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Opakovat y" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Neopakovat" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Položka navigace" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "Položka navigace při přejetí myší" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "Aktuální položka navigace" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "Primární sub-navigace" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -#, fuzzy -msgid "Sub-Navigation Item" -msgstr "" -"#-#-#-#-# backgrounds-cs_CZ.po (Generate Backgrounds) #-#-#-#-#\n" -"Položka sub-navigace\n" -"#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Položka pod-navigace" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -#, fuzzy -msgid "Sub-Navigation Item Hover" -msgstr "" -"#-#-#-#-# backgrounds-cs_CZ.po (Generate Backgrounds) #-#-#-#-#\n" -"Položka sub-navigace při přejetí myší\n" -"#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Položka pod-navigace při přejetí myší" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -#, fuzzy -msgid "Sub-Navigation Item Current" -msgstr "" -"#-#-#-#-# backgrounds-cs_CZ.po (Generate Backgrounds) #-#-#-#-#\n" -"Aktuální položka sub-navigace\n" -"#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Aktuální položka pod-navigace" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Obsah" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "Postranní panel" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -#, fuzzy -msgid "Sidebar Widgets" -msgstr "" -"#-#-#-#-# backgrounds-cs_CZ.po (Generate Backgrounds) #-#-#-#-#\n" -"Widgety v postranních panelech\n" -"#-#-#-#-# generate-colors-cs_CZ.po (Generate Colors) #-#-#-#-#\n" -"Postranní widgety\n" -"#-#-#-#-# generate-spacing-cs_CZ.po (Generate Spacing) #-#-#-#-#\n" -"Postranní widgety" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Patička" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Oblast widgetů patičky" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Oblast patičky" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Sekundární navigace" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "Sekundární sub-navigace" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "Blog" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Označení \"číst více\"" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "Doprostřed" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -#, fuzzy -msgid "Left" -msgstr "" -"#-#-#-#-# generate-blog-cs_CZ.po (Generate Blog) #-#-#-#-#\n" -"Doleva\n" -"#-#-#-#-# generate-spacing-cs_CZ.po (Generate Spacing) #-#-#-#-#\n" -"Vlevo\n" -"#-#-#-#-# page-header-cs_CZ.po (Generate Page Header) #-#-#-#-#\n" -"Doleva\n" -"#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Doleva" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -#, fuzzy -msgid "Right" -msgstr "" -"#-#-#-#-# generate-blog-cs_CZ.po (Generate Blog) #-#-#-#-#\n" -"Doprava\n" -"#-#-#-#-# generate-spacing-cs_CZ.po (Generate Spacing) #-#-#-#-#\n" -"Vpravo\n" -"#-#-#-#-# page-header-cs_CZ.po (Generate Page Header) #-#-#-#-#\n" -"Doprava\n" -"#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Doprava" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "Automaticky" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Výška" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Nad oblastí obsahu" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "Sloupce" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Více" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "Načítání..." - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Barvy" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "Pozadí" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Text" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Odkaz" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Odkaz při přejetí myší" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Název webu" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Popis webu" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "Položky primárního menu" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "Pozadí při přejetí myší" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -#, fuzzy -msgid "Background Current" -msgstr "" -"#-#-#-#-# generate-colors-cs_CZ.po (Generate Colors) #-#-#-#-#\n" -"Pozadí aktuální položky\n" -"#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Aktuální pozadí" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Text při přejetí myší" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -#, fuzzy -msgid "Text Current" -msgstr "" -"#-#-#-#-# generate-colors-cs_CZ.po (Generate Colors) #-#-#-#-#\n" -"Text aktuální položky\n" -"#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Aktuální text" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -#| msgid "Sub-Menu Item Height" -msgid "Sub-Menu Items" -msgstr "Výška položek sub-menu" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "Název obsahu" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Název příspěvku blogu" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Název příspěvku blogu při přejetí myší" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Textové meta položky" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Odkazové meta položky" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Odkazové meta položky při přejetí myší" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "Barva nadpisu 1 (H1)" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "Barva nadpisu 2 (H2)" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "Barva nadpisu 3 (H3)" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Název widgetů" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "Widgety patičky" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "Formuláře" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Pozadí formuláře" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Hranice formuláře" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Text formuláře" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "Vysouvací navigace" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Copyright" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Zakázat prvky" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "GP háky" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Před hlavičkou" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Před obsahem hlavičky" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Po obsahu hlavičky" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Po hlavičce" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "Uvnitř obsahového prostoru" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Před obsahem" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Po názvu příspěvku" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Po obsahu" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Před obsahem pravého postranního panelu" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Po obsahu pravého postranního panelu" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Před obsahem levého postranního panelu" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Po obsahu levého postranního panelu" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Před patičkou" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "Po widgetech patičky" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Před obsahem patičky" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Po obsahu patičky" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Spustit PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "Zakázat hák" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Použijte tato pole pro vložení čehokoli skrze GeneratePress. Zkratky " -"(shortcodes) jsou povoleny a můžete dokonce použít PHP, pokud zaškrtnete " -"políčko Spustit PHP." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Zobrazit vše" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "Uložit háky" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "Háky uloženy." - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "Pokročilý" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -#| msgid "Background" -msgctxt "Module name" -msgid "Backgrounds" -msgstr "Pozadí" - -#: import-export/functions/functions.php:23 library/reset.php:21 -#, fuzzy -#| msgid "Blog" -msgctxt "Module name" -msgid "Blog" -msgstr "Blog" - -#: import-export/functions/functions.php:27 library/reset.php:25 -#, fuzzy -#| msgid "GP Hooks" -msgctxt "Module name" -msgid "Hooks" -msgstr "GP háky" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "Hlavička stránky" - -#: import-export/functions/functions.php:35 library/reset.php:33 -#, fuzzy -#| msgid "Secondary Navigation" -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "Sekundární navigace" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#, fuzzy -#| msgid "Spacing" -msgctxt "Module name" -msgid "Spacing" -msgstr "Rozestupy" - -#: import-export/functions/functions.php:43 library/reset.php:41 -#, fuzzy -#| msgid "Menu Plus" -msgctxt "Module name" -msgid "Menu Plus" -msgstr "Menu plus" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "Copyright" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "Importovat nastavení" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "Prosím nahrajte správný .json soubor" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "Prosím nahrajte soubor pro import" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" -"Je dostupná nová verze %1$s. %2$sZobrazit podrobnosti o verzi %3$s %4$s." - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" -"Je dostupná nová verze %1$s. %2$sZobrazit podrobnosti o verzi %3$s %4$s nebo " -"%5$saktualizovat nyní%6$s." - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Nemáte oprávnění k instalaci aktualizací pluginů" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Chyba" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Doplněk deaktivován." - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Doplněk aktivován." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "Hromadné akce" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Aktivovat" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Deaktivovat" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -#, fuzzy -msgid "Apply" -msgstr "" -"#-#-#-#-# generate-sections-cs_CZ.po (Generate Sections) #-#-#-#-#\n" -"Uložit\n" -"#-#-#-#-# gp-premium-cs_CZ.po (GP Premium) #-#-#-#-#\n" -"Použít" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "" - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Licence deaktivována." - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Licence aktivována." - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "Nápověda" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "Licenční klíč" - -#: inc/verify.php:139 -msgid "Update" -msgstr "Aktualizovat" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "" - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "" - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "" - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "" - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "" - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "" - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Umístění" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Velikost (automatická)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% šířka" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Pokrýt" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Omezit" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Přichycení" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Pevné" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Místní" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Zděděné" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "%current_year% pro automatickou aktualizaci roku." - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "%copy% pro vložení copyright symbolu." - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "HTML je povoleno." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Zkratky (shortcodes) jsou povoleny." - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "Mobil" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Nahoře" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Dole" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Rodina písem" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "Tloušťka písma" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "Transformace textu" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "Menu" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "Menu plus" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "Základní nastavení" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "Název menu na mobilu" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "Připnutá navigace" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "Pouze na mobilu" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "Pouze na počítači" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "Umístění" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "Vyblednutí" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "Vysunutí" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "Žádné" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "Logo navigace" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "Připnuté" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "Připnuté + statické" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "Statické" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "Hlavička na mobilu" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "Logo" - -#: menu-plus/functions/generate-menu-plus.php:442 -#, fuzzy -#| msgid "Sidebar" -msgid "Side" -msgstr "Postranní panel" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "Zavřít" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Hlavička stránky" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "Uvnitř oblasti obsahu" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "Pod názvem příspěvku" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "Skrýt" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Obrázek" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "Video na pozadí" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "Přidat úryvek" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" -"V současné době například pomocí vybraného obrázku." - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Obrázek hlavičky stránky" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "Vložit obrázek" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "Vybrat obrázek" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "Odstranit obrázek" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "Nebo můžete nastavit vybraný obrázek." - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Zakázat" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Povolit" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Šířka obrázku" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Výška obrázku" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "" -"Použijte \"0\" nebo nechte prázdné pro změnu velikosti se zachováním poměru " -"stran." - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "HTML a zkratky (shortcodes) jsou povoleny." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Automaticky vytvářet odstavce" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "Přidat odsazení" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Paralaxový efekt" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "Celá obrazovka" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "Vystředit obsah vertikálně" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgid "Contained" -msgstr "Omezený" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "Plný" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "Zarovnání textu" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Barva pozadí" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Barva textu" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Barva odkazu" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "Barva odkazu při přejetí myší" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "Soubor MP4" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "Video hlavičky stránky" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "Vložit video" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "Vybrat video" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "Soubor OGV" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "Soubor WEBM" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "Barva překrytí" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "Přepsat na vašem webu logo/záhlaví na téhle stránce." - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "Hlavička / Logo" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "Vložit logo" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "Vybrat logo" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "Smazat logo" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "Sloučit s hlavičkou stránky" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "Umístit obsah před hlavičky (slidery atd...)" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Sekundární menu" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Zarovnání navigace" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Pod hlavičkou" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Nad hlavičkou" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Plovoucí vpravo" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Levý postranní panel" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "Pravý postranní panel" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Bez navigace" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "Použít sekce" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "Sekce" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "Tuto akci nelze vrátit zpět, jste si jistý?" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "Sekce" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "Nastavení" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "Pozadí sekce" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "Nastavit jako pozadí" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "Vložit do sekce" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "Upravit sekci" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "Kliknutím otevřete možnosti úpravy" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "Kliknutím otevřete úpravy obsahu" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "Kliknutím otevřete úpravy nastavení" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "Kliknutím a tažením seřadit" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "Kliknutím odstranit" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "Přidat sekci" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "Odebrat sekce" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "Zrušit" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "Popis sekce" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "Mediální soubory" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "Editor" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "HTML" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "Vzhled" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Typ prostoru" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Typ vnitřního prostoru" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Vlastní třídy" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Vrchní odsazení" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Spodní odsazení" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Obrázek na pozadí" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "Nahrát" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "Odstranit" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "Javascript musí být povolen pro použití Generate sekcí" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Nebyly přidány žádné sekce!" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing options" -msgstr "Importovat nastavení" - -#: sites/classes/class-site-helper.php:96 -#, fuzzy -#| msgid "Blog Content" -msgid "Downloading content" -msgstr "Obsah blogu" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "Přeskočit na obsah" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing site options" -msgstr "Importovat nastavení" - -#: sites/classes/class-site-helper.php:99 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing widgets" -msgstr "Importovat nastavení" - -#: sites/classes/class-site-helper.php:100 -msgid "Activating plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -#, fuzzy -#| msgid "Static" -msgid "Automatic" -msgstr "Statické" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "Další" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -#, fuzzy -#| msgid "Image Options" -msgid "Theme Options" -msgstr "Nastavení obrázku" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "Po obsahu" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -#, fuzzy -#| msgid "Image Options" -msgid "Backup Options" -msgstr "Nastavení obrázku" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import Settings" -msgid "Import Options" -msgstr "Importovat nastavení" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "Před obsahem" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Licence aktivována." - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Oddělující mezera" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "Odsazení obsahu" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "Odsazení oblasti widgetů patičky" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "Odsazení patičky" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "Odsazení hlavičky" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "Výška položek sub-menu" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "Postranní panely" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "Odsazení widgetů" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "Šířka levého postranního panelu" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "Šířka pravého postranního panelu" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "Rozestupy" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Změňte rozestupy různých prvků pomocí pixelů." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Typografie" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Velikost písma" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Nadpis 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Nadpis 2 (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Nadpis 3 (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "Widgety" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "Velikost písma obsahu" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "Tom Usborne" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#, fuzzy -#~| msgid "Slideout Navigation" -#~ msgid "Slide-out Navigation" -#~ msgstr "Vysouvací navigace" - -#~ msgid "Slideout Menu" -#~ msgstr "Vysouvací menu" - -#~ msgid "Both" -#~ msgstr "Obojí" - -#~ msgid "Mobile Header Logo" -#~ msgstr "Logo hlavičky na mobilu" - -#~ msgid "Sticky Mobile Header" -#~ msgstr "Připnutá hlavička na mobilu" - -#~ msgid "Warning: This will delete your settings." -#~ msgstr "Varování: Toto smaže vaše nastavení." - -#~ msgid "Export Backgrounds Customizer Settings" -#~ msgstr "Exportovat nastavení Přizpůsobení pro Pozadí" - -#~ msgid "Delete Backgrounds Customizer Settings" -#~ msgstr "Smazat nastavení Přizpůsobení pro Pozadí" - -#~ msgid "Post Image / Page Header" -#~ msgstr "Obrázek příspěvku / Hlavička stránky" - -#~ msgid "Apply image sizes" -#~ msgstr "Použít velikost obrázku" - -#~ msgid "Excerpt Length" -#~ msgstr "Délka úryvku" - -#~ msgid "Masonry" -#~ msgstr "Zeď" - -#~ msgid "Masonry Block Width" -#~ msgstr "Šířka bloků zdi" - -#~ msgid "Small" -#~ msgstr "Malá" - -#~ msgid "Medium" -#~ msgstr "Střední" - -#~ msgid "Large" -#~ msgstr "Velká" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Šířka zdi s nejnovějšími příspěvky" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Text pro načtení více zdi" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Text při načítání zdi" - -#~ msgid "Post Image" -#~ msgstr "Obrázek příspěvku" - -#~ msgid "Show" -#~ msgstr "Zobrazit" - -#~ msgid "Post Image Position" -#~ msgstr "Umístění obrázku příspěvku" - -#~ msgid "Post Image Alignment" -#~ msgstr "Zarovnání obrázku příspěvku" - -#~ msgid "Post Image Width" -#~ msgstr "Šířka obrázku příspěvku" - -#~ msgid "Post Image Height" -#~ msgstr "Výška obrázku příspěvku" - -#~ msgid "Date" -#~ msgstr "Datum" - -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgid "Categories" -#~ msgstr "Rubriky" - -#~ msgid "Tags" -#~ msgstr "Štítky" - -#~ msgid "Comment Link" -#~ msgstr "Odkaz na komentáře" - -#~ msgid "Masonry is enabled. These settings will be ignored." -#~ msgstr "Zeď je povolena. Tato nastavení budou ignorována." - -#~ msgid "Column Layout" -#~ msgstr "Rozvržení sloupců" - -#~ msgid "First Post Full Width" -#~ msgstr "První příspěvek s plnou šířkou" - -#~ msgid "Read more..." -#~ msgstr "Číst více..." - -#~ msgid "Delete Blog Customizer Settings" -#~ msgstr "Smazat nastavení Přizpůsobení pro Blog" - -#~ msgid "Export Blog Customizer Settings" -#~ msgstr "Exportovat nastavení Přizpůsobení pro Blog" - -#~ msgid "Masonry Post Width" -#~ msgstr "Šířka zdi s příspěvky" - -#~ msgid "Global setting" -#~ msgstr "Globální nastavení" - -#~ msgid "Form Background Focus/Hover" -#~ msgstr "Pozadí formuláře při výběru/přejetí myší" - -#~ msgid "Form Text Focus/Hover" -#~ msgstr "Text formuláře při výběru/přejetí myší" - -#~ msgid "Form Border Focus/Hover" -#~ msgstr "Hranice formuláře při výběru/přejetí myší" - -#~ msgid "Form Button" -#~ msgstr "Tlačítko formuláře" - -#~ msgid "Form Button Focus/Hover" -#~ msgstr "Tlačítko formuláře při výběru/přejetí myší" - -#~ msgid "Form Button Text" -#~ msgstr "Text tlačítka formuláře" - -#~ msgid "Form Button Text Focus/Hover" -#~ msgstr "Text tlačítka formuláře při výběru/přejetí myší" - -#~ msgid "Export GP Hooks" -#~ msgstr "Exportovat GP háky" - -#~ msgid "Delete GP Hooks" -#~ msgstr "Smazat GP háky" - -#~ msgid "Import / Export" -#~ msgstr "Import / Export" - -#~ msgid "" -#~ "Export your settings set in the Customizer." -#~ msgstr "" -#~ "Exportujte vaši sadu nastavení v Přizpůsobení." - -#~ msgid "Export Default Customizer Settings" -#~ msgstr "Exportovat výchozí nastavení Přizpůsobení" - -#~ msgid "" -#~ "Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Importujte vaše nastavení s použitím exportovaného .json " -#~ "souboru." - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "Rozetupy použité mezi prvky, když je \"Rozvržení obsahu\" nastaveno na " -#~ "\"Oddělené prostory\"." - -#~ msgid "Delete Spacing Customizer Settings" -#~ msgstr "Smazat nastavení Přizpůsobení pro Rozestupy" - -#~ msgid "Export Spacing Customizer Settings" -#~ msgstr "Exportovat nastavení Přizpůsobení pro Rozestupy" - -#, fuzzy -#~ msgid "Left/Right Spacing" -#~ msgstr "" -#~ "#-#-#-#-# generate-spacing-cs_CZ.po (Generate Spacing) #-#-#-#-#\n" -#~ "Levé/Pravé rozestupy\n" -#~ "#-#-#-#-# secondary-nav-cs_CZ.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Pravé/Levé rozestupy" - -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "Horní a dolní rozestupy položek sub-menu." - -#~ msgid "15%" -#~ msgstr "15%" - -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgid "25%" -#~ msgstr "25%" - -#~ msgid "30%" -#~ msgstr "30%" - -#~ msgid "35%" -#~ msgstr "35%" - -#~ msgid "40%" -#~ msgstr "40%" - -#~ msgid "45%" -#~ msgstr "45%" - -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgid "Default fonts" -#~ msgstr "Výchozí písma" - -#~ msgid "Google fonts" -#~ msgstr "Google písma" - -#~ msgid "Site title" -#~ msgstr "Název webu" - -#~ msgid "Site tagline" -#~ msgstr "Popis webu" - -#~ msgid "Site navigation" -#~ msgstr "Navigace stránky" - -#~ msgid "Font-size" -#~ msgstr "Velikost písma" - -#~ msgid "Widget titles" -#~ msgstr "Názvy widgetů" - -#~ msgid "Footer font size" -#~ msgstr "Velikostp písma patičky" - -#~ msgid "Site title font size" -#~ msgstr "Velikost písma názvu stránky" - -#~ msgid "H1 font size" -#~ msgstr "Velikost písma H1" - -#~ msgid "H2 font size" -#~ msgstr "Velikost písma H2" - -#~ msgid "Sticky Menu" -#~ msgstr "Připnuté menu" - -#~ msgid "Sticky Navigation Effect" -#~ msgstr "Efekt připnuté navigace" - -#~ msgid "Navigation Logo Position" -#~ msgstr "Umístění loga navigace" - -#~ msgid "Delete Menu Plus Customizer Settings" -#~ msgstr "Smazat nastavení Přizpůsobení pro Menu Plus" - -#~ msgid "Export Menu Plus Customizer Settings" -#~ msgstr "Exportovat nastavení Přizpůsobení pro Menu Plus" - -#~ msgid "Blog Page Header" -#~ msgstr "Hlavička stránky blogu" - -#~ msgid "Upload an image to be used as your page header." -#~ msgstr "Nahrajte obrázek, který bude použit jako vaše hlavička stránky." - -#~ msgid "Image link" -#~ msgstr "Odkaz" - -#~ msgid "Make your page header image clickable by adding a URL. (optional)" -#~ msgstr "" -#~ "Udělejte váš obrázek v hlavičce stránky klikatelný přidáním URL. " -#~ "(volitelné)" - -#~ msgid "Resize image" -#~ msgstr "Změna velikosti" - -#~ msgid "Turn hard cropping or of off." -#~ msgstr "Zapněte nebo vypněte oříznutí." - -#~ msgid "Image width" -#~ msgstr "Šířka" - -#~ msgid "Choose your image width in pixels. (integer only, default is 1200)" -#~ msgstr "" -#~ "Zvolte šířku vašeho obrázku v pixelech. (pouze celá čísla, výchozí je " -#~ "1200)" - -#~ msgid "Image height" -#~ msgstr "Výška" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank for " -#~ "proportional resizing. (integer only, default is 0) " -#~ msgstr "" -#~ "Zvolte výšku vašeho obrázku v pixelech. Použijte \"0\" nebo nechte " -#~ "prázdné pro změnu velikosti se zachovám poměru stran. (pouze celá čísla, " -#~ "výchozí je 0)" - -#~ msgid "Video Background URL (MP4 only)" -#~ msgstr "URL videa na pozadí (pouze MP4)" - -#~ msgid "Video Background URL (OGV only)" -#~ msgstr "URL videa na pozadí (pouze OGV)" - -#~ msgid "Video Background URL (WEBM only)" -#~ msgstr "URL videa na pozadí (pouze WEBM)" - -#~ msgid "Page Header Content" -#~ msgstr "Obsah hlavičky stránky" - -#~ msgid "Add your content to the page header. HTML and shortcodes allowed." -#~ msgstr "" -#~ "Přidejte váš obsah k hlavičce stránky. HTML a zkratky (shortcodes) jsou " -#~ "povoleny." - -#~ msgid "Add Paragraphs" -#~ msgstr "Přidat odstavce" - -#~ msgid "Wrap your text in paragraph tags automatically." -#~ msgstr "Zabalte váš text automaticky do tagů odstavců." - -#~ msgid "Add padding around your content." -#~ msgstr "Přidejte odsazení okolo vašeho obsahu." - -#~ msgid "Image Background" -#~ msgstr "Obrázek na pozadí" - -#~ msgid "" -#~ "Use the image uploaded above as a background image for your content. " -#~ "(requires image uploaded above)" -#~ msgstr "" -#~ "Použijte obrázek nahraný výše jako obrázek na pozadí pro váš obsah. " -#~ "(vyžaduje obrázek nahraný výše)" - -#~ msgid "Parallax Background" -#~ msgstr "Paralaxní pozadí" - -#~ msgid "" -#~ "Add a cool parallax effect to your background image. (requires the image " -#~ "background option to be checked)" -#~ msgstr "" -#~ "Přidejte parádní paralaxový efekt k vašemu obrázku na pozadí. (vyžaduje " -#~ "zapnutí nastavení pozadí obrázku)" - -#~ msgid "Full Screen" -#~ msgstr "Celá obrazovka" - -#~ msgid "Make your page header content area full screen." -#~ msgstr "" -#~ "Udělejte obsahovou oblast vaší hlavičky stránky přes celou obrazovku." - -#~ msgid "Vertical Center" -#~ msgstr "Vertikální vystředění" - -#~ msgid "Center your page header content vertically." -#~ msgstr "Vystředí obsah vaší hlavičku stránky vertikálně." - -#~ msgid "Container Type" -#~ msgstr "Typ prostoru" - -#~ msgid "Choose whether the page header is contained or fluid." -#~ msgstr "Zvolte, jestli bude hlavička stránky omezená nebo proměnlivá." - -#~ msgid "Full width" -#~ msgstr "Plný" - -#~ msgid "Choose the horizontal alignment of your content." -#~ msgstr "Zvolte horizontální zarovnání vašeho obsahu." - -#~ msgid "Top/Bottom Padding" -#~ msgstr "Vrchní/Spodní odsazení" - -#~ msgid "This will add space above and below your content. (integer only) " -#~ msgstr "Toto dá prostor navíc nad a pod vaší stránkou (pouze celé číslo)" - -#~ msgid "Padding Unit" -#~ msgstr "Odsazení jednotky" - -#~ msgid "Page Header Advanced" -#~ msgstr "Pokročilá hlavička stránky" - -#~ msgid "Transparent navigation" -#~ msgstr "Průhledná navigace" - -#~ msgid "Navigation text" -#~ msgstr "Text navigace" - -#~ msgid "Navigation background hover" -#~ msgstr "Pozadí navigace při přejetí myší" - -#~ msgid "Navigation text hover" -#~ msgstr "Text navigace při přejetí myší" - -#~ msgid "Navigation background current" -#~ msgstr "Aktuální pozadí navigace" - -#~ msgid "Navigation text current" -#~ msgstr "Aktuální text navigace" - -#~ msgid "Page Header Logo" -#~ msgstr "Logo hlavičky stránky" - -#~ msgid "Replace your logo on the blog." -#~ msgstr "Nahradit vaše logo na blogu." - -#~ msgid "Page Header Position" -#~ msgstr "Umístění hlavičky stránky" - -#~ msgid "Single Post Header Position" -#~ msgstr "Umístění hlavičky příspěvku" - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "Smazat nastavení Přizpůsobení pro Hlavičku stránky" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "Exportovat nastavení Přizpůsobení pro Hlavičku stránky" - -#~ msgid "Add padding" -#~ msgstr "Přidat odsazení" - -#~ msgid "Add background image" -#~ msgstr "Přidat obrázek na pozadí" - -#~ msgid "Parallax effect" -#~ msgstr "Paralaxový efekt" - -#~ msgid "Container type" -#~ msgstr "Typ prostoru" - -#~ msgid "Text alignment" -#~ msgstr "Zarovnání textu" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Vrchní/Spodní odsazení" - -#~ msgid "Background color" -#~ msgstr "Barva pozadí" - -#~ msgid "Text color" -#~ msgstr "Barva textu" - -#~ msgid "Link color" -#~ msgstr "Barva odkazu" - -#~ msgid "Link color hover" -#~ msgstr "Barva odkazu při přejetí kurzorem myši" - -#~ msgid "Overlay color" -#~ msgstr "Barva překryvu" - -#~ msgid "Secondary Menu Items" -#~ msgstr "Položky sekundární navigace" - -#~ msgid "Secondary navigation" -#~ msgstr "Sekundární navigace" - -#~ msgid "Navigation Layout" -#~ msgstr "Rozvržení navigace" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Proměnlivá / Plná šířka" - -#~ msgid "Navigation Position" -#~ msgstr "Pozice navigace" - -#~ msgid "Delete Secondary Navigation Customizer Settings" -#~ msgstr "Smazat nastavení Přizpůsobení pro Sekundární navigaci" - -#~ msgid "Export Secondary Navigation Customizer Settings" -#~ msgstr "Exportovat nastavení Přizpůsobení pro Sekundární navigaci" - -#~ msgid "Select Image" -#~ msgstr "Vybrat obrázek" - -#~ msgid "Use Image" -#~ msgstr "Použít obrázek" - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "Je dostupná nová verze %1$s. Zobrazit podrobnosti o verzi %3$s." - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "Je dostupná nová verze %1$s. Zobrazit podrobnosti o verzi %3$s nebo aktualizovat nyní." - -#~ msgid "" -#~ "Want updates served directly to your Dashboard? Activate the email you " -#~ "purchased your add-ons with here." -#~ msgstr "" -#~ "Chcete aktualizace dodávat přímo do vaší Nástěnky? Aktivujte zde email, " -#~ "kterým jste zakoupili vaše doplňky." - -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgid "Deactivate Email" -#~ msgstr "Deaktivovat email" - -#~ msgid "Activate Email" -#~ msgstr "Aktivovat email" - -#~ msgid "Save Email" -#~ msgstr "Uložit email" - -#~ msgid "Enable All Updates" -#~ msgstr "Povolit všechny aktualizace" - -#~ msgid "Disable Updates" -#~ msgstr "Zakázat aktualizace" - -#~ msgid "Enable Updates" -#~ msgstr "Povolit aktualizace" - -#~ msgid "Email activation failed. This email does not exist in our records." -#~ msgstr "Aktivace emailu selhala. Tento email v našich záznamech neexistuje." - -#~ msgid "Email activated." -#~ msgstr "Email aktivován." - -#~ msgid "Email deactivated." -#~ msgstr "Email deaktivován." - -#~ msgid "License failed." -#~ msgstr "Licence selhala." - -#~ msgid "Licenses activated." -#~ msgstr "Licence aktivovány." - -#~ msgid "Deactivation failed." -#~ msgstr "Deaktivace selhala." - -#~ msgid "Headline / Post Title" -#~ msgstr "Titulek / Název příspěvku" - -#~ msgid "Updates %s" -#~ msgstr "Aktualizace %s" - -#~ msgid "Header Colors" -#~ msgstr "Barvy hlavičky" - -#~ msgid "Navigation Colors" -#~ msgstr "Barvy navigace" - -#~ msgid "Sub-Navigation Colors" -#~ msgstr "Barvy pod-navigace" - -#~ msgid "Content Colors" -#~ msgstr "Barvy obsahu" - -#~ msgid "Sidebar Widget Colors" -#~ msgstr "Barvy widgetů postranního panelu" - -#~ msgid "Footer Widget Colors" -#~ msgstr "Barvy widgetů patičky" - -#~ msgid "Footer Colors" -#~ msgstr "Barvy patičky" - -#~ msgid "Form Colors" -#~ msgstr "Barvy formuláře" - -#~ msgid "" -#~ "Use %current_year% to include the current year dynamically." -#~ msgstr "" -#~ "Použijte %current_year% pro vložení dynamického aktuálního " -#~ "roku." - -#~ msgid "Use %copy% to include the copyright symbol." -#~ msgstr "Použijte %copy% pro vložení copyright symbolu." - -#~ msgid "Save Copyright" -#~ msgstr "Uložit copyright" - -#~ msgid "Save Settings" -#~ msgstr "Uložit nastavení" - -#~ msgid "Error: Content already detected in default editor." -#~ msgstr "Chyba: Obsah již detekován ve výchozím editoru." - -#~ msgid "" -#~ "Please activate the \"Visual\" tab in your main editor before " -#~ "transferring content." -#~ msgstr "" -#~ "Prosím aktivujte záložku \"Vizuální\" ve vašem hlavním editoru než budete " -#~ "přenášet obsah." - -#, fuzzy -#~ msgid "Click to toggle" -#~ msgstr "" -#~ "#-#-#-#-# generate-sections-cs_CZ.po (Generate Sections) #-#-#-#-#\n" -#~ "Kliknutím rozbalit/sbalit\n" -#~ "#-#-#-#-# page-header-cs_CZ.po (Generate Page Header) #-#-#-#-#\n" -#~ "Kliknutím přepnout" - -#~ msgid "Fluid" -#~ msgstr "Proměnlivý" - -#~ msgid "No" -#~ msgstr "Ne" - -#~ msgid "Yes" -#~ msgstr "Ano" - -#~ msgid "Send sections to default editor" -#~ msgstr "Poslat sekce do výchozího editoru" - -#~ msgid "Element Spacing" -#~ msgstr "Rozestupy prvků" - -#~ msgid "These options control the size of your menu items." -#~ msgstr "Tato nastavení ovládají velikost vašich položek menu." - -#~ msgid "Sub-menu Item Height" -#~ msgstr "Výška položek pod-menu" - -#~ msgid "Sidebar Widths" -#~ msgstr "Šířky postranních panelů" - -#~ msgid "Body Typography" -#~ msgstr "Typografie těla" - -#~ msgid "Header Typography" -#~ msgstr "Typografie hlavičky" - -#~ msgid "Navigation Typography" -#~ msgstr "Typografie navigace" - -#~ msgid "Content Typography" -#~ msgstr "Typografie obsahu" - -#~ msgid "Widget Typography" -#~ msgstr "Typografie widgetu" - -#~ msgid "Footer Typography" -#~ msgstr "Typografie patičky" - -#~ msgid "Mobile Typography" -#~ msgstr "Typografie na mobilu" - -#~ msgid "activated" -#~ msgstr "aktivováno" - -#~ msgid "Sticky Navigation Logo" -#~ msgstr "Logo přilepené navigace" - -#~ msgid "Sticky Navigation Logo Position" -#~ msgstr "Umístění loga přilepené navigace" - -#~ msgid "Sticky Only" -#~ msgstr "Pouze přilepené" - -#~ msgid "Sticky + Regular" -#~ msgstr "Přilepené + normální" - -#~ msgid "Regular Only" -#~ msgstr "Pouze normální" - -#~ msgid "Thomas Usborne" -#~ msgstr "Thomas Usborne" - -#~ msgid "http://edge22.com" -#~ msgstr "http://edge22.com" - -#~ msgid "Sticky Menu Effect" -#~ msgstr "Efekt přilepeného menu" - -#~ msgid "Menu Logo" -#~ msgstr "Logo menu" - -#~ msgid "Menu Logo Position" -#~ msgstr "Umístění loga menu" - -#~ msgid "Sticky Header" -#~ msgstr "Přilepená hlavička" - -#~ msgid "Generate Menu Plus" -#~ msgstr "Generate Menu Plus" - -#~ msgid "http://generatepress.com" -#~ msgstr "http://generatepress.com" - -#~ msgid "Add awesome new menu features to your GeneratePress menu" -#~ msgstr "Přidejte úžasné nové funkce menu do vašeho GeneratePress menu." - -#~ msgid "Page Header Link" -#~ msgstr "Odkaz hlavičky stránky" - -#~ msgid "Hard Crop" -#~ msgstr "Oříznutí" - -#~ msgid "" -#~ "Choose your content padding in pixels. This will add space above and " -#~ "below your content. (integer only) " -#~ msgstr "" -#~ "Zvolte odsazení vašeho obsahu v pixelech. Toto přidá mezeru nad a pod váš " -#~ "obsah. (pouze celá čísla)" - -#~ msgid "Image Settings" -#~ msgstr "Nastavení obrázku" - -#~ msgid "Video Settings" -#~ msgstr "Nastavení videa" - -#~ msgid "Content Settings" -#~ msgstr "Nastavení obsahu" - -#~ msgid "Logo Settings" -#~ msgstr "Nastavení loga" - -#~ msgid "Advanced Settings" -#~ msgstr "Rozšířené nastavení" - -#~ msgid "Add Image" -#~ msgstr "Přidat obrázek" - -#~ msgid "Video background - MP4 file only" -#~ msgstr "Video pozadí - pouze MP4 soubory" - -#~ msgid "Add Video" -#~ msgstr "Přidat video" - -#~ msgid "Video background - OGV file only" -#~ msgstr "Video pozadí - pouze OGV soubory" - -#~ msgid "Video background - WEBM file only" -#~ msgstr "Video pozadí - pouze WEBM soubory" - -#~ msgid "Add to blog excerpt" -#~ msgstr "Přidat k blogovému úryvku" - -#~ msgid "Add a page header to your blog." -#~ msgstr "Přidejte hlavičku stránky k vašemu blogu." - -#~ msgid "" -#~ "This will only show up on the page you have set as your \"Posts Page\". " -#~ "To add a page header to specific pages, use the metabox included while " -#~ "adding your content." -#~ msgstr "" -#~ "Zobrazí se pouze na stránce, kterou jste nastavili jako vaši \"Stránku " -#~ "příspěvků\". Pro přidání hlavičky stránky konkrétním stránkám, použijte " -#~ "infobox při vkládání vašeho obsahu." - -#~ msgid "Publish" -#~ msgstr "Publikovat" - -#~ msgid "" -#~ "Use these options to add a page header to your Blog. Add page headers to " -#~ "your pages by using the metabox while editing them." -#~ msgstr "" -#~ "Použijte tyto nastavení k přidání hlavičky stránky k vašemu blogu. " -#~ "Přidejte hlavičky stránek k vašim stránkám použitím infoboxu, zatímco je " -#~ "upravujete." - -#~ msgid "Upload an image to use in your page header" -#~ msgstr "Nahrajte obrázek, který bude použit ve vaší hlavičce stránky" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank to calculate " -#~ "height based on width. (integer only, default is 0) " -#~ msgstr "" -#~ "Zvolte výšku vašeho obrázku v pixelech. Použijte \"0\" nebo nechte " -#~ "prázdné pro výpočet výšky v závislosti na šířce. (pouze celá čísla, " -#~ "výchozí je 0)" - -#~ msgid "Content Options" -#~ msgstr "Nastavení obsahu" - -#~ msgid "Add content to your page header" -#~ msgstr "Přidejte obsah k vaší hlavičce stránky" - -#~ msgid "Link Hover Color" -#~ msgstr "Barva odkazu při přejetí myší" - -#~ msgid "Metabox configuration is required to have an ID parameter" -#~ msgstr "Je vyžadována konfigurace infoboxu, abyste měli ID parametr" - -#~ msgid "Please Try Again" -#~ msgstr "Prosím, zkuste to znovu" - -#~ msgid "Remove Embed" -#~ msgstr "Odstranit vložený prvek" - -#~ msgid "No oEmbed Results Found for %s. View more info at" -#~ msgstr "Nebyly nalezeny žádné oEmbed výsledky pro %s. Více informací na" - -#~ msgid "Add Group" -#~ msgstr "Přidat skupinu" - -#~ msgid "Remove Group" -#~ msgstr "Odstranit skupinu" - -#~ msgid "Add Row" -#~ msgstr "Přidat řadu" - -#~ msgid "No terms" -#~ msgstr "Bez termínů" - -#~ msgid "Add or Upload Files" -#~ msgstr "Přidat nebo nahrát soubory" - -#~ msgid "Add or Upload File" -#~ msgstr "Přidat nebo nahrát soubor" - -#~ msgid "File:" -#~ msgstr "Soubor:" - -#~ msgid "Download" -#~ msgstr "Stáhnout" - -#~ msgid "Clear" -#~ msgstr "Vymazat" - -#~ msgid "Default" -#~ msgstr "Výchozí" - -#~ msgid "Select Color" -#~ msgstr "Vybrat barvu" - -#~ msgid "Current Color" -#~ msgstr "Aktuální barva" - -#~ msgid "mm/dd/yy" -#~ msgstr "mm/dd/yy" - -#~ msgid "Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday" -#~ msgstr "Neděle, Pondělí, Úterý, Středa, Čtvrtek, Pátek, Sobota" - -#~ msgid "Su, Mo, Tu, We, Th, Fr, Sa" -#~ msgstr "Ne, Po, Út, St, Čt, Pá, So" - -#~ msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat" -#~ msgstr "Ned, Pon, Úte, Stř, Čtv, Pát, Sob" - -#~ msgid "" -#~ "January, February, March, April, May, June, July, August, September, " -#~ "October, November, December" -#~ msgstr "" -#~ "Leden, Únor, Březen, Duben, Květen, Červen, Červenec, Srpen, Září, Říjen, " -#~ "Listopad, Prosinec" - -#~ msgid "Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec" -#~ msgstr "Led, Úno, Bře, Dub, Kvě, Čer, Čvc, Srp, Zář, Říj, Lis, Pro" - -#~ msgid "Prev" -#~ msgstr "Předchozí" - -#~ msgid "Today" -#~ msgstr "Dnes" - -#~ msgid "Done" -#~ msgstr "Hotovo" - -#~ msgid "Choose Time" -#~ msgstr "Zvolit čas" - -#~ msgid "Time" -#~ msgstr "Čas" - -#~ msgid "Hour" -#~ msgstr "Hodina" - -#~ msgid "Minute" -#~ msgstr "Minuta" - -#~ msgid "Second" -#~ msgstr "Sekunda" - -#~ msgid "Now" -#~ msgstr "Teď" - -#~ msgid "hh:mm TT" -#~ msgstr "hh:mm TT" - -#~ msgid "Use this file" -#~ msgstr "Použít tento soubor" - -#~ msgid "Select / Deselect All" -#~ msgstr "Vybrat / Zrušit výběr všeho" - -#~ msgid "Save" -#~ msgstr "Uložit" - -#~ msgid "Use \"0\" or leave blank to calculate height based on width." -#~ msgstr "" -#~ "Použijte \"0\" nebo nechte prázdné pro výpočet výšky v závislosti na " -#~ "šířce. " - -#~ msgid "Use image (from image tab) as a background image?" -#~ msgstr "Použít obrázek (z karty s obrázkem) jako obrázek na pozadí?" - -#~ msgid "Add parallax effect to background image?" -#~ msgstr "Přidat paralaxový efekt k obrázku na pozadí?" - -#~ msgid "Make background image full screen?" -#~ msgstr "Obrázek na pozadí na celou obrazovku?" - -#~ msgid "Center your content vertically?" -#~ msgstr "Vystředit váš obsah vertikálně?" - -#~ msgid "Add to blog excerpt (if no Featured Image is set)" -#~ msgstr "Přidat do blogového úryvku (pokud není vybrán Náhledový obrázek)" - -#~ msgid "Mobile Label" -#~ msgstr "Mobilní název" - -#~ msgid "Secondary Navigation Spacing" -#~ msgstr "Rozestupy sekundární navigace" - -#~ msgid "These options control the size of your secondary menu items." -#~ msgstr "Tato nastavení ovládají velikost vašich položek sekundárního menu." - -#~ msgid "Secondary Sub-menu Item Height" -#~ msgstr "Výška položek sekundárního pod-menu" - -#~ msgid "The top and bottom spacing of secondary sub-menu items." -#~ msgstr "Horní a spodní rozestupy položek sekundárního pod-menu" - -#~ msgid "Secondary Navigation Colors" -#~ msgstr "Barvy sekundární navigace" - -#~ msgid "Secondary Sub-Navigation Colors" -#~ msgstr "Barvy sekundární pod-navigace" - -#~ msgid "Secondary Navigation Typography" -#~ msgstr "Typografie sekundární navigace" - -#~ msgid "Secondary Background Images" -#~ msgstr "Obrázky na sekundárním pozadí" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-da_DK.mo b/wp-content/plugins/gp-premium/langs/gp-premium-da_DK.mo index 2162c162..f26c489f 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-da_DK.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-da_DK.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-da_DK.po b/wp-content/plugins/gp-premium/langs/gp-premium-da_DK.po deleted file mode 100644 index c36bda7b..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-da_DK.po +++ /dev/null @@ -1,3068 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:31-0800\n" -"PO-Revision-Date: 2018-02-27 17:31-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: Bjørn Seaton \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/libs\n" -"X-Poedit-SearchPathExcluded-3: sites/classes/class-site-widget-importer.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Baggrundsbilleder" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Sidehoved" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Primær navigation" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "Navigation" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Navigationselement" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "Navigationselement Hover" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "Navigationselement Current" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "Undernavigationselement" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "Undernavigationselement Hover" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "Undernavigationselement Current" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Indhold" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "Sidebar Widgets" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Sidefod" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Sidefod Widget Område" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Sidefodsområde" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Sekundær Navigation" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Læs mere etiket" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "Center" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "Venstre" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "Højre" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Højde" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Over Indholdsområdet" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Mere" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "" - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Farver" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "Baggrund" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Tekst" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Link" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Link Hover" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Sitetitel" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Tagline" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "Primære Menuelementer" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "Baggrund Hover" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "Baggrund Current" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Tekst Hover" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "Tekst Current" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -#| msgid "Sub-menu Item Height" -msgid "Sub-Menu Items" -msgstr "Undermenupunkters højde" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "Indholdstitel" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Blogindlægstitel" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Blogindlægstitel Hover" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Indlægs metatekst" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Indlægs metalinks" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Indlægs metalinks Hover" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Widget titel" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Formularbaggrund" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Formular kant" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Formular tekst" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Copyright" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Deaktiver elementer" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "GP hooks" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Før sidehoved" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Før sidehovedindhold" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Efter sidehovedindhold" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Efter sidehoved" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Før indhold" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Efter indlægstitel" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Efter indhold" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Før Højre Sidebars Indhold" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Efter Højre Sidebars Indhold" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Før Venstre Sidebars Indhold" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Efter Venstre Sidebars Indhold" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Før sidefod" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Før sidefodsindhold" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Efter sidefodsindhold" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Afvikl PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Brug disse felter til at indsætte hvad du vil igennem GeneratePress. " -"Shortcodes er tilladte, og du kan endda bruge PHP hvis du afkrydser Afvikl " -"PHP kasserne." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Vis alle" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "" - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -#| msgid "Background" -msgctxt "Module name" -msgid "Backgrounds" -msgstr "Baggrund" - -#: import-export/functions/functions.php:23 library/reset.php:21 -msgctxt "Module name" -msgid "Blog" -msgstr "" - -#: import-export/functions/functions.php:27 library/reset.php:25 -#, fuzzy -#| msgid "GP Hooks" -msgctxt "Module name" -msgid "Hooks" -msgstr "GP hooks" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "Sidehoved" - -#: import-export/functions/functions.php:35 library/reset.php:33 -#, fuzzy -#| msgid "Secondary Navigation" -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "Sekundær Navigation" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#, fuzzy -#| msgid "Element Spacing" -msgctxt "Module name" -msgid "Spacing" -msgstr "Element Afstandsjustering" - -#: import-export/functions/functions.php:43 library/reset.php:41 -msgctxt "Module name" -msgid "Menu Plus" -msgstr "" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "Copyright" - -#: import-export/functions/functions.php:56 -#, fuzzy -#| msgid "GeneratePress Hooks" -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "GeneratePress Hooks" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "Upload venligst en gyldig .json fil" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "Vælg venligst en fil at importere" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Du har ikke tilladelse til at installere plugin opdateringer" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Fejl" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "" - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "" - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Aktiver" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Deaktiver" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "" - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "" - -#: inc/verify.php:78 -msgid "License activated." -msgstr "" - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "" - -#: inc/verify.php:139 -msgid "Update" -msgstr "" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "" - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "" - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "" - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "" - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "" - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "" - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Position" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Størrelse (Auto)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% Bredde" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Overdæk" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Indehold" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Vedhæftning" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Fikseret" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Lokal" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Nedarv" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "HTML tilladt." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Top" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Bund" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Skrifttype" - -#: library/customizer/controls/class-typography-control.php:30 -#, fuzzy -msgid "Font weight" -msgstr "" -"#-#-#-#-# generate-typography-da_DK.po (Generate Typography) #-#-#-#-#\n" -"Vægtning\n" -"#-#-#-#-# secondary-nav-da_DK.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Skrift vægtning" - -#: library/customizer/controls/class-typography-control.php:31 -#, fuzzy -msgid "Text transform" -msgstr "" -"#-#-#-#-# generate-typography-da_DK.po (Generate Typography) #-#-#-#-#\n" -"Tekst tranformering\n" -"#-#-#-#-# secondary-nav-da_DK.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Tekst transformering" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "Position" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:442 -msgid "Side" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Sidehoved" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "Indeni Indholdsområdet" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "Skjul" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Billede" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Sidehoved billede" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "" - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Deaktivér" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Aktivér" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Billedets Bredde" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Billedets Højde" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "" - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "HTML og shortcodes tilladt." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Tilføj automatisk afsnit" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgid "Contained" -msgstr "Indeholdt" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "" - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Sekundær Menu" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Navigation justering" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Under Sidehoved" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Over Sidehoved" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Svævende til højre" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Venstre Sidebar" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "Højre Sidebar" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Ingen Navigation" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -msgid "Importing options" -msgstr "" - -#: sites/classes/class-site-helper.php:96 -msgid "Downloading content" -msgstr "" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "Spring til indhold" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Customizer Settings" -msgid "Importing site options" -msgstr "Importer customizer indstillinger" - -#: sites/classes/class-site-helper.php:99 -msgid "Importing widgets" -msgstr "" - -#: sites/classes/class-site-helper.php:100 -#, fuzzy -msgid "Activating plugins" -msgstr "" -"#-#-#-#-# disable-elements-da_DK.po (Generate Disable Elements) #-#-#-#-#\n" -"Aktiver licens\n" -"#-#-#-#-# generate-colors-da_DK.po (Generate Colors) #-#-#-#-#\n" -"Aktiver Licens\n" -"#-#-#-#-# generate-copyright-da_DK.po (Generate Copyright) #-#-#-#-#\n" -"Aktiver licens\n" -"#-#-#-#-# generate-hooks-da_DK.po (Generate Hooks) #-#-#-#-#\n" -"Aktiver Licens\n" -"#-#-#-#-# generate-ie-da_DK.po (Generate Import Export) #-#-#-#-#\n" -"Aktiver Licens\n" -"#-#-#-#-# generate-spacing-da_DK.po (Generate Spacing) #-#-#-#-#\n" -"Aktiver Licens\n" -"#-#-#-#-# generate-typography-da_DK.po (Generate Typography) #-#-#-#-#\n" -"Aktiver Licens\n" -"#-#-#-#-# page-header-da_DK.po (Generate Page Header) #-#-#-#-#\n" -"Aktiver Licens" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -msgid "Automatic" -msgstr "" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -msgid "Theme Options" -msgstr "" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "Efter indhold" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -msgid "Backup Options" -msgstr "" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import / Export" -msgid "Import Options" -msgstr "Import / Eksport" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "Før indhold" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "inactive" -msgid "Plugins activated" -msgstr "inaktiv" - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh sites" -msgstr "Genindlæs" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Adskillende afstand" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Skift afstand mellem forskellige elementer ved brug af pixels." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Typografi" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Skriftstørrelse" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Overskrift (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Overskrift (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Overskrift (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#, fuzzy -#~| msgid "No Navigation" -#~ msgid "Slide-out Navigation" -#~ msgstr "Ingen Navigation" - -#~ msgid "Export Backgrounds Customizer Settings" -#~ msgstr "Eksporter Tilpassede indstillinger for Baggrunde" - -#~ msgid "Delete Backgrounds Customizer Settings" -#~ msgstr "Slet Tilpassede indstillinger for Baggrunde" - -#~ msgid "Post Image / Page Header" -#~ msgstr "Indlægsbillede / Sideheader" - -#~ msgid "Headline / Post Title" -#~ msgstr "Overskrift / Sidetitel" - -#~ msgid "verified" -#~ msgstr "verificeret" - -#~ msgid "unverified" -#~ msgstr "ikke-verificeret" - -#~ msgid "Disable Elements Installed" -#~ msgstr "Deaktiver Elementer Installeret" - -#~ msgid "Please enter your license key in order to use this plugin." -#~ msgstr "Indtast venligst din licensnøgle for at bruge dette plugin." - -#, fuzzy -#~ msgid "Deactivate License" -#~ msgstr "" -#~ "#-#-#-#-# disable-elements-da_DK.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Deaktiver licens\n" -#~ "#-#-#-#-# generate-colors-da_DK.po (Generate Colors) #-#-#-#-#\n" -#~ "Deaktiver Licens\n" -#~ "#-#-#-#-# generate-copyright-da_DK.po (Generate Copyright) #-#-#-#-#\n" -#~ "Deaktiver licens\n" -#~ "#-#-#-#-# generate-hooks-da_DK.po (Generate Hooks) #-#-#-#-#\n" -#~ "Deaktiver Licens\n" -#~ "#-#-#-#-# generate-ie-da_DK.po (Generate Import Export) #-#-#-#-#\n" -#~ "Deaktiver Licens\n" -#~ "#-#-#-#-# generate-spacing-da_DK.po (Generate Spacing) #-#-#-#-#\n" -#~ "Deaktiver Licens\n" -#~ "#-#-#-#-# generate-typography-da_DK.po (Generate Typography) #-#-#-#-#\n" -#~ "Deaktiver Licens\n" -#~ "#-#-#-#-# page-header-da_DK.po (Generate Page Header) #-#-#-#-#\n" -#~ "Deaktiver Licens" - -#~ msgid "active" -#~ msgstr "aktiv" - -#~ msgid "Generate Disable Elements License Key" -#~ msgstr "Generate Deaktiver elementer Licensnøgle" - -#~ msgid "" -#~ "Activate your addons by entering the email you purchased them with below. " -#~ "Save and verify, then your purchased addons will appear below for " -#~ "activation." -#~ msgstr "" -#~ "Aktiver dine addons ved at indtaste den email du købte dem fra forneden. " -#~ "Gem og verificer, og så vises dine købte addons forneden hvor de kan " -#~ "aktiveres." - -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgid "Status" -#~ msgstr "Status" - -#~ msgid "Action" -#~ msgstr "Handling" - -#, fuzzy -#~ msgid "Verify Email" -#~ msgstr "" -#~ "#-#-#-#-# disable-elements-da_DK.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Verificér Email\n" -#~ "#-#-#-#-# generate-colors-da_DK.po (Generate Colors) #-#-#-#-#\n" -#~ "Verificer Email\n" -#~ "#-#-#-#-# generate-copyright-da_DK.po (Generate Copyright) #-#-#-#-#\n" -#~ "Verificér email\n" -#~ "#-#-#-#-# generate-hooks-da_DK.po (Generate Hooks) #-#-#-#-#\n" -#~ "Verificér Email\n" -#~ "#-#-#-#-# generate-ie-da_DK.po (Generate Import Export) #-#-#-#-#\n" -#~ "Verificer Email\n" -#~ "#-#-#-#-# generate-spacing-da_DK.po (Generate Spacing) #-#-#-#-#\n" -#~ "Verificer Email\n" -#~ "#-#-#-#-# generate-typography-da_DK.po (Generate Typography) #-#-#-#-#\n" -#~ "Verificer Email\n" -#~ "#-#-#-#-# page-header-da_DK.po (Generate Page Header) #-#-#-#-#\n" -#~ "Verificer Email" - -#, fuzzy -#~ msgid "Activate All" -#~ msgstr "" -#~ "#-#-#-#-# disable-elements-da_DK.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Aktiver Alle\n" -#~ "#-#-#-#-# generate-colors-da_DK.po (Generate Colors) #-#-#-#-#\n" -#~ "Aktiver alle\n" -#~ "#-#-#-#-# generate-copyright-da_DK.po (Generate Copyright) #-#-#-#-#\n" -#~ "Aktiver Alle\n" -#~ "#-#-#-#-# generate-hooks-da_DK.po (Generate Hooks) #-#-#-#-#\n" -#~ "Aktiver Alle\n" -#~ "#-#-#-#-# generate-ie-da_DK.po (Generate Import Export) #-#-#-#-#\n" -#~ "Aktiver alle\n" -#~ "#-#-#-#-# generate-spacing-da_DK.po (Generate Spacing) #-#-#-#-#\n" -#~ "Aktiver alle\n" -#~ "#-#-#-#-# generate-typography-da_DK.po (Generate Typography) #-#-#-#-#\n" -#~ "Aktiver alle\n" -#~ "#-#-#-#-# page-header-da_DK.po (Generate Page Header) #-#-#-#-#\n" -#~ "Aktiver alle" - -#~ msgid "Product" -#~ msgstr "Produkt" - -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgid "Once Every 3 Days" -#~ msgstr "En gang hver 3. dag" - -#~ msgid "Read more..." -#~ msgstr "Læs mere..." - -#~ msgid "Excerpt Length" -#~ msgstr "Længde af Uddrag" - -#~ msgid "Masonry" -#~ msgstr "Murværk" - -#~ msgid "Masonry Block Width" -#~ msgstr "Murværk blokbredde" - -#~ msgid "Small" -#~ msgstr "Lille" - -#~ msgid "Medium" -#~ msgstr "Medium" - -#~ msgid "Large" -#~ msgstr "Stor" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Murværk Mest Nylige Bredde" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Murværk Hent Flere Tekst" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Murværk Indlæser Tekst" - -#~ msgid "Post Image" -#~ msgstr "Indlægsbillede" - -#~ msgid "Show" -#~ msgstr "Vis" - -#~ msgid "Date" -#~ msgstr "Dato" - -#~ msgid "Author" -#~ msgstr "Forfatter" - -#~ msgid "Categories" -#~ msgstr "Kategorier" - -#~ msgid "Comment Link" -#~ msgstr "Kommentar Link" - -#~ msgid "Masonry Post Width" -#~ msgstr "Murværk indlægsbredde" - -#~ msgid "Global setting" -#~ msgstr "Global indstillinger" - -#~ msgid "Delete Blog Customizer Settings" -#~ msgstr "Slet tilpassede indstillinger for Blog" - -#~ msgid "Export Blog Customizer Settings" -#~ msgstr "Eksporter tilpassede indstillinger for Blog" - -#~ msgid "Header Colors" -#~ msgstr "Sidehoved Farver" - -#~ msgid "Navigation Colors" -#~ msgstr "Navigationens Farver" - -#~ msgid "Sub-Navigation Colors" -#~ msgstr "Undernavigationens Farver" - -#~ msgid "Content Colors" -#~ msgstr "Indholdsfarver" - -#~ msgid "Sidebar Widget Colors" -#~ msgstr "Sidebar Widget Farver" - -#~ msgid "Footer Widget Colors" -#~ msgstr "Sidefod Widget farver" - -#~ msgid "Footer Colors" -#~ msgstr "Sidefodsfarver" - -#~ msgid "Form Colors" -#~ msgstr "Formularfarver" - -#~ msgid "Form Background Focus/Hover" -#~ msgstr "Formularbagrgund Fokus/Hover" - -#~ msgid "Form Text Focus/Hover" -#~ msgstr "Formulartekst Fokus/Hover" - -#~ msgid "Form Border Focus/Hover" -#~ msgstr "Formular kant Fokus/Hover" - -#~ msgid "Form Button" -#~ msgstr "Formularknap" - -#~ msgid "Form Button Focus/Hover" -#~ msgstr "Formularknap Fokus/Hover" - -#~ msgid "Form Button Text" -#~ msgstr "Formular knaptekst" - -#~ msgid "Form Button Text Focus/Hover" -#~ msgstr "Formularknaptekst Fokus/Hover" - -#~ msgid "Colors Installed" -#~ msgstr "Farver installeret" - -#~ msgid "Deactivate Email" -#~ msgstr "Deaktiver Email" - -#~ msgid "Activate Email" -#~ msgstr "Aktiver Email" - -#~ msgid "Generate Colors License Key" -#~ msgstr "Generate Farver Licensnøgle" - -#~ msgid "Add a custom copyright line." -#~ msgstr "Tilføj dine egen Copyright linje" - -#~ msgid "" -#~ "Use %current_year% to include the current year dynamically." -#~ msgstr "" -#~ "Brug %current_year% for at bruge indeværende år dynamisk." - -#~ msgid "Use %copy% to include the copyright symbol." -#~ msgstr "Brug %copy% for at vise copyright symbolet." - -#~ msgid "Copyright Installed" -#~ msgstr "Copyright installeret" - -#~ msgid "Generate Copyright License Key" -#~ msgstr "Generate Copyright licensnøgle" - -#~ msgid "Save Settings" -#~ msgstr "Gem indstillinger" - -#~ msgid "Generate Hooks License Key" -#~ msgstr "Generate Hooks Licensnøgle" - -#~ msgid "Export your settings set in the Eksporter dine indstillinger valgt i Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Importer dine indstillinger ved at uploade din " -#~ "eksporterede .json file." - -#~ msgid "Import / Export Installed" -#~ msgstr "Import / Eksport installeret" - -#~ msgid "Generate Import Export License Key" -#~ msgstr "Generate Import Eksport Licensnøgle" - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "Mellemrummet mellem elementer når \"Content Layout\" er sat til " -#~ "\"Separate Containers\"." - -#~ msgid "These options control the size of your menu items." -#~ msgstr "Disse indstillinger styrer størrelsen på dine menuelementer." - -#~ msgid "Left/Right Spacing" -#~ msgstr "Venstre/Højre mellemrum" - -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "Top og bund mellemrum for elementer i undermenuen." - -#~ msgid "Sidebar Widths" -#~ msgstr "Sidebar Bredder" - -#~ msgid "Delete Spacing Customizer Settings" -#~ msgstr "Slet tilpassende indstillinger for afstandsjustering" - -#~ msgid "Export Spacing Customizer Settings" -#~ msgstr "Eksporter tilpassende indstillinger for afstandsjustering" - -#~ msgid "Spacing Installed" -#~ msgstr "Afstandsjustering installeret" - -#~ msgid "Generate Spacing License Key" -#~ msgstr "Generate Afstandsjustering Licensnøgle" - -#~ msgid "Font-size" -#~ msgstr "Skriftstørrelse" - -#~ msgid "Typography Installed" -#~ msgstr "Typografi Installeret" - -#~ msgid "Generate Typography License Key" -#~ msgstr "Generate Typografi Licensnøgle" - -#~ msgid "Page Header Link" -#~ msgstr "Sidehoved Link" - -#~ msgid "Hard Crop" -#~ msgstr "Hård beskæring" - -#~ msgid "Fluid" -#~ msgstr "Flydende" - -#~ msgid "Add Image" -#~ msgstr "Tilføj billede" - -#~ msgid "Add padding" -#~ msgstr "Tilføj padding" - -#~ msgid "Text alignment" -#~ msgstr "`Tekst justering" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Top/Bund padding" - -#~ msgid "Text color" -#~ msgstr "Tekstfarve" - -#~ msgid "Link color" -#~ msgstr "Linkfarve" - -#~ msgid "Link color hover" -#~ msgstr "Linkfarve hover" - -#~ msgid "Page Header Position" -#~ msgstr "Sidehoved position" - -#~ msgid "Single Post Header Position" -#~ msgstr "Single Post Sidehovedposition" - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "Slet Tilpassede indstillinger for Sidehoved" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "Eksporter Tilpassede indstillinger for Sidehoved" - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "Der er en ny version af %1$s tilgængelig. Se version %3$s detaljer." - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "Der er en ny version af %1$s tilgængelig. Se version %3$s detaljer eller opdater nu." - -#~ msgid "Mobile Label" -#~ msgstr "Mobil etiket" - -#~ msgid "Navigation Layout" -#~ msgstr "Navigation Layout" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Flydende / Fuld Bredde" - -#~ msgid "Navigation Position" -#~ msgstr "Navigationsposition" - -#~ msgid "Secondary Navigation Spacing" -#~ msgstr "Sekundær Navigation Mellemrum" - -#~ msgid "Secondary Menu Items" -#~ msgstr "Sekundære Menuelementer" - -#~ msgid "These options control the size of your secondary menu items." -#~ msgstr "" -#~ "Disse indstillinger kontrollerer størrelse af dine sekundære " -#~ "menuelementer." - -#~ msgid "Secondary Sub-menu Item Height" -#~ msgstr "Sekundær Under-menu Elementhøjde" - -#~ msgid "The top and bottom spacing of secondary sub-menu items." -#~ msgstr "Top og bund mellemrum for elementer i den sekundære undermenu." - -#~ msgid "Secondary Navigation Colors" -#~ msgstr "Sekundær navigation Farver" - -#~ msgid "Secondary Sub-Navigation Colors" -#~ msgstr "Sekundær Undernavigations Farver" - -#~ msgid "Secondary Navigation Typography" -#~ msgstr "Sekundær Navigation Typografi" - -#~ msgid "Secondary navigation" -#~ msgstr "Sekundær navigation" - -#~ msgid "Secondary Background Images" -#~ msgstr "Sekundære baggrundsbilleder" - -#~ msgid "Delete Secondary Navigation Customizer Settings" -#~ msgstr "Slet Tilpassede indstillinger for Sekundær Navigation" - -#~ msgid "Export Secondary Navigation Customizer Settings" -#~ msgstr "Eksporter Tilpassede indstillinger for Sekundær Navigation" - -#~ msgid "" -#~ "Note: You've chosen content to show as your page header. Remove the " -#~ "content and save to use the image below." -#~ msgstr "" -#~ "Note: Du har valgt indhold til visning som sidehoved. Fjern indholdet og " -#~ "gem for at bruge billedet forneden." - -#~ msgid "Image Crop Position" -#~ msgstr "Billedebeskæringsposition" - -#~ msgid "Top left" -#~ msgstr "Øverst venstre" - -#~ msgid "Top right" -#~ msgstr "Øverst højre" - -#~ msgid "Bottom left" -#~ msgstr "Nederst venstre" - -#~ msgid "Bottom right" -#~ msgstr "Nederst højre" - -#~ msgid "Use image (from image tab) as a background image?" -#~ msgstr "Brug billede (fra billedfanen) som et baggrundsbillede?" - -#~ msgid "Background type" -#~ msgstr "Baggrundstype" - -#~ msgid "Add parallax effect?" -#~ msgstr "Tilføj parallax effekt?" - -#~ msgid "Add to blog excerpt (if no Featured Image is set)" -#~ msgstr "Tilføj til blog uddrag (Hvis intet Fremhævet Billede er valgt)" - -#~ msgid "Generate Page Header License Key" -#~ msgstr "Generate Sidehoved Licensnøgle" - -#~ msgid "No image URL has been entered." -#~ msgstr "Ingen billede URL er blevet indtastet." - -#~ msgid "At least one of width or height must be a number." -#~ msgstr "Mindst en af bredde eller højde skal være et tal." - -#~ msgid "Failed to get $file_path information using \"@getimagesize\"." -#~ msgstr "" -#~ "Det lykkedes ikke at hente $file_path information med \"@getimagesize\"." - -#~ msgid "Failed to get $dest_file_name (resized image) info via @getimagesize" -#~ msgstr "" -#~ "Det lykkedes ikke at hente $dest_file_name (resized image) info via " -#~ "@getimagesize" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-de_DE.mo b/wp-content/plugins/gp-premium/langs/gp-premium-de_DE.mo index a5a6b659..48df4137 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-de_DE.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-de_DE.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-de_De.po b/wp-content/plugins/gp-premium/langs/gp-premium-de_De.po deleted file mode 100644 index 730ea091..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-de_De.po +++ /dev/null @@ -1,3840 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-03-22 09:03+0100\n" -"PO-Revision-Date: 2018-03-22 09:07+0100\n" -"Last-Translator: Pedro Mendonça \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" -"X-Generator: Poedit 1.8.1\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/classes/class-site-widget-importer.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-5: sites/libs/wxr-importer/WXRImportInfo.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Hintergrundbilder" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Seitenhintergrund (Body)" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "Top Bar" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Kopfbereich" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Primäre Navigation" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "Navigation" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Wiederholen" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Wiederholen x" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Wiederholen y" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Keine Wiederholung" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Navigationselement" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "Navigationselement bei Mauskontakt" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "Aktives Navigationselement" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "Primäre Sub-Navigation" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "Sub-Navigationselement" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "Sub-Navigation bei Mauskontakt" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "Aktives Subnavigationselement" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:370 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Inhalt" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "Seitenleiste" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "Seitenleiste-Widgets" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Fußbereich" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Fußbereich-Widget" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Fußbereich" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Sekundäre Navigation" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "Sekundäre Sub-Navigation" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "Blog" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "Archive" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "Einzeln" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "Inhaltstyp" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "Ganzer Text" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "Auszug" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "Auszug Wortzahl" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Weiterlesen-Label" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "„Weiterlesen“ als Button anzeigen" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "Beitragsdatum anzeigen" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "Beitragsautor anzeigen" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "Kategorien anzeigen" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "Schlagwörter anzeigen" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "Kommentar-Zähler anzeigen" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "Endlos Scrollen benutzen" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "„Weitere laden“ Button" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "„Weitere laden“ Label" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "„Laden“ Label" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "Beitrags-Navigation anzeigen" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "Beitragsbilder" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "Beiträge" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "Seiten" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "Beitragsbilder anzuzeigen" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "Rand (Padding) um Bilder anzeigen" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "Standort" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "Unter dem Titel" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "Über dem Titel" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "Ausrichtung" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "Mittig" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "Links" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "Rechts" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "Breite" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "Auto" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Höhe" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "Größen übernehmen" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:803 -#: page-header/functions/functions.php:828 -msgid "Above Content Area" -msgstr "Über dem Inhaltsbereich" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "Spalten" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "Beiträge in Spalten anzeigen" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "Erster Beitrag hervorgehoben" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "Beiträge im Masonry-Raster anzeigen" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "Weiterlesen ..." - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Weitere" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "Lädt ..." - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Farben" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "Hintergrund" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Text" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Link" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Linkfarbe bei Mauskontakt" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Titel der Webseite" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Slogan" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -msgid "Parent Items" -msgstr "Übergeordnete Elemente" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "Hintergrund bei Mauskontakt" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "Hintergrund aktuell" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Text bei Mauskontakt" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "Text aktuell" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -msgid "Sub-Menu Items" -msgstr "Untermenü-Einträge" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "Buttons" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "Inhaltstitel" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Beitragstitel" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Beitragstitel bei Mauskontakt" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Meta-Eintrag" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Meta-Links" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Meta-Links bei Mauskontakt" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "Überschrift 1 (H1) Farbe" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "Überschrift 2 (H2)-Farbe" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "Überschrift 3 (H3) Farbe" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "Überschrift H4 Farbe" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "Überschrift H5 Farbe" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Widget Titel" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "Fußbereichs-Widgets" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "Formulare" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Formularhintergrund" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "Formular Hintergrund Fokus" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Formular-Rand" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "Formular-Rand Fokus" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Formulartext" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "Formular Text Fokus" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "„Zurück-nach-Oben“-Button" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "Ausklappende Navigation" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "Produkttitel" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "Produkttitel Hover" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "Alt Button Hintergrund" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "Alt Button Hintergrund Hover" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "Alt Button-Beschriftung" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "Alt Button-Beschriftung Hover" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "Sternebewertung" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "Sale Sticker Hintergrund" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "Sale Sticker Text" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "Preis" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "Produkt Tab Text" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "Produkt Tab Aktiv" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "Hintergrund der Erfolgsmeldung" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "Nachricht bei Erfolg" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "Hintergrund der Info-Nachricht" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "Info-Nachricht Text" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "Hintergrund der Fehlermeldung" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "Fehlermeldung Text" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Copyright" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Elemente deaktivieren" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "Beitragsbild / Seitenkopf" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "Sanfter Bildlauf" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" -"Sanften Bildlauf an Anker-Links ausrichten, smooth-scroll class " -"benutzen." - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "Für GeneratePress ist ein Update verfügbar." - -#: gp-premium.php:222 -msgid "Update now." -msgstr "Jetzt aktualisieren." - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "GP Premium benötigt GeneratePress als aktiviertes Theme." - -#: gp-premium.php:235 -msgid "Install now." -msgstr "Jetzt installieren." - -#: gp-premium.php:250 -msgid "Configure" -msgstr "Konfigurieren" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" -"DISALLOW_FILE_EDIT ist definiert. Du solltest auch die Ausführung von PHP in " -"GP-Hooks verbieten." - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "Lerne Wie" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "GP Hooks" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Vor Kopfbereich" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Vor dem Inhalt des Kopfbereichs" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Nach dem Inhalt des Kopfbereichs" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Nach Kopfbereich" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "Im Inhaltsbereich" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Vor Inhalt" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Nach Seitentitel" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Nach Inhalt" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Vor rechter Seitenleiste" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Nach rechter Seitenleiste" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Vor Inhalt der linken Seitenleiste" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Nach Inhalt der linken Seitenleiste" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Vor Fußbereich" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "Nach dem Footer-Widgets" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Vor Inhalt des Fußbereichs" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Nach Inhalt des Fußbereichs" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "PHP ausführen" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "Deaktiviere Hook" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Verwenden Sie diese Felder zum einfügen, von was auch immer, in " -"GeneratePress. Shortcodes sind erlaubt, und Sie können sogar PHP verwenden, " -"wenn Sie die Ausführung von PHP erlaubt ist." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Alle anzeigen" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "Speichere Hooks" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "Hooks gespeichert." - -#: import-export/functions/functions.php:11 -msgid "Export Settings" -msgstr "Exporteinstellungen" - -#: import-export/functions/functions.php:14 inc/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "Erweitert" - -#: import-export/functions/functions.php:16 inc/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "Kernel" - -#: import-export/functions/functions.php:19 inc/reset.php:17 -msgctxt "Module name" -msgid "Backgrounds" -msgstr "Hintergründe" - -#: import-export/functions/functions.php:23 inc/reset.php:21 -msgctxt "Module name" -msgid "Blog" -msgstr "Blog" - -#: import-export/functions/functions.php:27 inc/reset.php:25 -msgctxt "Module name" -msgid "Hooks" -msgstr "Hooks" - -#: import-export/functions/functions.php:31 inc/reset.php:29 -msgctxt "Module name" -msgid "Page Header" -msgstr "Seiten-Header" - -#: import-export/functions/functions.php:35 inc/reset.php:33 -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "Sekundäre Navigation" - -#: import-export/functions/functions.php:39 inc/reset.php:37 -msgctxt "Module name" -msgid "Spacing" -msgstr "Abstände" - -#: import-export/functions/functions.php:43 inc/reset.php:41 -msgctxt "Module name" -msgid "Menu Plus" -msgstr "Menu Plus" - -#: import-export/functions/functions.php:47 inc/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "WooCommerce" - -#: import-export/functions/functions.php:51 inc/reset.php:49 -msgctxt "Module name" -msgid "Copyright" -msgstr "Copyright" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "GeneratePress Seite" - -#: import-export/functions/functions.php:63 -msgid "Export" -msgstr "Export" - -#: import-export/functions/functions.php:77 -msgid "Import Settings" -msgstr "Importiere Einstellungen" - -#: import-export/functions/functions.php:86 -msgid "Import" -msgstr "Import" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "Bitte laden Sie eine gültige .json Datei" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "Bitte laden Sie eine Datei für den Import" - -#: inc/activation.php:31 -msgid "Module deactivated." -msgstr "Modul deaktiviert" - -#: inc/activation.php:35 -msgid "Module activated." -msgstr "Modul aktiviert." - -#: inc/activation.php:49 -msgid "License deactivated." -msgstr "Lizenz deaktiviert." - -#: inc/activation.php:53 -msgid "License activated." -msgstr "Lizenz aktiviert." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:111 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:119 -msgid "Bulk Actions" -msgstr "Massenbearbeitung" - -#: inc/activation.php:120 inc/activation.php:157 -msgid "Activate" -msgstr "Aktivieren" - -#: inc/activation.php:121 inc/activation.php:141 -msgid "Deactivate" -msgstr "Deaktivieren" - -#: inc/activation.php:124 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "Übernehmen" - -#: inc/activation.php:154 -msgid "WooCommerce not activated." -msgstr "WooCommerce ist nicht aktiviert" - -#: inc/activation.php:332 -msgid "Receiving updates" -msgstr "Updates werden erhalten" - -#: inc/activation.php:334 -msgid "Not receiving updates" -msgstr "Es werden keine Updates erhalten" - -#: inc/activation.php:340 -msgid "Updates" -msgstr "Aktualisierungen" - -#: inc/activation.php:343 inc/activation.php:355 -msgid "Help" -msgstr "Hilfe" - -#: inc/activation.php:350 -msgid "License Key" -msgstr "Lizenzschlüssel" - -#: inc/activation.php:355 -msgid "Receive beta updates" -msgstr "Beta-Updates erhalten" - -#: inc/activation.php:359 -msgid "Save" -msgstr "Speichern" - -#: inc/activation.php:452 -#, php-format -msgid "Your license key expired on %s." -msgstr "Lizenz am %s abgelaufen." - -#: inc/activation.php:459 -msgid "Your license key has been disabled." -msgstr "Ihr Lizenzschlüssel wurde deaktiviert." - -#: inc/activation.php:464 -msgid "Invalid license." -msgstr "Ungültiger Lizenzschlüssel." - -#: inc/activation.php:470 -msgid "Your license is not active for this URL." -msgstr "Die Lizenz ist für diese URL nicht aktiv." - -#: inc/activation.php:475 -msgid "This appears to be an invalid license key for GP Premium." -msgstr "Dies scheint ein ungültiger Lizenzschlüssel für GP Premium zu sein." - -#: inc/activation.php:480 -msgid "Your license key has reached its activation limit." -msgstr "Deine Lizenz hat das maximale Aktivierungslimit erreicht." - -#: inc/activation.php:485 -msgid "An error occurred, please try again." -msgstr "Ein Fehler ist aufgetreten, versuchen Sie es erneut." - -#: inc/activation.php:530 -msgid "Enter valid license key for automatic updates." -msgstr "Gültigen Lizenzschlüssel für automatische Updates eingeben." - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "Module" - -#: inc/reset.php:9 -msgid "Reset Settings" -msgstr "Einstellungen zurücksetzen" - -#: inc/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" -"Warnung. Die Einstellungen werden gelöscht, dies kann nicht rückgängig " -"gemacht werden." - -#: inc/reset.php:58 -#: library/customizer/controls/class-range-slider-control.php:45 -msgid "Reset" -msgstr "Zurücksetzen" - -#: library/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" -"Es ist eine neue Version von %1$s verfügbar. %2$s Zeige Details der Version " -"%3$s details%4$s." - -#: library/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" -"Es ist eine neue Version von %1$s verfügbar. %2$sZeige Version %3$s details" -"%4$s oder %5$saktualisiere jetzt%6$s." - -#: library/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Du bist nicht berechtigt, Plugins zu installieren" - -#: library/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Fehler" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "Alle %d Minuten" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "oben links, x% y%, xpos ypos (px)" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Position" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Originalgröße" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% Breite" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Deckend" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Passend skalieren" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Absolut verschieben" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Fixieren" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Relativ verschieben" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Vererbt" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "%current_year% aktualisiert das Jahr automatisch." - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "%copy% fügt das Copyright-Symbol automatisch ein." - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "HTML ist erlaubt." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Shortcodes sind erlaubt." - -#: library/customizer/controls/class-range-slider-control.php:42 -#: sites/classes/class-site.php:498 -msgid "Desktop" -msgstr "Desktop" - -#: library/customizer/controls/class-range-slider-control.php:43 -#: sites/classes/class-site.php:499 -msgid "Tablet" -msgstr "Tablet" - -#: library/customizer/controls/class-range-slider-control.php:44 -#: sites/classes/class-site.php:500 -msgid "Mobile" -msgstr "Mobile Geräte" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Oben" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Unten" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "Werte verknüpfen" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "Werte entknüpfen" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "Systemschriften" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "Google Schriftarten" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Schriftfamilie" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "Schriftschnitt" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "Text Umwandlung" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "Varianten" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "normal" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "Fett" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "Keine" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "Wortanfang Groß" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "Großbuchstaben" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "Kleinbuchstaben" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "Menü" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "Menu Plus" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "Allgemeine Einstellungen" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "Beschriftung für mobile Navigation" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "Navigation angehefted" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "Nur mobile Version" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "Nur Desktopversion" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "An" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "Aus" - -#: menu-plus/functions/generate-menu-plus.php:202 -msgid "Transition" -msgstr "Übergang" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "Einblenden" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "Gleiten" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "Ohne" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "Beim Hinunterscrollen ausblenden" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "Navigations-Logo" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "Navigation-Logo-Platzierung" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "Angeheftet" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "Angeheftet + Statisch" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "Statisch" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "Kopfbereich (mobiles Gerät)" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "Logo" - -#: menu-plus/functions/generate-menu-plus.php:442 -msgid "Side" -msgstr "Seite" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:170 sites/classes/class-site.php:495 -msgid "Close" -msgstr "Schließen" - -#: page-header/functions/functions.php:776 -#: page-header/functions/metabox.php:37 page-header/functions/metabox.php:57 -#: page-header/functions/metabox.php:754 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Seitenkopf" - -#: page-header/functions/functions.php:800 -msgid "Page Header Location" -msgstr "Seitenkopf-Position" - -#: page-header/functions/functions.php:804 -#: page-header/functions/functions.php:829 -msgid "Inside Content Area" -msgstr "Im Inhaltsbereich" - -#: page-header/functions/functions.php:825 -msgid "Single Post Header Location" -msgstr "Position des Beitragsbilds" - -#: page-header/functions/functions.php:830 -msgid "Below Post Title" -msgstr "Unter dem Beitragstitel" - -#: page-header/functions/functions.php:831 -msgid "Hide" -msgstr "Verbergen" - -#: page-header/functions/functions.php:1070 -#, php-format -msgid "View all posts by %s" -msgstr "Alle Beiträge von %s anzeigen" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "Globale Standorte" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "Beitragsseite (Blog)" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "Suchergebnisse" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "404 Vorlage" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "Beitragstyp - Single" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "Beitragstypen - Archive" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "Taxonomien - Archive" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:740 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" -"Keine Seiten-Header gefunden. Willst du einen anlegen?" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "Du brauchst Inhalt, damit die Einstellungen wirken." - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Bild" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "Hintergrundvideo" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "Zum Blog Auszug hinzufügen" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" -"Derzeit nutzt Du Beitragsbild." - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Kopfzeilen Bild" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "Bild einfügen" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "Bild wählen" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "Bild entfernen" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "Oder Sie können das Beitragsbild setzen." - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "Bildlink" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "Bildgröße ändern" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Deaktivieren" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Aktivieren" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Bildbreite" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Bildhöhe" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "Nutze \"0\" oder leer für eine proportionale Skalierung" - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "HTML und Shortcodes erlaubt." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Absätze automatisch hinzufügen" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "Abstand hinzufügen" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "Hintergrundbild hinzufügen" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "Hintergrundfarbe als Overlay verwenden" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Parallax Effekt" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "Vollbild" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "Inhalt vertikal zentrieren" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "Container" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgid "Contained" -msgstr "Enthalten" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "Volle Breite" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "Innerer Container" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "Textausrichtung" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "Oberer/Unterer Abstand" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "Links/Rechts Abstand" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Hintergrundfarbe" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Textfarbe" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Linkfarbe" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "Linkfarbe bei Mauskontakt" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "MP4 Datei" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "Seitenkopf Video" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "Video einfügen" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "Video auswählen" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "OGV Datei" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "WEBM Datei" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "Deckfarbe" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "Überschreibe das Webseiten Logo / Kopfbereich auf dieser Seite." - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "Kopfbereich / Logo" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "Logo einfügen" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "Logo wählen" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "Logo entfernen" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "Überschreiben Sie Ihr Navigations-Logo auf dieser Seite." - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "Mit Kopf der Webseite zusammenführen" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "Platziere Inhalte hinter dem Seitenkopf (Sliders etc..)" - -#: page-header/functions/metabox.php:517 -#: typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "Seiten-Untertitel" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "Benutzerdefinierte Navigationsfarben" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "Navigationshintergrund" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "Navigationstext" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "Navigationshintergrund Hover" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "Navigationstext Hover" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "Hintergrund aktuelles Element" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "Text für aktuelles Element" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "Schlagwörter für Vorlagen" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "Der Titel des aktuellen Beitrags/Taxonomie." - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "Das Veröffentlichungsdatum des aktuellen Beitrags." - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "Autor des aktuellen Beitrags." - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" -"Die mit der gewählten Taxonomie verknüpften Begriffe (Kategorie, post_tag, " -"product_cat)." - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" -"Benutzerdefiniertes Post-Meta. Ersetze „Name“ durch den Namen des " -"benutzerdefinierten Felds." - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "Seitenkopf" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "Seitenkopf" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "Seitenköpfe" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "Seitenkopf Archive" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "Übergeordneter Seitenkopf:" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "Alle Seitenköpfe" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "Seitenkopf erstellen" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "Seitenkopf erstellen" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "Seitenkopf bearbeiten" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "Seitenkopf aktualisieren" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "Seitenkopf zeigen" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "Seitenkopf suchen" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "In den Seiten-Header einfügen" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "Zu diesem Seiten-Header hochgeladen" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Sekundäres Menü" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "Breite der Navigation" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "Innerer Abstand der Navigation" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Ausrichtung der Navigation" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "Position der Navigation" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Unter dem Kopfbereich" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Über dem Kopfbereich" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Schwimmend rechts" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "Fliessend links" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Linke Seitenleiste" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "Rechte Seitenleiste" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Keine Navigation" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "Verschmelzen mit sekundärer Navigation" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "Nutze Abschnitte (Sections)" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "Abschnitte (Sections)" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "Dieser Vorgang kann nicht rückgängig gemacht werden. Bis du sicher?" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "Abschnitt" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "Einstellungen" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "Abschnitts-Hintergrund" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "Als Abschnittshintergrund setzen" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "In Abschnitt einfügen" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "Abschnitt bearbeiten" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "Zum Bearbeiten klicken" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "Klicke um Inhalt zu bearbeiten" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "Klicke um die Einstellungen zu bearbeiten" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "Klicken und Ziehen, um neu anzuordnen" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "Zum Entfernen klicken" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "Abschnitt hinzufügen" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "Abschnitt entfernen" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "Abbrechen" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "Beschriftung des Abschnitts" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "Medien hinzufügen" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "Visuell" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Code" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "Layout" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Box-Typ" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Innerer Box-Typ" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "Benutzerdefinierte ID" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Eigene CSS-Klassen" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Oberer Abstand" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Unterer Abstand" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Hintergrundbild" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "Hochladen" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "Entfernen" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "Hintergrundfarbe Overlay" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "JavaScript muss aktiviert werden, um Abschnitte nutzen zu können" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Es wurden keine Abschnitte hinzugefügt!" - -#: sites/classes/class-site-helper.php:108 -msgid "Backing up options" -msgstr "Backup Optionen" - -#: sites/classes/class-site-helper.php:109 -msgid "Importing options" -msgstr "Import Optionen" - -#: sites/classes/class-site-helper.php:110 -msgid "Downloading content" -msgstr "Download Inhalt" - -#: sites/classes/class-site-helper.php:111 -msgid "Importing content" -msgstr "Importieren von Inhalten" - -#: sites/classes/class-site-helper.php:112 -msgid "Importing site options" -msgstr "Import von Seiten Optionen" - -#: sites/classes/class-site-helper.php:113 -msgid "Importing widgets" -msgstr "Widgets importieren" - -#: sites/classes/class-site-helper.php:114 -msgid "Activating plugins" -msgstr "Plugins aktivieren" - -#: sites/classes/class-site-helper.php:115 -msgid "Installing plugins" -msgstr "Plugins installieren" - -#: sites/classes/class-site-helper.php:116 -msgid "Automatic" -msgstr "Automatisch" - -#: sites/classes/class-site-helper.php:117 -msgid "Manual" -msgstr "Benutzerhandbuch" - -#: sites/classes/class-site-helper.php:118 -msgid "Theme options exist and can be imported." -msgstr "Theme Optionen sind vorhanden und können importiert werden." - -#: sites/classes/class-site-helper.php:119 -msgid "No theme options found, please contact the site author." -msgstr "Keine Theme Optionen vorhanden, kontaktiere den Seiten-Autor." - -#: sites/classes/class-site-helper.php:120 -msgid "Site content exists and can be imported." -msgstr "Seiten Inhalt existiert und kann importiert werden." - -#: sites/classes/class-site.php:168 -msgid "Previous Site" -msgstr "Vorherige Seite" - -#: sites/classes/class-site.php:168 sites/classes/class-site.php:496 -msgid "Previous" -msgstr "Vorherige" - -#: sites/classes/class-site.php:169 -msgid "Next Site" -msgstr "Nächste Seite" - -#: sites/classes/class-site.php:169 sites/classes/class-site.php:497 -msgid "Next" -msgstr "Vorwärts" - -#: sites/classes/class-site.php:225 sites/classes/class-site.php:289 -msgid "Preview" -msgstr "Vorschau" - -#: sites/classes/class-site.php:226 sites/classes/class-site.php:501 -msgid "Details" -msgstr "Details" - -#: sites/classes/class-site.php:243 -msgid "Overview" -msgstr "Übersicht" - -#: sites/classes/class-site.php:247 -msgid "Theme Options" -msgstr "Theme Optionen" - -#: sites/classes/class-site.php:255 -msgid "Site Content" -msgstr "Seiteninhalt" - -#: sites/classes/class-site.php:255 sites/classes/class-site.php:370 -msgid "Optional" -msgstr "Optional" - -#: sites/classes/class-site.php:262 -msgid "Plugins" -msgstr "Plugins" - -#: sites/classes/class-site.php:268 sites/classes/class-site.php:400 -msgid "The following plugins can be installed and activated automatically." -msgstr "Folgende Plugins können automatisch installiert und aktiviert werden." - -#: sites/classes/class-site.php:273 sites/classes/class-site.php:405 -msgid "The following plugins are already installed." -msgstr "Folgende Plugins sind bereits Installiert." - -#: sites/classes/class-site.php:278 sites/classes/class-site.php:410 -msgid "The following plugins need to be installed and activated manually." -msgstr "Folgende Plugins müssen manuell installiert und aktiviert werden." - -#: sites/classes/class-site.php:296 -msgid "Gathering data" -msgstr "Daten sammeln" - -#: sites/classes/class-site.php:300 -msgid "Get Started" -msgstr "Installation starten" - -#: sites/classes/class-site.php:312 -msgid "GeneratePress Options" -msgstr "GeneratePress Optionen" - -#: sites/classes/class-site.php:316 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" -"In diesem Schritt werden zunächst die derzeit aktuellen Theme Optionen " -"gesichert, danach werden die neuen importiert." - -#: sites/classes/class-site.php:319 -msgid "The following GP Premium modules will be activated:" -msgstr "Die folgenden GP Premium Module werden aktiviert:" - -#: sites/classes/class-site.php:327 -msgid "Go Back" -msgstr "Gehe zurück" - -#: sites/classes/class-site.php:334 -msgid "Backup Options" -msgstr "Backup-Optionen" - -#: sites/classes/class-site.php:344 -msgid "Import Options" -msgstr "Optionen importieren" - -#: sites/classes/class-site.php:377 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" -"Ich habe verstanden, dass mit diesem Schritt Inhalte, Seiten Optionen, " -"Menüs, Widgets und Plugins zu meiner Seite hinzugefügt werden." - -#: sites/classes/class-site.php:384 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" -"Um beste Ergebnisse zu erzielen, solltest du den Demo-Inhalt nur einer " -"frischen Installation zufügen. Sollten bereits Inhalte einer anderen " -"GeneratePress Seite vorhanden sein, solltest du diese %s." - -#: sites/classes/class-site.php:387 -msgid "clean it up" -msgstr "Aufräumen" - -#: sites/classes/class-site.php:392 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" -"Du kannst diesen Schritt ueberspringen " -"falls bereits Inhalte vorhanden sind und kein zusätzlicher Demo-Content " -"importiert werden soll." - -#: sites/classes/class-site.php:419 -msgid "Skip" -msgstr "Überspringen" - -#: sites/classes/class-site.php:427 -msgid "Import Content" -msgstr "Inhalt importieren" - -#: sites/classes/class-site.php:454 -msgid "All done!" -msgstr "Alles erledigt!" - -#: sites/classes/class-site.php:455 -msgid "Your site is ready to go!" -msgstr "Deine Seite ist bereit!" - -#: sites/classes/class-site.php:459 -#, php-format -msgid "Crafted with %s by" -msgstr "Erstellt mit %s durch" - -#: sites/classes/class-site.php:477 -msgid "Start Over" -msgstr "Start" - -#: sites/classes/class-site.php:480 -msgid "View Site" -msgstr "Seite ansehen" - -#: sites/classes/class-site.php:876 -msgid "Site options imported" -msgstr "Seiten Optionen importiert" - -#: sites/classes/class-site.php:920 -msgid "Plugins activated" -msgstr "Plugins aktiviert" - -#: sites/sites.php:37 -msgid "Site Library" -msgstr "Seiten-Bibliothek" - -#: sites/sites.php:57 -msgid "All" -msgstr "Alle" - -#: sites/sites.php:58 -msgid "Beaver Builder" -msgstr "Beaver Builder" - -#: sites/sites.php:59 -msgid "Elementor" -msgstr "Elementor" - -#: sites/sites.php:60 -msgid "No Page Builder" -msgstr "Ohne Page Builder" - -#: sites/sites.php:84 -msgid "Refresh Sites" -msgstr "Seitenübersicht aktualisieren" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "Container Breite" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Abstand dazwischen" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "Innenabstand vom Inhalt" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "Innenabstand auf mobilen Geräten" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "Innenabstand der Fußbereichs-Widgets" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "Innenabstand im Fußbereich" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "Innenabstand im Kopfbereich" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "Menüpunkt Breite" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "Menüpunkt Höhe" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "Untermenü-Element Höhe" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "Seitenleisten" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "Innenabstand der Widgets" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "Breite der linken Seitenleiste" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "Breite der rechten Seitenleiste" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "Innenabstand der Top Bar" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "Innenabstand" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Ändern des Abstands für verschiedene Elemente in Pixel." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Typografie" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Schriftgröße" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "Zeilenhöhe" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "Abstand nach Absatz" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "Überschriften" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Überschrift 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Überschrift 2 (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Überschrift 3 (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "Überschrift 4 (H4)" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "Überschrift 5 (H5)" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "Überschrift 6 (H6)" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "Widgets" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "Widget Titel" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "Außenabstand unten" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "Schriftgröße des Inhalts" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "Produkt Titel" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "Ähnliche/Angebote Titel Schriftgröße" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "Allgemein" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "Warenkorb im Menü anzeigen" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "Breadcrumbs anzeigen" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "Shop" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "Sideleisten-Layout" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "Seitenleiste/Inhalt" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "Inhalt/Seitenleiste" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "Inhalt (keine Seitenleiste)" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "Seitenleiste/Inhalt/Seitenleiste" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "Seitenleiste/Seitenleiste/Inhalt" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "Inhalt/Seitenleiste/Seitenleiste" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "Produkte pro Seite" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "Produktspalten" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "Bildausrichtung" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "Seitentitel anzeigen" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "Zeigt die Anzahl der Produktergebnisse an" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "Produktsortierung anzeigen" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "Produktbild anzeigen" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "Sekundärbild beim Hovern anzeigen" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "Produkttitel anzeigen" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "Flash Sale anzeigen" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "Flash Sale über Bild anzeigen" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "Bewertung anzeigen" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "Preis anzeigen" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "Button „in den Warenkorb“ anzeigen" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "Kurzbeschreibung anzeigen" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "Einzelnes Produkt" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "Produkt-Tabs anzeigen" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "Ähnliche Produkte anzeigen" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "Upsell-Produkte anzeigen" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "Ähnliche/Upsell Produkt-Spalten" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "Produkt-Metadaten anzeigen" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "Primäre Button Farben" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "Primäre Button Farben können hier eingestellt werden." - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "Zur Kasse" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "Ablenkungsfreier Modus" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" -"Entferne Unnötiges, wie Sz.B. eitenleisten, Footer Widgets und Sticky Menüs." - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "Warenkorb ansehen" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "Bewertet mit %s von 5" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "Noch nicht bewertet" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "von 5" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "https://generatepress.com" - -#. Description of the plugin/theme -msgid "The entire collection of GeneratePress premium modules." -msgstr "Die komplette Sammlung von GeneratePress Premium-Modulen." - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "Tom Usborne" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "https://tomusborne.com" - -#~ msgid "Add-on deactivated." -#~ msgstr "Add-on deaktiviert." - -#~ msgid "Add-on activated." -#~ msgstr "Add-on aktiviert." - -#~ msgid "Update" -#~ msgstr "Aktualisieren" - -#~ msgid "" -#~ "Display an Elementor library template. Replace \"id\" with the ID or name." -#~ msgstr "" -#~ "Zeigt eine Elementor-Bibliotheksvorlage an. Ersetze „ID“ durch die ID " -#~ "oder den Namen." - -#~ msgid "" -#~ "Display a Beaver Builder template. Replace \"id\" with the ID or name." -#~ msgstr "" -#~ "Zeigt eine Beaver Builder-Vorlage an. Ersetze „ID“ durch die ID oder den " -#~ "Namen." - -#~ msgid "Sites" -#~ msgstr "Seiten" - -#~ msgid "" -#~ "The entire bundle of GeneratePress add-ons. Configure add-ons by going to " -#~ "Appearance > " -#~ "GeneratePress." -#~ msgstr "" -#~ "Das komplette GeneratePress Add-On Bundle. Konfiguriere Add-Ons, indem " -#~ "due zu Appearance > " -#~ "GeneratePress gehst." - -#~ msgid "Slide-out Navigation" -#~ msgstr "Slide-Out-Navigation" - -#~ msgid "Activated" -#~ msgstr "Aktiviert" - -#~ msgid "Slideout Menu" -#~ msgstr "Ausklappendes Menü" - -#~ msgid "Both" -#~ msgstr "Beide" - -#~ msgid "Sticky Navigation Transition" -#~ msgstr "Übergang der angehefteten Navigation" - -#~ msgid "Mobile Header Logo" -#~ msgstr "Kopfbereichs Logo (mobiles Gerät))" - -#~ msgid "Sticky Mobile Header" -#~ msgstr "Angehefteter Kopfbereich (mobiles Gerät)" - -#, fuzzy -#~ msgid "Warning: This will delete your settings." -#~ msgstr "" -#~ "#-#-#-#-# backgrounds-de_DE.po (Generate Backgrounds) #-#-#-#-#\n" -#~ "Warnung: Ihre Einstellungen werden gelöscht.\n" -#~ "#-#-#-#-# generate-blog-de_DE.po (Generate Blog) #-#-#-#-#\n" -#~ "Warnung: Ihre Einstellungen werden gelöscht.\n" -#~ "#-#-#-#-# generate-hooks-de_DE.po (Generate Hooks) #-#-#-#-#\n" -#~ "Warnung: Ihre Einstellungen werden gelöscht.\n" -#~ "#-#-#-#-# generate-spacing-de_DE.po (Generate Spacing) #-#-#-#-#\n" -#~ "Warnung: Ihre Einstellungen werden gelöscht.\n" -#~ "#-#-#-#-# menu-plus-de_DE.po (Generate Menu Plus) #-#-#-#-#\n" -#~ "Achtung: Dadurch werden Ihre Einstellungen gelöscht.\n" -#~ "#-#-#-#-# page-header-de_DE.po (Generate Page Header) #-#-#-#-#\n" -#~ "Warnung: Ihre Einstellungen werden gelöscht.\n" -#~ "#-#-#-#-# secondary-nav-de_DE.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Warnung. Die Einstellungen werden gelöscht." - -#~ msgid "Export Backgrounds Settings" -#~ msgstr "Hintergrund-Einstellungen exportieren" - -#~ msgid "Delete Backgrounds Settings" -#~ msgstr "Hintergrund-Einstellungen löschen" - -#~ msgid "Apply image sizes" -#~ msgstr "Übernehme Bildgrößen" - -#~ msgid "Excerpt Length" -#~ msgstr "Blog-Auszugslänge" - -#~ msgid "Masonry" -#~ msgstr "Kacheln" - -#~ msgid "Masonry Block Width" -#~ msgstr "Kachelblock Breite" - -#~ msgid "Small" -#~ msgstr "Klein" - -#~ msgid "Medium" -#~ msgstr "Mittel" - -#~ msgid "Large" -#~ msgstr "Groß" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Kachelbreite des neuesten Einträgs" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Weitere Kacheln laden - Text" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Text beim Laden der Kacheln" - -#~ msgid "Featured Image" -#~ msgstr "Beitragsbild" - -#~ msgid "Show" -#~ msgstr "Anzeigen" - -#~ msgid "Date" -#~ msgstr "Datum" - -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgid "Categories" -#~ msgstr "Kategorien" - -#~ msgid "Tags" -#~ msgstr "Tags" - -#~ msgid "Comment Link" -#~ msgstr "Kommentar-Link" - -#~ msgid "Masonry is enabled. These settings will be ignored." -#~ msgstr "Kacheln sind aktiviert. Diese Einstellungen werden ignoriert." - -#~ msgid "Column Layout" -#~ msgstr "Spaltenlayout" - -#~ msgid "First Post Full Width" -#~ msgstr "Erster Beitrag in voller Breite" - -#~ msgid "Delete Blog Settings" -#~ msgstr "Blog-Einstellungen löschen" - -#~ msgid "Export Blog Settings" -#~ msgstr "Blogeinstellungen exportieren" - -#~ msgid "Masonry Post Width" -#~ msgstr "Gekachelte Betragsbreite" - -#~ msgid "Global setting" -#~ msgstr "Globale Einstellung" - -#~ msgid "Form Button" -#~ msgstr "Schaltfläche" - -#~ msgid "Form Button Hover" -#~ msgstr "Formular Schaltfläche Hover" - -#~ msgid "Form Button Text" -#~ msgstr "Schaltflächenbeschriftung" - -#~ msgid "Form Button Text Hover" -#~ msgstr "Schaltflächenbeschriftung Hover" - -#~ msgid "Product title" -#~ msgstr "Produkt-Titel" - -#~ msgid "Product title hover" -#~ msgstr "Produkt-Titel Hover" - -#~ msgid "Alt button background" -#~ msgstr "Alt Schaltflächen Hintergrund" - -#~ msgid "Alt button background hover" -#~ msgstr "Alt Schaltflächen Hintergrund Hover" - -#~ msgid "Alt button text" -#~ msgstr "Alt Schaltflächenbeschriftung" - -#~ msgid "Alt button text hover" -#~ msgstr "Alt Schaltflächenbeschriftung Hover" - -#~ msgid "Star ratings" -#~ msgstr "Sternebewertung" - -#~ msgid "Sale sticker background" -#~ msgstr "Sale Aufkleber Rabatt Sticker" - -#~ msgid "Sale sticker text" -#~ msgstr "Verkauf-Aufkleber-text" - -#~ msgid "Product tab text" -#~ msgstr "Text der Registerkarte „Produkt“" - -#~ msgid "Product tab active" -#~ msgstr "Registerkarte \"Produkt\" aktiv" - -#~ msgid "Success message background" -#~ msgstr "Hintergrund der Erfolgsmeldung" - -#~ msgid "Success message text" -#~ msgstr "Text bei Erfolgmeldung:" - -#~ msgid "Info message background" -#~ msgstr "Hintergrund der Info-Nachricht" - -#~ msgid "Info message text" -#~ msgstr "Info-Nachrichtentext" - -#~ msgid "Error message background" -#~ msgstr "Hintergrund der Fehlermeldung" - -#~ msgid "Error message text" -#~ msgstr "Fehlertext" - -#~ msgid "Export GP Hooks" -#~ msgstr "Exportiere GP Hooks" - -#~ msgid "Delete GP Hooks" -#~ msgstr "Lösche GP Hooks" - -#~ msgid "Import / Export" -#~ msgstr "Importieren / Exportieren" - -#~ msgid "" -#~ "Export your settings set in the Customizer." -#~ msgstr "" -#~ "Exportiere Deine Einstellungen im Customizer." - -#~ msgid "Export Default Settings" -#~ msgstr "Exportiere Standard-Einstellungen" - -#~ msgid "" -#~ "Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Importiere die Einstellungen durch hochladen der " -#~ "exportierten .json-Datei." - -#~ msgid "Not a valid option name." -#~ msgstr "Keine gültiger Optionsname." - -#~ msgid "Delete Spacing Settings" -#~ msgstr "Abstandseinstellungen löschen" - -#~ msgid "Export Spacing Settings" -#~ msgstr "Exportiere Einstellungen für Abstand" - -#~ msgid "Site title" -#~ msgstr "Titel der Webseite" - -#, fuzzy -#~ msgid "Site tagline" -#~ msgstr "" -#~ "#-#-#-#-# generate-typography-de_DE.po (Generate Typography) #-#-#-#-#\n" -#~ "Website-Slogan (Untertitel)\n" -#~ "#-#-#-#-# page-header-de_DE.po (Generate Page Header) #-#-#-#-#\n" -#~ "Webseiten-Slogan (Untertitel)" - -#~ msgid "Widget titles" -#~ msgstr "Widget-Titel" - -#~ msgid "Product titles" -#~ msgstr "Produkt Titel" - -#~ msgid "WooCommerce not installed." -#~ msgstr "WooCommerce nicht installiert." - -#~ msgid "Delete Menu Plus Settings" -#~ msgstr "Menu Plus Einstellungen löschen" - -#~ msgid "Export Menu Plus Settings" -#~ msgstr "Exportiere Menu Plus Einstellungen" - -#~ msgid "Posts page (blog)" -#~ msgstr "Beiträge Seite (Blog)" - -#~ msgid "Search results" -#~ msgstr "Suchergebnisse" - -#~ msgid "404 template" -#~ msgstr "404 Template" - -#~ msgid "Custom Post Types - Single Posts" -#~ msgstr "Custom Post Types - einzelne Beiträge" - -#~ msgid "Custom Post Types - Archives" -#~ msgstr "Custom Post Types - Archiv" - -#~ msgid "Delete Page Header Settings" -#~ msgstr "Seitenkopf Einstellungen löschen" - -#~ msgid "Export Page Header Settings" -#~ msgstr "Exportiere Seitenkopf-Einstellungen" - -#~ msgid "Image link" -#~ msgstr "Bild-Link" - -#~ msgid "Resize image" -#~ msgstr "Bildgröße ändern" - -#~ msgid "Image width" -#~ msgstr "Bildbreite" - -#~ msgid "Image height" -#~ msgstr "Bildhöhe" - -#~ msgid "Add padding" -#~ msgstr "Abstand hinzufügen" - -#~ msgid "Add background image" -#~ msgstr "Hintergrundbild hinzufügen" - -#~ msgid "Parallax effect" -#~ msgstr "Parallax Effekt" - -#~ msgid "Container type" -#~ msgstr "Container-Typ" - -#~ msgid "Full width" -#~ msgstr "Volle Breite" - -#~ msgid "Text alignment" -#~ msgstr "Textausrichtung" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Innenabstand oben & unten" - -#~ msgid "Background color" -#~ msgstr "Hintergrundfarbe" - -#~ msgid "Text color" -#~ msgstr "Textfarbe" - -#~ msgid "Link color" -#~ msgstr "Linkfarbe" - -#~ msgid "Link color hover" -#~ msgstr "Linkfarbe bei Mauskontakt" - -#~ msgid "Overlay color" -#~ msgstr "Deckfarbe" - -#~ msgid "Transparent navigation" -#~ msgstr "Transparente Navigation" - -#~ msgid "Navigation text" -#~ msgstr "Navigationstext" - -#~ msgid "Navigation background hover" -#~ msgstr "Hintergrund bei Mauskontakt" - -#~ msgid "Navigation text hover" -#~ msgstr "Text bei Mauskontakt" - -#~ msgid "Navigation background current" -#~ msgstr "Hintergrund aktuelles Navigationselement" - -#~ msgid "Navigation text current" -#~ msgstr "Aktueller Navigationstext" - -#~ msgid "Insert into page header" -#~ msgstr "In Seitenkopf einfügen" - -#~ msgid "Uploaded to this page header" -#~ msgstr "Zu diesem Seitennkopf hochgeladen" - -#~ msgid "Delete Secondary Nav Settings" -#~ msgstr "Lösche Einstellungen der sekundären Navigation" - -#~ msgid "Export Secondary Nav Settings" -#~ msgstr "Exportiere Einstellungen der sekundären Navigation" - -#~ msgid "Select Image" -#~ msgstr "Bild auswählen" - -#~ msgid "Use Image" -#~ msgstr "Bild verwenden" - -#, fuzzy -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "#-#-#-#-# backgrounds-de_DE.po (Generate Backgrounds) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# disable-elements-de_DE.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# generate-blog-de_DE.po (Generate Blog) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# generate-colors-de_DE.po (Generate Colors) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# generate-copyright-de_DE.po (Generate Copyright) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# generate-hooks-de_DE.po (Generate Hooks) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# generate-ie-de_DE.po (Generate Import Export) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# generate-sections-de_DE.po (Generate Sections) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen.\n" -#~ "#-#-#-#-# generate-spacing-de_DE.po (Generate Spacing) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# generate-typography-de_DE.po (Generate Typography) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$sverfügbar. Zeige Details der Version %3$s .\n" -#~ "#-#-#-#-# gp-premium-de_De.po (GP Premium) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen.\n" -#~ "#-#-#-#-# menu-plus-de_DE.po (Generate Menu Plus) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen.\n" -#~ "#-#-#-#-# page-header-de_DE.po (Generate Page Header) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen.\n" -#~ "#-#-#-#-# secondary-nav-de_DE.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen." - -#, fuzzy -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "#-#-#-#-# backgrounds-de_DE.po (Generate Backgrounds) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s or aktualisiere jetzt..\n" -#~ "#-#-#-#-# disable-elements-de_DE.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s or aktualisiere jetzt..\n" -#~ "#-#-#-#-# generate-blog-de_DE.po (Generate Blog) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen oder Jetzt updaten.\n" -#~ "#-#-#-#-# generate-colors-de_DE.po (Generate Colors) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s or aktualisiere jetzt..\n" -#~ "#-#-#-#-# generate-copyright-de_DE.po (Generate Copyright) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s or aktualisiere jetzt..\n" -#~ "#-#-#-#-# generate-hooks-de_DE.po (Generate Hooks) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s oder aktualisiere jetzt..\n" -#~ "#-#-#-#-# generate-ie-de_DE.po (Generate Import Export) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s oder aktualisiere jetzt..\n" -#~ "#-#-#-#-# generate-sections-de_DE.po (Generate Sections) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s oder aktualisiere jetzt..\n" -#~ "#-#-#-#-# generate-spacing-de_DE.po (Generate Spacing) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s oder aktualisiere jetzt..\n" -#~ "#-#-#-#-# generate-typography-de_DE.po (Generate Typography) #-#-#-#-#\n" -#~ "Es ist eine neue Version von %1$s verfügbar. Zeige Details zu Version %3$s oder aktualisiere jetzt..\n" -#~ "#-#-#-#-# gp-premium-de_De.po (GP Premium) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen oder Jetzt updaten.\n" -#~ "#-#-#-#-# menu-plus-de_DE.po (Generate Menu Plus) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen oder Jetzt updaten.\n" -#~ "#-#-#-#-# page-header-de_DE.po (Generate Page Header) #-#-#-#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen oder Jetzt updaten.\n" -#~ "#-#-#-#-# secondary-nav-de_DE.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Neue Version von %1$s verfügbar. Details zu Version %3$s anzeigen oder Jetzt updaten." - -#~ msgid "" -#~ "Want updates served directly to your Dashboard? Activate the email you " -#~ "purchased your add-ons with here." -#~ msgstr "" -#~ "Möchtest Du die Updates direkt auf dem Dashboard? Aktiviere Deine E-Mail " -#~ "mit der Du bezahlt hast." - -#~ msgid "Email" -#~ msgstr "E-Mail" - -#~ msgid "Deactivate Email" -#~ msgstr "E-Mail deaktivieren" - -#~ msgid "Activate Email" -#~ msgstr "E-Mail aktivieren" - -#~ msgid "Save Email" -#~ msgstr "E-Mail speichern" - -#~ msgid "Enable All Updates" -#~ msgstr "Alle Updates aktivieren" - -#~ msgid "Disable Updates" -#~ msgstr "Updates deaktivieren" - -#~ msgid "Enable Updates" -#~ msgstr "Updates aktivieren" - -#~ msgid "Email activation failed. This email does not exist in our records." -#~ msgstr "" -#~ "Email-Aktivierung ist fehlgeschlagen. Diese e-Mail ist nicht in unseren " -#~ "Aufzeichnungen vorhanden." - -#~ msgid "Email activated." -#~ msgstr "E-Mail aktiviert." - -#~ msgid "License failed." -#~ msgstr "Lizenz ungültig oder nicht vorhanden." - -#~ msgid "Licenses activated." -#~ msgstr "Lizenzen aktiviert." - -#~ msgid "Deactivation failed." -#~ msgstr "Deaktivierung ist fehlgeschlagen." - -#~ msgid "Headline / Post Title" -#~ msgstr "Überschrift / Beitragstitel" - -#~ msgid "verified" -#~ msgstr "bestätigt" - -#~ msgid "unverified" -#~ msgstr "Ungeprüft" - -#~ msgid "Disable Elements Installed" -#~ msgstr "Elemente deaktivieren" - -#, fuzzy -#~ msgid "Please enter your license key in order to use this plugin." -#~ msgstr "" -#~ "#-#-#-#-# disable-elements-de_DE.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Bitte geben Sie Ihren Lizenzschlüssel ein, um dieses Plugin zu " -#~ "verwenden.\n" -#~ "#-#-#-#-# generate-colors-de_DE.po (Generate Colors) #-#-#-#-#\n" -#~ "Bitte geben Sie Ihren Lizenzschlüssel ein, um dieses Plugin zu " -#~ "verwenden.\n" -#~ "#-#-#-#-# generate-copyright-de_DE.po (Generate Copyright) #-#-#-#-#\n" -#~ "Bitte geben Sie Ihren Lizenzschlüssel ein um das Plugin zu installieren.\n" -#~ "#-#-#-#-# generate-ie-de_DE.po (Generate Import Export) #-#-#-#-#\n" -#~ "Bitte geben Sie Ihren Lizenzschlüssel ein, um dieses Plugin zu " -#~ "verwenden.\n" -#~ "#-#-#-#-# generate-spacing-de_DE.po (Generate Spacing) #-#-#-#-#\n" -#~ "Bitte geben Sie Ihren Lizenzschlüssel ein, um dieses Plugin zu " -#~ "verwenden.\n" -#~ "#-#-#-#-# generate-typography-de_DE.po (Generate Typography) #-#-#-#-#\n" -#~ "Bitte geben Sie Ihren Lizenzschlüssel ein, um dieses Plugin zu verwenden." - -#~ msgid "Deactivate License" -#~ msgstr "Lizenz deaktivieren" - -#~ msgid "active" -#~ msgstr "aktiv" - -#~ msgid "inactive" -#~ msgstr "inaktiv" - -#~ msgid "Generate Disable Elements License Key" -#~ msgstr "Genereiere Disable Elements Lizenz-Schlüssel" - -#~ msgid "" -#~ "Activate your addons by entering the email you purchased them with below. " -#~ "Save and verify, then your purchased addons will appear below for " -#~ "activation." -#~ msgstr "" -#~ "Aktivieren Sie Ihre Addons durch Eingabe der e-Mail, die Sie beim Kauf " -#~ "genutzt haben. Speichern Sie zur Überprüfung und anschließend stehen die " -#~ "gekauften Addons zur Verfügung." - -#~ msgid "Status" -#~ msgstr "Status" - -#~ msgid "Action" -#~ msgstr "Aktion" - -#~ msgid "Verify Email" -#~ msgstr "E-Mail bestätigen" - -#~ msgid "Activate All" -#~ msgstr "Alle aktivieren" - -#~ msgid "Product" -#~ msgstr "Produkt" - -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgid "Once Every 3 Days" -#~ msgstr "Einmal alle 3 Tage" - -#~ msgid "Post Image" -#~ msgstr "Beitragsbild" - -#~ msgid "Post Image Position" -#~ msgstr "Position des Beitragsbilds" - -#~ msgid "Post Image Width" -#~ msgstr "Breite des Beitragsbilds" - -#~ msgid "Post Image Height" -#~ msgstr "Höhe des Beitragsbilds" - -#~ msgid "Header Colors" -#~ msgstr "Farben des Kopfbereichs" - -#~ msgid "Navigation Colors" -#~ msgstr "Farben der Hauptnavigation einstellen" - -#~ msgid "Sub-Navigation Colors" -#~ msgstr "Farben der Subnavigation einstellen" - -#~ msgid "Content Colors" -#~ msgstr "Farben des Inhaltsbereichs" - -#~ msgid "Sidebar Widget Colors" -#~ msgstr "Sidebar Widget Farben" - -#~ msgid "Footer Widget Colors" -#~ msgstr "Farben des Fußbereich-Widget" - -#~ msgid "Footer Colors" -#~ msgstr "Fußzeile-Farben" - -#~ msgid "Form Colors" -#~ msgstr "Formular-Farben" - -#~ msgid "Colors Installed" -#~ msgstr "Farben installiert" - -#~ msgid "Generate Colors License Key" -#~ msgstr "Farben-Lizenz-Schlüssel generieren" - -#~ msgid "" -#~ "Use %current_year% to include the current year dynamically." -#~ msgstr "" -#~ "Verwende %current_year% um das laufende Jahr dynamisch " -#~ "einzufügen." - -#~ msgid "Use %copy% to include the copyright symbol." -#~ msgstr "Verwende %copy% um das Copyright-Symbol anzuzeigen." - -#~ msgid "Save Copyright" -#~ msgstr "Copyright speichern" - -#~ msgid "Add a custom copyright line." -#~ msgstr "Fügen Sie eine benutzerdefinierte copyright-Zeile ein." - -#~ msgid "Copyright Installed" -#~ msgstr "Copyright installiert" - -#~ msgid "Generate Copyright License Key" -#~ msgstr "Copyright-Lizenz-Schlüssel generieren" - -#~ msgid "Save Settings" -#~ msgstr "Einstellungen speichern" - -#~ msgid "Generate Hooks License Key" -#~ msgstr "Generate Hooks Lizenz-Schlüssel generieren" - -#~ msgid "Export your settings set in the Exportiere deine Einstellungen nach " - -#~ msgid "Import Customizer Settings" -#~ msgstr "Importiere die Anpassungs-Einstellungen" - -#~ msgid "" -#~ "Import your hooks by uploading your exported .json file." -#~ msgstr "" -#~ "Importiere Deine hooks durch hchladen des exportierten ." -#~ "json file." - -#~ msgid "Import GP Hooks" -#~ msgstr "Importiere GP Hooks" - -#~ msgid "Import / Export Installed" -#~ msgstr "Import / Export von Installation" - -#~ msgid "Generate Import Export License Key" -#~ msgstr "Generiere Import-Export-Lizenz-Schlüssel" - -#~ msgid "Error: Content already detected in default editor." -#~ msgstr "Fehler: Inhalt bereits im Standard-Editor erfasst." - -#~ msgid "" -#~ "Please activate the \"Visual\" tab in your main editor before " -#~ "transferring content." -#~ msgstr "" -#~ "Bitte aktivieren Sie die Registerkarte \"Visuell\" im Editor bevor Inhalt " -#~ "übertragen wird." - -#~ msgid "Click the \"%s\" button below to start creating your sections." -#~ msgstr "" -#~ "Klicken Sie auf den Button \"%s\" um mit dem Erstellen von Abschnitten zu " -#~ "beginnen." - -#~ msgid "Add New" -#~ msgstr "Hinzufügen" - -#~ msgid "Fluid" -#~ msgstr "Fluid" - -#~ msgid "contained" -#~ msgstr "enthalten" - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "Der Abstand zwischen den Elementen, wenn \"Inhalts-Layout\" auf " -#~ "\"separate Container\" festgelegt ist." - -#~ msgid "Left/Right Spacing" -#~ msgstr "Linker/Rechter Abstand" - -#, fuzzy -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "" -#~ "#-#-#-#-# generate-spacing-de_DE.po (Generate Spacing) #-#-#-#-#\n" -#~ "Der oberen und unteren Abstand der Untermenüelemente.\n" -#~ "#-#-#-#-# secondary-nav-de_DE.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Der oberen und unteren Abstand der Sub-Menüelemente." - -#~ msgid "15%" -#~ msgstr "15%" - -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgid "25%" -#~ msgstr "25%" - -#~ msgid "30%" -#~ msgstr "30%" - -#~ msgid "35%" -#~ msgstr "35%" - -#~ msgid "40%" -#~ msgstr "40%" - -#~ msgid "45%" -#~ msgstr "45%" - -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgid "Element Spacing" -#~ msgstr "Element Abstand" - -#~ msgid "These options control the size of your menu items." -#~ msgstr "Diese Optionen steuern die Größe Ihrer Menü-Elemente." - -#~ msgid "Sub-menu Item Height" -#~ msgstr "Untermenü Elementhöhe" - -#~ msgid "Sidebar Widths" -#~ msgstr "Breite der Sidebar" - -#~ msgid "Spacing Installed" -#~ msgstr "Element Abstand installiert" - -#~ msgid "Generate Spacing License Key" -#~ msgstr "Abstand-Lizenz-Schlüssel generieren" - -#~ msgid "Default fonts" -#~ msgstr "Standard-Schriftarten" - -#~ msgid "Google fonts" -#~ msgstr "Google fonts" - -#~ msgid "Site navigation" -#~ msgstr "Navigation" - -#~ msgid "Font-size" -#~ msgstr "Schriftgröße" - -#~ msgid "Footer font size" -#~ msgstr "Schriftgröße des Fußbereichs" - -#~ msgid "H1 font size" -#~ msgstr "H1 Schriftgröße" - -#~ msgid "H2 font size" -#~ msgstr "H2 Schriftgröße" - -#~ msgid "Body Typography" -#~ msgstr "Schriftart des Body" - -#~ msgid "Header Typography" -#~ msgstr "Schriftart des Kopfbereichs" - -#~ msgid "Navigation Typography" -#~ msgstr "Schriftart der Navigation" - -#~ msgid "Content Typography" -#~ msgstr "Schriftart des Inhalts" - -#~ msgid "Widget Typography" -#~ msgstr "Widget-Typografie" - -#~ msgid "Typography Installed" -#~ msgstr "Typografie installiert" - -#~ msgid "Generate Typography License Key" -#~ msgstr "Typografie-Lizenz-Schlüssel generieren" - -#~ msgid "Updates %s" -#~ msgstr "Updates %s" - -#~ msgid "Sticky Menu" -#~ msgstr "Menü angehefted" - -#~ msgid "Sticky Navigation Effect" -#~ msgstr "Effekt für angeheftete Navigation" - -#~ msgid "Navigation Logo Position" -#~ msgstr "Position des Navigations Logos" - -#~ msgid "Sticky Menu Effect" -#~ msgstr "Effekt für angeheftetes Menü" - -#~ msgid "Menu Logo" -#~ msgstr "Menü-Logo" - -#~ msgid "Menu Logo Position" -#~ msgstr "Position des Menü-Logos" - -#~ msgid "Sticky Only" -#~ msgstr "Nur für Sticky-Menü" - -#~ msgid "Sticky + Regular" -#~ msgstr "Sticky + Normal" - -#~ msgid "Regular Only" -#~ msgstr "Nur normales" - -#~ msgid "Add awesome new menu features to your GeneratePress menu" -#~ msgstr "Füge GeneratePress neue fantastische Möglichkeiten hinzu." - -#~ msgid "Blog Page Header" -#~ msgstr "Blog-Seitenkopf" - -#~ msgid "Upload an image to be used as your page header." -#~ msgstr "Hochladen eines Bildes um es als Seitenkopf zu verwenden." - -#~ msgid "Make your page header image clickable by adding a URL. (optional)" -#~ msgstr "Um das Kopfbild zu verlinken, fügen Sie eine URL hinzu (optional)." - -#~ msgid "Turn hard cropping or of off." -#~ msgstr "Beschneiden der Bilder an- oder ausschalten." - -#~ msgid "Choose your image width in pixels. (integer only, default is 1200)" -#~ msgstr "" -#~ "Wählen Sie die Breite des Bildes in Pixel. (ganze Zahl, Standard ist 1200)" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank for " -#~ "proportional resizing. (integer only, default is 0) " -#~ msgstr "" -#~ "Wähle die Bildgröße in Pixeln. Nutze \"0\" oder leer für eine " -#~ "proportionale Skalierung. (Nur ganze Zahlen, Standard ist 0)" - -#~ msgid "Video Background URL (MP4 only)" -#~ msgstr "Video-Hintergrund (mp4)" - -#~ msgid "Video Background URL (OGV only)" -#~ msgstr "Video-Hintergrund (Ogv)" - -#~ msgid "Video Background URL (WEBM only)" -#~ msgstr "Video-Hintergrund (Webm)" - -#~ msgid "Page Header Content" -#~ msgstr "Inhalt des Kopfbereichs" - -#~ msgid "Add your content to the page header. HTML and shortcodes allowed." -#~ msgstr "" -#~ "Hinzufügen von Inhalten zu Ihrem Seitenkopf. HTML und Shortcodes sind " -#~ "erlaubt." - -#~ msgid "Add Paragraphs" -#~ msgstr "Absätze automatisch hinzufügen" - -#~ msgid "Wrap your text in paragraph tags automatically." -#~ msgstr "Umschließen Sie Ihren Text automatisch mit Absatz-Tags." - -#~ msgid "Add padding around your content." -#~ msgstr "Abstand um den Inhalt hinzufügen." - -#~ msgid "Image Background" -#~ msgstr "Hintergrundbild" - -#~ msgid "" -#~ "Use the image uploaded above as a background image for your content. " -#~ "(requires image uploaded above)" -#~ msgstr "" -#~ "Verwende das Hintergrundbild als Bild für den Inhalt. (erfordert, dass " -#~ "ein Bild oben hochgeladen wurde)" - -#~ msgid "Parallax Background" -#~ msgstr "Parallaxer Hintergrund" - -#~ msgid "" -#~ "Add a cool parallax effect to your background image. (requires the image " -#~ "background option to be checked)" -#~ msgstr "" -#~ "Fügen Sie einen coolen Parallax-Effekt zu Ihrem Hintergrundbild hinzu. " -#~ "(erfordert die aktivierte Option Hintergrundbild)" - -#~ msgid "Full Screen" -#~ msgstr "Vollbild" - -#~ msgid "Make your page header content area full screen." -#~ msgstr "Setze den Inhaltsbereich des Seitenkopfs als Vollbild." - -#~ msgid "Vertical Center" -#~ msgstr "Vertikale Mitte" - -#~ msgid "Center your page header content vertically." -#~ msgstr "Zentriere Inhalt des Seitenkopfs vertikal." - -#~ msgid "Container Type" -#~ msgstr "Container-Typ" - -#~ msgid "Choose whether the page header is contained or fluid." -#~ msgstr "Wählen Sie, ob der Seitenkopf enthalten ist oder flexibel." - -#~ msgid "Choose the horizontal alignment of your content." -#~ msgstr "Wählen Sie die horizontale Ausrichtung des Inhalts." - -#~ msgid "Top/Bottom Padding" -#~ msgstr "Oberer/Unterer Abstand" - -#~ msgid "This will add space above and below your content. (integer only) " -#~ msgstr "" -#~ "Raum oberhalb und unterhalb des Inhaltsbereichs hinzufügen. (nur ganze " -#~ "Zahlen)" - -#~ msgid "Padding Unit" -#~ msgstr "Abstands Einheit" - -#~ msgid "Page Header Advanced" -#~ msgstr "Erweiterte Einstellungen für den Seitenkopf" - -#~ msgid "Page Header Logo" -#~ msgstr "Kopfbereich Logo" - -#~ msgid "Replace your logo on the blog." -#~ msgstr "Ersetzen Dein Logo auf dem Blog." - -#~ msgid "Page Header Link" -#~ msgstr "Seitenkopf-Link" - -#~ msgid "Hard Crop" -#~ msgstr "Zuschneiden" - -#~ msgid "" -#~ "Choose your content padding in pixels. This will add space above and " -#~ "below your content. (integer only) " -#~ msgstr "" -#~ "Wählen Sie Ihren Abstand im Inhaltsbereich in Pixel. Dadurch wird Raum " -#~ "oberhalb und unterhalb Ihrer Inhalte hinzugefügt. (nur ganze Zahlen)" - -#~ msgid "Add Image" -#~ msgstr "Bild hinzufügen" - -#~ msgid "Add a page header to your blog." -#~ msgstr "Fügen Sie einen Seitenkopf zu Ihrem Blog hinzu." - -#~ msgid "" -#~ "This will only show up on the page you have set as your \"Posts Page\". " -#~ "To add a page header to specific pages, use the metabox included while " -#~ "adding your content." -#~ msgstr "" -#~ "Dies wird nur auf der Seite angezeigt, die Sie als Ihre \"Beiträge-Seite" -#~ "\" eingestellt haben. Um einen Seitenkopf für bestimmte Seiten " -#~ "hinzuzufügen, verwenden Sie die Metabox." - -#~ msgid "Publish" -#~ msgstr "Veröffentlichen" - -#~ msgid "" -#~ "Use these options to add a page header to your Blog. Add page headers to " -#~ "your pages by using the metabox while editing them." -#~ msgstr "" -#~ "Verwenden Sie diese Optionen, um einen Seitenkopf zu Ihrem Blog " -#~ "hinzufügen. Fügen Sie Seitenköpfe zu Ihren Seiten, mithilfe der Metabox " -#~ "beim Bearbeiten, hinzu." - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank to calculate " -#~ "height based on width. (integer only, default is 0) " -#~ msgstr "" -#~ "Wählen Sie die Höhe des Bildes in Pixel. Verwenden Sie \"0\" oder lassen " -#~ "Sie das Feld frei, um die Höhe zu berechnen. (Integer, Standard ist 0)" - -#~ msgid "Content Options" -#~ msgstr "Inhaltsoptionen" - -#~ msgid "Link Hover Color" -#~ msgstr "Linkfarbe bei Mouse over" - -#~ msgid "Metabox configuration is required to have an ID parameter" -#~ msgstr "" -#~ "Metabox Konfiguration ist erforderlich, um eine ID-Parameter zu erhalten" - -#~ msgid "Click to toggle" -#~ msgstr "Klicken Sie zum Umschalten" - -#~ msgid "Please Try Again" -#~ msgstr "Bitte versuchen Sie es erneut." - -#~ msgid "Remove Embed" -#~ msgstr "Einbindungscode entfernen" - -#~ msgid "No oEmbed Results Found for %s. View more info at" -#~ msgstr "Keine oEmbed gefunden für%s. Weitere Infos unter" - -#~ msgid "Add Group" -#~ msgstr "Gruppe hinzufügen" - -#~ msgid "Remove Group" -#~ msgstr "Gruppe entfernen" - -#~ msgid "Add Row" -#~ msgstr "Zeile hinzufügen" - -#~ msgid "No terms" -#~ msgstr "Keine Begriffe" - -#~ msgid "Add or Upload Files" -#~ msgstr "Hinzufügen oder Dateien hochladen" - -#~ msgid "Add or Upload File" -#~ msgstr "Hinzufügen oder Dateien hochladen" - -#~ msgid "File:" -#~ msgstr "Datei:" - -#~ msgid "Download" -#~ msgstr "Herunterladen" - -#~ msgid "Clear" -#~ msgstr "Entfernen" - -#~ msgid "Default" -#~ msgstr "Standard" - -#~ msgid "Select Color" -#~ msgstr "Farbe auswählen" - -#~ msgid "Current Color" -#~ msgstr "Aktuelle Farbe" - -#~ msgid "mm/dd/yy" -#~ msgstr "mm/dd/yy" - -#~ msgid "Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday" -#~ msgstr "Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag" - -#~ msgid "Su, Mo, Tu, We, Th, Fr, Sa" -#~ msgstr "So, Mo, Di, Mi, Do, Fr, Sa" - -#~ msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat" -#~ msgstr "Son, Mon, Die, Mit, Don, Fre, Sam" - -#~ msgid "" -#~ "January, February, March, April, May, June, July, August, September, " -#~ "October, November, December" -#~ msgstr "" -#~ "Januar, Februar, März, April, Mai, Juni, Juli, August, September, " -#~ "Oktober, November, Dezember" - -#~ msgid "Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec" -#~ msgstr "Jan, Feb, Mar, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez" - -#~ msgid "Prev" -#~ msgstr "Vorheriger" - -#~ msgid "Today" -#~ msgstr "Heute" - -#~ msgid "Done" -#~ msgstr "Fertig" - -#~ msgid "Choose Time" -#~ msgstr "Zeit wählen" - -#~ msgid "Time" -#~ msgstr "Zeit" - -#~ msgid "Hour" -#~ msgstr "Stunde" - -#~ msgid "Minute" -#~ msgstr "Minute" - -#~ msgid "Second" -#~ msgstr "Sekunde" - -#~ msgid "Now" -#~ msgstr "Jetzt" - -#~ msgid "hh:mm TT" -#~ msgstr "hh: mm TT" - -#~ msgid "Use this file" -#~ msgstr "Diese Datei verwenden" - -#~ msgid "Select / Deselect All" -#~ msgstr "Alles / Nichts auswählen" - -#~ msgid "Use \"0\" or leave blank to calculate height based on width." -#~ msgstr "" -#~ "Verwenden Sie \"0\" oder lassen Sie das Feld frei, um die Höhe basierend " -#~ "auf der Breite zu berechnen." - -#~ msgid "Use image (from image tab) as a background image?" -#~ msgstr "Verwende Bild (von Registerkarte Bild) als Hintergrundbild?" - -#~ msgid "Add parallax effect to background image?" -#~ msgstr "Parallax Effekt hinzufügen?" - -#~ msgid "Make background image full screen?" -#~ msgstr "Hintergrundbild als Vollbild anzeigen?" - -#~ msgid "Center your content vertically?" -#~ msgstr "Ihre Inhalte vertikal zentrieren?" - -#~ msgid "Add to blog excerpt (if no Featured Image is set)" -#~ msgstr "Zum Blog Auszug hinzufügen (wenn kein Beitragsbild gesetzt ist)" - -#~ msgid "Hard Crop Position" -#~ msgstr "Position des zugeschnittenen Bildes" - -#~ msgid "Choose where to crop the image." -#~ msgstr "Wählen Sie, wo Sie das Bild zuschneiden." - -#~ msgid "Top Left" -#~ msgstr "Oben links" - -#~ msgid "Top Right" -#~ msgstr "Oben rechts" - -#~ msgid "Bottom Left" -#~ msgstr "Unten links" - -#~ msgid "Bottom Right" -#~ msgstr "Unten rechts" - -#~ msgid "Image Crop Position" -#~ msgstr "Position des zugeschnittenen Bildes" - -#~ msgid "Top left" -#~ msgstr "Oben links" - -#~ msgid "Top right" -#~ msgstr "Oben rechts" - -#~ msgid "Bottom left" -#~ msgstr "Unten links" - -#~ msgid "Bottom right" -#~ msgstr "Unten rechts" - -#~ msgid "" -#~ "Note: You've chosen content to show as your page header. Remove the " -#~ "content and save to use the image below." -#~ msgstr "" -#~ "Hinweis: Sie haben Inhalte als Ihre Kopfzeile anzeigen ausgewählt. " -#~ "Entfernen Sie den Inhalt und speichern Sie, um das Bild unten zu " -#~ "verwenden." - -#~ msgid "Background type" -#~ msgstr "Hintergrundtyp" - -#~ msgid "Add parallax effect?" -#~ msgstr "Parallax Effekt hinzufügen?" - -#~ msgid "Generate Page Header License Key" -#~ msgstr "Seitenkopf-Lizenz-Schlüssel generieren" - -#~ msgid "No image URL has been entered." -#~ msgstr "Es wurde keine Bild-URL eingegeben." - -#~ msgid "At least one of width or height must be a number." -#~ msgstr "Die Breite oder Höhe muss eine Zahl sein." - -#~ msgid "Failed to get $file_path information using \"@getimagesize\"." -#~ msgstr "" -#~ "Fehler beim Abrufen der $file_path Informationen mithilfe von " -#~ "\"@getimagesize\"." - -#~ msgid "Resize path invalid (GIF)" -#~ msgstr "Pfad zur Größenänderung ist falsch (GIF)" - -#~ msgid "Resize path invalid (PNG)." -#~ msgstr "Pfad zur Größenänderung ist falsch (PNG)" - -#~ msgid "Resize path invalid (JPG)." -#~ msgstr "Pfad zur Größenänderung ist falsch (JPG)" - -#~ msgid "Failed to get $dest_file_name (resized image) info via @getimagesize" -#~ msgstr "" -#~ "Fehler beim Abrufen der $dest_file_name (geänderte Bildgröße) Info über " -#~ "@getimagesize" - -#~ msgid "Secondary Menu Items" -#~ msgstr "Sekundäre Menüelemente" - -#~ msgid "Secondary navigation" -#~ msgstr "Sekundäre Navigation" - -#~ msgid "Navigation Layout" -#~ msgstr "Layout der Navigation" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Flexible / volle Breite" - -#~ msgid "Mobile Label" -#~ msgstr "Beschriftung für mobile Navigation" - -#~ msgid "Secondary Navigation Spacing" -#~ msgstr "Abstände der sekundären Navigation" - -#~ msgid "These options control the size of your secondary menu items." -#~ msgstr "Diese Optionen steuern die Größe Ihrer sekundären Menü-Elemente." - -#~ msgid "Secondary Sub-menu Item Height" -#~ msgstr "Höhe der sekundären Untermenü-Elemente" - -#~ msgid "The top and bottom spacing of secondary sub-menu items." -#~ msgstr "" -#~ "Der oberen und unteren Abstand der sekundären untergeordneten " -#~ "Menüelemente." - -#~ msgid "Secondary Navigation Colors" -#~ msgstr "Farben der sekundären Navigation" - -#~ msgid "Secondary Sub-Navigation Colors" -#~ msgstr "Farben der sekundären Subnavigation" - -#~ msgid "Secondary Navigation Typography" -#~ msgstr "Schriftart der sekundären Subnavigation" - -#~ msgid "Secondary Background Images" -#~ msgstr "Sekundäre Hintergrundbilder" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-es_AR.mo b/wp-content/plugins/gp-premium/langs/gp-premium-es_AR.mo new file mode 100644 index 00000000..b7f2e41d Binary files /dev/null and b/wp-content/plugins/gp-premium/langs/gp-premium-es_AR.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-es_ES.mo b/wp-content/plugins/gp-premium/langs/gp-premium-es_ES.mo new file mode 100644 index 00000000..4b7c904f Binary files /dev/null and b/wp-content/plugins/gp-premium/langs/gp-premium-es_ES.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-fi.mo b/wp-content/plugins/gp-premium/langs/gp-premium-fi.mo new file mode 100644 index 00000000..40b76878 Binary files /dev/null and b/wp-content/plugins/gp-premium/langs/gp-premium-fi.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-fr_FR.mo b/wp-content/plugins/gp-premium/langs/gp-premium-fr_FR.mo index 9b08e495..6b7ccb1b 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-fr_FR.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-fr_FR.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-fr_FR.po b/wp-content/plugins/gp-premium/langs/gp-premium-fr_FR.po deleted file mode 100644 index 17bc07c6..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-fr_FR.po +++ /dev/null @@ -1,3304 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:34-0800\n" -"PO-Revision-Date: 2018-02-27 17:34-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: \n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImportInfo.php\n" -"X-Poedit-SearchPathExcluded-5: sites/classes/class-site-widget-importer.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Images de fond" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Corps" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "En-tête" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Barre de navigation primaire" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -#, fuzzy -msgid "Navigation" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Navigation\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Barre de navigation" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Répétition" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Répétition x" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Répétition y" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Pas de répétition" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Élément de navigation" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -#, fuzzy -msgid "Navigation Item Hover" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Élément de navigation sélectionné\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Bouton sélectionné" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -#, fuzzy -msgid "Navigation Item Current" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Élément de navigation courant\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Rubrique actuelle" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -#, fuzzy -msgid "Sub-Navigation Item" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Élément de sous-navigation\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Éléments de sous-navigation " - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -#, fuzzy -msgid "Sub-Navigation Item Hover" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Élément de sous-navigation sélectionné\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Éléments de sous-navigation sélectionnés" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -#, fuzzy -msgid "Sub-Navigation Item Current" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Élément de sous-navigation sélectionné courant\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Rubrique de sous-navigation actuelle" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -#, fuzzy -msgid "Content" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Contenu\n" -"#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -"Contenu\n" -"#-#-#-#-# generate-spacing-fr_FR.po (Generate Spacing) #-#-#-#-#\n" -"Contenants\n" -"#-#-#-#-# page-header-fr_FR.po (Generate Page Header) #-#-#-#-#\n" -"Contenants " - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -#, fuzzy -msgid "Sidebar Widgets" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Barre latérale des Widgets\n" -"#-#-#-#-# generate-spacing-fr_FR.po (Generate Spacing) #-#-#-#-#\n" -"Widgets de la barre latérale" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Bas de page" - -#: backgrounds/functions/functions.php:941 -#, fuzzy -msgid "Footer Widget Area" -msgstr "" -"#-#-#-#-# backgrounds-fr_FR.po (Generate Backgrounds) #-#-#-#-#\n" -"Zone des widget du pied de page\n" -"#-#-#-#-# generate-spacing-fr_FR.po (Generate Spacing) #-#-#-#-#\n" -"Widgets du bas de page" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Zone du pied de page" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -#, fuzzy -msgid "Secondary Navigation" -msgstr "" -"#-#-#-#-# disable-elements-fr_FR.po (Generate Disable Elements) #-#-#-#-#\n" -"Barre de navigation secondaire\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Seconde barre de navigation" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Texte affiché pour lire la suite" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "Centre" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "Gauche" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "Droite" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Hauteur" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Au-dessus de la zone du contenu" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Plus" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "" - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Couleurs" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -#, fuzzy -msgid "Background" -msgstr "" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Couleur du fond\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Fond" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -#, fuzzy -msgid "Text" -msgstr "" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Couleur du texte\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Texte" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Couleur des liens" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Couleur d'un lien sélectionné" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Couleur du titre du site" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Couleur du descriptif" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "Élément du menu primaire " - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -#, fuzzy -msgid "Background Hover" -msgstr "" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Couleur de la sélection\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Rubrique sélectionnée" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -#, fuzzy -msgid "Background Current" -msgstr "" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Couleur de la sous-rubrique actuelle\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Sous-rubrique actuelle" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -#, fuzzy -msgid "Text Hover" -msgstr "" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Couleur du texte sélectionné\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Texte sélectionné" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -#, fuzzy -msgid "Text Current" -msgstr "" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Couleur du texte de la sous-rubrique actuelle\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Texte courant" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -#| msgid "Sub-menu Item Height" -msgid "Sub-Menu Items" -msgstr "Hauteur des éléments du sous-menu" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "Contenu du titre" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Couleur des titres des articles des pages principales" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Couleur du titres des pages principales sélectionnées" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Couleur du méta texte" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Couleur des méta liens" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Couleur du méta lien sélectionné" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Couleur du titre des widgets" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Couleur du fond" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Couleur du cadre" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Couleur du texte" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Copyright" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Désactiver Éléments" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "GP Hooks" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "En-tête" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Avant l'en-tête" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Avant le contenu de l'en-tête" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Après le contenu de l'en-tête" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Après l'en-tête" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Avant le contenu" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Après le titre" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Après le contenu" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Avant les widgets de droite" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Après les widgets de droite" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Avant les widgets de gauche" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Après les widgets de gauche" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Avant le pied de page" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Avant le contenu du pied de page" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Après le contenu du pied de page" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "Pied de page" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Executer PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Utilisez ces champs pour insérer le code que vous désirez. Les shortcodes " -"sont autorisés, vous pouvez aussi utiliser du code PHP si vous cochez la " -"case exécuter PHP." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Voir tout" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "" - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -msgctxt "Module name" -msgid "Backgrounds" -msgstr "" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Couleur du fond\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Fond" - -#: import-export/functions/functions.php:23 library/reset.php:21 -msgctxt "Module name" -msgid "Blog" -msgstr "" - -#: import-export/functions/functions.php:27 library/reset.php:25 -#, fuzzy -#| msgid "GP Hooks" -msgctxt "Module name" -msgid "Hooks" -msgstr "GP Hooks" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "En-tête de page" - -#: import-export/functions/functions.php:35 library/reset.php:33 -#, fuzzy -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "" -"#-#-#-#-# disable-elements-fr_FR.po (Generate Disable Elements) #-#-#-#-#\n" -"Barre de navigation secondaire\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Seconde barre de navigation" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#, fuzzy -#| msgid "Element Spacing" -msgctxt "Module name" -msgid "Spacing" -msgstr "Espacement" - -#: import-export/functions/functions.php:43 library/reset.php:41 -msgctxt "Module name" -msgid "Menu Plus" -msgstr "" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "Copyright" - -#: import-export/functions/functions.php:56 -#, fuzzy -#| msgid "GeneratePress Hooks" -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "GeneratePress Hooks" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "SVP transférez un fichier .json valide" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "SVP transférez le fichier à importer" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Vous n'avez pas la permission d'installer la mise-à-jour de ce plugin." - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Erreur" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Add-on désactivé" - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Add-on activé" - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "" - -#: inc/activation.php:68 inc/activation.php:105 -#, fuzzy -msgid "Activate" -msgstr "" -"#-#-#-#-# disable-elements-fr_FR.po (Generate Disable Elements) #-#-#-#-#\n" -"Activé\n" -"#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -"Activé\n" -"#-#-#-#-# generate-copyright-fr_FR.po (Generate Copyright) #-#-#-#-#\n" -"Activé\n" -"#-#-#-#-# generate-hooks-fr_FR.po (Generate Hooks) #-#-#-#-#\n" -"Activer\n" -"#-#-#-#-# generate-ie-fr_FR.po (Generate Import Export) #-#-#-#-#\n" -"Activé\n" -"#-#-#-#-# generate-spacing-fr_FR.po (Generate Spacing) #-#-#-#-#\n" -"Activé\n" -"#-#-#-#-# generate-typography-fr_FR.po (Generate Typography) #-#-#-#-#\n" -"Activé\n" -"#-#-#-#-# gp-premium-fr_FR.po (GP Premium) #-#-#-#-#\n" -"Activer\n" -"#-#-#-#-# page-header-fr_FR.po (Generate Page Header) #-#-#-#-#\n" -"Activé" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Désactiver" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "" - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Licence désactivée" - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Licence activée" - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "" - -#: inc/verify.php:139 -msgid "Update" -msgstr "" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "" - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "" - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "" - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "" - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "" - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "" - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Position" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Taille (automatique)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% largeur" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Couverture" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Contenir" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Attaché" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Fixe" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Local" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Hérité" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "Le codage au format HTML est supporté" - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Haut" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Bas" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Famille de polices" - -#: library/customizer/controls/class-typography-control.php:30 -#, fuzzy -msgid "Font weight" -msgstr "" -"#-#-#-#-# generate-typography-fr_FR.po (Generate Typography) #-#-#-#-#\n" -"Largeur du texte\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Largeur de la police " - -#: library/customizer/controls/class-typography-control.php:31 -#, fuzzy -msgid "Text transform" -msgstr "" -"#-#-#-#-# generate-typography-fr_FR.po (Generate Typography) #-#-#-#-#\n" -"Apparence du texte\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Transformation du texte" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "Position" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:442 -msgid "Side" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "En-tête de page" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "A l'intérieur la zone du contenu" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "Masquer" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Image" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Image de l'en-tête de page" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "" - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -#, fuzzy -msgid "Disable" -msgstr "" -"#-#-#-#-# generate-blog-fr_FR.po (Generate Blog) #-#-#-#-#\n" -"Inactif\n" -"#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -"Désactivé\n" -"#-#-#-#-# page-header-fr_FR.po (Generate Page Header) #-#-#-#-#\n" -"Désactivé" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -#, fuzzy -msgid "Enable" -msgstr "" -"#-#-#-#-# generate-blog-fr_FR.po (Generate Blog) #-#-#-#-#\n" -"Actif\n" -"#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -"Actif\n" -"#-#-#-#-# page-header-fr_FR.po (Generate Page Header) #-#-#-#-#\n" -"Activé" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Largeur de l'image" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Hauteur de l'image" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "" - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "HTML et shortcodes autorisés" - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Ajouter automatiquement des paragraphes" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Effet Parallax" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -#, fuzzy -msgid "Contained" -msgstr "" -"#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -"Limité\n" -"#-#-#-#-# page-header-fr_FR.po (Generate Page Header) #-#-#-#-#\n" -"Contenu\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Limité" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Couleur de la section" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Couleur du texte" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Couleur des liens" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "Couleur d'un lien sélectionné" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "" - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Second menu" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Alignement de la navigation" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Sous la première barre de navigation" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Par dessus l'en-tête " - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Flottante à droite" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Barre latérale gauche" - -#: secondary-nav/functions/functions.php:290 -#, fuzzy -msgid "Right Sidebar" -msgstr "" -"#-#-#-#-# generate-spacing-fr_FR.po (Generate Spacing) #-#-#-#-#\n" -"Barre latérale de droite \n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Barre latérale droite" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Masquer la seconde barre de navigation" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "Utilisez Section" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "Sections" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "Section" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Type de boîte" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Type de boîte intérieure" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Classes personnalisées" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Distance du haut" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Distance du bas" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Image de la section" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Pas de sélection ajoutée !" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -msgid "Importing options" -msgstr "" - -#: sites/classes/class-site-helper.php:96 -msgid "Downloading content" -msgstr "" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "Aller au contenu" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Customizer Settings" -msgid "Importing site options" -msgstr "Importer vos paramètres personnalisés" - -#: sites/classes/class-site-helper.php:99 -msgid "Importing widgets" -msgstr "" - -#: sites/classes/class-site-helper.php:100 -#, fuzzy -#| msgid "Activate License" -msgid "Activating plugins" -msgstr "Activer la licence" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -msgid "Automatic" -msgstr "" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -msgid "Theme Options" -msgstr "" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "Après le contenu" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -msgid "Backup Options" -msgstr "" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import / Export" -msgid "Import Options" -msgstr "Import/Export" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "Avant le contenu" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Licence activée" - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh sites" -msgstr "Rafraîchir" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Séparation" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Changer l'espacement de différents éléments en pixels." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Typographie" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -#, fuzzy -msgid "Font size" -msgstr "" -"#-#-#-#-# generate-typography-fr_FR.po (Generate Typography) #-#-#-#-#\n" -"Taille de la police\n" -"#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Taille de police" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Titre 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Titre 2 (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Titre 3 (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#, fuzzy -#~| msgid "No Navigation" -#~ msgid "Slide-out Navigation" -#~ msgstr "Masquer la seconde barre de navigation" - -#~ msgid "Export Backgrounds Customizer Settings" -#~ msgstr "Exporter les paramètres de Images de fond" - -#~ msgid "Delete Backgrounds Customizer Settings" -#~ msgstr "Supprimer les paramètres de Images de fond" - -#~ msgid "Post Image / Page Header" -#~ msgstr "Post Image / En-tête de page " - -#~ msgid "Headline / Post Title" -#~ msgstr "Titre / Titre du post" - -#~ msgid "verified" -#~ msgstr "Vérifié" - -#~ msgid "unverified" -#~ msgstr "Non vérifié" - -#~ msgid "Disable Elements Installed" -#~ msgstr "Désactiver Éléments" - -#~ msgid "Please enter your license key in order to use this plugin." -#~ msgstr "" -#~ "S'il vous plaît, entrez votre clé de licence afin d'utiliser ce plugin." - -#~ msgid "Deactivate License" -#~ msgstr "Désactiver la licence" - -#~ msgid "active" -#~ msgstr "Actif" - -#~ msgid "inactive" -#~ msgstr "Inactif" - -#~ msgid "Generate Disable Elements License Key" -#~ msgstr "Générer une clef de licence pour Éléments" - -#~ msgid "" -#~ "Activate your addons by entering the email you purchased them with below. " -#~ "Save and verify, then your purchased addons will appear below for " -#~ "activation." -#~ msgstr "" -#~ "Activez vos addons en entrant l'email que vous avez utilisé pour votre " -#~ "achat. Vos plugins achetés apparaîtront ci-dessous pour l'activation." - -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgid "Status" -#~ msgstr "Status" - -#~ msgid "Action" -#~ msgstr "Action" - -#, fuzzy -#~ msgid "Verify Email" -#~ msgstr "" -#~ "#-#-#-#-# disable-elements-fr_FR.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Vérifier l'email\n" -#~ "#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -#~ "Vérifier le Email\n" -#~ "#-#-#-#-# generate-copyright-fr_FR.po (Generate Copyright) #-#-#-#-#\n" -#~ "Vérifier l'email\n" -#~ "#-#-#-#-# generate-hooks-fr_FR.po (Generate Hooks) #-#-#-#-#\n" -#~ "Vérifier l'email\n" -#~ "#-#-#-#-# generate-ie-fr_FR.po (Generate Import Export) #-#-#-#-#\n" -#~ "Vérifier l'email\n" -#~ "#-#-#-#-# generate-spacing-fr_FR.po (Generate Spacing) #-#-#-#-#\n" -#~ "Vérifier le email\n" -#~ "#-#-#-#-# generate-typography-fr_FR.po (Generate Typography) #-#-#-#-#\n" -#~ "Vérifier le Email\n" -#~ "#-#-#-#-# page-header-fr_FR.po (Generate Page Header) #-#-#-#-#\n" -#~ "Vérifiez l'email" - -#~ msgid "Activate All" -#~ msgstr "Tout activer" - -#~ msgid "Product" -#~ msgstr "Produit" - -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgid "Once Every 3 Days" -#~ msgstr "Une fois tous les 3 jours" - -#~ msgid "Read more..." -#~ msgstr "Lire plus..." - -#~ msgid "Excerpt Length" -#~ msgstr "Nombre de lignes de l'extrait" - -#~ msgid "Masonry" -#~ msgstr "Fenêtrage " - -#~ msgid "Masonry Block Width" -#~ msgstr "Fenêtrage choix d'apparence" - -#~ msgid "Small" -#~ msgstr "Petit" - -#~ msgid "Medium" -#~ msgstr "Moyen" - -#~ msgid "Large" -#~ msgstr "Grand" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Fenêtrage taille du dernier article" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Texte affiché pour lire la suite" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Texte affiché pour le chargement de la suite" - -#~ msgid "Post Image" -#~ msgstr "Image à la une" - -#~ msgid "Show" -#~ msgstr "Voir" - -#~ msgid "Date" -#~ msgstr "Date" - -#~ msgid "Author" -#~ msgstr "Auteur" - -#~ msgid "Categories" -#~ msgstr "Catégories" - -#~ msgid "Comment Link" -#~ msgstr "Liens des commentaires" - -#~ msgid "Masonry Post Width" -#~ msgstr "Fenêtrage largeur de la publication" - -#~ msgid "Global setting" -#~ msgstr "Réglages généraux" - -#~ msgid "Delete Blog Customizer Settings" -#~ msgstr "Supprimer les paramètres de Blogue" - -#~ msgid "Export Blog Customizer Settings" -#~ msgstr "Exporter les paramètres de Blogue" - -#, fuzzy -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "Ceci est une nouvelle version de %1$s disponible. View version %3$s details." - -#, fuzzy -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "Ceci est une nouvelle version de %1$s disponible. View version %3$s details or update now." - -#~ msgid "Header Colors" -#~ msgstr "Couleur de l'en-tête" - -#~ msgid "Navigation Colors" -#~ msgstr "Couleur de la barre de navigation" - -#~ msgid "Sub-Navigation Colors" -#~ msgstr "Couleur de la barre de sous-navigation" - -#~ msgid "Content Colors" -#~ msgstr "Couleur des contenants" - -#~ msgid "Sidebar Widget Colors" -#~ msgstr "Couleur des widget de la barre latérale" - -#~ msgid "Footer Widget Colors" -#~ msgstr "Couleur des widget en bas de page" - -#~ msgid "Footer Colors" -#~ msgstr "Couleur du bas de page" - -#~ msgid "Form Colors" -#~ msgstr "Couleur de la zone de saisie" - -#~ msgid "Form Background Focus/Hover" -#~ msgstr "Couleur du fond sélectionné" - -#~ msgid "Form Text Focus/Hover" -#~ msgstr "Couleur du texte saisi" - -#~ msgid "Form Border Focus/Hover" -#~ msgstr "Couleur du cadre sélectionné" - -#~ msgid "Form Button" -#~ msgstr "Couleur des boutons" - -#~ msgid "Form Button Focus/Hover" -#~ msgstr "Couleur des boutons sélectionnés" - -#~ msgid "Form Button Text" -#~ msgstr "Couleur du texte des boutons" - -#~ msgid "Form Button Text Focus/Hover" -#~ msgstr "Couleur du texte des boutons sélectionnés" - -#, fuzzy -#~ msgid "Deactivate Email" -#~ msgstr "" -#~ "#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -#~ "Désactiver l'Email\n" -#~ "#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -#~ "Désactiver l'email\n" -#~ "#-#-#-#-# gp-premium-fr_FR.po (GP Premium) #-#-#-#-#\n" -#~ "Désactiver l'email" - -#, fuzzy -#~ msgid "Activate Email" -#~ msgstr "" -#~ "#-#-#-#-# generate-colors-fr_FR.po (Generate Colors) #-#-#-#-#\n" -#~ "Activer l'Email\n" -#~ "#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -#~ "Activer l'email\n" -#~ "#-#-#-#-# gp-premium-fr_FR.po (GP Premium) #-#-#-#-#\n" -#~ "Activer l'email" - -#~ msgid "Add a custom copyright line." -#~ msgstr "Ajouter une ligne de copyright personnalisée" - -#~ msgid "" -#~ "Use %current_year% to include the current year dynamically." -#~ msgstr "" -#~ "Utilisez %current_year% pour inclure dynamiquement l'année " -#~ "courante" - -#~ msgid "Use %copy% to include the copyright symbol." -#~ msgstr "Utilisez %copy% pour inclure symbole ©" - -#~ msgid "Copyright Installed" -#~ msgstr "Copyright est installé" - -#~ msgid "Generate Copyright License Key" -#~ msgstr "Générer une clef de licence pour Copyright" - -#~ msgid "Save Settings" -#~ msgstr "Sauver vos réglages" - -#~ msgid "Generate Hooks License Key" -#~ msgstr "Générer une clef de licence pour Generate Hooks" - -#~ msgid "Export your settings set in the Export Vos paramètres dans Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Import Transférer vos paramètres via un fichier .json" - -#~ msgid "Import / Export Installed" -#~ msgstr "Import/Export est installé" - -#~ msgid "Generate Import Export License Key" -#~ msgstr "Générer une clef de licence pour Import/Export" - -#~ msgid "Click the \"%s\" button below to start creating your sections." -#~ msgstr "" -#~ "Cliquez sur le \"%s\" bouton ci-dessous pour commencer à créer vos " -#~ "sections." - -#~ msgid "Add New" -#~ msgstr "Ajouter nouveau" - -#, fuzzy -#~ msgid "Fluid" -#~ msgstr "" -#~ "#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -#~ "Pleine largeur\n" -#~ "#-#-#-#-# page-header-fr_FR.po (Generate Page Header) #-#-#-#-#\n" -#~ "Fluide" - -#~ msgid "contained" -#~ msgstr "Limité" - -#, fuzzy -#~ msgid "" -#~ "Want updates served directly to your Dashboard? Activate the email you " -#~ "purchased your add-ons with here." -#~ msgstr "" -#~ "#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -#~ "Désirez-vous que les mises-à-jour soient proposées directement sur votre " -#~ "tableau de bord ? Activez l'e-mail avec le quel avez acheté vos plugins " -#~ "ici.\n" -#~ "#-#-#-#-# gp-premium-fr_FR.po (GP Premium) #-#-#-#-#\n" -#~ "Vous voulez afficher les mises-à-jour directement à votre tableau de " -#~ "bord ? Activez l'email avec le quel vous avez acheté vos add-ons ici." - -#~ msgid "Save Email" -#~ msgstr "Sauver l'email" - -#~ msgid "Enable All Updates" -#~ msgstr "Activer toutes les mises-à-jour" - -#~ msgid "Email activation failed. This email does not exist in our records." -#~ msgstr "" -#~ "L'activation de cet email a échoué. Cet email n'est pas enregistré dans " -#~ "notre base de donnée" - -#~ msgid "Email activated." -#~ msgstr "Email activé" - -#~ msgid "Email deactivated." -#~ msgstr "Email désactivé" - -#~ msgid "License failed." -#~ msgstr "Échec de licence" - -#~ msgid "Licenses activated." -#~ msgstr "Licences activées" - -#~ msgid "Deactivation failed." -#~ msgstr "Échec de la désactivation" - -#~ msgid "Disable Updates" -#~ msgstr "Désactiver les mises-à-jour" - -#, fuzzy -#~ msgid "Enable Updates" -#~ msgstr "" -#~ "#-#-#-#-# generate-sections-fr_FR.po (Generate Sections) #-#-#-#-#\n" -#~ "Activer les mises-à-jour\n" -#~ "#-#-#-#-# gp-premium-fr_FR.po (GP Premium) #-#-#-#-#\n" -#~ "Activer les mises-à-jour " - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "Espace entre les éléments quand \"la disposition des contenants\" est " -#~ "réglée sur \"Contenants séparés\"." - -#~ msgid "These options control the size of your menu items." -#~ msgstr "Cette option contrôle la taille des éléments du menu" - -#, fuzzy -#~ msgid "Left/Right Spacing" -#~ msgstr "" -#~ "#-#-#-#-# generate-spacing-fr_FR.po (Generate Spacing) #-#-#-#-#\n" -#~ "Espacement gauche/droite \n" -#~ "#-#-#-#-# secondary-nav-fr_FR.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Largeur" - -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "Espace du haut et du bas des sous-menus." - -#~ msgid "Sidebar Widths" -#~ msgstr "Largeur des barres latérales " - -#~ msgid "15%" -#~ msgstr "15%" - -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgid "25%" -#~ msgstr "25%" - -#~ msgid "30%" -#~ msgstr "30%" - -#~ msgid "35%" -#~ msgstr "35%" - -#~ msgid "40%" -#~ msgstr "40%" - -#~ msgid "45%" -#~ msgstr "45%" - -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgid "Delete Spacing Customizer Settings" -#~ msgstr "Supprimer les paramètres d'espacement" - -#~ msgid "Export Spacing Customizer Settings" -#~ msgstr "Exporter les paramètres d'espacement" - -#~ msgid "Spacing Installed" -#~ msgstr "Espacement est installé" - -#~ msgid "Generate Spacing License Key" -#~ msgstr "Générer une clef de licence pour espacement" - -#~ msgid "Font-size" -#~ msgstr "Taille de la police" - -#~ msgid "Typography Installed" -#~ msgstr "Typographie est installé" - -#~ msgid "Generate Typography License Key" -#~ msgstr "Générer une clef de licence pour Typographie" - -#~ msgid "Page Header Link" -#~ msgstr "Liens de l'en-tête de page" - -#~ msgid "Hard Crop" -#~ msgstr "Fixer la taille de l'image" - -#~ msgid "Add Image" -#~ msgstr "Ajouter une image" - -#~ msgid "Add padding" -#~ msgstr "Ajouter remplissage" - -#~ msgid "Text alignment" -#~ msgstr "Alignement du texte" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Remplissage du haut et du bas" - -#~ msgid "Text color" -#~ msgstr "Couleur du texte" - -#~ msgid "Link color" -#~ msgstr "Couleur du lien" - -#~ msgid "Link color hover" -#~ msgstr "Couleur d'un lien sélectionné" - -#~ msgid "Page Header Position" -#~ msgstr "Position de l'en-tête de page" - -#~ msgid "Single Post Header Position" -#~ msgstr "Position de l'en-tête de post " - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "Supprimer les paramètres d'en-tête de page" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "Exporter les paramètres d'en-tête de page" - -#~ msgid "Mobile Label" -#~ msgstr "Étiquette mobile" - -#~ msgid "Navigation Layout" -#~ msgstr "Largeur de la seconde barre de navigation" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Pleine largeur" - -#~ msgid "Navigation Position" -#~ msgstr "Emplacement de la seconde barre de navigation" - -#~ msgid "Secondary Navigation Spacing" -#~ msgstr "Espacement de la seconde barre de navigation " - -#~ msgid "Secondary Menu Items" -#~ msgstr "Éléments du second menu " - -#~ msgid "These options control the size of your secondary menu items." -#~ msgstr "Cette option contrôle la taille des éléments du second menu" - -#~ msgid "Secondary Sub-menu Item Height" -#~ msgstr "Taille des éléments du sous-menu secondaire " - -#~ msgid "The top and bottom spacing of secondary sub-menu items." -#~ msgstr "Espacement haut/bas des sous-menus secondaires" - -#~ msgid "Secondary Navigation Colors" -#~ msgstr "Couleurs de la barre de navigation secondaire " - -#~ msgid "Secondary Sub-Navigation Colors" -#~ msgstr "Couleurs de la sous-navigation secondaire" - -#~ msgid "Secondary Navigation Typography" -#~ msgstr "Typographie de la seconde barre de navigation " - -#~ msgid "Secondary navigation" -#~ msgstr "Seconde barre de navigation" - -#~ msgid "Secondary Background Images" -#~ msgstr "Intégration d'images dans la seconde barre de navigation" - -#~ msgid "Delete Secondary Navigation Customizer Settings" -#~ msgstr "Supprimer les paramètres de la seconde barre de navigation" - -#~ msgid "Export Secondary Navigation Customizer Settings" -#~ msgstr "Exporter les paramètres de la seconde barre de navigation" - -#~ msgid "Colors Installed" -#~ msgstr "Couleurs est installé" - -#~ msgid "Generate Colors License Key" -#~ msgstr "Générer une clef de licence pour Couleurs" - -#~ msgid "" -#~ "Note: You've chosen content to show as your page header. Remove the " -#~ "content and save to use the image below." -#~ msgstr "" -#~ "Remarque: Vous avez choisi de montrer le contenu de votre en-tête de " -#~ "page. Retirer le contenu et enregistrer ce changement pour les utiliser " -#~ "l'image ci-dessous." - -#~ msgid "Image Crop Position" -#~ msgstr "Position de l'image" - -#~ msgid "Top left" -#~ msgstr "En haut à gauche" - -#~ msgid "Top right" -#~ msgstr "En haut à droite" - -#~ msgid "Bottom left" -#~ msgstr "En bas à gauche" - -#~ msgid "Bottom right" -#~ msgstr "En bas à droite" - -#~ msgid "Use image (from image tab) as a background image?" -#~ msgstr "" -#~ "Utilisez l'image (à partir de l'onglet de l'image) comme image de fond ?" - -#~ msgid "Background type" -#~ msgstr "Type de fond" - -#~ msgid "Add parallax effect?" -#~ msgstr "Ajouter un effet parallax ?" - -#~ msgid "Add to blog excerpt (if no Featured Image is set)" -#~ msgstr "" -#~ "Ajouter un extrait au blog (si aucun photo descriptive n'est active)" - -#~ msgid "Generate Page Header License Key" -#~ msgstr "Générer une clef de licence pour en-tête de page" - -#~ msgid "No image URL has been entered." -#~ msgstr "Aucune URL d'image n'a été saisie" - -#~ msgid "At least one of width or height must be a number." -#~ msgstr "" -#~ "Au moins une information concernant de la largeur ou de la hauteur doit " -#~ "être un nombre." - -#~ msgid "Failed to get $file_path information using \"@getimagesize\"." -#~ msgstr "" -#~ "Impossible d'obtenir $file_path information using \"@getimagesize\"." - -#~ msgid "Resize path invalid (GIF)" -#~ msgstr "Redimensionner chemin non valide (GIF)" - -#~ msgid "Resize path invalid (PNG)." -#~ msgstr "Redimensionner chemin non valide (PNG)." - -#~ msgid "Resize path invalid (JPG)." -#~ msgstr "Redimensionner chemin non valide (JPG)." - -#~ msgid "Failed to get $dest_file_name (resized image) info via @getimagesize" -#~ msgstr "" -#~ "Impossible d'obtenir $dest_file_name (resized image) infos via " -#~ "@getimagesize" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-hr.mo b/wp-content/plugins/gp-premium/langs/gp-premium-hr.mo new file mode 100644 index 00000000..8d93fdcb Binary files /dev/null and b/wp-content/plugins/gp-premium/langs/gp-premium-hr.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-it_IT.mo b/wp-content/plugins/gp-premium/langs/gp-premium-it_IT.mo index 0fae00c4..3f98e6ee 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-it_IT.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-it_IT.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-it_IT.po b/wp-content/plugins/gp-premium/langs/gp-premium-it_IT.po deleted file mode 100644 index 3d4802ed..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-it_IT.po +++ /dev/null @@ -1,3486 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:34-0800\n" -"PO-Revision-Date: 2018-02-27 17:34-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: \n" -"Language: it_IT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/classes/class-site-widget-importer.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-5: sites/libs/wxr-importer/WXRImportInfo.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Immagini di sfondo" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Body" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Testata" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Navigazione principale" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "Navigazione" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Ripeti" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Ripetere x" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Ripetere Y" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Non ripetere" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Voce di Menu" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "Voce di Menu al passaggio del mouse" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "Voce di menu della pagina corrente" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "Sotto-Menu Principale" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "Voce di Sotto-Menu" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "Voce di Sotto-menu al passaggio del mouse" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "Voce di Sotto-menu della pagina corrente" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Contenuto" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "Sidebar" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "Widgets della Barra Laterale" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Piè di Pagina (Footer)" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Widgets nel pié di pagina" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Area Footer" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Navigazione secondaria" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "Sotto-Menu Secondario" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "Blog" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Etichetta Pulsante Leggi Tutto" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "Centro" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "Sinistra" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "Destra" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "Automatico" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Altezza" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Sopra il contenuto" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "Colonne" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Altro" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "Caricamento..." - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Colori" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "Sfondo" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Testo" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Colore dei Link" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Link in modalità :hover" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Titolo del sito" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Slogan (Tagline)" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "Voci del menu principale" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "Colore di sfondo al passaggio del mouse" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "Sfondo dalla pagina corrente" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Testo al passaggio del mouse" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "Testo per la Pagina Corrente" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -#| msgid "Sub-Menu Item Height" -msgid "Sub-Menu Items" -msgstr "Altezza Voci Sotto-Menu" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "Titolo Contenuto" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Titolo del Post del Blog" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Titolo del Post in modalità :hover" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Meta text" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Meta links" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Meta links in modalità :hover" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "Colore dei Titoli H1" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "Colore dei Titoli H2" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "Colore dei Titoli H3" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Titolo del Widget" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "Widgets Footer" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "Moduli" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Sfondo dei moduli (form)" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Bordo dei moduli" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Testo del Modulo" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "Navigazione Slideout" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Copyright" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Disabilita Elementi" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "GP Hook" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Prima della intestazione" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Prima del Contenuto dell'Intestazione" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Dopo il contenuto dell'intestazione" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Dopo l’intestazione" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "All'Interno del Contenitore del Contenuto" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Prima del Contenuto" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Dopo il titolo dell'Articolo (Entry)" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Dopo il Contenuto" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Prima del Contenuto della Barra laterale Destra" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Dopo il contenuto della barra laterale Destra" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Prima del Contenuto della Barra laterale Sinistra" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Dopo il contenuto della barra laterale Sinistra" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Prima del pié di pagina (Footer)" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "Dopo i Widgets del pié di pagina (Footer)" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Prima del Contenuto del pié di pagina (footer)" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Dopo il Contenuto del pié di pagina (Footer)" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Eseguire PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "Disabilita hook" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Utilizza questi campi per espandere e inserire qualsiasi contenuto " -"all'interno di GeneratePress. Puoi utilizzare Shortcodes così come eseguire " -"del codice PHP se spunti l'apposita casella." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Mostra tutto" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "Salva i Hooks" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "Hooks salvati" - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "Avanzato" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -#| msgid "Background" -msgctxt "Module name" -msgid "Backgrounds" -msgstr "Sfondo" - -#: import-export/functions/functions.php:23 library/reset.php:21 -#, fuzzy -#| msgid "Blog" -msgctxt "Module name" -msgid "Blog" -msgstr "Blog" - -#: import-export/functions/functions.php:27 library/reset.php:25 -#, fuzzy -#| msgid "GP Hooks" -msgctxt "Module name" -msgid "Hooks" -msgstr "GP Hook" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "Testata della pagina" - -#: import-export/functions/functions.php:35 library/reset.php:33 -#, fuzzy -#| msgid "Secondary Navigation" -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "Navigazione secondaria" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#, fuzzy -#| msgid "Spacing" -msgctxt "Module name" -msgid "Spacing" -msgstr "Spaziatura" - -#: import-export/functions/functions.php:43 library/reset.php:41 -#, fuzzy -#| msgid "Menu Plus" -msgctxt "Module name" -msgid "Menu Plus" -msgstr "Menu Plus" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "Copyright" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "Importa Impostazioni" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "Carica un file .json valido" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "Carica un file da importare" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" -"C'è una nuova versione disponibile di %1$s, %2$sVedi dettagli %3$s versione " -"%4$s." - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" -"C'è una nuova versione di %1$s disponibile. %2$sVisualizza versione%3$s " -"dettagli%4$s o %5$saggiorna ora%6$s." - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Non hai il permesso di installare gli aggiornamenti dei plugin" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Errore" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Add-on disattivato." - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Add-on attivato." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "Azione di massa" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Attiva" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Disattiva" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "Applica" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "Inserisci chiave di licenza valida per gli aggiornamenti automatici." - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Licenza disattivata." - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Licenza attivata." - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "Aiuto" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "Chiave Licenza" - -#: inc/verify.php:139 -msgid "Update" -msgstr "Aggiorna" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "La licenza è scaduta il %s." - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "La chiave di licenza è stato disattivata." - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "Licenza non valida." - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "La licenza non è attivo per questo URL." - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "Questo sembra essere una chiave di licenza non valida per %s." - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "La chiave di licenza ha raggiunto il limite di attivazione." - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "Si è verificato un errore, riprova tra poco." - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Posizione" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Dimensioni (Auto)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "Larghezza 100% :" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Copertina" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Contiene" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Allegato" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Fisso" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Locale" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Eredita" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "%current_year% per l'aggiornamento automatico anno." - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "%copy% per includere il simbolo di copyright." - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "HTML consentito" - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Puoi utilizzare i Shortcodes" - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "Mobile" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Sopra" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "In Basso" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Famiglia carattere" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "Corpo Carattere " - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "Trasformazione del testo" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "Menu" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "Menu Plus" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "Impostazioni Generali" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "Etichetta del Menu Mobile" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "Menu sticky" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "Solo per dispositivi mobili" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "Solo Desktop" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "Posizione" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "Sfuma" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "Slide" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "Nessuno" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "Logo Navigazione" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "Sticky" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "Sticky + Statico" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "Statico" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "Header Mobile" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "Logo" - -#: menu-plus/functions/generate-menu-plus.php:442 -#, fuzzy -#| msgid "Sidebar" -msgid "Side" -msgstr "Sidebar" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "Chiudi" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Testata della pagina" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "All'interno del contenuto" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "Sotto il titolo dell'articolo" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "Nascondi" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Immagine" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "Video di sfondo" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "Aggiungere a estratto" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" -"Stai utilizzando attualmente la tua Immagine di Anteprima ." - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Immagine della Testata" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "Inserisci immagine" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "Scegli Immagine" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "Rimuovi Immagine" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "Oppure si può impostare l'immagine in evidenza ." - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Disabilita" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Abilita" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Larghezza immagine" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Altezza immagine" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "" -"Utilizzare \"0\" oppure lasciare vuoto per il ridimensionamento " -"proporzionale." - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "HTML e Shortcodes ammessi." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Aggiungi automaticamente paragrafi" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "Aggiunge spaziatura (padding)" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Effetto Parallax" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "Schermo intero" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "Centra contenuti in verticale" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgid "Contained" -msgstr "Contenuta" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "Larghezza piena" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "Allineamento del testo" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Colore dello sfondo" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Colore del testo" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Colore dei links" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "Colore dei link al passaggio del mouse" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "File MP4" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "Video Intestazione" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "Inserisci video" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "Scegli il video" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "File OGV" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "File WEBM" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "Colore Sovrapposizione" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "" -"Sovrascrivere il vostro logo / intestazione a livello di sito in questa " -"pagina." - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "Logo / Header" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "Inserire Logo" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "Scegli Logo" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "Rimuovi Logo" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "Unire con l'intestazione del sito" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "Contenuti posto dietro l'intestazione (cursori, ecc.)" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Menu Secondario" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Allineamento navigazione" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Sotto la testata" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Sopra la testata" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Allinea a destra" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Barra laterale sinistra" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "Barra Laterale Destra" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Disattiva navigazione" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "Utilizzare \"Sezioni\"" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "Sezioni" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "Questa azione non può essere annullata, sei sicuro?" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "Sezione" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "Impostazioni" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "Sfondo della sezione" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "Imposta come sfondo Sezione" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "Inserire nella Sezione" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "Modifica Sezione" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "Fare clic per modificare" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "Fare clic per modificare il contenuto" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "Fare clic per modificare le impostazioni" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "Fare clic e trascinare per ordinare" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "Fare clic per rimuovere" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "Aggiungi Sezione" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "Rimuovere le sezioni" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "Cancella" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "Etichetta Sezione" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "Aggiungi file multimediale" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "Visuale" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Testo [Riferito al Editore di Testo(prima chiamato HTML)]" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "Layout" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Tipo di contenitore" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Tipo di contenitore interno" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Classe CSS" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Spaziatura (padding) Superiore" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Spaziatura (padding) Inferiore" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Immagine di sfondo" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "Carica" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "Rimuovi" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "" -"Javascript deve essere abilitato per usare la Generazione delle Sezioni" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Nessuna sezione aggiunta!" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing options" -msgstr "Importa Impostazioni" - -#: sites/classes/class-site-helper.php:96 -#, fuzzy -#| msgid "Blog Content" -msgid "Downloading content" -msgstr "Contenuto del blog" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "Vai al contenuto" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing site options" -msgstr "Importa Impostazioni" - -#: sites/classes/class-site-helper.php:99 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing widgets" -msgstr "Importa Impostazioni" - -#: sites/classes/class-site-helper.php:100 -msgid "Activating plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -#, fuzzy -#| msgid "Static" -msgid "Automatic" -msgstr "Statico" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "Prossimo" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -#, fuzzy -#| msgid "Image Options" -msgid "Theme Options" -msgstr "Opzioni delle immagini" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "Dopo il Contenuto" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -#, fuzzy -#| msgid "Image Options" -msgid "Backup Options" -msgstr "Opzioni delle immagini" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import Settings" -msgid "Import Options" -msgstr "Importa Impostazioni" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "Prima del Contenuto" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Licenza attivata." - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Spazio di separazione" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "Spaziatura Contenuto" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "Area Spaziatura Widget Footer" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "Spaziatura Footer" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "Spaziatura Header" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "Altezza Voci Sotto-Menu" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "Sidebar" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "Spaziatura Widget" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "Larghezza Sidebar Sinistra" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "Larghezza Sidebar Destra" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "Spaziatura" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Modifica la spaziatura dei vari elementi utilizzando pixels" - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Caratteri" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Dimensione caratteri" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Titolo 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Titolo H2" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Titoli H3" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "Widget" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "Dimensione carattere Contenuto (px)" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "Tom Usborne" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#, fuzzy -#~| msgid "Slideout Navigation" -#~ msgid "Slide-out Navigation" -#~ msgstr "Navigazione Slideout" - -#~ msgid "Slideout Menu" -#~ msgstr "Menu a scomparsa (Slideout)" - -#~ msgid "Both" -#~ msgstr "Entrambi" - -#~ msgid "Mobile Header Logo" -#~ msgstr "Logo Header Mobile" - -#~ msgid "Sticky Mobile Header" -#~ msgstr "Sticky Header Mobile" - -#~ msgid "Warning: This will delete your settings." -#~ msgstr "Attenzione: questo cancellerà le impostazioni." - -#~ msgid "Export Backgrounds Customizer Settings" -#~ msgstr "Esporta le Configurazioni del \"Background Customizer\" " - -#~ msgid "Delete Backgrounds Customizer Settings" -#~ msgstr "Elimina le modifiche apportate al \"Background Customizer\"" - -#~ msgid "Post Image / Page Header" -#~ msgstr "Immagine del Post / Testata della Pagina" - -#~ msgid "Apply image sizes" -#~ msgstr "Applicare le dimensioni delle immagini" - -#~ msgid "Excerpt Length" -#~ msgstr "Lunghezza estratto" - -#~ msgid "Masonry" -#~ msgstr "Masonry" - -#~ msgid "Masonry Block Width" -#~ msgstr "Larghezza del blocco Masonry" - -#~ msgid "Small" -#~ msgstr "Piccolo" - -#~ msgid "Medium" -#~ msgstr "Medio" - -#~ msgid "Large" -#~ msgstr "Grande" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Larghezza Masonry dal più recente" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Testo Masonry Carica Altro" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Testo Caricamento Masonry" - -#~ msgid "Post Image" -#~ msgstr "Immagine Articolo" - -#~ msgid "Show" -#~ msgstr "Mostra" - -#~ msgid "Post Image Position" -#~ msgstr "Posizione dell’immagine post." - -#~ msgid "Post Image Alignment" -#~ msgstr "Allineamento dell'immagine del Post" - -#~ msgid "Post Image Width" -#~ msgstr "Larghezza dell'immagine del Post" - -#~ msgid "Post Image Height" -#~ msgstr "Altezza dell'immagine del Post" - -#~ msgid "Date" -#~ msgstr "Data" - -#~ msgid "Author" -#~ msgstr "Autore" - -#~ msgid "Categories" -#~ msgstr "Categorie" - -#~ msgid "Tags" -#~ msgstr "Tags" - -#~ msgid "Comment Link" -#~ msgstr "Link Aggiungi Commento" - -#~ msgid "Masonry is enabled. These settings will be ignored." -#~ msgstr "Masonry è abilitato. Queste impostazioni saranno ignorate." - -#~ msgid "Column Layout" -#~ msgstr "Layout Colonne" - -#~ msgid "First Post Full Width" -#~ msgstr "Primo Post larghezza completa" - -#~ msgid "Read more..." -#~ msgstr "Letti tutto" - -#~ msgid "Delete Blog Customizer Settings" -#~ msgstr "Elimina le modifiche apportate al \"Blog Customizer\"" - -#~ msgid "Export Blog Customizer Settings" -#~ msgstr "Esporta le Configurazioni del \"Blog Customizer\"" - -#~ msgid "Masonry Post Width" -#~ msgstr "Larghezza Post Masonry" - -#~ msgid "Global setting" -#~ msgstr "Impostazioni globali" - -#~ msgid "Form Background Focus/Hover" -#~ msgstr "Sfondo dei moduli nello stato attivo/hover" - -#~ msgid "Form Text Focus/Hover" -#~ msgstr "Testo dei moduli nello stato attivo/hover" - -#~ msgid "Form Border Focus/Hover" -#~ msgstr "Bordo dei moduli in modalità attiva/hover" - -#~ msgid "Form Button" -#~ msgstr "Pulsanti dei moduli" - -#~ msgid "Form Button Focus/Hover" -#~ msgstr "Pulsanti dei moduli in modalità attiva/hover" - -#~ msgid "Form Button Text" -#~ msgstr "Testo nei pulsanti dei moduli" - -#~ msgid "Form Button Text Focus/Hover" -#~ msgstr "Testo sui pulsanti dei moduli inmodalità attiva/hover" - -#~ msgid "Export GP Hooks" -#~ msgstr "Esporta gli Hooks" - -#~ msgid "Delete GP Hooks" -#~ msgstr "Elimina GP Hooks" - -#~ msgid "Updates %s" -#~ msgstr "Aggiornamenti %s" - -#~ msgid "Import / Export" -#~ msgstr "Importa/Esporta" - -#~ msgid "" -#~ "Export your settings set in the Customizer." -#~ msgstr "" -#~ "Esportare le modifiche impostate nel Customizer." - -#~ msgid "Export Default Customizer Settings" -#~ msgstr "Esportare le impostazioni di Default" - -#~ msgid "" -#~ "Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Importa le tue impostazioni caricando il file JSON " -#~ "esportato" - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "La spaziatura tra gli elementi quando l'opzione \"Contenitori Separati\" " -#~ "è selezionata." - -#~ msgid "Delete Spacing Customizer Settings" -#~ msgstr "Eliminare le impostazioni dello \"Spacing Customizer\"" - -#~ msgid "Export Spacing Customizer Settings" -#~ msgstr "Esportare le impostazioni dello \"Spacing Customizer\"" - -#, fuzzy -#~ msgid "Left/Right Spacing" -#~ msgstr "" -#~ "#-#-#-#-# generate-spacing-it_IT.po (Generate Spacing) #-#-#-#-#\n" -#~ "Spaziatura Destra/Sinistra\n" -#~ "#-#-#-#-# secondary-nav-it_IT.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Spaziatura di sinistra/destra" - -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "La spaziatura superiore e inferiore delle voci di sotto-menu." - -#~ msgid "15%" -#~ msgstr "15%" - -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgid "25%" -#~ msgstr "25%" - -#~ msgid "30%" -#~ msgstr "30%" - -#~ msgid "35%" -#~ msgstr "35%" - -#~ msgid "40%" -#~ msgstr "40%" - -#~ msgid "45%" -#~ msgstr "45%" - -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgid "Default fonts" -#~ msgstr "Carattere standard" - -#~ msgid "Google fonts" -#~ msgstr "Google Font" - -#~ msgid "Site title" -#~ msgstr "Titolo del sito" - -#, fuzzy -#~ msgid "Site tagline" -#~ msgstr "" -#~ "#-#-#-#-# generate-typography-it_IT.po (Generate Typography) #-#-#-#-#\n" -#~ "Slogan del sito\n" -#~ "#-#-#-#-# page-header-it_IT.po (Generate Page Header) #-#-#-#-#\n" -#~ "Slogan (Tagline)" - -#~ msgid "Site navigation" -#~ msgstr "Navigazione del sito" - -#~ msgid "Font-size" -#~ msgstr "Dimensione caratteri" - -#~ msgid "Widget titles" -#~ msgstr "Titoli dei widget" - -#~ msgid "Footer font size" -#~ msgstr "Dimensione carattere piè di pagina (footer)" - -#~ msgid "Site title font size" -#~ msgstr "Dimensione carattere del titolo" - -#~ msgid "H1 font size" -#~ msgstr "Dimensione font H1" - -#~ msgid "H2 font size" -#~ msgstr "Dimensione font H2" - -#~ msgid "Sticky Menu" -#~ msgstr "Menù Fisso (Sticky)" - -#~ msgid "Sticky Navigation Effect" -#~ msgstr "Effetto di navigazione Sticky" - -#~ msgid "Navigation Logo Position" -#~ msgstr "Posizione Logo Navigazione " - -#~ msgid "Delete Menu Plus Customizer Settings" -#~ msgstr "Elimina le impostazioni del Menù Plus Customizer" - -#~ msgid "Export Menu Plus Customizer Settings" -#~ msgstr "Esporta le impostazioni del Menu Plus Customizer" - -#~ msgid "Blog Page Header" -#~ msgstr "Testata del Blog" - -#~ msgid "Upload an image to be used as your page header." -#~ msgstr "Caricare un'immagine da utilizzare nella Testata" - -#~ msgid "Image link" -#~ msgstr "Link immagine" - -#~ msgid "Make your page header image clickable by adding a URL. (optional)" -#~ msgstr "Rendi l'immagine clickabile aggiungendo una URL. (opzionale)" - -#~ msgid "Resize image" -#~ msgstr "Ridimensiona immagine" - -#~ msgid "Turn hard cropping or of off." -#~ msgstr "Attivare o Disattivare il ritaglio forzato" - -#~ msgid "Image width" -#~ msgstr "Larghezza immagine" - -#~ msgid "Choose your image width in pixels. (integer only, default is 1200)" -#~ msgstr "" -#~ "Scegli la larghezza dell'immagine in pixel. (solo numeri interi, valore " -#~ "predefinito: 1200)" - -#~ msgid "Image height" -#~ msgstr "Altezza immagine" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank for " -#~ "proportional resizing. (integer only, default is 0) " -#~ msgstr "" -#~ "Scegli l' altezza dell'immagine in pixel. Utilizzare \"0\" oppure " -#~ "lasciare vuoto per il ridimensionamento proporzionale. (solo numeri " -#~ "interi, valore predefinito: 0)" - -#~ msgid "Video Background URL (MP4 only)" -#~ msgstr "Video URL Sfondo (solo MP4)" - -#~ msgid "Video Background URL (OGV only)" -#~ msgstr "Video URL Sfondo (solo OGV)" - -#~ msgid "Video Background URL (WEBM only)" -#~ msgstr "Video URL Sfondo (solo WEBM)" - -#~ msgid "Page Header Content" -#~ msgstr "Contenuto Intestazione" - -#~ msgid "Add your content to the page header. HTML and shortcodes allowed." -#~ msgstr "Aggiungi contenuto alla testata della pagina" - -#~ msgid "Add Paragraphs" -#~ msgstr "Aggiungere paragrafi" - -#~ msgid "Wrap your text in paragraph tags automatically." -#~ msgstr "Ritorno a capo automatico" - -#~ msgid "Add padding around your content." -#~ msgstr "Aggiungere spaziatura interna (padding) intorno ai tuoi contenuti." - -#~ msgid "Image Background" -#~ msgstr "Immagine di Sfondo" - -#~ msgid "" -#~ "Use the image uploaded above as a background image for your content. " -#~ "(requires image uploaded above)" -#~ msgstr "" -#~ "Utilizza l'immagine caricata come sfondo del contenuto (devi prima " -#~ "caricare una immagine)" - -#~ msgid "Parallax Background" -#~ msgstr "Effetto paralax nello sfondo" - -#~ msgid "" -#~ "Add a cool parallax effect to your background image. (requires the image " -#~ "background option to be checked)" -#~ msgstr "" -#~ "Aggiunge un accattivante effetto Parallax all'immagine di sfondo (ricorda " -#~ "di spuntare la cassella \"immagine di sfondo\")" - -#~ msgid "Full Screen" -#~ msgstr "Larghezza piena" - -#~ msgid "Make your page header content area full screen." -#~ msgstr "Rende l'area della testata a \"Larghezza Piena\"" - -#~ msgid "Vertical Center" -#~ msgstr "Allinea verticalmente al centro" - -#~ msgid "Center your page header content vertically." -#~ msgstr "Centra verticalmente il contenuto della testata" - -#~ msgid "Container Type" -#~ msgstr "Tipo di contenitore" - -#~ msgid "Choose whether the page header is contained or fluid." -#~ msgstr "" -#~ "Scegli se vuoi che il contenitore della testata sia a larghezza intera " -#~ "oppure a larghezza contenuta" - -#~ msgid "Full width" -#~ msgstr "Larghezza piena" - -#~ msgid "Choose the horizontal alignment of your content." -#~ msgstr "Scegliere l'allineamento horizontale del contenuto" - -#~ msgid "Top/Bottom Padding" -#~ msgstr "Spaziatura (padding) Superiore/Inferiore " - -#~ msgid "This will add space above and below your content. (integer only) " -#~ msgstr "" -#~ "Questo aggiungerà spazio sopra e sotto il vostro contenuto. (Solo numeri " -#~ "interi)" - -#~ msgid "Padding Unit" -#~ msgstr "Unità Spaziatura" - -#~ msgid "Page Header Advanced" -#~ msgstr "Contenuto Intestazione Avanzato" - -#~ msgid "Transparent navigation" -#~ msgstr "Navigazione trasparente" - -#~ msgid "Navigation text" -#~ msgstr "Testo navigazione" - -#~ msgid "Navigation background hover" -#~ msgstr "Sfondo navigazione hover" - -#~ msgid "Navigation text hover" -#~ msgstr "Testo navigazione hover" - -#~ msgid "Navigation background current" -#~ msgstr "Sfondo navigazione corrente" - -#~ msgid "Navigation text current" -#~ msgstr "Testo navigazione corrente" - -#~ msgid "Page Header Logo" -#~ msgstr "Logo testata" - -#~ msgid "Replace your logo on the blog." -#~ msgstr "Sostituire il vostro logo sul blog." - -#~ msgid "Page Header Position" -#~ msgstr "Posizione dell'intestazione " - -#~ msgid "Single Post Header Position" -#~ msgstr "Posizione della Testata (header) per i singoli articoli (posts)" - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "Elimina le modifiche apportate al \"Page Header Customizer\"" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "Esporta le modifiche apportate al \"Page Header Customizer\"" - -#~ msgid "Add padding" -#~ msgstr "Aggiunge spaziatura (padding)" - -#~ msgid "Add background image" -#~ msgstr "Aggiungi una immagine di sfondo" - -#~ msgid "Parallax effect" -#~ msgstr "Effetto Parallax" - -#~ msgid "Container type" -#~ msgstr "Tipo di contenitore" - -#~ msgid "Text alignment" -#~ msgstr "Allineamento del Eesto" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Spaziatura (padding) Superiore/Inferiore" - -#~ msgid "Background color" -#~ msgstr "Colore dello sfondo" - -#~ msgid "Text color" -#~ msgstr "Colore del testo" - -#~ msgid "Link color" -#~ msgstr "Colore link" - -#~ msgid "Link color hover" -#~ msgstr "Colore dei link al passaggio del mouse" - -#~ msgid "Overlay color" -#~ msgstr "Colore Sovrapposizione" - -#~ msgid "Secondary Menu Items" -#~ msgstr "Voci di Menu secondario" - -#~ msgid "Secondary navigation" -#~ msgstr "Navigazione secondaria" - -#~ msgid "Navigation Layout" -#~ msgstr "Layout di navigazione" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Intera larghezza / Full Width" - -#~ msgid "Navigation Position" -#~ msgstr "Posizione della barra di navigazione secondaria" - -#~ msgid "Delete Secondary Navigation Customizer Settings" -#~ msgstr "Eliminare le impostazioni del \"Secondary Navigation Customizer\"" - -#~ msgid "Export Secondary Navigation Customizer Settings" -#~ msgstr "Esportare le impostazioni del \"Secondary Navigation Customizer\"" - -#~ msgid "Select Image" -#~ msgstr "Seleziona Immagine" - -#~ msgid "Use Image" -#~ msgstr "Utilizza immagine" - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "C'è una nuova versione disponibile di %1$s . Vedi i dettagli della versione %3$s ." - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "C’è una nuova versione di %1$s disponibile. Vedi i dettagli della versione %3$s o aggiorna ora." - -#~ msgid "" -#~ "Want updates served directly to your Dashboard? Activate the email you " -#~ "purchased your add-ons with here." -#~ msgstr "" -#~ "Vuoi aggiornamenti serviti direttamente sulla tua Dashboard? Inserisci e " -#~ "attiva l'e-mail con la quale sono stati acquistati i componenti " -#~ "aggiuntivi." - -#~ msgid "License failed." -#~ msgstr "Licenza non riuscita." - -#~ msgid "Headline / Post Title" -#~ msgstr "Titolo del Post" - -#~ msgid "Email" -#~ msgstr "E-mail" - -#~ msgid "Deactivate Email" -#~ msgstr "Disattivare Email" - -#~ msgid "Activate Email" -#~ msgstr "Attiva-mail" - -#~ msgid "Save Email" -#~ msgstr "Salva E-mail" - -#~ msgid "Enable All Updates" -#~ msgstr "Abilita tutti gli aggiornamenti" - -#~ msgid "Disable Updates" -#~ msgstr "Disattiva Aggiornamenti" - -#~ msgid "Enable Updates" -#~ msgstr "Abilita Aggiornamenti" - -#~ msgid "Email activation failed. This email does not exist in our records." -#~ msgstr "" -#~ "Attivazione E-mail fallita. Questa email non esiste nei nostri archivi." - -#, fuzzy -#~ msgid "Email activated." -#~ msgstr "" -#~ "#-#-#-#-# disable-elements-it_IT.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Email attivata.\n" -#~ "#-#-#-#-# generate-blog-it_IT.po (Generate Blog) #-#-#-#-#\n" -#~ "Email attivato.\n" -#~ "#-#-#-#-# generate-colors-it_IT.po (Generate Colors) #-#-#-#-#\n" -#~ "Email attivatq.\n" -#~ "#-#-#-#-# generate-copyright-it_IT.po (Generate Copyright) #-#-#-#-#\n" -#~ "Email attivata.\n" -#~ "#-#-#-#-# generate-ie-it_IT.po (Generate Import Export) #-#-#-#-#\n" -#~ "Email attivata." - -#, fuzzy -#~ msgid "Email deactivated." -#~ msgstr "" -#~ "#-#-#-#-# disable-elements-it_IT.po (Generate Disable Elements) #-#-#-#-" -#~ "#\n" -#~ "Email disattivata.\n" -#~ "#-#-#-#-# generate-blog-it_IT.po (Generate Blog) #-#-#-#-#\n" -#~ "Email disattivato.\n" -#~ "#-#-#-#-# generate-colors-it_IT.po (Generate Colors) #-#-#-#-#\n" -#~ "Email disattivata.\n" -#~ "#-#-#-#-# generate-copyright-it_IT.po (Generate Copyright) #-#-#-#-#\n" -#~ "Email disattivata.\n" -#~ "#-#-#-#-# generate-ie-it_IT.po (Generate Import Export) #-#-#-#-#\n" -#~ "Email disattivata." - -#~ msgid "Licenses activated." -#~ msgstr "Licenze attivate." - -#~ msgid "Deactivation failed." -#~ msgstr "Disattivazione non riuscita." - -#~ msgid "Header Colors" -#~ msgstr "Colori della testata" - -#~ msgid "Navigation Colors" -#~ msgstr "Colore Menu" - -#~ msgid "Sub-Navigation Colors" -#~ msgstr "Colore Sotto-Menu" - -#~ msgid "Content Colors" -#~ msgstr "Colori del Contenuto" - -#~ msgid "Sidebar Widget Colors" -#~ msgstr "Colore dei Widgets della Barra laterale" - -#~ msgid "Footer Widget Colors" -#~ msgstr "Colore dei Widgets del piè di pagina (Footer Widgets)" - -#~ msgid "Footer Colors" -#~ msgstr "Colore del piè di pagina (Footer)" - -#~ msgid "Form Colors" -#~ msgstr "Colore dei Moduli (Form)" - -#~ msgid "" -#~ "Use %current_year% to include the current year dynamically." -#~ msgstr "" -#~ "Utilizza %current_year% per includere dinamicamente l'anno " -#~ "corrente." - -#~ msgid "Use %copy% to include the copyright symbol." -#~ msgstr "Utilizza %copy% per includere il simbolo di copyright." - -#~ msgid "Save Copyright" -#~ msgstr "Salvare il Copyright" - -#~ msgid "Error: Content already detected in default editor." -#~ msgstr "Errore: C'è del contenuto nell'editor di wordpress" - -#~ msgid "" -#~ "Please activate the \"Visual\" tab in your main editor before " -#~ "transferring content." -#~ msgstr "" -#~ "Attivare il tab \"Visuale\" nel tuo editor principale prima di trasferire " -#~ "il contenuto" - -#~ msgid "Click to toggle" -#~ msgstr "Clicca per attivare" - -#~ msgid "Fluid" -#~ msgstr "Fluida " - -#~ msgid "No" -#~ msgstr "No" - -#~ msgid "Yes" -#~ msgstr "Si" - -#~ msgid "Send sections to default editor" -#~ msgstr "Inviare sezione al editor di wordpress" - -#~ msgid "Element Spacing" -#~ msgstr "Spaziatura degli elementi" - -#~ msgid "These options control the size of your menu items." -#~ msgstr "Questo controlla la dimensione delle vici di menu" - -#~ msgid "Sub-menu Item Height" -#~ msgstr "Altezza dell'elemento sotto-menu" - -#~ msgid "Sidebar Widths" -#~ msgstr "Larghezze di Sidebar" - -#~ msgid "Body Typography" -#~ msgstr "Carattere del Body" - -#~ msgid "Header Typography" -#~ msgstr "Caratteri della testata" - -#~ msgid "Navigation Typography" -#~ msgstr "Carattere della navigazione" - -#~ msgid "Content Typography" -#~ msgstr "Carattere del contenuto" - -#~ msgid "Widget Typography" -#~ msgstr "Carattere dei widget" - -#~ msgid "Footer Typography" -#~ msgstr "Carattere del piè di pagina (footer)" - -#~ msgid "Sticky Menu Effect" -#~ msgstr "Effetto di Menu Fisso (Sticky)" - -#~ msgid "Menu Logo" -#~ msgstr "Logo del Menù" - -#~ msgid "Menu Logo Position" -#~ msgstr "Posizione del Logo sul Menù" - -#~ msgid "Sticky Only" -#~ msgstr "Solo nel Menù Fisso (Sticky)" - -#~ msgid "Sticky + Regular" -#~ msgstr "Fisso e Standard" - -#~ msgid "Regular Only" -#~ msgstr "Solo Standard" - -#~ msgid "Generate Menu Plus" -#~ msgstr "Generare Menu Plus" - -#~ msgid "http://generatepress.com" -#~ msgstr "http://generatepress.com" - -#~ msgid "Add awesome new menu features to your GeneratePress menu" -#~ msgstr "Aggiungi nuove funzionalità al menù di GeneratePress" - -#~ msgid "http://edge22.com" -#~ msgstr "http://edge22.com" - -#~ msgid "Page Header Link" -#~ msgstr "Link dell'imagine della testata" - -#~ msgid "Hard Crop" -#~ msgstr "Ritaglio forzato" - -#~ msgid "" -#~ "Choose your content padding in pixels. This will add space above and " -#~ "below your content. (integer only) " -#~ msgstr "" -#~ "Selezionare la spaziatura del contenuto in pixels. Questo aggiungerà " -#~ "dello spazio prima e dopo il tuo contenuto" - -#~ msgid "Add Image" -#~ msgstr "Aggiungi Immagine" - -#~ msgid "Add a page header to your blog." -#~ msgstr "Aggiungi una Testata al tuo Blog" - -#~ msgid "" -#~ "This will only show up on the page you have set as your \"Posts Page\". " -#~ "To add a page header to specific pages, use the metabox included while " -#~ "adding your content." -#~ msgstr "" -#~ "Questo verrà visualizzato solo nella pagina che è stata impostata come " -#~ "\"Ultimi Articoli\". Per aggiungere uan testata personalizzata per altre " -#~ "pagine, utilizzare l'apposito metabox." - -#~ msgid "Publish" -#~ msgstr "Pubblica" - -#~ msgid "Save Settings" -#~ msgstr "Salva impostazioni" - -#~ msgid "" -#~ "Use these options to add a page header to your Blog. Add page headers to " -#~ "your pages by using the metabox while editing them." -#~ msgstr "" -#~ "Utilizzare queste opzioni per aggiungere una testata personalizzata al " -#~ "tuo Blog. Per la testata delle singole pagine utilizzare l'apporito " -#~ "metabox nella pagina delle modifiche." - -#~ msgid "Upload an image to use in your page header" -#~ msgstr "Caricare un'immagine da utilizzare nell'intestazione pagina" - -#~ msgid "Content Options" -#~ msgstr "Opzioni contenuto" - -#~ msgid "Add content to your page header" -#~ msgstr "Aggiungi contenuto alla testata della pagina" - -#~ msgid "Link Hover Color" -#~ msgstr "Colore dei links in modalità :hover" - -#~ msgid "Metabox configuration is required to have an ID parameter" -#~ msgstr "La configurazione del metabox è richiesta per avere un parametro ID" - -#~ msgid "Please Try Again" -#~ msgstr "Ti preghiamo di riprovare." - -#~ msgid "Remove Embed" -#~ msgstr "Rimozione elementi incorporati (embeds)" - -#~ msgid "No oEmbed Results Found for %s. View more info at" -#~ msgstr "Nessun oEmbed trovato per %s. Maggiori informazioni a" - -#~ msgid "Add Group" -#~ msgstr "Aggiungi gruppo" - -#~ msgid "Remove Group" -#~ msgstr "Rimuovi Gruppo" - -#~ msgid "Add Row" -#~ msgstr "Aggiunge riga" - -#~ msgid "No terms" -#~ msgstr "Nessun termine" - -#~ msgid "Add or Upload Files" -#~ msgstr "Aggiungi o carica files" - -#~ msgid "Add or Upload File" -#~ msgstr "Aggiungi o carica file" - -#~ msgid "File:" -#~ msgstr "File:" - -#~ msgid "Download" -#~ msgstr "Scarica" - -#~ msgid "Clear" -#~ msgstr "Cancella" - -#~ msgid "Default" -#~ msgstr "Predefinito" - -#~ msgid "Select Color" -#~ msgstr "Seleziona Colore" - -#~ msgid "Current Color" -#~ msgstr "Colore Corrente" - -#~ msgid "mm/dd/yy" -#~ msgstr "gg/mm/aa" - -#~ msgid "Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday" -#~ msgstr "Domenica, Lunedì, Martedì, Mercoledì, Giovedì, Venerdì, Sabato" - -#~ msgid "Su, Mo, Tu, We, Th, Fr, Sa" -#~ msgstr "Do, Lu, Ma, Me, Gi, Ve, Sa" - -#~ msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat" -#~ msgstr "Dom, Lun, Mar, Mer, Gio, Ven, Sab" - -#~ msgid "" -#~ "January, February, March, April, May, June, July, August, September, " -#~ "October, November, December" -#~ msgstr "" -#~ "Gennaio, Febbraio, Marzo, Aprile, Maggio, Giugno, Luglio, Agosto, " -#~ "Settembre, Ottobre, Novembre, Dicembre" - -#~ msgid "Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec" -#~ msgstr "Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic" - -#~ msgid "Prev" -#~ msgstr "Precedente" - -#~ msgid "Today" -#~ msgstr "Oggi" - -#~ msgid "Done" -#~ msgstr "Fatto" - -#~ msgid "Choose Time" -#~ msgstr "Scegli Orario" - -#~ msgid "Time" -#~ msgstr "Orario" - -#~ msgid "Hour" -#~ msgstr "Ore" - -#~ msgid "Minute" -#~ msgstr "Minuti" - -#~ msgid "Second" -#~ msgstr "Secondi" - -#~ msgid "Now" -#~ msgstr "Adesso" - -#~ msgid "hh:mm TT" -#~ msgstr "hh: mm TT" - -#~ msgid "Use this file" -#~ msgstr "Utilizza questo file" - -#~ msgid "Select / Deselect All" -#~ msgstr "Seleziona / De-seleziona tutto" - -#~ msgid "Save" -#~ msgstr "Salva" - -#~ msgid "Use image (from image tab) as a background image?" -#~ msgstr "Utilizzare l'immagine (" - -#~ msgid "Add parallax effect to background image?" -#~ msgstr "Vuoi aggiungere un effessto \"Parallax\" all'immagine di sfondo?" - -#~ msgid "Make background image full screen?" -#~ msgstr "Immagine di sfondo a schermo intero?" - -#~ msgid "Center your content vertically?" -#~ msgstr "Vuoi centrare il tuo contenuto verticalmente?" - -#~ msgid "Add to blog excerpt (if no Featured Image is set)" -#~ msgstr "" -#~ "Aggiungere al l'estratto del blog (se non è impostata nessuna immagine in " -#~ "evidenza)" - -#~ msgid "Mobile Label" -#~ msgstr "Etichetta del Menu Mobile" - -#~ msgid "Secondary Navigation Spacing" -#~ msgstr "Spaziatura della navigazione secondaria" - -#~ msgid "These options control the size of your secondary menu items." -#~ msgstr "Queste opzioni regolano la dimensione delle voci di menu secondario" - -#~ msgid "Secondary Sub-menu Item Height" -#~ msgstr "Altezza delle voce di sotto-menu" - -#~ msgid "The top and bottom spacing of secondary sub-menu items." -#~ msgstr "La spaziatura superiore e inferiore delle voci di sotto-menu" - -#~ msgid "Secondary Navigation Colors" -#~ msgstr "Colori del mMenu secondario" - -#~ msgid "Secondary Sub-Navigation Colors" -#~ msgstr "Colori del Menu secondario" - -#~ msgid "Secondary Navigation Typography" -#~ msgstr "Carattere della navigazione secondaria" - -#~ msgid "Secondary Background Images" -#~ msgstr "Immagini di sfondo secondarie" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-nl_NL.mo b/wp-content/plugins/gp-premium/langs/gp-premium-nl_NL.mo new file mode 100644 index 00000000..e031ce1c Binary files /dev/null and b/wp-content/plugins/gp-premium/langs/gp-premium-nl_NL.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-pl_PL.mo b/wp-content/plugins/gp-premium/langs/gp-premium-pl_PL.mo index 55e1f327..cbbd5f9a 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-pl_PL.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-pl_PL.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-pl_PL.po b/wp-content/plugins/gp-premium/langs/gp-premium-pl_PL.po deleted file mode 100644 index 5702ba78..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-pl_PL.po +++ /dev/null @@ -1,3285 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:35-0800\n" -"PO-Revision-Date: 2018-02-27 17:35-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: Krzysztof Grochocki \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImportInfo.php\n" -"X-Poedit-SearchPathExcluded-5: sites/classes/class-site-widget-importer.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Obrazy w tle" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Treść" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Nagłówek" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Podstawowa nawigacja" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "Nawigacja" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Powtórz" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Powtórz x" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Powtórz y" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Nie powtarzaj" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Element nawigacji" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "Element nawigacji po najechaniu" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "Bieżący element nawigacji" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "Element podmenu" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "Element podmenu po najechaniu" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "Bieżący element podmenu" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Zawartość" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "Widgety paska bocznego" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Stopka" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Obszar widgetów stopki" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Obszar stopki" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Druga nawigacja" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "Blog" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Etykieta czytaj dalej" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "Do środka" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -#, fuzzy -msgid "Left" -msgstr "" -"#-#-#-#-# generate-blog-pl_PL.po (Generate Blog) #-#-#-#-#\n" -"Do lewej\n" -"#-#-#-#-# generate-spacing-pl_PL.po (Generate Spacing) #-#-#-#-#\n" -"Lewo\n" -"#-#-#-#-# page-header-pl_PL.po (Generate Page Header) #-#-#-#-#\n" -"Do lewej\n" -"#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Do lewej" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -#, fuzzy -msgid "Right" -msgstr "" -"#-#-#-#-# generate-blog-pl_PL.po (Generate Blog) #-#-#-#-#\n" -"Do prawej\n" -"#-#-#-#-# generate-spacing-pl_PL.po (Generate Spacing) #-#-#-#-#\n" -"Prawo\n" -"#-#-#-#-# page-header-pl_PL.po (Generate Page Header) #-#-#-#-#\n" -"Do prawej\n" -"#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Do prawej" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "Automatycznie" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Wysokość" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Ponad obszarem zawartości" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "Kolumny" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ więcej" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "Wczytywanie…" - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Kolory" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "Tło" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Tekst" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Odnośnik" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Odnośnik po najechaniu" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Tytuł witryny" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Opis witryny" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "Elementy podstawowego menu" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "Tło po najechaniu" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -#, fuzzy -msgid "Background Current" -msgstr "" -"#-#-#-#-# generate-colors-pl_PL.po (Generate Colors) #-#-#-#-#\n" -"Tło bieżacego wyboru\n" -"#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Bieżące tło" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Tekst po najechaniu" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -#, fuzzy -msgid "Text Current" -msgstr "" -"#-#-#-#-# generate-colors-pl_PL.po (Generate Colors) #-#-#-#-#\n" -"Tekst bieżącego wyboru\n" -"#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Bieżący tekst" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -#| msgid "Sub-menu Item Height" -msgid "Sub-Menu Items" -msgstr "Wysokość elementów podmenu" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "Tytuł zawartości" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Tytuł wpisu na blogu" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Tytuł wpisu po najechaniu" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Kolor tekstów meta" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Kolor odnośników meta" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Kolor odnośników meta po najechaniu" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "Kolor nagłówka 1 (H1)" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "Kolor nagłówka 2 (H2)" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "Kolor nagłówka 3 (H3)" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Nazwa widgeta" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Tło formularza" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Krawędź formularza" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Tekst formularza" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Prawa autorskie" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Wyłączone elementy" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "Haki GP" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Przed nagłówkiem" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Przed zawartością nagłówka" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Po zawartości nagłówka" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Po nagłówku" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "Wewnątrz kontenera treści" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Przed zawartością" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Po tytule" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Po treści" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Przed zawartością prawego paska bocznego" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Po zawartości prawego paska bocznego" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Przed zawartością lewego paska bocznego" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Po zawartości lewego paska bocznego" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Przed stopką" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "Po widgetach stopki" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Przed zawartością stopki" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Po zawartości stopki" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Wykonaj PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "Wyłącz hak" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Użyj tych pól do wprowadzenia dowolnej zawartości w całym GeneratePress. " -"Kody skrótowe są dozwolone, możesz nawet wykorzystać PHP jeśli zaznaczysz " -"\"wykonaj PHP\"." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Pokaż wszystkie" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "Zapisz haki" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "Haki zostały zapisane." - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -#| msgid "Background" -msgctxt "Module name" -msgid "Backgrounds" -msgstr "Tło" - -#: import-export/functions/functions.php:23 library/reset.php:21 -#, fuzzy -#| msgid "Blog" -msgctxt "Module name" -msgid "Blog" -msgstr "Blog" - -#: import-export/functions/functions.php:27 library/reset.php:25 -#, fuzzy -#| msgid "GP Hooks" -msgctxt "Module name" -msgid "Hooks" -msgstr "Haki GP" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "Nagłówek strony" - -#: import-export/functions/functions.php:35 library/reset.php:33 -#, fuzzy -#| msgid "Secondary Navigation" -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "Druga nawigacja" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#, fuzzy -#| msgid "Element Spacing" -msgctxt "Module name" -msgid "Spacing" -msgstr "Odstępy między elementami" - -#: import-export/functions/functions.php:43 library/reset.php:41 -#, fuzzy -#| msgid "Menu Plus" -msgctxt "Module name" -msgid "Menu Plus" -msgstr "Menu Plus" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "Prawa autorskie" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "Ustawienia importu" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "Wgraj prawidłowy plik .json" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "Wgraj plik do zaimportowania" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Nie masz uprawnień do instalacji aktualizacji wtyczki." - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Błąd" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Dodatek nieaktywny." - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Dodatek aktywny." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "Masowe działania" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Aktywuj" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Deaktywuj" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "Zastosuj" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "" - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Licencja zdeaktywowana." - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Licencja aktywowana." - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "Pomoc" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "Klucz licencyjny" - -#: inc/verify.php:139 -msgid "Update" -msgstr "Aktualizacja" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "" - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "" - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "" - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "" - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "" - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "" - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Pozycja" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Rozmiar (auto)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% szerokości" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Wypełnij" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Dopasuj" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Załącznik" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Stała" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "W miejscu" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Odziedzicz" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "HTML jest dozwolony." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Kody skrótowe są dozwolone." - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Góra" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Dół" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Rodzina czcionki" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "Waga czcionki" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "Przekształcenie tekstu" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "Menu" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "Menu Plus" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "Ustawienia ogólne" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "Etykieta menu mobilnego" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "Tylko mobilne" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "Tylko desktop" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "Pozycja" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "Zanikanie" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "Przesunięcie" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "Brak" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "Nagłówek mobilny" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "Logo" - -#: menu-plus/functions/generate-menu-plus.php:442 -msgid "Side" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Nagłówek strony" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "Wewnątrz obszaru zawartości" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "Poniżej tytułu wpisu" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "Ukryj" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Obrazek" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Obraz w nagłówku strony" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "Wstaw obrazek" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "" - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Wyłącz" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Włącz" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Szerokość obrazka" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Wysokość obrazka" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "Użyj \"0\" lub zostaw puste dla zachowania proporcji." - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "Dozwolony HTML i kody skrótowe" - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Automatycznie dodawaj paragrafy" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "Dodaj odstępy od krawędzi" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Efekt paralaksy" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "Pełny ekran" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "Wypośrodkuj zawartość pionowo" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -#, fuzzy -msgid "Contained" -msgstr "" -"#-#-#-#-# generate-sections-pl_PL.po (Generate Sections) #-#-#-#-#\n" -"W pojemniku\n" -"#-#-#-#-# page-header-pl_PL.po (Generate Page Header) #-#-#-#-#\n" -"W obrębie pojemnika\n" -"#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"W pojemniku" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "Wyrównanie tekstu" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Kolor tła" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Kolor tekstu" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Kolor odnośnika" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "Kolor odnośnika po najechaniu" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "Wideo w nagłówku strony" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "Wstaw wideo" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "Kolor przesłaniający" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "" - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "Nagłówek / logo" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "Scal z nagłówkiem strony" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Drugie menu" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Wyrównanie nawigacji" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -#, fuzzy -msgid "Below Header" -msgstr "" -"#-#-#-#-# generate-blog-pl_PL.po (Generate Blog) #-#-#-#-#\n" -"Pod nagłówkiem\n" -"#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Poniżej nagłówka" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Ponad nagłówkiem" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Wyrównane do prawej" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Lewy pasek boczny" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "Prawy pasek boczny" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Bez nawigacji" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "Używaj sekcji" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "Sekcje" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "Sekcja" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "Kliknij i przeciągnij aby posortować" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "Kliknij aby usunąć" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "Dodaj sekcję" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "Usuń sekcje" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "Wizualny" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekstowy" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Typ opakowania" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Rodzaj opakowania wewnętrznego" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Własne klasy" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Odstęp od góry" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Odstęp na dole" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Obrazek tła" - -#: sections/functions/metaboxes/views/sections-template.php:242 -#, fuzzy -msgid "Upload" -msgstr "" -"#-#-#-#-# backgrounds-pl_PL.po (Generate Backgrounds) #-#-#-#-#\n" -"Wyślij\n" -"#-#-#-#-# generate-sections-pl_PL.po (Generate Sections) #-#-#-#-#\n" -"Wczytaj" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "Usuń" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Nie dodano sekcji!" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing options" -msgstr "Ustawienia importu" - -#: sites/classes/class-site-helper.php:96 -#, fuzzy -#| msgid "Blog Content" -msgid "Downloading content" -msgstr "Zawartość bloga" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "Skocz do treści" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing site options" -msgstr "Ustawienia importu" - -#: sites/classes/class-site-helper.php:99 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing widgets" -msgstr "Ustawienia importu" - -#: sites/classes/class-site-helper.php:100 -msgid "Activating plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -#, fuzzy -#| msgid "Auto" -msgid "Automatic" -msgstr "Automatycznie" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -#, fuzzy -#| msgid "Remove Sections" -msgid "Theme Options" -msgstr "Usuń sekcje" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "Po treści" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -#, fuzzy -#| msgid "Bulk Actions" -msgid "Backup Options" -msgstr "Masowe działania" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import Settings" -msgid "Import Options" -msgstr "Ustawienia importu" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "Przed zawartością" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Licencja aktywowana." - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Przestrzeń rozdzielająca" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Zmień odstępy dla różnych elementów używając pikseli." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Typografia" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Rozmiar czcionki" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Nagłówek 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Nagłówek 2 (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Nagłówek 3 (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "Rozmiar czcionki zawartości" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#, fuzzy -#~| msgid "Site navigation" -#~ msgid "Slide-out Navigation" -#~ msgstr "Nawigacja strony" - -#~ msgid "Slideout Menu" -#~ msgstr "Boczne menu" - -#~ msgid "Both" -#~ msgstr "Oba" - -#, fuzzy -#~ msgid "Warning: This will delete your settings." -#~ msgstr "" -#~ "#-#-#-#-# backgrounds-pl_PL.po (Generate Backgrounds) #-#-#-#-#\n" -#~ "Uwaga: konfiguracja zostanie usunięta.\n" -#~ "#-#-#-#-# generate-blog-pl_PL.po (Generate Blog) #-#-#-#-#\n" -#~ "Uwaga: konfiguracja zostanie usunięta.\n" -#~ "#-#-#-#-# generate-hooks-pl_PL.po (Generate Hooks) #-#-#-#-#\n" -#~ "Uwaga: Ustawienia zostaną usunięte.\n" -#~ "#-#-#-#-# generate-spacing-pl_PL.po (Generate Spacing) #-#-#-#-#\n" -#~ "Uwaga: Ustawienia zostaną usunięte.\n" -#~ "#-#-#-#-# menu-plus-pl_PL.po (Generate Menu Plus) #-#-#-#-#\n" -#~ "Uwaga: ustawienia zostaną usunięte.\n" -#~ "#-#-#-#-# page-header-pl_PL.po (Generate Page Header) #-#-#-#-#\n" -#~ "Uwaga: ustawienia zostaną usunięte.\n" -#~ "#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Uwaga: Ustawienia zostaną usunięte." - -#~ msgid "Select Image" -#~ msgstr "Wybierz obraz" - -#~ msgid "Use Image" -#~ msgstr "Użyj obraz" - -#~ msgid "Export Backgrounds Customizer Settings" -#~ msgstr "Eksportuj ustawienia personalizacji tła" - -#~ msgid "Delete Backgrounds Customizer Settings" -#~ msgstr "Usuń ustawienia personalizacji tła" - -#~ msgid "Post Image / Page Header" -#~ msgstr "Obrazek wpisu / nagłówek strony" - -#~ msgid "Excerpt Length" -#~ msgstr "Długość zalążka" - -#~ msgid "Masonry" -#~ msgstr "Bloki" - -#~ msgid "Masonry Block Width" -#~ msgstr "Szerokość bloku" - -#~ msgid "Small" -#~ msgstr "Mała" - -#~ msgid "Medium" -#~ msgstr "Średnia" - -#~ msgid "Large" -#~ msgstr "Duża" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Szerokość bloku z najnowszym wpisem" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Tekst czytaj dalej w trybie bloków" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Tekst wczytywania bloków" - -#~ msgid "Post Image" -#~ msgstr "Obrazek wpisu" - -#~ msgid "Show" -#~ msgstr "Pokaż" - -#~ msgid "Post Image Position" -#~ msgstr "Położenie obrazka wpisu" - -#~ msgid "Post Image Alignment" -#~ msgstr "Wyrównanie obrazka wpisu" - -#~ msgid "Post Image Width" -#~ msgstr "Szerokość obrazka wpisu" - -#~ msgid "Post Image Height" -#~ msgstr "Wysokość obrazka wpisu" - -#~ msgid "Date" -#~ msgstr "Data" - -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgid "Categories" -#~ msgstr "Kategorie" - -#~ msgid "Tags" -#~ msgstr "Tagi" - -#~ msgid "Comment Link" -#~ msgstr "Odnośnik do komentarzy" - -#~ msgid "Masonry is enabled. These settings will be ignored." -#~ msgstr "Tryb bloków jest włączony. Te ustawienia zostaną zignorowane." - -#~ msgid "Column Layout" -#~ msgstr "Układ kolumn" - -#~ msgid "First Post Full Width" -#~ msgstr "Pełna szerokość pierwszego wpisu" - -#~ msgid "Read more..." -#~ msgstr "Czytaj dalej…" - -#~ msgid "Delete Blog Customizer Settings" -#~ msgstr "Usuń ustawienia personalizacji bloga" - -#~ msgid "Export Blog Customizer Settings" -#~ msgstr "Eksportuj ustawienia personalizacji bloga" - -#~ msgid "Masonry Post Width" -#~ msgstr "Szerokość wpisu w trybie bloków" - -#~ msgid "Global setting" -#~ msgstr "Ustawienia ogólne" - -#~ msgid "Header Colors" -#~ msgstr "Kolory nagłówka" - -#~ msgid "Navigation Colors" -#~ msgstr "Kolory nawigacji" - -#~ msgid "Sub-Navigation Colors" -#~ msgstr "Kolory podmenu" - -#~ msgid "Content Colors" -#~ msgstr "Kolory zawartości" - -#~ msgid "Sidebar Widget Colors" -#~ msgstr "Kolory widgetów paska bocznego" - -#~ msgid "Footer Widget Colors" -#~ msgstr "Kolory widgetów w stopce" - -#~ msgid "Footer Colors" -#~ msgstr "Kolory stopki" - -#~ msgid "Form Colors" -#~ msgstr "Kolor formularza" - -#~ msgid "Form Background Focus/Hover" -#~ msgstr "Tło formularza po wybraniu/najechaniu" - -#~ msgid "Form Text Focus/Hover" -#~ msgstr "Tekst formularza po wybraniu/najechaniu" - -#~ msgid "Form Border Focus/Hover" -#~ msgstr "Krawędź formularza po wybraniu/najechaniu" - -#~ msgid "Form Button" -#~ msgstr "Przycisk formularza" - -#~ msgid "Form Button Focus/Hover" -#~ msgstr "Przycisk formularza po wybraniu/najechaniu" - -#~ msgid "Form Button Text" -#~ msgstr "Tekst przycisku formularza" - -#~ msgid "Form Button Text Focus/Hover" -#~ msgstr "Tekst przycisku formularza po wybraniu/najechaniu" - -#~ msgid "" -#~ "Use %current_year% to include the current year dynamically." -#~ msgstr "" -#~ "Użyj %current_year% aby dynamicznie dodawać bieżący rok." - -#~ msgid "Use %copy% to include the copyright symbol." -#~ msgstr "Użyj %copy% aby dołączyć symbol praw autorskich." - -#~ msgid "Save Copyright" -#~ msgstr "Zapisz ustawienia" - -#~ msgid "Export GP Hooks" -#~ msgstr "Eksportuj haki GP" - -#~ msgid "Delete GP Hooks" -#~ msgstr "Usuń haki GP" - -#~ msgid "Import / Export" -#~ msgstr "Import /Eksport" - -#~ msgid "" -#~ "Export your settings set in the Customizer." -#~ msgstr "" -#~ "Eksportuj swoją konfigurację zdefiniowaną w Personalizacji." - -#~ msgid "Export Default Customizer Settings" -#~ msgstr "Eksportuj domyślne ustawienia Personalizacji" - -#~ msgid "" -#~ "Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Zaimportuj swoje ustawienia przez wgranie " -#~ "wyeksportowanego pliku .json." - -#~ msgid "Error: Content already detected in default editor." -#~ msgstr "Błąd: treść jest już obecna w domyślnym edytorze." - -#~ msgid "" -#~ "Please activate the \"Visual\" tab in your main editor before " -#~ "transferring content." -#~ msgstr "" -#~ "Aktywuj zakładkę \"Wizualny\" w swoim głównym edytorze przed " -#~ "przeniesieniem zawartości." - -#~ msgid "Click to toggle" -#~ msgstr "Kliknij aby przełączyć" - -#~ msgid "Fluid" -#~ msgstr "Cała szerokość" - -#~ msgid "No" -#~ msgstr "Nie" - -#~ msgid "Yes" -#~ msgstr "Tak" - -#~ msgid "Send sections to default editor" -#~ msgstr "Wyślij sekcje do domyślnego edytora" - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "Przerwa między elementami gdy \"układ zawartości\" jest ustawiony na " -#~ "\"oddzielne pojemniki\"." - -#~ msgid "These options control the size of your menu items." -#~ msgstr "Te opcje kontrolują rozmiar elementów menu." - -#, fuzzy -#~ msgid "Left/Right Spacing" -#~ msgstr "" -#~ "#-#-#-#-# generate-spacing-pl_PL.po (Generate Spacing) #-#-#-#-#\n" -#~ "Odstępy z lewej/prawej\n" -#~ "#-#-#-#-# secondary-nav-pl_PL.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Odstępy z lewej/z prawej" - -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "Odstępy z góry i z dołu elementów podmenu." - -#~ msgid "Sidebar Widths" -#~ msgstr "Szerokości pasków bocznych" - -#~ msgid "15%" -#~ msgstr "15%" - -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgid "25%" -#~ msgstr "25%" - -#~ msgid "30%" -#~ msgstr "30%" - -#~ msgid "35%" -#~ msgstr "35%" - -#~ msgid "40%" -#~ msgstr "40%" - -#~ msgid "45%" -#~ msgstr "45%" - -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgid "Delete Spacing Customizer Settings" -#~ msgstr "Usuń ustawienia odstępów" - -#~ msgid "Export Spacing Customizer Settings" -#~ msgstr "Eksportuj ustawienia odstępów" - -#~ msgid "Default fonts" -#~ msgstr "Domyślne czcionki" - -#~ msgid "Google fonts" -#~ msgstr "Czcionki Google" - -#~ msgid "Body Typography" -#~ msgstr "Typografia treści" - -#~ msgid "Header Typography" -#~ msgstr "Typografia nagłówka" - -#, fuzzy -#~ msgid "Site title" -#~ msgstr "" -#~ "#-#-#-#-# generate-typography-pl_PL.po (Generate Typography) #-#-#-#-#\n" -#~ "Tytuł strony\n" -#~ "#-#-#-#-# page-header-pl_PL.po (Generate Page Header) #-#-#-#-#\n" -#~ "Tytuł witryny" - -#, fuzzy -#~ msgid "Site tagline" -#~ msgstr "" -#~ "#-#-#-#-# generate-typography-pl_PL.po (Generate Typography) #-#-#-#-#\n" -#~ "Opis strony\n" -#~ "#-#-#-#-# page-header-pl_PL.po (Generate Page Header) #-#-#-#-#\n" -#~ "Opis witryny" - -#~ msgid "Navigation Typography" -#~ msgstr "Typografia nawigacji" - -#~ msgid "Content Typography" -#~ msgstr "Typografia zawartości" - -#~ msgid "Font-size" -#~ msgstr "Rozmiar czcionki" - -#~ msgid "Widget Typography" -#~ msgstr "Typografia widgetów" - -#~ msgid "Widget titles" -#~ msgstr "Tytuły widgetów" - -#~ msgid "Footer Typography" -#~ msgstr "Typografia stopki" - -#~ msgid "Footer font size" -#~ msgstr "Rozmiar czcionki stopki" - -#~ msgid "Mobile Typography" -#~ msgstr "Typografia mobilna" - -#~ msgid "Site title font size" -#~ msgstr "Rozmiar czcionki tytułu strony" - -#~ msgid "H1 font size" -#~ msgstr "Rozmiar czcionki H1" - -#~ msgid "H2 font size" -#~ msgstr "Rozmiar czcionki H2" - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "Jest dostępna nowa wersja %1$s. Zobacz szczegóły aktualizacji %3$s." - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "Jest dostępna nowa wersja %1$s. Zobacz szczegóły wersji %3$s lub od razu " -#~ "zaktualizuj." - -#~ msgid "License failed." -#~ msgstr "Błąd licencji." - -#~ msgid "Updates %s" -#~ msgstr "Aktualizacje %s" - -#~ msgid "Sticky Menu" -#~ msgstr "Przyklejone menu" - -#~ msgid "Sticky Menu Effect" -#~ msgstr "Efekt przyklejonego menu" - -#~ msgid "Menu Logo" -#~ msgstr "Logo menu" - -#~ msgid "Menu Logo Position" -#~ msgstr "Położenie loga menu" - -#~ msgid "Sticky Only" -#~ msgstr "Tylko przyklejone" - -#~ msgid "Sticky + Regular" -#~ msgstr "Przyklejone + zwykłe" - -#~ msgid "Regular Only" -#~ msgstr "Tylko zwykłe" - -#~ msgid "Sticky Header" -#~ msgstr "Przyklejony nagłówek" - -#~ msgid "Delete Menu Plus Customizer Settings" -#~ msgstr "Usuń ustawienia konfiguracji Menu Plus" - -#~ msgid "Export Menu Plus Customizer Settings" -#~ msgstr "Eksportuj ustawienia konfiguracji Menu Plus" - -#~ msgid "Thomas Usborne" -#~ msgstr "Thomas Usborne" - -#~ msgid "http://edge22.com" -#~ msgstr "http://edge22.com" - -#~ msgid "Blog Page Header" -#~ msgstr "Nagłówek strony bloga" - -#~ msgid "Image Settings" -#~ msgstr "Ustawienia obrazków" - -#~ msgid "Upload an image to be used as your page header." -#~ msgstr "Prześlij obraz który ma być użyty jako nagłówek strony." - -#~ msgid "Page Header Link" -#~ msgstr "Odnośnik nagłówka strony" - -#~ msgid "Make your page header image clickable by adding a URL. (optional)" -#~ msgstr "" -#~ "Zrób klikalny obrazek nagłówka strony przez podanie adresu URL. " -#~ "(opcjonalne)" - -#~ msgid "Hard Crop" -#~ msgstr "Twarde przycięcie" - -#~ msgid "Turn hard cropping or of off." -#~ msgstr "Włącz/wyłącz twarde przycinanie." - -#~ msgid "Choose your image width in pixels. (integer only, default is 1200)" -#~ msgstr "" -#~ "Podaj szerokość obrazka w pikselach. (tylko liczby całkowite, domyślnie " -#~ "1200)" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank for " -#~ "proportional resizing. (integer only, default is 0) " -#~ msgstr "" -#~ "Wybierz wysokość obrazka w pikselach. Wpisz „0” lub zostaw puste dla " -#~ "zachowania proporcji. (tylko liczby całkowite, domyślnie 0)" - -#~ msgid "Video Settings" -#~ msgstr "Ustawienia wideo" - -#~ msgid "Video Background URL (MP4 only)" -#~ msgstr "Link do materiału wideo (tylko MP4)" - -#~ msgid "Video Background URL (OGV only)" -#~ msgstr "Link do materiału wideo (tylko OGV)" - -#~ msgid "Video Background URL (WEBM only)" -#~ msgstr "Link do materiału wideo (tylko WEBM)" - -#~ msgid "Content Settings" -#~ msgstr "Ustawienia zawartości" - -#~ msgid "Add your content to the page header. HTML and shortcodes allowed." -#~ msgstr "" -#~ "Dodaj swoją treść do nagłówka strony. Dopuszczalny HTML i kody skrótowe." - -#~ msgid "Add Paragraphs" -#~ msgstr "Dodaj akapity" - -#~ msgid "Wrap your text in paragraph tags automatically." -#~ msgstr "Zawijaj automatycznie tekst w tagach akapitów." - -#~ msgid "Add padding around your content." -#~ msgstr "Dodaj odstępy od krawędzi wokół swojej zawartości." - -#~ msgid "Image Background" -#~ msgstr "Tło obrazka" - -#~ msgid "" -#~ "Use the image uploaded above as a background image for your content. " -#~ "(requires image uploaded above)" -#~ msgstr "" -#~ "Użyj obrazka załadowanego powyżej jako tła dla treści. (wymaga " -#~ "załadowania obrazka powyżej)" - -#~ msgid "Parallax Background" -#~ msgstr "Efekt paralaksy tła" - -#~ msgid "" -#~ "Add a cool parallax effect to your background image. (requires the image " -#~ "background option to be checked)" -#~ msgstr "" -#~ "Dodaje fajny efekt paralaksy do obrazka w tle. (wymaga aby opcja obrazka " -#~ "w tle była zaznaczona)" - -#~ msgid "Full Screen" -#~ msgstr "Pełny ekran" - -#~ msgid "Make your page header content area full screen." -#~ msgstr "Zamień zawartość nagłówka strony na pełen ekran" - -#~ msgid "Vertical Center" -#~ msgstr "Wyśrodkuj pionowo" - -#~ msgid "Center your page header content vertically." -#~ msgstr "Wypośrodkuj zawartość nagłówka strony względem pionu." - -#~ msgid "Container Type" -#~ msgstr "Typ pojemnika" - -#~ msgid "Choose whether the page header is contained or fluid." -#~ msgstr "" -#~ "Określ jaki ma być nagłówek strony - na całą szerokość czy w obrębie " -#~ "pojemnika" - -#~ msgid "Choose the horizontal alignment of your content." -#~ msgstr "Wybierz poziome wyrównanie treści strony." - -#~ msgid "Top/Bottom Padding" -#~ msgstr "Odstępy górne/dolne" - -#~ msgid "" -#~ "Choose your content padding in pixels. This will add space above and " -#~ "below your content. (integer only) " -#~ msgstr "" -#~ "Wybierz odstępy od krawędzi dla treści strony. Opcja ta doda przestrzeń " -#~ "pponad i pod twoją zawartością. (tylko całkowite)" - -#~ msgid "Advanced Settings" -#~ msgstr "Ustawienia zaawansowane" - -#~ msgid "Transparent navigation" -#~ msgstr "Nawigacja przeźroczysta" - -#~ msgid "Navigation text" -#~ msgstr "Tekst nawigacji" - -#~ msgid "Navigation background hover" -#~ msgstr "Tło nawigacji po najechaniu" - -#~ msgid "Navigation text hover" -#~ msgstr "Tekst nawigacji po najechaniu" - -#~ msgid "Navigation background current" -#~ msgstr "Bieżące tło nawigacji" - -#~ msgid "Navigation text current" -#~ msgstr "Tekst wybranej pozycji nawigacji" - -#~ msgid "Replace your logo on the blog." -#~ msgstr "Zamień logo bloga." - -#~ msgid "Logo Settings" -#~ msgstr "Ustawienia logo" - -#~ msgid "Add Image" -#~ msgstr "Dodaj obrazek" - -#~ msgid "Video background - MP4 file only" -#~ msgstr "Wideo w tle - tylko pliki MP4" - -#~ msgid "Add Video" -#~ msgstr "Dodaj wideo" - -#~ msgid "Video background - OGV file only" -#~ msgstr "Wideo w tle - tylko pliki OGV" - -#~ msgid "Video background - WEBM file only" -#~ msgstr "Wideo w tle - tylko pliki WEBM" - -#~ msgid "Overlay color" -#~ msgstr "Kolor przesłaniający" - -#~ msgid "Add padding" -#~ msgstr "Dodaj odstępy od krawędzi" - -#~ msgid "Add background image" -#~ msgstr "Dodaj obrazek tła" - -#~ msgid "Parallax effect" -#~ msgstr "Efekt paralaksy" - -#~ msgid "Add to blog excerpt" -#~ msgstr "Dodaj do zajawki bloga" - -#~ msgid "Container type" -#~ msgstr "Rodzaj kontenera" - -#~ msgid "Text alignment" -#~ msgstr "Wyrównanie tekstu" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Górne/dolne odstępy od krawędzi" - -#~ msgid "Background color" -#~ msgstr "Kolor tła" - -#~ msgid "Text color" -#~ msgstr "Kolor tekstu" - -#~ msgid "Link color" -#~ msgstr "Kolor odnośnika" - -#~ msgid "Link color hover" -#~ msgstr "Kolor odnośnika po najechaniu" - -#~ msgid "Page Header Position" -#~ msgstr "Położenie nagłówka strony" - -#~ msgid "Single Post Header Position" -#~ msgstr "Położenie nagłówka dla pojedynczego wpisu" - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "Usuń własne ustawienia nagłówka strony" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "Eksportuj własne ustawienia nagłówka strony" - -#~ msgid "Mobile Label" -#~ msgstr "Etykieta mobilna" - -#~ msgid "Navigation Layout" -#~ msgstr "Układ nawigacji" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Pływające / pełna szerokość" - -#~ msgid "Navigation Position" -#~ msgstr "Pozycja nawigacji" - -#~ msgid "Secondary Navigation Spacing" -#~ msgstr "Odstępy drugiej nawigacji" - -#~ msgid "Secondary Menu Items" -#~ msgstr "Elementy drugiego menu" - -#~ msgid "These options control the size of your secondary menu items." -#~ msgstr "Te opcje określają rozmiar elementów drugiego menu." - -#~ msgid "Secondary Sub-menu Item Height" -#~ msgstr "Wysokość podmenu w drugim menu" - -#~ msgid "The top and bottom spacing of secondary sub-menu items." -#~ msgstr "Odstępy górny i dolny elementów drugiego menu" - -#~ msgid "Secondary Navigation Colors" -#~ msgstr "Kolory drugiego menu" - -#~ msgid "Secondary Sub-Navigation Colors" -#~ msgstr "Kolory podmenu drugiego menu" - -#~ msgid "Secondary Navigation Typography" -#~ msgstr "Typografia drugiego menu" - -#~ msgid "Secondary navigation" -#~ msgstr "Nawigacja drugiego menu" - -#~ msgid "Secondary Background Images" -#~ msgstr "Obrazki tła drugiego menu" - -#~ msgid "Delete Secondary Navigation Customizer Settings" -#~ msgstr "Usuń ustawienia drugiego menu nawigacyjnego" - -#~ msgid "Export Secondary Navigation Customizer Settings" -#~ msgstr "Eksportuj ustawienia drugiego menu nawigacyjnego" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-pt_BR.mo b/wp-content/plugins/gp-premium/langs/gp-premium-pt_BR.mo index bbd7de3d..f49ee820 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-pt_BR.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-pt_BR.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-pt_BR.po b/wp-content/plugins/gp-premium/langs/gp-premium-pt_BR.po deleted file mode 100644 index 7891dd76..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-pt_BR.po +++ /dev/null @@ -1,3232 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:36-0800\n" -"PO-Revision-Date: 2018-02-27 17:36-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: Jorge Araújo \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/classes/class-site-widget-importer.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-5: sites/libs/wxr-importer/WXRImportInfo.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Imagens de Fundo" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Corpo" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "Barra do Topo" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Cabeçalho" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Menu Principal" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "Menu" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Repetir" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Repetir Horizontalmente" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Repetir Verticalmente" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Não Repetir" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Menu - Item" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -#, fuzzy -msgid "Navigation Item Hover" -msgstr "" -"#-#-#-#-# backgrounds-pt_BR.po (Generate Backgrounds) #-#-#-#-#\n" -"Menu - Item Hover\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Menu Item Hover" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -#, fuzzy -msgid "Navigation Item Current" -msgstr "" -"#-#-#-#-# backgrounds-pt_BR.po (Generate Backgrounds) #-#-#-#-#\n" -"Menu - Item Ativo\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Menu Item Ativo" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "Submenu do Menu Principal" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -#, fuzzy -msgid "Sub-Navigation Item" -msgstr "" -"#-#-#-#-# backgrounds-pt_BR.po (Generate Backgrounds) #-#-#-#-#\n" -"Submenu - Item\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Sub-Menu Item" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -#, fuzzy -msgid "Sub-Navigation Item Hover" -msgstr "" -"#-#-#-#-# backgrounds-pt_BR.po (Generate Backgrounds) #-#-#-#-#\n" -"Submenu - Item Hover\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Sub-Menu Item Hover" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -#, fuzzy -msgid "Sub-Navigation Item Current" -msgstr "" -"#-#-#-#-# backgrounds-pt_BR.po (Generate Backgrounds) #-#-#-#-#\n" -"Submenu - Item Ativo\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Sub-Menu Item Ativo" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Conteúdo" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "Sidebar" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "Widgets da Sidebar" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Rodapé" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Rodapé - Área de Widgets" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Rodapé - Área Inferior" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Menu Secundário" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "Submenu do Menu Secundário" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "Blog" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "Total" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Texto do Leia mais" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "Imagens em Destaque" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "Localização" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "Abaixo do Cabeçalho" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "Acima do Cabeçalho" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "Alinhamento " - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -#, fuzzy -msgid "Center" -msgstr "" -"#-#-#-#-# generate-blog-pt_BR.po (Generate Blog) #-#-#-#-#\n" -"Centro\n" -"#-#-#-#-# generate-woocommerce-pt_BR.po (Generate WooCommerce) #-#-#-#-#\n" -"Centralizado\n" -"#-#-#-#-# page-header-pt_BR.po (Generate Page Header) #-#-#-#-#\n" -"Centro\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Centralizado" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "Esquerda" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "Direita" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "Largura" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "Auto" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Altura" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Acima da Área de Conteúdo" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "Colunas" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "Ler mais..." - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Mais" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "Carregando..." - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Cores" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -#, fuzzy -msgid "Background" -msgstr "" -"#-#-#-#-# generate-colors-pt_BR.po (Generate Colors) #-#-#-#-#\n" -"Cor de Fundo\n" -"#-#-#-#-# generate-sections-pt_BR.po (Generate Sections) #-#-#-#-#\n" -"Fundo\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Cor de Fundo" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Texto" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Link" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Link Hover" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Título do Site" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Slogan" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "Menu Primário - Itens" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -#, fuzzy -msgid "Background Hover" -msgstr "" -"#-#-#-#-# generate-colors-pt_BR.po (Generate Colors) #-#-#-#-#\n" -"Cor de Fundo - Hover\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Cor de Fundo Hover" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -#, fuzzy -msgid "Background Current" -msgstr "" -"#-#-#-#-# generate-colors-pt_BR.po (Generate Colors) #-#-#-#-#\n" -"Cor de Fundo - Ativo\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Cor de Fundo Ativo" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Texto Hover" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "Texto Ativo" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -msgid "Sub-Menu Items" -msgstr "" -"#-#-#-#-# generate-spacing-pt_BR.po (Generate Spacing) #-#-#-#-#\n" -"Item do Submenu - Altura\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Sub-menu - Altura do Item" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -#, fuzzy -msgid "Content Title" -msgstr "" -"#-#-#-#-# disable-elements-pt_BR.po (Generate Disable Elements) #-#-#-#-#\n" -"Título do Conteúdo\n" -"#-#-#-#-# generate-colors-pt_BR.po (Generate Colors) #-#-#-#-#\n" -"Conteúdo - Título" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Post do Blog - Título" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Post do Blog - Título Hover" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Entradas de Meta Texto" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Entrada de Meta Links" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Entradas de Meta Links Hover" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "Título 1 (H1) - Cor" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "Título 2 (H2) - Cor" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "Título 3 (H3) - Cor" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Título do Widget" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "Widgets do Rodapé" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "Formulários" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Formulário - Cor de Fundo" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "Formulário - Cor de Fundo em Foco" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Formulário - Borda" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "Formulário - Borda em Foco" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Formulário - Texto" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "Formulário - Texto em Foco" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "Menu Slideout" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "Preço" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Texto e/ou Copyright" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Desabilitar Elementos" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "Imagem Destaque / Page Header" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "GP Hooks" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Antes do Header" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Antes do Conteúdo do Header" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Depois do Conteúdo do Header" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Depois do Header" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "Dentro do Container de Conteúdo" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Antes do Conteúdo" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Depois do Título de Entrada" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Depois do Conteúdo" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Antes do Conteúdo da Sidebar Direita" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Depois do Conteúdo da Sidebar Direita" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Antes do Conteúdo da Sidebar Esquerda" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Depois do Conteúdo da Sidebar Esquerda" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Antes do Footer" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "Depois dos Widgets do Footer" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Antes do Conteúdo do Footer" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Depois do Conteúdo do Footer" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Executar PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "Desabilitar Hook" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Utilize esses campos para inserir qualquer coisa no GeneratePress. " -"Shortcodes são permitidos, e você pode usar PHP caso as caixas de seleção " -"Executar PHP estejam selecionadas." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Exibir todos" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "Salvar Hooks" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "Hooks salvos." - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "Avançado" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -msgctxt "Module name" -msgid "Backgrounds" -msgstr "" -"#-#-#-#-# generate-colors-pt_BR.po (Generate Colors) #-#-#-#-#\n" -"Cor de Fundo\n" -"#-#-#-#-# generate-sections-pt_BR.po (Generate Sections) #-#-#-#-#\n" -"Fundo\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Cor de Fundo" - -#: import-export/functions/functions.php:23 library/reset.php:21 -#, fuzzy -#| msgid "Blog" -msgctxt "Module name" -msgid "Blog" -msgstr "Blog" - -#: import-export/functions/functions.php:27 library/reset.php:25 -#, fuzzy -#| msgid "GP Hooks" -msgctxt "Module name" -msgid "Hooks" -msgstr "GP Hooks" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "Cabeçalho da Página" - -#: import-export/functions/functions.php:35 library/reset.php:33 -#, fuzzy -#| msgid "Secondary Navigation" -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "Menu Secundário" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#, fuzzy -#| msgid "Spacing" -msgctxt "Module name" -msgid "Spacing" -msgstr "Espaçamento" - -#: import-export/functions/functions.php:43 library/reset.php:41 -#, fuzzy -#| msgid "Menu Plus" -msgctxt "Module name" -msgid "Menu Plus" -msgstr "Menu Plus" - -#: import-export/functions/functions.php:47 library/reset.php:45 -#, fuzzy -#| msgid "WooCommerce" -msgctxt "Module name" -msgid "WooCommerce" -msgstr "Woocommerce" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "Texto e/ou Copyright" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "Importar Configurações" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "Envie um arquivo .json válido" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "Envie um arquivo para importar" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "Existe uma nova versão de %1$s disponível. %2$sVer %3$s detalhes%4$s." - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" -"Existe uma nova versão de %1$s disponível. %2$sVer %3$s detalhes%4$s ou " -"%5$satualizar agora%6$s." - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Você não possui permissão para instalar atualizações do plugin" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Erro" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Add-on desativado." - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Add-on ativado." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "Ações em Massa" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Ativar" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Desativar" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "Aplicar" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "Informe uma licença válida para atualizar automaticamente." - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Licença desativada." - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Licença ativada." - -#: inc/verify.php:110 -msgid "Updates" -msgstr "Atualizações" - -#: inc/verify.php:110 -msgid "Help" -msgstr "Ajuda" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "Licença" - -#: inc/verify.php:139 -msgid "Update" -msgstr "Atualizar" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "Sua licença expira em %s." - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "Sua licença foi desabilitada." - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "Licença inválida." - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "Sua licença não está ativa para essa URL." - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "Aparentemente essa é uma licença inválida para %s." - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "Sua licença atingiu o limite de ativações." - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "Ocorreu um erro, tente novamente." - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Posição" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Tamanho (Automático)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% de Largura" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Cobrir / cover" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Container / contain" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Anexo (Attachment" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Fixado / fixed" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Local" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Herdar / Inherit" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "" -"%current_year% para inserir e atualizar o ano automaticamente." - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "%copy%para incluir o símbolo de copyright." - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "Permitido usar HTML." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Permitido usar Shortcodes." - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "Mobile" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "Resetar" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Topo" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Inferior" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "Linkar Valores" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "Desvincular Valores" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Familia da Fonte" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "Peso da Fonte" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "Transformar Texto" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "Menu" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "Menu Plus" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "Configurações Gerais" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "Menu Mobile - Identificador" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "Menu Sticky" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "Mobile apenas" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "Desktop apenas" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "Posição" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "Fade" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "Slide" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "Nenhum" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -#, fuzzy -msgid "Navigation Logo" -msgstr "" -"#-#-#-#-# menu-plus-pt_BR.po (Generate Menu Plus) #-#-#-#-#\n" -"Logo do Menu\n" -"#-#-#-#-# page-header-pt_BR.po (Generate Page Header) #-#-#-#-#\n" -"Menu - Logo" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "Posição do Logo do Menu" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "Sticky" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "Sticky + Estático" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "Estático" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "Cabeçalho Mobile" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "Logo" - -#: menu-plus/functions/generate-menu-plus.php:442 -#, fuzzy -#| msgid "Sidebar" -msgid "Side" -msgstr "Sidebar" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "Fechar" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Cabeçalho da Página" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "Posição do Cabeçalho da Página" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "Dentro da Área de Conteúdo" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "Posição do Cabeçalho na Postagem Única" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "Abaixo do Título do Post" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "Ocultar" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Imagem" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "Vídeo de Fundo" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "Adicionar ao resumo" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" -"Atualmente usando sua Imagem " -"Destacada." - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Imagem do Cabeçalho da Página" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "Inserir Imagem" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "Escolher Imagem" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "Remover Imagem" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "Ou você pode selecionar na imagem destacada." - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Desabilitar" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Habilitar" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "Use \"0\" ou deixe em brando para redimensionar proporcionalmente." - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "HTML e Shortcodes permitidos." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Adicionar parágrafos automaticamente" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "Adicionar Enchimento" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Efeito Parallax" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "Tela Cheia" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "Conteúdo centralizado verticalmente" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -#, fuzzy -msgid "Contained" -msgstr "" -"#-#-#-#-# generate-sections-pt_BR.po (Generate Sections) #-#-#-#-#\n" -"Largura Fixa\n" -"#-#-#-#-# page-header-pt_BR.po (Generate Page Header) #-#-#-#-#\n" -"Largura Fixa\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Fixa" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "Largura Total" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "Alinhamento do Texto" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Cor de Fundo" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Cor do Texto" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Cor do Link" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "Cor do Link Hover" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "Arquivo MP4" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "Vídeo no Cabeçalho da Página" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "Inserir Vídeo" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "Escolher Vídeo" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "Arquivo OGV" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "Arquivo WEBM" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "Sobrepor Cor" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "Substitua o logotipo do site nesta página." - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "Cabeçalho / Logo" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "Inserir Logo" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "Escolher Logo" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "Remover Logo" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "Substitua o logotipo do menu nesta página." - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "Mesclar com o cabeçalho do site" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "Insira o conteúdo atrás do cabeçalho (sliders, etc..)" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Menu Secundário" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "Largura do Menu" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "Largura Interna" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Alinhamento do Menu" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "Posição do Menu" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Abaixo do Cabeçalho" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Acima do Cabeçalho" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Flutuar à Direita" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Sidebar Esquerdo" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "Sidebar Direito" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Sem Menu" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "Mesclar com Menu Secundário" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "Usar Seções" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "Seções" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "Essa ação não pode ser desfeita, tem certeza?" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "Seção" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "Configurações" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "Cor de Fundo da Seção" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "Escolha a Cor de Fundo da Seção" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "Inserir na Seção" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "Editar Seção" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "Clique para editar" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "Clique para editar o conteúdo" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "Clique para editar as configurações" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "Clique e arraste para reordenar" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "Clique para remover" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "Adicionar Seção" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "Remover Seções" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "Cancelar" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "Identificador da Seção" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "Adicionar Mídia" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "Visual" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "Layout" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Tipo de Box" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Tipo de Box - Interior" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "ID Personalizado" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Classes CSS Customizadas" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Enchimento Superior" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Enchimento Inferior" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Imagem de Fundo" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "Enviar" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "Remover" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "Javascript deve estar habilitado para usar Seções" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Nenhuma seção adicionada!" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing options" -msgstr "Importar Configurações" - -#: sites/classes/class-site-helper.php:96 -#, fuzzy -#| msgid "Blog Content" -msgid "Downloading content" -msgstr "Conteúdo do Blog" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "Pular para conteúdo" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing site options" -msgstr "Importar Configurações" - -#: sites/classes/class-site-helper.php:99 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing widgets" -msgstr "Importar Configurações" - -#: sites/classes/class-site-helper.php:100 -msgid "Activating plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -#, fuzzy -#| msgid "Static" -msgid "Automatic" -msgstr "Estático" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -#, fuzzy -#| msgid "Remove Sections" -msgid "Theme Options" -msgstr "Remover Seções" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "Depois do Conteúdo" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -#, fuzzy -#| msgid "Bulk Actions" -msgid "Backup Options" -msgstr "Ações em Massa" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import Settings" -msgid "Import Options" -msgstr "Importar Configurações" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "Antes do Conteúdo" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Licença ativada." - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Espaço Separado" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "Conteúdo - Enchimento" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "Mobile - Enchimento do Conteúdo" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "Rodapé - Enchimento das Áreas de Widgets" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "Rodapé - Enchimento" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "Cabeçalho - Enchimento" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "Item do Menu - Largura" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "Item do Menu - Altura" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -#, fuzzy -msgid "Sub-Menu Item Height" -msgstr "" -"#-#-#-#-# generate-spacing-pt_BR.po (Generate Spacing) #-#-#-#-#\n" -"Item do Submenu - Altura\n" -"#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Sub-menu - Altura do Item" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "Sidebars" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "Widget - Enchimento" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "Sidebar Esquerda - Largura" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "Sidebar Direita - Largura" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "Barra do Topo - Enchimento" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "Espaçamento" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Altere o espaçamento para vários elementos usando pixels." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Tipografia" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Tamanho da Fonte" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "Altura da Linha" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "Margem do Parágrafo" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Título 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Título 2 (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Título 3 (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "Widgets" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "Conteúdo - Tamanho da Fonte" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "Produtos Relacionados - Tamanho da Fonte" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "Woocommerce" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "Geral" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "Exibir carrinho no menu" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "Exibir breadcrumbs" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "Loja" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "Sidebar - Layout" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "Sidebar / Conteúdo" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "Conteúdo / Sidebar" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "Conteúdo (sem sidebars)" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "Sidebar / Conteúdo / Sidebar" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "Sidebar / Sidebar / Conteúdo" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "Conteúdo / Sidebar / Sidebar" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "Produtos por Página" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "Colunas de Produtos" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "Alinhamento da Imagem" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "Exibir Título da Página" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "Exibir contagem de produtos" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "Exibir tipo ordenação de produtos" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "Exibir imagem do produto" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "Exibir imagem secundária ao passar o mouse" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "Exibir título do produto" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "Exibir selo de promoção" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "Exibir preço" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "Exibir botão adicionar ao carrinho" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "Exibir descrição resumida" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "Produto Único" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "Produto - Exibir abas" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "Exibir produtos relacionados" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "Exibir produtos upsell" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "Relacionados/Upsell - Colunas" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "Exibir metadados - código do produto, categoria, etc" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "As cores do botão primário podem ser alteradas aqui." - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "Finalizar Compra" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "Modo Livre de Distração" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "Remover distrações: sidebar, widgets do rodapé e sticky menus." - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "Ver carrinho de compras" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "Avaliado %s em 5" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "Sem classificação" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "em 5" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#~ msgid "Slide-out Navigation" -#~ msgstr "Menu Slideout" - -#~ msgid "Activated" -#~ msgstr "Ativado" - -#~ msgid "Not activated" -#~ msgstr "Não Ativado" - -#~ msgid "Slideout Menu" -#~ msgstr "Menu Slideout" - -#~ msgid "Both" -#~ msgstr "Ambos" - -#~ msgid "Sticky Navigation Transition" -#~ msgstr "Transição do Menu Sticky" - -#~ msgid "Mobile Header Logo" -#~ msgstr "Cabeçalho Mobile - Logo" - -#~ msgid "Sticky Mobile Header" -#~ msgstr "Cabeçalho - Sticky Mobile" - -#, fuzzy -#~ msgid "Warning: This will delete your settings." -#~ msgstr "" -#~ "#-#-#-#-# backgrounds-pt_BR.po (Generate Backgrounds) #-#-#-#-#\n" -#~ "Atenção: Isso irá apagar suas configurações.\n" -#~ "#-#-#-#-# generate-blog-pt_BR.po (Generate Blog) #-#-#-#-#\n" -#~ "Atenção: Isto irá apagar suas configurações.\n" -#~ "#-#-#-#-# generate-hooks-pt_BR.po (Generate Hooks) #-#-#-#-#\n" -#~ "Atenção: Isso apagará suas configurações.\n" -#~ "#-#-#-#-# generate-spacing-pt_BR.po (Generate Spacing) #-#-#-#-#\n" -#~ "Atenção: Isso ira apagar suas configurações.\n" -#~ "#-#-#-#-# generate-woocommerce-pt_BR.po (Generate WooCommerce) #-#-#-#-" -#~ "#\n" -#~ "Atenção: Isso apagará as suas configurações.\n" -#~ "#-#-#-#-# menu-plus-pt_BR.po (Generate Menu Plus) #-#-#-#-#\n" -#~ "Atenção: Isto irá apagar suas configurações.\n" -#~ "#-#-#-#-# page-header-pt_BR.po (Generate Page Header) #-#-#-#-#\n" -#~ "Atenção: Isso irá apagar suas configurações.\n" -#~ "#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Atenção: Isso irá excluir as configurações." - -#~ msgid "Delete WooCommerce Settings" -#~ msgstr "Woocommerce - Apagar configurações" - -#~ msgid "Export Backgrounds Settings" -#~ msgstr "Exportar Configurações - Backgrounds" - -#~ msgid "Delete Backgrounds Settings" -#~ msgstr "Apagar Configurações - Backgrounds" - -#, fuzzy -#~ msgid "Apply image sizes" -#~ msgstr "" -#~ "#-#-#-#-# generate-blog-pt_BR.po (Generate Blog) #-#-#-#-#\n" -#~ "Aplicar tamanhos nas imagens\n" -#~ "#-#-#-#-# page-header-pt_BR.po (Generate Page Header) #-#-#-#-#\n" -#~ "Aplicar tamanho nas imagens" - -#~ msgid "Excerpt Length" -#~ msgstr "Tamanho do Resumo" - -#~ msgid "Masonry" -#~ msgstr "Masonry" - -#~ msgid "Masonry Block Width" -#~ msgstr "Masonry - Largura do Bloco" - -#~ msgid "Small" -#~ msgstr "Pequeno" - -#~ msgid "Medium" -#~ msgstr "Médio" - -#~ msgid "Large" -#~ msgstr "Grande" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Masonry - Largura Mais Recente" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Masonry - Texto para \"leia mais\"" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Masonry - Texto para \"Carregando\"" - -#~ msgid "Featured Image" -#~ msgstr "Imagem em Destaque" - -#~ msgid "Show" -#~ msgstr "Exibir" - -#~ msgid "Date" -#~ msgstr "Data" - -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgid "Categories" -#~ msgstr "Categorias" - -#~ msgid "Tags" -#~ msgstr "Tags" - -#~ msgid "Comment Link" -#~ msgstr "Link do Comentário" - -#~ msgid "Masonry is enabled. These settings will be ignored." -#~ msgstr "Masonry está habilitado. Essas configurações serão ignoradas." - -#~ msgid "Column Layout" -#~ msgstr "Layout da Coluna" - -#~ msgid "First Post Full Width" -#~ msgstr "Primeiro Post com Largura Total" - -#~ msgid "Delete Blog Settings" -#~ msgstr "Blog - Apagar Configurações" - -#~ msgid "Export Blog Settings" -#~ msgstr "Blog - Exportar Configurações" - -#~ msgid "Masonry Post Width" -#~ msgstr "Masonry - Largura do Post" - -#~ msgid "Global setting" -#~ msgstr "Configuração global" - -#~ msgid "Form Button" -#~ msgstr "Botão" - -#~ msgid "Form Button Hover" -#~ msgstr "Botão em Foco/Hover" - -#~ msgid "Form Button Text" -#~ msgstr "Texto do Botão" - -#~ msgid "Form Button Text Hover" -#~ msgstr "Texto do Botão Hover" - -#~ msgid "Product title" -#~ msgstr "Título do Produto" - -#~ msgid "Product title hover" -#~ msgstr "Título do Produto - Hover" - -#~ msgid "Alt button background" -#~ msgstr "Botão Alternativo - Cor de Fundo" - -#~ msgid "Alt button background hover" -#~ msgstr "Botão Alternativo - Cor de Fundo Hover" - -#~ msgid "Alt button text" -#~ msgstr "Botão Alternativo - Texto" - -#~ msgid "Alt button text hover" -#~ msgstr "Botão Alternativo - Texto Hover" - -#~ msgid "Star ratings" -#~ msgstr "Estrelas da Classificação" - -#~ msgid "Sale sticker background" -#~ msgstr "Selo de Promoção - Cor de Fundo" - -#~ msgid "Sale sticker text" -#~ msgstr "Selo de Promoção - Texto" - -#~ msgid "Product tab text" -#~ msgstr "Produto - Texto da Aba" - -#~ msgid "Product tab active" -#~ msgstr "Produto - Aba Ativa" - -#~ msgid "Success message background" -#~ msgstr "Alerta de Sucesso - Cor de Fundo" - -#~ msgid "Success message text" -#~ msgstr "Alerta de Sucesso - Texto" - -#~ msgid "Info message background" -#~ msgstr "Alerta de Informação - Cor de Fundo" - -#~ msgid "Info message text" -#~ msgstr "Alerta de Informação - Texto" - -#~ msgid "Error message background" -#~ msgstr "Alerta de Erro - Cor de Fundo" - -#~ msgid "Error message text" -#~ msgstr "Alerta de Erro - Texto" - -#~ msgid "Export GP Hooks" -#~ msgstr "Exportar GP Hooks" - -#~ msgid "Delete GP Hooks" -#~ msgstr "Deletar GP Hooks" - -#~ msgid "Import / Export" -#~ msgstr "Importar / Exportar" - -#~ msgid "" -#~ "Export your settings set in the Customizer." -#~ msgstr "" -#~ "Exporte suas configurações definidas no Personalizador." - -#~ msgid "Export Default Settings" -#~ msgstr "Exportar Configurações Padrão" - -#~ msgid "" -#~ "Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Importe suas configurações enviando o arquivo .json " -#~ "exportado." - -#~ msgid "Not a valid option name." -#~ msgstr "Nome da opção inválido." - -#~ msgid "Delete Spacing Settings" -#~ msgstr "Espaçamento - Deletar Configurações" - -#~ msgid "Export Spacing Settings" -#~ msgstr "Espaçamento - Exportar Configurações" - -#~ msgid "Site title" -#~ msgstr "Título do Site" - -#~ msgid "Site tagline" -#~ msgstr "Slogan do Site" - -#~ msgid "Widget titles" -#~ msgstr "Títulos dos Widgets" - -#~ msgid "Product titles" -#~ msgstr "Títulos dos Produtos" - -#~ msgid "Sale flash over image" -#~ msgstr "Exibir selo de promoção sobre a imagem" - -#~ msgid "Display rating" -#~ msgstr "Exibir classificação" - -#~ msgid "inherit" -#~ msgstr "herdar" - -#~ msgid "Primary button colors" -#~ msgstr "Cores do Botão Primário" - -#~ msgid "Export WooCommerce Settings" -#~ msgstr "Woocommerce - Exportar configurações" - -#~ msgid "WooCommerce not installed." -#~ msgstr "Woocommerce não instalado." - -#~ msgid "Delete Menu Plus Settings" -#~ msgstr "Menu Plus - Apagar Configurações" - -#~ msgid "Export Menu Plus Settings" -#~ msgstr "Menu Plus - Exportar Configurações" - -#~ msgid "Blog Page Header" -#~ msgstr "Cabeçalho da Página do Blog" - -#~ msgid "Upload an image to be used as your page header." -#~ msgstr "Envie uma imagem para ser usada no cabeçalho de sua página." - -#~ msgid "Image link" -#~ msgstr "Link da Imagen" - -#~ msgid "Make your page header image clickable by adding a URL. (optional)" -#~ msgstr "" -#~ "Torne a imagem do cabeçalho da página clicável adicionando uma URL. " -#~ "(opcional)" - -#~ msgid "Resize image" -#~ msgstr "Redimensionar imagem" - -#~ msgid "Image width" -#~ msgstr "Largura da Imagem" - -#~ msgid "Choose your image width in pixels. (integer only, default is 1200)" -#~ msgstr "" -#~ "Escolha a largura de sua imagem em pixels. (somente números inteiros, o " -#~ "padrão é 1200)" - -#~ msgid "Image height" -#~ msgstr "Altura da Imagem" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank for " -#~ "proportional resizing. (integer only, default is 0) " -#~ msgstr "" -#~ "Escolha a altura da imagem em pixels. Use \"0\" ou deixe em branco para " -#~ "redimensionar proporcionalmente. (apenas números inteiros. O padrão é 0)" - -#~ msgid "Video Background URL (MP4 only)" -#~ msgstr "Url do Vídeo de Fundo (MP4 apenas)" - -#~ msgid "Video Background URL (OGV only)" -#~ msgstr "Url do Vídeo de Fundo (OGV apenas)" - -#~ msgid "Video Background URL (WEBM only)" -#~ msgstr "Url do Vídeo de Fundo (WEBM apenas)" - -#~ msgid "Page Header Content" -#~ msgstr "Conteúdo no Cabeçalho da Página" - -#~ msgid "Add your content to the page header. HTML and shortcodes allowed." -#~ msgstr "" -#~ "Adicione seu conteúdo ao cabeçalho da página. HTML e shortcodes são " -#~ "permitidos." - -#~ msgid "Add Paragraphs" -#~ msgstr "Adicionar Parágrafos" - -#~ msgid "Wrap your text in paragraph tags automatically." -#~ msgstr "Envolva seu texto em tags de parágrafo automaticamente." - -#~ msgid "Add padding around your content." -#~ msgstr "Adicionar enchimento ao redor do conteúdo." - -#~ msgid "Image Background" -#~ msgstr "Imagem de Fundo" - -#~ msgid "" -#~ "Use the image uploaded above as a background image for your content. " -#~ "(requires image uploaded above)" -#~ msgstr "" -#~ "Usar a imagem enviada acima como imagem de fundo para o seu conteúdo. " -#~ "(requer a imagem enviada acima)" - -#~ msgid "Parallax Background" -#~ msgstr "Parallax Background" - -#~ msgid "" -#~ "Add a cool parallax effect to your background image. (requires the image " -#~ "background option to be checked)" -#~ msgstr "" -#~ "Adicionar efeito de parallax a sua imagem de fundo. (Requer a opção " -#~ "imagem de fundo selecionada)" - -#~ msgid "Full Screen" -#~ msgstr "Tela Cheia" - -#~ msgid "Make your page header content area full screen." -#~ msgstr "Deixar a área de conteúdo do cabeçalho da página em tela cheia." - -#~ msgid "Vertical Center" -#~ msgstr "Centralizado Verticalmente" - -#~ msgid "Center your page header content vertically." -#~ msgstr "Centralizar verticalmente o conteúdo do cabeçalho da página." - -#~ msgid "Container Type" -#~ msgstr "Tipo de Container" - -#~ msgid "Choose whether the page header is contained or fluid." -#~ msgstr "Escolha se o cabeçalho da página será fixo ou fluído." - -#~ msgid "Full width" -#~ msgstr "Largura Total" - -#~ msgid "Choose the horizontal alignment of your content." -#~ msgstr "Escolha o alinhamento horizontal do seu conteúdo." - -#~ msgid "Top/Bottom Padding" -#~ msgstr "Enchimento Superior/Inferior" - -#~ msgid "This will add space above and below your content. (integer only) " -#~ msgstr "" -#~ "Isso adicionará espaço acima e abaixo do seu conteúdo. (números inteiros " -#~ "somente)" - -#~ msgid "Padding Unit" -#~ msgstr "Unidade de Enchimento" - -#~ msgid "Page Header Advanced" -#~ msgstr "Cabeçalho da Página Avançado" - -#~ msgid "Transparent navigation" -#~ msgstr "Menu Transparente" - -#~ msgid "Navigation text" -#~ msgstr "Menu - texto" - -#~ msgid "Navigation background hover" -#~ msgstr "Menu - fundo hover" - -#~ msgid "Navigation text hover" -#~ msgstr "Menu - texto hover" - -#~ msgid "Navigation background current" -#~ msgstr "Menu - fundo atual" - -#~ msgid "Navigation text current" -#~ msgstr "Menu - texto ativo" - -#~ msgid "Page Header Logo" -#~ msgstr "Logo do Cabeçalho da Página" - -#~ msgid "Replace your logo on the blog." -#~ msgstr "Substituir seu logo no blog." - -#~ msgid "Replace your navigation logo on the blog." -#~ msgstr "Substituir seu logo do menu no blog." - -#~ msgid "Delete Page Header Settings" -#~ msgstr "Deletar Customizações do Cabeçalho da Página" - -#~ msgid "Export Page Header Settings" -#~ msgstr "Exportar Customizações do Cabeçalho da Página" - -#~ msgid "Add padding" -#~ msgstr "Adicionar enchimento" - -#~ msgid "Add background image" -#~ msgstr "Adicionar imagem de fundo" - -#~ msgid "Parallax effect" -#~ msgstr "Efeito Parallax" - -#~ msgid "Container type" -#~ msgstr "Tipo de Container" - -#~ msgid "Text alignment" -#~ msgstr "Alinhamento do Texto" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Enchimento Superior/Inferior" - -#~ msgid "Background color" -#~ msgstr "Cor de Fundo" - -#~ msgid "Text color" -#~ msgstr "Cor do Texto" - -#~ msgid "Link color" -#~ msgstr "Cor do Link" - -#~ msgid "Link color hover" -#~ msgstr "Cor do Link hover" - -#~ msgid "Overlay color" -#~ msgstr "Cor Sobreposta" - -#~ msgid "Delete Secondary Nav Settings" -#~ msgstr "Menu Secundário - Excluir Configurações" - -#~ msgid "Export Secondary Nav Settings" -#~ msgstr "Menu Secundário - Exportar Configurações" - -#~ msgid "Post Image" -#~ msgstr "Imagem do Post" - -#~ msgid "Post Image Position" -#~ msgstr "Posição da Imagem do Post" - -#~ msgid "Post Image Width" -#~ msgstr "Largura da Imagem do Post" - -#~ msgid "Post Image Height" -#~ msgstr "Altura da Imagem do Post" - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "O espaçamento entre elementos quando \"Layout do Conteúdo\" é definido " -#~ "como \"Containers Separados\"." - -#~ msgid "Left/Right Spacing" -#~ msgstr "Esquerda/Direita Espaçamento" - -#, fuzzy -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "" -#~ "#-#-#-#-# generate-spacing-pt_BR.po (Generate Spacing) #-#-#-#-#\n" -#~ "Espaçamento superior e inferior dos itens do submenu\n" -#~ "#-#-#-#-# secondary-nav-pt_BR.po (Generate Secondary Navigation) #-#-#-" -#~ "#-#\n" -#~ "Espaçamento Superior e Inferior dos itens do sub-menu" - -#~ msgid "15%" -#~ msgstr "15%" - -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgid "25%" -#~ msgstr "25%" - -#~ msgid "30%" -#~ msgstr "30%" - -#~ msgid "35%" -#~ msgstr "35%" - -#~ msgid "40%" -#~ msgstr "40%" - -#~ msgid "45%" -#~ msgstr "45%" - -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgid "Default fonts" -#~ msgstr "Fontes Padrão" - -#~ msgid "Google fonts" -#~ msgstr "Google Fonts" - -#~ msgid "Site navigation" -#~ msgstr "Fonte do Menu Primário" - -#~ msgid "Font-size" -#~ msgstr "Tamanho da Fonte" - -#~ msgid "Footer font size" -#~ msgstr "Rodapé - Tamanho da Fonte" - -#~ msgid "H1 font size" -#~ msgstr "Título H1 - Tamanho da Fonte" - -#~ msgid "H2 font size" -#~ msgstr "Título H2 - Tamanho da Fonte" - -#~ msgid "Updates %s" -#~ msgstr "Atualizações %s" - -#~ msgid "Sticky Menu" -#~ msgstr "Sticky Menu" - -#~ msgid "Sticky Navigation Effect" -#~ msgstr "Sticky Navegação Efeito" - -#~ msgid "Navigation Logo Position" -#~ msgstr "Menu - Posição do Logo " - -#~ msgid "Turn hard cropping or of off." -#~ msgstr "Ativar recorte ou de fora" - -#~ msgid "Secondary Menu Items" -#~ msgstr "Menu Secundário Itens" - -#~ msgid "Secondary navigation" -#~ msgstr "Menu Secundário" - -#~ msgid "Navigation Layout" -#~ msgstr "Layout do Menu" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Fluído / Largura Total" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-pt_PT.mo b/wp-content/plugins/gp-premium/langs/gp-premium-pt_PT.mo index d7bcf2fe..c4c8b1c9 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-pt_PT.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-pt_PT.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-pt_PT.po b/wp-content/plugins/gp-premium/langs/gp-premium-pt_PT.po deleted file mode 100644 index d7ba0344..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-pt_PT.po +++ /dev/null @@ -1,3077 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-08-09 13:11+0100\n" -"PO-Revision-Date: 2018-08-09 13:26+0100\n" -"Last-Translator: Pedro Mendonça \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" -"X-Generator: Poedit 2.1.1\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/libs\n" -"X-Poedit-SearchPathExcluded-3: sites/classes/class-site-widget-importer.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Imagens de fundo" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Corpo" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 elements/class-metabox.php:1030 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "Barra superior" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 elements/class-metabox.php:157 -#: elements/class-metabox.php:1896 elements/class-post-type.php:192 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Cabeçalho" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 elements/class-metabox.php:1039 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Navegação principal" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -#: elements/class-metabox.php:1908 -msgid "Navigation" -msgstr "Navegação" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Repetir" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Repetir na horizontal" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Repetir na vertical" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Não repetir" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Item de navegação" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "Item de navegação ao passar com o rato" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "Item de navegação activo" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "Navegação principal - subitens" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "Subitem de navegação" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "Subitem de navegação ao passar com o rato" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "Subitem de navegação activo" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 elements/class-metabox.php:914 -#: elements/class-metabox.php:921 elements/class-metabox.php:935 -#: elements/class-metabox.php:942 elements/class-metabox.php:949 -#: elements/class-metabox.php:1920 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:235 -#: sections/functions/metaboxes/metabox-functions.php:238 -#: sites/classes/class-site.php:406 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Conteúdo" - -#: backgrounds/functions/functions.php:833 elements/class-metabox.php:194 -msgid "Sidebar" -msgstr "Barra lateral" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "Widgets da barra lateral" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 elements/class-metabox.php:200 -#: elements/class-metabox.php:1075 elements/class-metabox.php:1955 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "Rodapé" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Área de widgets do rodapé" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Área do rodapé" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 elements/class-metabox.php:1048 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Navegação secundária" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "Navegação secundária - subitens" - -#: blog/functions/customizer.php:35 elements/class-conditions.php:40 -msgid "Blog" -msgstr "Blog" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "Arquivo" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "Artigo" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "Tipo de conteúdo" - -#: blog/functions/customizer.php:79 -msgid "Full Content" -msgstr "Completo" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "Excerto" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "Número de palavras do excerto" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Texto \"Ler mais\"" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "Mostrar 'Ler mais' como um botão" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "Mostrar data do artigo" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "Mostrar autor do artigo" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "Mostrar categorias de artigos" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "Mostrar etiquetas de artigos" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "Mostrar contagem de comentários" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "Usar scroll infinito" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "Usar botão para carregar mais artigos" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "Texto \"Carregar mais\"" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "Texto \"A carregar...\"" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "Mostrar navegação de artigos" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "Imagens de destaque" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "Artigos" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "Páginas" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "Mostrar imagens de destaque" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "Mostrar espaçamento em redor das imagens" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 elements/class-metabox.php:1120 -#: elements/class-post-type.php:101 elements/class-post-type.php:111 -msgid "Location" -msgstr "Localização" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "Abaixo do título" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "Acima do título" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "Alinhamento" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 elements/class-metabox.php:373 -#: elements/class-metabox.php:395 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:262 -#: woocommerce/functions/customizer/customizer.php:305 -msgid "Center" -msgstr "Centro" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 elements/class-metabox.php:372 -#: elements/class-metabox.php:445 elements/class-metabox.php:483 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:261 -#: woocommerce/functions/customizer/customizer.php:304 -msgid "Left" -msgstr "Esquerda" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 elements/class-metabox.php:374 -#: elements/class-metabox.php:427 elements/class-metabox.php:465 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:263 -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Right" -msgstr "Direita" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "Largura" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "Automática" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Altura" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "Aplicar tamanhos" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:810 -#: page-header/functions/functions.php:835 -msgid "Above Content Area" -msgstr "Acima da área de conteúdo" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "Colunas" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "Mostrar artigos em colunas" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "Primeiro artigo em destaque" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "Mostrar artigos em grelha masonry" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "Ler mais" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Mais" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "A carregar..." - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Cores" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "Fundo" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Texto" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Ligação" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Ligação ao passar com o rato" - -#: colors/functions/functions.php:199 elements/class-metabox.php:691 -#: page-header/functions/metabox.php:512 typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Título do site" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Descrição do site" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -msgid "Parent Items" -msgstr "Itens superiores" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "Fundo ao passar com o rato" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "Fundo activo" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Texto ao passar com o rato" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "Texto activo" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -msgid "Sub-Menu Items" -msgstr "Item de submenu" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "Botões" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 elements/class-metabox.php:1066 -msgid "Content Title" -msgstr "Título do conteúdo" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Título de artigo do blog" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Título de artigo do blog ao passar com o rato" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Texto de metadados" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Ligação de metadados" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Ligação de metadados ao passar com o rato" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "Título 1 (H1)" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "Título 2 (H2)" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "Título 3 (H3)" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "Título 4 (H4)" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "Título 5 (H5)" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Título do widget" - -#: colors/functions/functions.php:863 elements/class-metabox.php:961 -msgid "Footer Widgets" -msgstr "Widgets do rodapé" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "Formulários" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Fundo de formulário" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "Fundo de formulário em foco" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Borda de formulário" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "Borda de formulário em foco" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Texto de formulário" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "Texto de formulário em foco" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "Botão voltar ao topo" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "Navegação slideout" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "Título do produto" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "Título do produto ao passar com o rato" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "Fundo do botão alternativo" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "Fundo do botão alternativo ao passar com o rato" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "Texto do botão alternativo" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "Texto do botão alternativo ao passar com o rato" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "Classificação por estrelas" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "Fundo de etiqueta de promoção" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "Texto de etiqueta de promoção" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "Preço" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "Texto de separador do produto" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "Separador activo do produto" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "Fundo de mensagem de sucesso" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "Texto de mensagem de sucesso" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "Fundo de mensagem informativa" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "Texto de mensagem informativa" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "Fundo da mensagem de erro" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "Texto da mensagem de erro" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Copyright" - -#: disable-elements/functions/functions.php:98 elements/class-metabox.php:207 -msgid "Disable Elements" -msgstr "Desactivar elementos" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "Imagem de destaque / Cabeçalho de página" - -#: elements/class-conditions.php:36 elements/class-conditions.php:121 -#: woocommerce/functions/customizer/customizer.php:70 -msgid "General" -msgstr "Geral" - -#: elements/class-conditions.php:38 -msgid "Entire Site" -msgstr "Todo o site" - -#: elements/class-conditions.php:39 -msgid "Front Page" -msgstr "Página inicial" - -#: elements/class-conditions.php:41 -msgid "All Singular" -msgstr "Todos os conteúdos" - -#: elements/class-conditions.php:42 -msgid "All Archives" -msgstr "Todos os arquivos" - -#: elements/class-conditions.php:43 -msgid "Author Archives" -msgstr "Arquivo de autor" - -#: elements/class-conditions.php:44 -msgid "Date Archives" -msgstr "Arquivo por data" - -#: elements/class-conditions.php:45 -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "Resultados de pesquisa" - -#: elements/class-conditions.php:46 -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "Página 404" - -#: elements/class-conditions.php:77 -#, php-format -msgctxt "%s is a singular post type name" -msgid "%s Archives" -msgstr "Arquivo de %s" - -#: elements/class-conditions.php:79 -#, php-format -msgctxt "%s is a singular post type name" -msgid "%s Archive" -msgstr "Arquivo de %s" - -#: elements/class-conditions.php:102 -#, php-format -msgctxt "%1$s is post type label. %2$s is taxonomy label." -msgid "%1$s %2$s Archive" -msgstr "Arquivo de %2$s de %1$s" - -#: elements/class-conditions.php:123 -msgid "All Users" -msgstr "Todos os utilizadores" - -#: elements/class-conditions.php:124 -msgid "Logged In" -msgstr "Com sessão iniciada" - -#: elements/class-conditions.php:125 -msgid "Logged Out" -msgstr "Sem sessão iniciada" - -#: elements/class-conditions.php:129 -msgid "Roles" -msgstr "Papéis" - -#: elements/class-hero.php:793 page-header/functions/functions.php:1077 -#, php-format -msgid "View all posts by %s" -msgstr "Ver todos os artigos de %s" - -#: elements/class-metabox.php:95 elements/class-metabox.php:497 -#: elements/class-metabox.php:506 -msgid "Custom Image" -msgstr "Imagem personalizada" - -#: elements/class-metabox.php:96 elements/class-metabox.php:508 -msgid "Fallback Image" -msgstr "Imagem alternativa" - -#: elements/class-metabox.php:97 elements/class-metabox.php:156 -#: elements/class-metabox.php:1140 elements/class-metabox.php:1167 -#: elements/class-metabox.php:1192 elements/class-metabox.php:1239 -#: elements/class-metabox.php:1266 elements/class-metabox.php:1291 -#: elements/class-metabox.php:1332 elements/class-metabox.php:1355 -#: elements/class-metabox.php:1376 -msgid "Choose..." -msgstr "Seleccione..." - -#: elements/class-metabox.php:133 page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "Etiquetas de modelos" - -#: elements/class-metabox.php:154 -msgid "Choose Element Type" -msgstr "Escolha o tipo de elemento" - -#: elements/class-metabox.php:158 elements/class-metabox.php:235 -#: elements/class-post-type.php:196 -msgid "Hook" -msgstr "Hook" - -#: elements/class-metabox.php:159 elements/class-post-type.php:200 -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "Layout" - -#: elements/class-metabox.php:166 -msgid "This element needs a location set within the Display Rules tab in order to display." -msgstr "Para mostrar este elemento, tem de definir uma localização no separador das regras de apresentação." - -#: elements/class-metabox.php:176 -msgid "Page Hero" -msgstr "Hero de página" - -#: elements/class-metabox.php:182 elements/class-metabox.php:1021 -msgid "Site Header" -msgstr "Cabeçalho do site" - -#: elements/class-metabox.php:188 -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "Settings" -msgstr "Configurações" - -#: elements/class-metabox.php:214 elements/class-metabox.php:344 -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "Contentor" - -#: elements/class-metabox.php:220 -msgid "Display Rules" -msgstr "Regras de apresentação" - -#: elements/class-metabox.php:226 -msgid "Internal Notes" -msgstr "Notas internas" - -#: elements/class-metabox.php:257 -msgid "Custom" -msgstr "Personalizado" - -#: elements/class-metabox.php:258 -msgid "Custom Hook" -msgstr "Hook personalizado" - -#: elements/class-metabox.php:266 -msgid "Custom Hook Name" -msgstr "Nome do hook personalizado" - -#: elements/class-metabox.php:275 -msgid "Disable Site Header" -msgstr "Desactivar cabeçalho do site" - -#: elements/class-metabox.php:284 -msgid "Disable Site Footer" -msgstr "Desactivar rodapé do site" - -#: elements/class-metabox.php:293 -msgid "Execute Shortcodes" -msgstr "Executar shortcodes" - -#: elements/class-metabox.php:302 hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Executar PHP" - -#: elements/class-metabox.php:309 -#, php-format -msgid "Unable to execute PHP as %s is defined." -msgstr "Não é possível executar PHP porque está defenido %s." - -#: elements/class-metabox.php:319 -msgid "Priority" -msgstr "Prioridade" - -#: elements/class-metabox.php:334 -msgid "Element Classes" -msgstr "Classes do elemento" - -#: elements/class-metabox.php:335 -msgid "Add custom classes to the Page Hero element." -msgstr "Adicione classes personalizadas ao elemento hero da página." - -#: elements/class-metabox.php:348 elements/class-metabox.php:361 -#: elements/class-metabox.php:1101 page-header/functions/metabox.php:320 -#: page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "Em toda a largura" - -#: elements/class-metabox.php:349 elements/class-metabox.php:360 -#: elements/class-metabox.php:1108 page-header/functions/metabox.php:319 -#: page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgctxt "Width" -msgid "Contained" -msgstr "Limitado" - -#: elements/class-metabox.php:356 page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "Contentor interior" - -#: elements/class-metabox.php:368 -msgid "Horizontal Alignment" -msgstr "Alinhamento horizontal" - -#: elements/class-metabox.php:381 page-header/functions/metabox.php:306 -msgid "Full Screen" -msgstr "Ecrã inteiro" - -#: elements/class-metabox.php:390 -msgid "Vertical Alignment" -msgstr "Alinhamento vertical" - -#: elements/class-metabox.php:394 elements/class-metabox.php:418 -#: elements/class-metabox.php:456 -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Superior" - -#: elements/class-metabox.php:396 elements/class-metabox.php:436 -#: elements/class-metabox.php:474 -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Inferior" - -#: elements/class-metabox.php:403 -msgid "Padding" -msgstr "Espaçamento" - -#: elements/class-metabox.php:491 elements/class-post-type.php:71 -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Imagem de fundo" - -#: elements/class-metabox.php:495 -msgid "No Background Image" -msgstr "Sem imagem de fundo" - -#: elements/class-metabox.php:496 elements/class-metabox.php:1057 -msgid "Featured Image" -msgstr "Imagem de destaque" - -#: elements/class-metabox.php:524 -msgid "Change" -msgstr "Alterar" - -#: elements/class-metabox.php:529 elements/class-metabox.php:728 -#: elements/class-metabox.php:754 elements/class-metabox.php:780 -#: elements/class-metabox.php:806 elements/class-metabox.php:1159 -#: elements/class-metabox.php:1185 elements/class-metabox.php:1210 -#: elements/class-metabox.php:1258 elements/class-metabox.php:1284 -#: elements/class-metabox.php:1309 elements/class-metabox.php:1347 -#: elements/class-metabox.php:1369 elements/class-metabox.php:1390 -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "Remover" - -#: elements/class-metabox.php:539 -#, php-format -msgid "Upload %s" -msgstr "Carregar %s" - -#: elements/class-metabox.php:550 -msgid "Background Position" -msgstr "Posição do fundo" - -#: elements/class-metabox.php:569 -msgid "Parallax" -msgstr "Parallax" - -#: elements/class-metabox.php:578 -msgid "Disable Featured Image" -msgstr "Desactivar imagem de destaque" - -#: elements/class-metabox.php:579 -msgid "Disable the featured image on posts with this hero area." -msgstr "Desactive a imagem de destaque em artigos com esta área de hero." - -#: elements/class-metabox.php:588 -msgid "Background Overlay" -msgstr "Sobreposição de fundo" - -#: elements/class-metabox.php:589 -msgid "Use the background color as a background overlay." -msgstr "Use a cor de fundo como sobreposição de fundo." - -#: elements/class-metabox.php:598 page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Cor de fundo" - -#: elements/class-metabox.php:607 page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Cor de texto" - -#: elements/class-metabox.php:616 page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Cor da ligação" - -#: elements/class-metabox.php:625 page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "Cor da ligação ao passar com o rato" - -#: elements/class-metabox.php:639 -msgid "Merge with Content" -msgstr "Juntar ao conteúdo" - -#: elements/class-metabox.php:640 -msgid "Place your site header on top of the element below it." -msgstr "Insira o cabeçalho do seu site acima do elemento imediatamente abaixo." - -#: elements/class-metabox.php:644 -msgid "No Merge" -msgstr "Não juntar" - -#: elements/class-metabox.php:645 -msgid "Merge" -msgstr "Juntar" - -#: elements/class-metabox.php:646 -msgid "Merge on Desktop Only" -msgstr "Juntar apenas em desktop" - -#: elements/class-metabox.php:653 -msgid "Offset Site Header Height" -msgstr "Deslocar altura do cabeçalho do site" - -#: elements/class-metabox.php:654 -msgid "Add to the top padding of your Page Hero to prevent overlapping." -msgstr "Adicione espaçamento superior ao hero da sua página para prevenir sobreposição." - -#: elements/class-metabox.php:681 -msgid "Header Background" -msgstr "Fundo do cabeçalho" - -#: elements/class-metabox.php:702 page-header/functions/metabox.php:517 -#: typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "Descrição do site" - -#: elements/class-metabox.php:713 elements/class-metabox.php:727 -msgid "Site Logo" -msgstr "Logótipo do site" - -#: elements/class-metabox.php:727 elements/class-metabox.php:753 -#: elements/class-metabox.php:779 elements/class-metabox.php:805 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "Carregar" - -#: elements/class-metabox.php:739 elements/class-metabox.php:753 -#: elements/class-metabox.php:779 elements/class-metabox.php:805 -msgid "Retina Logo" -msgstr "Logótipo retina" - -#: elements/class-metabox.php:765 -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "Logótipo da navegação" - -#: elements/class-metabox.php:791 -msgid "Mobile Header Logo" -msgstr "Logótipo do cabeçalho mobile" - -#: elements/class-metabox.php:816 secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "Localização da navegação" - -#: elements/class-metabox.php:820 elements/class-metabox.php:907 -#: elements/class-metabox.php:967 elements/class-metabox.php:1094 -msgid "Default" -msgstr "Por omissão" - -#: elements/class-metabox.php:821 secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Abaixo do cabeçalho" - -#: elements/class-metabox.php:822 secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Acima do cabeçalho" - -#: elements/class-metabox.php:823 secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Flutuar para a direita" - -#: elements/class-metabox.php:824 secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "Flutuar para a esquerda" - -#: elements/class-metabox.php:825 elements/class-metabox.php:919 -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "Barra lateral esquerda" - -#: elements/class-metabox.php:826 elements/class-metabox.php:912 -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "Barra lateral direita" - -#: elements/class-metabox.php:827 secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Sem navegação" - -#: elements/class-metabox.php:834 -msgid "Navigation Colors" -msgstr "Cores da navegação" - -#: elements/class-metabox.php:843 page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "Fundo da navegação" - -#: elements/class-metabox.php:852 page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "Texto da navegação" - -#: elements/class-metabox.php:861 page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "Fundo da navegação ao passar com o rato" - -#: elements/class-metabox.php:870 page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "Texto da navegação ao passar com o rato" - -#: elements/class-metabox.php:879 page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "Fundo da navegação activa" - -#: elements/class-metabox.php:888 page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "Texto da navegação activa" - -#: elements/class-metabox.php:901 -#: woocommerce/functions/customizer/customizer.php:165 -#: woocommerce/functions/customizer/customizer.php:566 -msgid "Sidebar Layout" -msgstr "Layout das barras laterais" - -#: elements/class-metabox.php:914 elements/class-metabox.php:921 -#: elements/class-metabox.php:935 elements/class-metabox.php:942 -#: elements/class-metabox.php:949 -msgctxt "Short name for meta box" -msgid "Sidebar" -msgstr "Barra lateral" - -#: elements/class-metabox.php:926 -msgid "No Sidebars" -msgstr "Sem barras laterais" - -#: elements/class-metabox.php:928 -#: woocommerce/functions/customizer/customizer.php:170 -#: woocommerce/functions/customizer/customizer.php:572 -msgid "Content (no sidebars)" -msgstr "Só conteúdo (sem barra)" - -#: elements/class-metabox.php:933 -msgid "Both Sidebars" -msgstr "Duas barras laterais" - -#: elements/class-metabox.php:940 -msgid "Both Sidebars on Left" -msgstr "Duas barras à esquerda" - -#: elements/class-metabox.php:947 -msgid "Both Sidebars on Right" -msgstr "Duas barras à direita" - -#: elements/class-metabox.php:974 -msgid "0 Widgets" -msgstr "0 widgets" - -#: elements/class-metabox.php:981 -msgid "1 Widget" -msgstr "1 widget" - -#: elements/class-metabox.php:988 -msgid "2 Widgets" -msgstr "2 widgets" - -#: elements/class-metabox.php:995 -msgid "3 Widgets" -msgstr "3 widgets" - -#: elements/class-metabox.php:1002 -msgid "4 Widgets" -msgstr "4 widgets" - -#: elements/class-metabox.php:1009 -msgid "5 Widgets" -msgstr "5 widgets" - -#: elements/class-metabox.php:1088 -msgid "Content Area" -msgstr "Área do conteúdo" - -#: elements/class-metabox.php:1121 -msgid "Choose when this element should display." -msgstr "Defina em que condições este elemento deverá ser mostrado." - -#: elements/class-metabox.php:1213 -msgid "Add Location Rule" -msgstr "Adicionar regra de localização" - -#: elements/class-metabox.php:1219 -msgid "Exclude" -msgstr "Excluir" - -#: elements/class-metabox.php:1220 -msgid "Choose when this element should not display." -msgstr "Defina em que condições este elemento não deverá ser mostrado." - -#: elements/class-metabox.php:1312 -msgid "Add Exclusion Rule" -msgstr "Adicionar regra de exclusão" - -#: elements/class-metabox.php:1318 elements/class-post-type.php:103 -#: elements/class-post-type.php:113 -msgid "Users" -msgstr "Utilizadores" - -#: elements/class-metabox.php:1319 -msgid "Display this element for specific user roles." -msgstr "Defina para que utilizadores este elemento deverá ser mostrado." - -#: elements/class-metabox.php:1393 -msgid "Add User Rule" -msgstr "Adicionar regra de utilizador" - -#: elements/class-metabox.php:1404 -msgid "Internal notes can be helpful to remember why this element was added." -msgstr "A notas internas podem ser úteis para lembrar a razão pela qual este elemento foi adicionado." - -#: elements/class-metabox.php:1889 -msgid "Scripts & Styles" -msgstr "Scripts e estilos" - -#: elements/class-metabox.php:1937 -msgid "Comments" -msgstr "Comentários" - -#: elements/class-metabox.php:1946 -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "Barras laterais" - -#: elements/class-metabox.php:1969 -msgid "WooCommerce - Global" -msgstr "WooCommerce - Global" - -#: elements/class-metabox.php:1979 -msgid "WooCommerce - Shop" -msgstr "WooCommerce - Loja" - -#: elements/class-metabox.php:1990 -msgid "WooCommerce - Product" -msgstr "WooCommerce - Produto" - -#: elements/class-metabox.php:2010 -msgid "WooCommerce - Cart" -msgstr "WooCommerce - Carrinho" - -#: elements/class-metabox.php:2032 -msgid "WooCommerce - Checkout" -msgstr "WooCommerce - Finalizar compra" - -#: elements/class-metabox.php:2059 -msgid "WooCommerce - Account" -msgstr "WooCommerce - Conta" - -#: elements/class-metabox.php:2075 page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "O título do conteúdo/taxonomia actual." - -#: elements/class-metabox.php:2080 page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "A data de publicação do conteúdo actual." - -#: elements/class-metabox.php:2085 page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "O autor do conteúdo actual." - -#: elements/class-metabox.php:2090 page-header/functions/metabox.php:695 -msgid "The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "Os termos atribuídos à taxonomia escolhida (category, post_tag, product_cat)." - -#: elements/class-metabox.php:2095 page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "Metadados personalizados do conteúdo. Substitua \"name\" pelo nome do seu campo personalizado." - -#: elements/class-post-type.php:62 -msgctxt "Post Type General Name" -msgid "Elements" -msgstr "Elementos" - -#: elements/class-post-type.php:63 -msgctxt "Post Type Singular Name" -msgid "Element" -msgstr "Elemento" - -#: elements/class-post-type.php:64 elements/class-post-type.php:252 -#: elements/class-post-type.php:253 elements/elements.php:62 -msgid "Elements" -msgstr "Elementos" - -#: elements/class-post-type.php:65 -msgid "All Elements" -msgstr "Todos os elementos" - -#: elements/class-post-type.php:66 -msgid "Add New Element" -msgstr "Adicionar novo elemento" - -#: elements/class-post-type.php:67 -msgid "New Element" -msgstr "Novo elemento" - -#: elements/class-post-type.php:68 -msgid "Edit Element" -msgstr "Editar elemento" - -#: elements/class-post-type.php:69 -msgid "Update Element" -msgstr "Actualizar elemento" - -#: elements/class-post-type.php:70 -msgid "Search Element" -msgstr "Pesquisar elemento" - -#: elements/class-post-type.php:72 -msgid "Set background image" -msgstr "Definir imagem de fundo" - -#: elements/class-post-type.php:73 -msgid "Remove background image" -msgstr "Remover imagem de fundo" - -#: elements/class-post-type.php:100 elements/class-post-type.php:110 -msgid "Type" -msgstr "Tipo" - -#: elements/class-post-type.php:102 elements/class-post-type.php:112 -msgid "Exclusions" -msgstr "Exclusões" - -#: elements/class-post-type.php:133 -msgid "Headers" -msgstr "Cabeçalhos" - -#: elements/class-post-type.php:134 -msgid "Hooks" -msgstr "Hooks" - -#: elements/class-post-type.php:135 -msgid "Layouts" -msgstr "Layouts" - -#: elements/class-post-type.php:140 -msgid "All types" -msgstr "Todos os tipos" - -#: general/smooth-scroll.php:89 -msgid "Smooth scroll" -msgstr "Scroll suave" - -#: general/smooth-scroll.php:90 -msgid "Initiate smooth scroll on anchor links using the smooth-scroll class." -msgstr "Inicia um scroll suave nas âncoras de ligações com a classe smooth-scroll." - -#: gp-premium.php:226 -msgid "GeneratePress has an update available." -msgstr "Está disponível uma actualização do GeneratePress." - -#: gp-premium.php:228 -msgid "Update now." -msgstr "Actualizar agora" - -#: gp-premium.php:240 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "O GP Premium requer que o GeneratePress seja o seu tema activo." - -#: gp-premium.php:241 -msgid "Install now." -msgstr "Instalar agora" - -#: gp-premium.php:256 -msgid "Configure" -msgstr "Configurar" - -#: hooks/functions/functions.php:69 -msgid "DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP Hooks." -msgstr "Está definido DISALLOW_FILE_EDIT. Deverá também desactivar a execução de PHP nos hooks do GP." - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "Saiba como" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "Hooks do GP" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Antes do cabeçalho" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Antes do conteúdo do cabeçalho" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "Depois do conteúdo do cabeçalho" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "Depois do cabeçalho" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "Dentro do contentor do conteúdo" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Antes do conteúdo" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "Depois do título" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "Depois do conteúdo" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Antes do conteúdo da barra direita" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "Depois do conteúdo da barra direita" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Antes do conteúdo da barra esquerda" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "Depois do conteúdo da barra esquerda" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Antes do rodapé" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "Depois dos widgets do rodapé" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Antes do conteúdo do rodapé" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "Depois do conteúdo do rodapé" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "Desactivar hook" - -#: hooks/functions/functions.php:397 -msgid "Use these fields to insert anything you like throughout GeneratePress. Shortcodes are allowed, and you can even use PHP if you check the Execute PHP checkboxes." -msgstr "Use estes campos para inserir qualquer coisa no GeneratePress. Pode usar shortcodes, ou pode usar PHP se a respectiva caixa de selecção Executar PHP estiver seleccionada." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Mostrar todos" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "Guardar hooks" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "Hooks guardados." - -#: hooks/functions/functions.php:529 -msgid "Legacy Hooks" -msgstr "Hooks antigos" - -#: import-export/functions/functions.php:49 -msgid "Export Settings" -msgstr "Exportar configurações" - -#: import-export/functions/functions.php:52 inc/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "Avançado" - -#: import-export/functions/functions.php:56 inc/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "Core" - -#: import-export/functions/functions.php:62 inc/reset.php:17 -msgctxt "Module name" -msgid "Backgrounds" -msgstr "Backgrounds" - -#: import-export/functions/functions.php:69 inc/reset.php:21 -msgctxt "Module name" -msgid "Blog" -msgstr "Blog" - -#: import-export/functions/functions.php:76 inc/reset.php:25 -msgctxt "Module name" -msgid "Hooks" -msgstr "Hooks" - -#: import-export/functions/functions.php:83 inc/reset.php:29 -msgctxt "Module name" -msgid "Page Header" -msgstr "Page Header" - -#: import-export/functions/functions.php:90 inc/reset.php:33 -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "Secondary Navigation" - -#: import-export/functions/functions.php:97 inc/reset.php:37 -msgctxt "Module name" -msgid "Spacing" -msgstr "Spacing" - -#: import-export/functions/functions.php:104 inc/reset.php:41 -msgctxt "Module name" -msgid "Menu Plus" -msgstr "Menu Plus" - -#: import-export/functions/functions.php:111 inc/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "WooCommerce" - -#: import-export/functions/functions.php:118 inc/reset.php:49 -msgctxt "Module name" -msgid "Copyright" -msgstr "Copyright" - -#: import-export/functions/functions.php:127 -msgid "Export" -msgstr "Exportar" - -#: import-export/functions/functions.php:134 -msgid "Import Settings" -msgstr "Importar configurações" - -#: import-export/functions/functions.php:143 -msgid "Import" -msgstr "Importar" - -#: import-export/functions/functions.php:237 -msgid "Please upload a valid .json file" -msgstr "Por favor, carregue um ficheiro .json válido" - -#: import-export/functions/functions.php:243 -msgid "Please upload a file to import" -msgstr "Por favor, carregue um ficheiro para importar" - -#: inc/activation.php:27 -msgid "This module has been deprecated. Deactivating it will remove it from this list." -msgstr "Este módulo está obsoleto. Ao desactivar, será removido desta lista." - -#: inc/activation.php:39 -msgid "Module deactivated." -msgstr "Módulo desactivado." - -#: inc/activation.php:43 -msgid "Module activated." -msgstr "Módulo activado." - -#: inc/activation.php:57 -msgid "License deactivated." -msgstr "Licença desactivada." - -#: inc/activation.php:61 -msgid "License activated." -msgstr "Licença activada." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:120 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:128 -msgid "Bulk Actions" -msgstr "Acções por lotes" - -#: inc/activation.php:129 inc/activation.php:170 -msgid "Activate" -msgstr "Activar" - -#: inc/activation.php:130 inc/activation.php:150 -msgid "Deactivate" -msgstr "Desactivar" - -#: inc/activation.php:133 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "Aplicar" - -#: inc/activation.php:167 -msgid "WooCommerce not activated." -msgstr "WooCommerce não activado." - -#: inc/activation.php:347 -msgid "Receiving updates" -msgstr "Recebe actualizações" - -#: inc/activation.php:349 -msgid "Not receiving updates" -msgstr "Não recebe actualizações" - -#: inc/activation.php:355 -msgid "Updates" -msgstr "Actualizações" - -#: inc/activation.php:358 inc/activation.php:370 -msgid "Help" -msgstr "Ajuda" - -#: inc/activation.php:365 -msgid "License Key" -msgstr "Chave de licença" - -#: inc/activation.php:370 -msgid "Receive beta updates" -msgstr "Receber actualizações beta" - -#: inc/activation.php:374 -msgid "Save" -msgstr "Guardar" - -#: inc/activation.php:467 -#, php-format -msgid "Your license key expired on %s." -msgstr "A sua licença expirou em %s." - -#: inc/activation.php:474 -msgid "Your license key has been disabled." -msgstr "A sua licença foi desactivada." - -#: inc/activation.php:479 -msgid "Invalid license." -msgstr "Licença inválida." - -#: inc/activation.php:485 -msgid "Your license is not active for this URL." -msgstr "A sua licença não está activa para este URL." - -#: inc/activation.php:490 -msgid "This appears to be an invalid license key for GP Premium." -msgstr "A chave da licença do GP Premium parece ser inválida." - -#: inc/activation.php:495 -msgid "Your license key has reached its activation limit." -msgstr "A sua licença atingiu o limite de activações." - -#: inc/activation.php:500 -msgid "An error occurred, please try again." -msgstr "Ocorreu um erro, por favor de novo." - -#: inc/activation.php:545 -msgid "Enter valid license key for automatic updates." -msgstr "Insira uma chave de licença válida para receber automaticamente as actualizações." - -#: inc/dashboard.php:19 -msgid "Modules" -msgstr "Módulos" - -#: inc/reset.php:9 -msgid "Reset Settings" -msgstr "Repor configurações" - -#: inc/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "Aviso: Isto irá eliminar as suas configurações e não poderá ser desfeito." - -#: inc/reset.php:58 -#: library/customizer/controls/class-range-slider-control.php:45 -msgid "Reset" -msgstr "Repor" - -#: library/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "Está disponível uma nova versão de %1$s. %2$sVer detalhes da versão %3$s%4$s." - -#: library/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s." -msgstr "Está disponível uma nova versão de %1$s. %2$sVer detalhes da versão %3$s%4$s ou %5$sactualizar agora%6$s." - -#: library/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Não tem permissão para instalar actualizações de plugins" - -#: library/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Erro" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "A cada %d minutos" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "left top, x% y%, xpos ypos (px)" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Posição" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "Tamanho (Automático)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% da largura" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Capa" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Limitar" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Anexo" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Fixo" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Local" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:569 -msgid "Inherit" -msgstr "Herdar" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "%current_year% para inserir e actualizar automaticamente o ano." - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "%copy%para incluir o símbolo de copyright." - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "Pode usar HTML." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Pode usar shortcodes." - -#: library/customizer/controls/class-range-slider-control.php:42 -#: sites/classes/class-site.php:534 -msgid "Desktop" -msgstr "Desktop" - -#: library/customizer/controls/class-range-slider-control.php:43 -#: sites/classes/class-site.php:535 -msgid "Tablet" -msgstr "Tablet" - -#: library/customizer/controls/class-range-slider-control.php:44 -#: sites/classes/class-site.php:536 -msgid "Mobile" -msgstr "Mobile" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "Ligar valores" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "Desligar valores" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "Fontes do sistema" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "Google Fonts" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Família tipográfica" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "Peso da fonte" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "Transformar texto" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "Variantes" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "normal" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "negrito" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "não" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "capitalizar" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "maiúsculas" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "minúsculas" - -#: menu-plus/functions/generate-menu-plus.php:14 -msgid "Slideout Menu" -msgstr "Menu slideout" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "Menu" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "Menu Plus" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "Configurações gerais" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "Legenda do menu mobile" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "Navegação fixa" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "Apenas em mobile" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "Apenas em desktop" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "Sim" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "Não" - -#: menu-plus/functions/generate-menu-plus.php:202 -msgid "Transition" -msgstr "Transição" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "Fade" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "Slide" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "Nenhuma" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "Esconder ao deslocar para baixo" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "Localização de logótipo da navegação" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "Fixa" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "Fixa + Estática" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "Estática" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "Cabeçalho mobile" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "Logótipo" - -#: menu-plus/functions/generate-menu-plus.php:442 -msgid "Side" -msgstr "Posição" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:198 sites/classes/class-site.php:531 -msgid "Close" -msgstr "Fechar" - -#: page-header/functions/functions.php:783 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:754 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:157 -#: page-header/functions/post-type.php:190 -msgid "Page Header" -msgstr "Cabeçalho de página" - -#: page-header/functions/functions.php:807 -msgid "Page Header Location" -msgstr "Localização do cabeçalho de página" - -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Inside Content Area" -msgstr "Dentro da área do conteúdo" - -#: page-header/functions/functions.php:832 -msgid "Single Post Header Location" -msgstr "Localização do cabeçalho de artigo" - -#: page-header/functions/functions.php:837 -msgid "Below Post Title" -msgstr "Abaixo do título do artigo" - -#: page-header/functions/functions.php:838 -msgid "Hide" -msgstr "Esconder" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -#: page-header/functions/post-type.php:132 -msgid "Global Locations" -msgstr "Localizações globais" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "Página de artigos (blog)" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "Tipos de conteúdo - Conteúdo" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "Tipos de conteúdo - Arquivo" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "Taxonomias - Arquivo" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:740 -#, php-format -msgid "No Page Headers found. Want to create one?" -msgstr "Nenhum cabeçalho de página encontrado. Quer criar um?" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "É necessário conteúdo para que as definições abaixo funcionarem." - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Imagem" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "Vídeo de fundo" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "Adicionar ao excerto" - -#: page-header/functions/metabox.php:218 -msgid "Currently using your featured image." -msgstr "Actualmente a usar a sua imagem de destaque." - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Imagem do cabeçalho de página" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "Inserir imagem" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "Escolher imagem" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "Remover imagem" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "Ou pode definir a imagem de destaque." - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "Ligação da imagem" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "Redimensionar a imagem" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Desactivar" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Activar" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Largura da imagem" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Altura da imagem" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "Use \"0\" ou deixe em branco para redimensionar proporcionalmente." - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "Pode usar HTML e shortcodes." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Adicionar parágrafos automaticamente" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "Adicionar espaçamento" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "Adicionar imagem de fundo" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "Usar a cor de fundo como sobreposição" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Efeito parallax" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "Conteúdo centrado na vertical" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:301 -msgid "Text Alignment" -msgstr "Alinhamento do texto" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "Espaçamento inferior e superior" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "Espaçamento à esquerda e direita" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "Ficheiro MP4" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "Vídeo do cabeçalho de página" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "Inserir vídeo" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "Escolher vídeo" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "Ficheiro OGV" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "Ficheiro WEBM" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "Cor de sobreposição" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "Substitua o logótipo/cabeçalho do site nesta página." - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "Cabeçalho / Logótipo" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "Inserir logótipo" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "Escolher logótipo" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "Remover logótipo" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "Substitua o logótipo da navegação nesta página." - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "Unir com cabeçalho do site" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "Conteúdo por trás do cabeçalho (sliders, etc.)" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "Cores de navegação personalizadas" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "Cabeçalhos de página" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "Cabeçalho de página" - -#: page-header/functions/post-type.php:14 -#: page-header/functions/post-type.php:84 -#: page-header/functions/post-type.php:85 -msgid "Page Headers" -msgstr "Cabeçalhos de página" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "Arquivo de cabeçalhos de página" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "Cabeçalho de página superior:" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "Todos os cabeçalhos de página" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "Adicionar novo cabeçalho de página" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "Novo cabeçalho de página" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "Editar cabeçalho de página" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "Actualizar cabeçalho de página" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "Ver cabeçalho de página" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "Pesquisar cabeçalho de página" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "Inserir no cabeçalho de página" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "Carregado neste cabeçalho de página" - -#: page-header/functions/post-type.php:142 -msgid "Legacy Page Headers" -msgstr "Cabeçalhos de página antigos" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Menu secundário" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "Largura da navegação" - -#: secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgctxt "Width" -msgid "Full" -msgstr "Em toda a largura" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "Largura interior da navegação" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Alinhamento da navegação" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "Unir com navegação secundária" - -#: sections/functions/metaboxes/metabox-functions.php:47 -#: sections/functions/metaboxes/metabox-functions.php:56 -msgid "Sections" -msgstr "Secções" - -#: sections/functions/metaboxes/metabox-functions.php:231 -msgid "This action can not be undone, are you sure?" -msgstr "Essa acção não pode ser desfeita, tem certeza?" - -#: sections/functions/metaboxes/metabox-functions.php:234 -msgid "Section" -msgstr "Secção" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Section Background" -msgstr "Fundo da secção" - -#: sections/functions/metaboxes/metabox-functions.php:244 -msgid "Set as Section Background" -msgstr "Definir como fundo da secção" - -#: sections/functions/metaboxes/metabox-functions.php:248 -msgid "Insert into Section" -msgstr "Inserir na secção" - -#: sections/functions/metaboxes/metabox-functions.php:249 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "Editar secção" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "Clique para editar" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "Clique para editar conteúdo" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "Clique para editar as configurações" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "Clique e arraste para ordenar" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "Clique para remover" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "Adicionar secção" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "Remover secções" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "Cancelar" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "Legenda da secção" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "Adicionar multimédia" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "Visual" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Texto" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Tipo de caixa" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Tipo de caixa interior" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "ID personalizado" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Classes personalizadas" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Espaçamento superior" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Espaçamento inferior" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "Cor de fundo da sobreposição" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "O Javascript tem de estar activado para usar Generate Sections" - -#: sections/functions/metaboxes/views/use-sections.php:15 -msgid "Use Sections" -msgstr "Usar secções" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Nenhuma secção adicionada!" - -#: sites/classes/class-site-helper.php:108 -msgid "Backing up options" -msgstr "A exportar opções" - -#: sites/classes/class-site-helper.php:109 -msgid "Importing options" -msgstr "A importar opções" - -#: sites/classes/class-site-helper.php:110 -msgid "Downloading content" -msgstr "A descarregar conteúdos" - -#: sites/classes/class-site-helper.php:111 -msgid "Importing content" -msgstr "A importar conteúdos" - -#: sites/classes/class-site-helper.php:112 -msgid "Importing site options" -msgstr "A importar opções do site" - -#: sites/classes/class-site-helper.php:113 -msgid "Importing widgets" -msgstr "A importar widgets" - -#: sites/classes/class-site-helper.php:114 -msgid "Activating plugins" -msgstr "A activar plugins" - -#: sites/classes/class-site-helper.php:115 -msgid "Installing plugins" -msgstr "A instalar plugins" - -#: sites/classes/class-site-helper.php:116 -msgid "Automatic" -msgstr "Automáticos" - -#: sites/classes/class-site-helper.php:117 -msgid "Manual" -msgstr "Manuais" - -#: sites/classes/class-site-helper.php:118 -msgid "Theme options exist and can be imported." -msgstr "O tema tem opções que podem ser importadas." - -#: sites/classes/class-site-helper.php:119 -msgid "No theme options found, please contact the site author." -msgstr "O tema não tem opções, por favor contacte o autor do site." - -#: sites/classes/class-site-helper.php:120 -msgid "Site content exists and can be imported." -msgstr "O site tem conteúdos que podem ser importados." - -#: sites/classes/class-site.php:196 -msgid "Previous Site" -msgstr "Site anterior" - -#: sites/classes/class-site.php:196 sites/classes/class-site.php:532 -msgid "Previous" -msgstr "Anterior" - -#: sites/classes/class-site.php:197 -msgid "Next Site" -msgstr "Site seguinte" - -#: sites/classes/class-site.php:197 sites/classes/class-site.php:533 -msgid "Next" -msgstr "Seguinte" - -#: sites/classes/class-site.php:256 sites/classes/class-site.php:325 -msgid "Preview" -msgstr "Pré-visualizar" - -#: sites/classes/class-site.php:257 sites/classes/class-site.php:537 -msgid "Details" -msgstr "Detalhes" - -#: sites/classes/class-site.php:260 -#, php-format -msgctxt "required version number" -msgid "Requires GP Premium %s" -msgstr "Requer o GP Premium %s" - -#: sites/classes/class-site.php:279 -msgid "Overview" -msgstr "Visão geral" - -#: sites/classes/class-site.php:283 -msgid "Theme Options" -msgstr "Opções do tema" - -#: sites/classes/class-site.php:291 -msgid "Site Content" -msgstr "Conteúdos do site" - -#: sites/classes/class-site.php:291 sites/classes/class-site.php:406 -msgid "Optional" -msgstr "Opcional" - -#: sites/classes/class-site.php:298 -msgid "Plugins" -msgstr "Plugins" - -#: sites/classes/class-site.php:304 sites/classes/class-site.php:436 -msgid "The following plugins can be installed and activated automatically." -msgstr "Os plugins abaixo poderão ser instalados e activados automaticamente." - -#: sites/classes/class-site.php:309 sites/classes/class-site.php:441 -msgid "The following plugins are already installed." -msgstr "Os plugins abaixo já estão instalados." - -#: sites/classes/class-site.php:314 sites/classes/class-site.php:446 -msgid "The following plugins need to be installed and activated manually." -msgstr "Os plugins abaixo deverão ser instalados e activados manualmente." - -#: sites/classes/class-site.php:332 -msgid "Gathering data" -msgstr "A obter dados" - -#: sites/classes/class-site.php:336 -msgid "Get Started" -msgstr "Começar" - -#: sites/classes/class-site.php:348 -msgid "GeneratePress Options" -msgstr "Opções do GeneratePress" - -#: sites/classes/class-site.php:352 -msgid "This step will backup your current theme options, then import the new ones." -msgstr "Este passo irá exportar as opções do seu tema actual, de seguida serão importadas as novas opções." - -#: sites/classes/class-site.php:355 -msgid "The following GP Premium modules will be activated:" -msgstr "Serão activados os seguintes módulos do GP Premium:" - -#: sites/classes/class-site.php:363 -msgid "Go Back" -msgstr "Voltar" - -#: sites/classes/class-site.php:370 -msgid "Backup Options" -msgstr "Exportar opções" - -#: sites/classes/class-site.php:380 -msgid "Import Options" -msgstr "Importar opções" - -#: sites/classes/class-site.php:413 -msgid "I understand that this step will add content, site options, menus, widgets and plugins to my site." -msgstr "Compreendo que este passo irá adicionar conteúdos, opções do site, menus, widgets e plugins ao meu site." - -#: sites/classes/class-site.php:420 -#, php-format -msgid "For best results, only install this demo content on fresh sites with no content. If you have already installed another GeneratePress Site, be sure to %s by deleting the content, plugins and menus that it added." -msgstr "Para melhores resultados, instale estes conteúdos de demonstração apenas em sites novos e sem conteúdos. Se já tiver instalado outro site do GeneratePress, certifique-se de o %s através de eliminar os conteúdos, plugins e menus que foram adicionados." - -#: sites/classes/class-site.php:423 -msgid "clean it up" -msgstr "limpar" - -#: sites/classes/class-site.php:428 -msgid "You can skip this step if you already have content and do not want the demo content imported." -msgstr "Pode ignorar este passo se já tiver conteúdos e não quiser importar conteúdos de demonstração." - -#: sites/classes/class-site.php:455 -msgid "Skip" -msgstr "Ignorar" - -#: sites/classes/class-site.php:463 -msgid "Import Content" -msgstr "Importar conteúdos" - -#: sites/classes/class-site.php:490 -msgid "All done!" -msgstr "Concluído!" - -#: sites/classes/class-site.php:491 -msgid "Your site is ready to go!" -msgstr "O seu site está pronto!" - -#: sites/classes/class-site.php:495 -#, php-format -msgid "Crafted with %s by" -msgstr "Criado com %s por" - -#: sites/classes/class-site.php:513 -msgid "Start Over" -msgstr "Começar de novo" - -#: sites/classes/class-site.php:516 -msgid "View Site" -msgstr "Ver site" - -#: sites/classes/class-site.php:920 -msgid "Site options imported" -msgstr "Opções do site importadas" - -#: sites/classes/class-site.php:964 -msgid "Plugins activated" -msgstr "Plugins activados" - -#: sites/sites.php:45 sites/sites.php:62 sites/sites.php:63 -msgid "Site Library" -msgstr "Biblioteca de sites" - -#: sites/sites.php:98 -msgid "GeneratePress Site Library" -msgstr "Biblioteca de sites do GeneratePress" - -#: sites/sites.php:102 -msgid "Support" -msgstr "Suporte" - -#: sites/sites.php:103 -msgid "Documentation" -msgstr "Documentação" - -#: sites/sites.php:111 -msgid "All" -msgstr "Todos" - -#: sites/sites.php:112 -msgid "Beaver Builder" -msgstr "Beaver Builder" - -#: sites/sites.php:113 -msgid "Elementor" -msgstr "Elementor" - -#: sites/sites.php:114 -msgid "No Page Builder" -msgstr "Sem construtor de páginas" - -#: sites/sites.php:126 -msgid "Refresh Sites" -msgstr "Actualizar sites" - -#: sites/sites.php:301 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "GeneratePress Site" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "Largura do contentor" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Espaço separador" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "Espaçamento do conteúdo" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "Espaçamento do conteúdo mobile" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "Espaçamento das áreas de widgets do rodapé" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "Espaçamento do rodapé" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "Espaçamento do cabeçalho" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "Largura de item de menu" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:215 -#: spacing/functions/customizer/navigation-spacing.php:251 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "Altura de item de menu" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "Altura de item de submenu" - -#: spacing/functions/customizer/navigation-spacing.php:179 -msgid "Sub-Menu Width" -msgstr "Largura do submenu" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "Espaçamento de widgets" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "Largura da barra lateral esquerda" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "Largura da barra lateral direita" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "Espaçamento da barra superior" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "Espaçamento" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Altere o espaçamento em píxeis para vários elementos." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Tipografia" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Tamanho da fonte" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "Altura da linha" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "Margem do parágrafo" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "Títulos" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Título 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Título 2 (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Título 3 (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "Título 4 (H4)" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "Título 5 (H5)" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "Título 6 (H6)" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "Widgets" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "Títulos dos widgets" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "Margem inferior" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "Tamanho da fonte do conteúdo" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "Título dos produtos" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "Tamanho da fonte do título de produtos relacionados" - -#: woocommerce/functions/customizer/customizer.php:56 -#: woocommerce/functions/customizer/customizer.php:747 -#: woocommerce/functions/customizer/customizer.php:757 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: woocommerce/functions/customizer/customizer.php:89 -msgid "Display cart in menu" -msgstr "Mostrar carrinho no menu" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Icon" -msgstr "Ícone" - -#: woocommerce/functions/customizer/customizer.php:111 -msgid "Shopping Cart" -msgstr "Carrinho de compras" - -#: woocommerce/functions/customizer/customizer.php:112 -msgid "Shopping Bag" -msgstr "Saco de compras" - -#: woocommerce/functions/customizer/customizer.php:113 -msgid "Shopping Basket" -msgstr "Cesto de compras" - -#: woocommerce/functions/customizer/customizer.php:133 -msgid "Display breadcrumbs" -msgstr "Mostrar breadcrumbs" - -#: woocommerce/functions/customizer/customizer.php:146 -msgid "Shop" -msgstr "Loja" - -#: woocommerce/functions/customizer/customizer.php:168 -#: woocommerce/functions/customizer/customizer.php:570 -msgid "Sidebar / Content" -msgstr "Barra / Conteúdo" - -#: woocommerce/functions/customizer/customizer.php:169 -#: woocommerce/functions/customizer/customizer.php:571 -msgid "Content / Sidebar" -msgstr "Conteúdo / Barra" - -#: woocommerce/functions/customizer/customizer.php:171 -#: woocommerce/functions/customizer/customizer.php:573 -msgid "Sidebar / Content / Sidebar" -msgstr "Barra / Conteúdo / Barra" - -#: woocommerce/functions/customizer/customizer.php:172 -#: woocommerce/functions/customizer/customizer.php:574 -msgid "Sidebar / Sidebar / Content" -msgstr "Barra / Barra / Conteúdo" - -#: woocommerce/functions/customizer/customizer.php:173 -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Content / Sidebar / Sidebar" -msgstr "Conteúdo / Barra / Barra" - -#: woocommerce/functions/customizer/customizer.php:211 -msgid "Product Columns" -msgstr "Colunas de produtos" - -#: woocommerce/functions/customizer/customizer.php:258 -msgid "Image Alignment" -msgstr "Alinhamento da imagem" - -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Products Per Page" -msgstr "Produtos por página" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display page title" -msgstr "Mostrar título da página" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product results count" -msgstr "Mostrar contagem de produtos" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product sorting" -msgstr "Mostrar ordenação de produtos" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display product image" -msgstr "Mostrar imagens de produtos" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display secondary image on hover" -msgstr "Mostrar imagem secundária ao passar com o rato" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display product title" -msgstr "Mostrar título do produto" - -#: woocommerce/functions/customizer/customizer.php:439 -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display sale flash" -msgstr "Mostrar etiqueta de promoção" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Sale flash over image" -msgstr "Etiqueta de promoção sobre imagem" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display rating" -msgstr "Mostrar classificação" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display price" -msgstr "Mostrar preço" - -#: woocommerce/functions/customizer/customizer.php:515 -msgid "Display add to cart button" -msgstr "Mostrar botão para adicionar ao carrinho" - -#: woocommerce/functions/customizer/customizer.php:534 -#: woocommerce/functions/customizer/customizer.php:738 -msgid "Display short description" -msgstr "Mostrar descrição curta" - -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Single Product" -msgstr "Produto" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display product tabs" -msgstr "Mostrar separadores do produto" - -#: woocommerce/functions/customizer/customizer.php:632 -msgid "Display related products" -msgstr "Mostrar produtos relacionados" - -#: woocommerce/functions/customizer/customizer.php:651 -msgid "Display upsell products" -msgstr "Mostrar produtos aumenta vendas" - -#: woocommerce/functions/customizer/customizer.php:680 -msgid "Related/Upsell Columns" -msgstr "Colunas de produtos relacionados" - -#: woocommerce/functions/customizer/customizer.php:719 -msgid "Display product meta data" -msgstr "Mostrar metadados dos produtos" - -#: woocommerce/functions/customizer/customizer.php:770 -msgid "Primary Button Colors" -msgstr "Cores dos botões principais" - -#: woocommerce/functions/customizer/customizer.php:771 -msgid "Primary button colors can be set here." -msgstr "As cores dos botões principais podem ser definidas aqui." - -#: woocommerce/functions/customizer/customizer.php:785 -msgid "Checkout" -msgstr "Finalizar compra" - -#: woocommerce/functions/customizer/customizer.php:804 -msgid "Distraction-free mode" -msgstr "Modo sem distracções" - -#: woocommerce/functions/customizer/customizer.php:805 -msgid "Remove unnecessary distractions like sidebars, footer widgets and sticky menus." -msgstr "Remove distracções desnecessárias como barras laterais, widgets de rodapé e menus fixos." - -#: woocommerce/functions/functions.php:422 -#: woocommerce/functions/functions.php:445 -msgid "View your shopping cart" -msgstr "Ver o seu carrinho de compras" - -#: woocommerce/functions/functions.php:726 -#, php-format -msgid "Rated %s out of 5" -msgstr "Classificado com %s de 5" - -#: woocommerce/functions/functions.php:728 -msgid "Not yet rated" -msgstr "Sem classificação" - -#: woocommerce/functions/functions.php:733 -msgid "out of 5" -msgstr "de 5" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "https://generatepress.com" - -#. Description of the plugin/theme -msgid "The entire collection of GeneratePress premium modules." -msgstr "A colecção completa de módulos premium do GeneratePress." - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "Tom Usborne" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "https://tomusborne.com" - -#~ msgid "Internal notes can be helpful to remember why this hook was added, and what it does." -#~ msgstr "A notas internas podem ser úteis para lembrar a razão pela qual este hook foi adicionado, e qual a sua função." - -#~ msgid "Contained" -#~ msgstr "Limitado" - -#~ msgid "Fullscreen" -#~ msgstr "Ecrã inteiro" - -#~ msgid "Full" -#~ msgstr "Em toda a largura" - -#~ msgid "%s is defined, so executing PHP has been disabled." -#~ msgstr "Está definido %s, por isso foi desactivada a execução de PHP." - -#~ msgid "All Posts" -#~ msgstr "Todos os artigos" - -#~ msgid "All Pages" -#~ msgstr "Todas as páginas" - -#~ msgid "Sale Flash Over Image" -#~ msgstr "Imagem de sobreposição de promoção" - -#~ msgid "Display Rating" -#~ msgstr "Mostrar classificação" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-ru_RU.mo b/wp-content/plugins/gp-premium/langs/gp-premium-ru_RU.mo index 846a8246..33d629d5 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-ru_RU.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-ru_RU.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-ru_RU.po b/wp-content/plugins/gp-premium/langs/gp-premium-ru_RU.po deleted file mode 100644 index 7efef1da..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-ru_RU.po +++ /dev/null @@ -1,3399 +0,0 @@ -# Translation by Alexey Chumakov, 2015-2016 -# Feel free to forward any issues or suggestions on translation to Alexey Chumakov -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 16:42-0800\n" -"PO-Revision-Date: 2018-02-27 17:37-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: Alexey Chumakov \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 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/classes/class-site-widget-importer.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-5: sites/libs/wxr-importer/WXRImportInfo.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "Фоновые изображения" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "Тело страницы" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "Шапка" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "Основное меню" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "Меню" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "Повторять" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "Горизонтально" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "Вертикально" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "Не повторять" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "Пункт меню" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "Пункт меню — наведение" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "Пункт меню — текущий" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "Основное подменю" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "Пункт подменю" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "Пункт подменю — наведение" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "Пункт подменю — текущий" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Содержимое" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "Боковик" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "Виджеты боковика" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -#, fuzzy -msgid "Footer" -msgstr "" -"#-#-#-#-# backgrounds-ru_RU.po (Generate Backgrounds) #-#-#-#-#\n" -"Подвал\n" -"#-#-#-#-# disable-elements-ru_RU.po (Generate Disable Elements) #-#-#-#-#\n" -"Футер\n" -"#-#-#-#-# generate-colors-ru_RU.po (Generate Colors) #-#-#-#-#\n" -"Подвал\n" -"#-#-#-#-# generate-spacing-ru_RU.po (Generate Spacing) #-#-#-#-#\n" -"Подвал\n" -"#-#-#-#-# generate-typography-ru_RU.po (Generate Typography) #-#-#-#-#\n" -"Подвал" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "Область виджетов подвала" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "Область подвала" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: import-export/functions/functions.php:35 library/reset.php:33 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "Дополнительное меню" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "Дополнительное подменю" - -#: blog/functions/customizer.php:35 import-export/functions/functions.php:23 -#: library/reset.php:21 -msgid "Blog" -msgstr "Блог" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "Метка \"ещё...\"" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "По центру" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -#, fuzzy -msgid "Left" -msgstr "" -"#-#-#-#-# generate-blog-ru_RU.po (Generate Blog) #-#-#-#-#\n" -"Влево\n" -"#-#-#-#-# generate-spacing-ru_RU.po (Generate Spacing) #-#-#-#-#\n" -"Слева\n" -"#-#-#-#-# page-header-ru_RU.po (Generate Page Header) #-#-#-#-#\n" -"Влево\n" -"#-#-#-#-# secondary-nav-ru_RU.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Влево" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -#, fuzzy -msgid "Right" -msgstr "" -"#-#-#-#-# generate-blog-ru_RU.po (Generate Blog) #-#-#-#-#\n" -"Вправо\n" -"#-#-#-#-# generate-spacing-ru_RU.po (Generate Spacing) #-#-#-#-#\n" -"Справа\n" -"#-#-#-#-# page-header-ru_RU.po (Generate Page Header) #-#-#-#-#\n" -"Вправо\n" -"#-#-#-#-# secondary-nav-ru_RU.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Вправо" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "Авто" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "Высота" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Над областью содержимого" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "Столбцы" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ Ещё" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "Загрузка ..." - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "Цвета" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "Фон" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "Текст" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "Ссылка" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "Ссылка — наведение" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "Название сайта" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "Краткое описание" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "Пункты основного меню" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "Фон — наведение" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "Фон — текущий пункт" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "Текст — наведение" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "Текст — текущий пункт" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -#| msgid "Sub-Menu Item Height" -msgid "Sub-Menu Items" -msgstr "Высота пункта подменю" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "Заголовок содержимого" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "Заголовок записи" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "Заголовок записи — наведение" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "Текст мета" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "Ссылки мета" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "Ссылки мета — наведение" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "Цвет заголовка 1 (H1)" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "Цвет заголовка 2 (H2)" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "Цвет заголовка 3 (H3)" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "Заголовок виджета" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "Виджеты подвала" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "Формы" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "Фон формы" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "Рамка формы" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "Текст формы" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "Выезжающее меню" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -#: import-export/functions/functions.php:51 library/reset.php:49 -msgid "Copyright" -msgstr "Сведения об авторских правах" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "Отключить элементы" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "Хуки GP" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "wp_head" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "Перед шапкой" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "Перед содержимым шапки" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "После содержимого шапки" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "После шапки" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "Внутри блока содержимого" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "Перед содержимым" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "После заголовка элемента" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "После содержимого" - -# Long text here could make right dropdown too wide to display. -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "Перед сод. правого боковика" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "После сод. правого боковика" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "Перед сод. левого боковика" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "После сод. левого боковика" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "Перед подвалом" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "После виджетов подвала" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "Перед содержимым подвала" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "После содержимого подвала" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "wp_footer" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "Исполнять код PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "Отключить хук" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" -"Вставляйте любые хуки через эти поля средствами GeneratePress. Можно " -"использовать шорткоды, и даже код PHP, отметив флажки \"Исполнять PHP\"." - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "Показать все" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "Сохранить хуки" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "Хуки сохранены." - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -msgid "Backgrounds" -msgstr "" - -#: import-export/functions/functions.php:27 library/reset.php:25 -msgid "Hooks" -msgstr "" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Шапка страницы" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "Отступы" - -#: import-export/functions/functions.php:43 library/reset.php:41 -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "Menu Plus" - -#: import-export/functions/functions.php:47 library/reset.php:45 -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:56 -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "Импортировать настройки" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "Пожалуйста, загрузите допустимый файл .json" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "Пожалуйста, загрузите файл для импорта" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "Доступна новая версия %1$s. %2$sПосмотреть подробности %3$s%4$s." - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" -"Доступна новая версия %1$s. %2$sПосмотреть подробности %3$s%4$s или " -"%5$sобновить сейчас%6$s." - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "У вас нет прав для установки обновлений плагинов" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Ошибка" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Дополнение деактивировано." - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Дополнение активировано." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "Дополнения GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "Пакетные операции" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Активировать" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Деактивировать" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "Применить" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "Для автоматического обновления укажите действующий ключ лицензии." - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Лицензия деактивирована." - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Лицензия активирована." - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "Справка" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "Лицензионный ключ" - -#: inc/verify.php:139 -msgid "Update" -msgstr "Обновить" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "Ваш лицензионный ключ истек %s." - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "Ваш лицензионный ключ заблокирован." - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "Недействительная лицензия." - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "Ваша лицензия не активна для этого URL." - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "Похоже, это не действующий лицензионный ключ для %s." - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "Ваш лицензионный ключ достиг предела активаций." - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "Произошла ошибка, пожалуйста, попробуйте ещё раз." - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "Позиция" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "По размеру (авто)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% ширина" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "Накрыть" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "Уместить" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Прикрепление" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Фиксированная" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Локальная" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Наследовать" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "%current_year%, чтобы автоматически обновлять год." - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "%copy%, чтобы включить знак авторского права." - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "Можно использовать HTML." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Можно использовать шорткоды." - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "Мобильный вид" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "Сверху" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "Снизу" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "Гарнитура" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "Насыщенность" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "Эффект" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "Меню" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "Основные настройки" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "Метка мобильного меню" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "Липкое меню" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "Только мобильный вид" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "Только настольный вид" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "Позиция" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "Растворение" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "Выезд" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "Отсутствует" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "Логотип меню" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "Липкий" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "Липкий + статический" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "Статический" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "Мобильная шапка" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "Логотип" - -#: menu-plus/functions/generate-menu-plus.php:442 -#, fuzzy -#| msgid "Sidebar" -msgid "Side" -msgstr "Боковик" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "Закрыть" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "Внутри области содержимого" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "Под заголовком записи" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "Скрыть" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Изображение" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Изображение для шапки страницы" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "Вставить изображение" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "" - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -#, fuzzy -msgid "Disable" -msgstr "" -"#-#-#-#-# generate-blog-ru_RU.po (Generate Blog) #-#-#-#-#\n" -"Выключить\n" -"#-#-#-#-# generate-sections-ru_RU.po (Generate Sections) #-#-#-#-#\n" -"Отключить\n" -"#-#-#-#-# menu-plus-ru_RU.po (Generate Menu Plus) #-#-#-#-#\n" -"Выключить\n" -"#-#-#-#-# page-header-ru_RU.po (Generate Page Header) #-#-#-#-#\n" -"Выключить" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Включить" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Ширина изображения" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Высота изображения" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "" -"Укажите \"0\" или оставьте пустым для пропорционального масштабирования." - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "Можно использовать HTML и шорткоды." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Автоматически добавить теги абзаца" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "Добавление отступов" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "Эффект параллакса" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "Полный экран" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "Центрировать содержимое по вертикали" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -#, fuzzy -msgid "Contained" -msgstr "" -"#-#-#-#-# generate-sections-ru_RU.po (Generate Sections) #-#-#-#-#\n" -"Ограниченный\n" -"#-#-#-#-# page-header-ru_RU.po (Generate Page Header) #-#-#-#-#\n" -"Ограниченный\n" -"#-#-#-#-# secondary-nav-ru_RU.po (Generate Secondary Navigation) #-#-#-#-" -"#\n" -"Ограниченная" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "Во всю ширину" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "Выравнивание текста" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "Цвет фона" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "Цвет текста" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "Цвет ссылок" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -#, fuzzy -msgid "Link Color Hover" -msgstr "" -"#-#-#-#-# generate-sections-ru_RU.po (Generate Sections) #-#-#-#-#\n" -"Цвет ссылок — наведение\n" -"#-#-#-#-# page-header-ru_RU.po (Generate Page Header) #-#-#-#-#\n" -"Ссылки — наведение" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "Видео шапки" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "Вставить видео" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "Цвет наложения" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "" - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "Шапка / логотип" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "Объединить с шапкой сайта" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "Поместить содержимое за шапку (слайдеры и т.п.)" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "Дополнительное меню" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "Выравнивание" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "Под шапкой" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "Над шапкой" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "Плавающее вправо" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "В левом боковике" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "В правом боковике" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "Без меню" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "Использовать секции" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "Секции" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "Это действие нельзя отменить; вы уверены?" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "Секция" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "Настройки" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "Фон секции" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "Установить как фон секции" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "Вставить в секцию" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "Редактировать секцию" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "Нажмите, чтобы редактировать" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "Нажмите, чтобы редактировать содержимое" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "Нажмите, чтобы изменить параметры" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "Нажмите и тащите, чтобы упорядочить" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "Нажмите, чтобы убрать" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "Добавить секцию" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "Удалить секции" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "Отмена" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "Метка секции" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "Добавить медиафайл" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "Визуально" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Текст" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "Разметка" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "Тип блока" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "Тип внутреннего блока" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "Настраиваемые классы" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "Отступ сверху" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "Отступ снизу" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "Фоновое изображение" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "Загрузить" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "Убрать" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "Для использования Generate Sections нужно включить Javascript." - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "Не добавлено ни одной секции." - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing options" -msgstr "Импортировать настройки" - -#: sites/classes/class-site-helper.php:96 -#, fuzzy -#| msgid "Blog Content" -msgid "Downloading content" -msgstr "Содержимое блога" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "Перейти к содержимому" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing site options" -msgstr "Импортировать настройки" - -#: sites/classes/class-site-helper.php:99 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing widgets" -msgstr "Импортировать настройки" - -#: sites/classes/class-site-helper.php:100 -msgid "Activating plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -#, fuzzy -#| msgid "Static" -msgid "Automatic" -msgstr "Статический" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site-widget-importer.php:60 -msgid "Import data could not be read. Please try a different file." -msgstr "" - -#: sites/classes/class-site-widget-importer.php:104 -msgid "Widget area does not exist in theme (using Inactive)" -msgstr "" - -#: sites/classes/class-site-widget-importer.php:126 -msgid "Site does not support widget" -msgstr "" - -#: sites/classes/class-site-widget-importer.php:161 -msgid "Widget already exists" -msgstr "" - -#: sites/classes/class-site-widget-importer.php:238 -msgid "Imported" -msgstr "" - -#: sites/classes/class-site-widget-importer.php:241 -msgid "Imported to Inactive" -msgstr "" - -#: sites/classes/class-site-widget-importer.php:247 -msgid "No Title" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -#, fuzzy -#| msgid "Remove Sections" -msgid "Theme Options" -msgstr "Удалить секции" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "После содержимого" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -#, fuzzy -#| msgid "Bulk Actions" -msgid "Backup Options" -msgstr "Пакетные операции" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import Settings" -msgid "Import Options" -msgstr "Импортировать настройки" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "Перед содержимым" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Лицензия активирована." - -#: sites/libs/wxr-importer/WXRImporter.php:132 -msgid "Could not open the file for parsing" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:168 -#: sites/libs/wxr-importer/WXRImporter.php:284 -#: sites/libs/wxr-importer/WXRImporter.php:357 -#, php-format -msgid "" -"This WXR file (version %s) is newer than the importer (version %s) and may " -"not be supported. Please consider updating." -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:507 -msgid "The file does not exist, please try again." -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:567 -msgid "Invalid author mapping" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:668 -msgid "Cannot import auto-draft posts" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:756 -#, php-format -msgid "Failed to import \"%s\": Invalid post type %s" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:766 -#, php-format -msgid "%s \"%s\" already exists." -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:851 -#, php-format -msgid "Skipping attachment \"%s\", fetching attachments disabled" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:872 -#, php-format -msgid "Failed to import \"%s\" (%s)" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:904 -#: sites/libs/wxr-importer/WXRImporter.php:1738 -#, php-format -msgid "Imported \"%s\" (%s)" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:909 -#, php-format -msgid "Post %d remapped to %d" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1053 -msgid "Invalid file type" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1544 -#, php-format -msgid "Failed to import user \"%s\"" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1565 -#, php-format -msgid "Imported user \"%s\"" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1569 -#, php-format -msgid "User %d remapped to %d" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1714 -#, php-format -msgid "Failed to import %s %s" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1743 -#, php-format -msgid "Term %d remapped to %d" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1796 -#, php-format -msgid "Remote server returned %1$d %2$s for %3$s" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1809 -msgid "Remote file is incorrect size" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1814 -msgid "Zero size file downloaded" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1820 -#, php-format -msgid "Remote file is too large, limit is %s" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1842 -#, php-format -msgid "Running post-processing for post %d" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1855 -#, php-format -msgid "Could not find the post parent for \"%s\" (post #%d)" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1860 -#, php-format -msgid "Post %d was imported with parent %d, but could not be found" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1874 -#, php-format -msgid "Could not find the author for \"%s\" (post #%d)" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1879 -#, php-format -msgid "Post %d was imported with author \"%s\", but could not be found" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1905 -#, php-format -msgid "Post %d was marked for post-processing, but none was required." -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1916 -#, php-format -msgid "Could not update \"%s\" (post #%d) with mapped data" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1961 -#, php-format -msgid "Could not find the menu object for \"%s\" (post #%d)" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1966 -#, php-format -msgid "" -"Post %d was imported with object \"%d\" of type \"%s\", but could not be " -"found" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1988 -#, php-format -msgid "Could not find the comment parent for comment #%d" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:1992 -#, php-format -msgid "Comment %d was imported with parent %d, but could not be found" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:2006 -#, php-format -msgid "Could not find the author for comment #%d" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:2010 -#, php-format -msgid "Comment %d was imported with author %d, but could not be found" -msgstr "" - -#: sites/libs/wxr-importer/WXRImporter.php:2027 -#, php-format -msgid "Could not update comment #%d with mapped data" -msgstr "" - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "Разделитель" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "Отбивка содержимого" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "Отбивка области виджетов подвала" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "Отбивка подвала" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "Отбивка шапки" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "Высота пункта подменю" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "Боковики" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "Отбивка виджетов" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "Ширина левого боковика" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "Ширина правого боковика" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "Изменение расстояний между различными элементами в пикселах." - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "Типографика" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "Размер" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "Заголовок 1 (H1)" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "Заголовок 2 (H2)" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "Заголовок 3 (H3)" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "Виджеты" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "Размер шрифта содержимого" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#, fuzzy -#~| msgid "Slideout Navigation" -#~ msgid "Slide-out Navigation" -#~ msgstr "Выезжающее меню" - -#~ msgid "Slideout Menu" -#~ msgstr "Выезжающее меню" - -#~ msgid "Both" -#~ msgstr "Оба" - -#~ msgid "Mobile Header Logo" -#~ msgstr "Логотип мобильной шапки" - -#~ msgid "Sticky Mobile Header" -#~ msgstr "Липкая мобильная шапка" - -#~ msgid "Warning: This will delete your settings." -#~ msgstr "Внимание: ваши настройки будут удалены." - -#~ msgid "Updates %s" -#~ msgstr "Обновления %s" - -#~ msgid "Export Backgrounds Customizer Settings" -#~ msgstr "Экспортировать настройки фонов" - -#~ msgid "Delete Backgrounds Customizer Settings" -#~ msgstr "Удалить настройки фонов" - -#~ msgid "Post Image / Page Header" -#~ msgstr "Изобр. записи / шапка страницы" - -#, fuzzy -#~ msgid "Apply image sizes" -#~ msgstr "" -#~ "#-#-#-#-# generate-blog-ru_RU.po (Generate Blog) #-#-#-#-#\n" -#~ "Применить размеры\n" -#~ "#-#-#-#-# page-header-ru_RU.po (Generate Page Header) #-#-#-#-#\n" -#~ "Применить размеры изображений" - -#~ msgid "Excerpt Length" -#~ msgstr "Длина отрывка" - -#~ msgid "Masonry" -#~ msgstr "Мозаика" - -#~ msgid "Masonry Block Width" -#~ msgstr "Ширина блока" - -#~ msgid "Small" -#~ msgstr "Малый" - -#~ msgid "Medium" -#~ msgstr "Средний" - -#~ msgid "Large" -#~ msgstr "Большой" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "Ширина самых свежих" - -#~ msgid "Masonry Load More Text" -#~ msgstr "Текст \"ещё\" в мозаике" - -#~ msgid "Masonry Loading Text" -#~ msgstr "Текст загрузки мозаики" - -#~ msgid "Post Image" -#~ msgstr "Изображение к записи" - -#~ msgid "Show" -#~ msgstr "Показать" - -#~ msgid "Post Image Position" -#~ msgstr "Положение изображения" - -#~ msgid "Post Image Alignment" -#~ msgstr "Выравнивание изображения" - -#~ msgid "Post Image Width" -#~ msgstr "Ширина изображения" - -#~ msgid "Post Image Height" -#~ msgstr "Высота изображения" - -#~ msgid "Date" -#~ msgstr "Дата" - -#~ msgid "Author" -#~ msgstr "Автор" - -#~ msgid "Categories" -#~ msgstr "Рубрики" - -#~ msgid "Tags" -#~ msgstr "Метки" - -#~ msgid "Comment Link" -#~ msgstr "Ссылка \"комментировать\"" - -#~ msgid "Masonry is enabled. These settings will be ignored." -#~ msgstr "Включена мозаика. Настройки игнорируются." - -#~ msgid "Column Layout" -#~ msgstr "В несколько столбцов" - -#~ msgid "First Post Full Width" -#~ msgstr "Первая запись на всю ширину" - -#~ msgid "Read more..." -#~ msgstr "Подробнее..." - -#~ msgid "Delete Blog Customizer Settings" -#~ msgstr "Удалить настройки блога" - -#~ msgid "Export Blog Customizer Settings" -#~ msgstr "Экспортировать настройки блога" - -#~ msgid "Masonry Post Width" -#~ msgstr "Ширина записи в мозаике" - -#~ msgid "Global setting" -#~ msgstr "По умолчанию" - -#~ msgid "Form Background Focus/Hover" -#~ msgstr "Фокус/наведение фона формы" - -#~ msgid "Form Text Focus/Hover" -#~ msgstr "Фокус/наведение текста формы" - -#~ msgid "Form Border Focus/Hover" -#~ msgstr "Фокус/наведение рамки формы" - -#~ msgid "Form Button" -#~ msgstr "Кнопка формы" - -#~ msgid "Form Button Focus/Hover" -#~ msgstr "Фокус/наведение кнопки формы" - -#~ msgid "Form Button Text" -#~ msgstr "Текст кнопки формы" - -#~ msgid "Form Button Text Focus/Hover" -#~ msgstr "Фокус/наведение текста кнопки формы" - -#~ msgid "Export GP Hooks" -#~ msgstr "Экспортировать хуки GP" - -#~ msgid "Delete GP Hooks" -#~ msgstr "Удалить хуки GP" - -#~ msgid "Import / Export" -#~ msgstr "Импорт / экспорт" - -#~ msgid "" -#~ "Export your settings set in the Customizer." -#~ msgstr "Экспортировать ваши настройки." - -#~ msgid "Export Default Customizer Settings" -#~ msgstr "Экспортировать основные настройки" - -#~ msgid "" -#~ "Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "" -#~ "Импортируйте свои настройки, загрузив экспортированный " -#~ "файл .json." - -#~ msgid "Error: Content already detected in default editor." -#~ msgstr "Ошибка: в редакторе по умолчанию уже есть содержимое." - -#~ msgid "" -#~ "Please activate the \"Visual\" tab in your main editor before " -#~ "transferring content." -#~ msgstr "" -#~ "Пожалуйста, до переноса содержимого откройте вкладку \"Визуально\" " -#~ "основного редактора." - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "" -#~ "Расстояние между элементами, когда \"Разметка содержимого\" — \"Отдельные " -#~ "блоки\"." - -#~ msgid "Delete Spacing Customizer Settings" -#~ msgstr "Удалить настройки отступов" - -#~ msgid "Export Spacing Customizer Settings" -#~ msgstr "Экспортировать настройки отступов" - -#~ msgid "Left/Right Spacing" -#~ msgstr "Отступы слева/справа" - -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "Верхний/нижний отступ пунктов подменю" - -#~ msgid "15%" -#~ msgstr "15%" - -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgid "25%" -#~ msgstr "25%" - -#~ msgid "30%" -#~ msgstr "30%" - -#~ msgid "35%" -#~ msgstr "35%" - -#~ msgid "40%" -#~ msgstr "40%" - -#~ msgid "45%" -#~ msgstr "45%" - -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgid "Default fonts" -#~ msgstr "Шрифты по умолчанию" - -#~ msgid "Google fonts" -#~ msgstr "Шрифты Google" - -#, fuzzy -#~ msgid "Site title" -#~ msgstr "" -#~ "#-#-#-#-# generate-typography-ru_RU.po (Generate Typography) #-#-#-#-#\n" -#~ "Заголовок сайта\n" -#~ "#-#-#-#-# page-header-ru_RU.po (Generate Page Header) #-#-#-#-#\n" -#~ "Название сайта" - -#~ msgid "Site tagline" -#~ msgstr "Краткое описание сайта" - -#~ msgid "Site navigation" -#~ msgstr "Меню сайта" - -#~ msgid "Font-size" -#~ msgstr "Размер шрифта" - -#~ msgid "Widget titles" -#~ msgstr "Названия виджетов" - -#~ msgid "Footer font size" -#~ msgstr "Размер шрифта подвала" - -#~ msgid "Site title font size" -#~ msgstr "Размер шрифта названия сайта" - -#~ msgid "H1 font size" -#~ msgstr "Размер шрифта H1" - -#~ msgid "H2 font size" -#~ msgstr "Размер шрифта H2" - -#~ msgid "Sticky Menu" -#~ msgstr "Липкое меню" - -#~ msgid "Sticky Navigation Effect" -#~ msgstr "Эффект липкого меню" - -#~ msgid "Navigation Logo Position" -#~ msgstr "Положение логотипа меню" - -#~ msgid "Delete Menu Plus Customizer Settings" -#~ msgstr "Удалить настройки Menu Plus" - -#~ msgid "Export Menu Plus Customizer Settings" -#~ msgstr "Экспортировать настройки Menu Plus" - -#~ msgid "Thomas Usborne" -#~ msgstr "Томас Асборн" - -#~ msgid "http://edge22.com" -#~ msgstr "http://edge22.com" - -#~ msgid "Blog Page Header" -#~ msgstr "Шапка страницы блога" - -#~ msgid "Upload an image to be used as your page header." -#~ msgstr "Загрузить изображение для шапки страницы" - -#~ msgid "Make your page header image clickable by adding a URL. (optional)" -#~ msgstr "" -#~ "Сделать изображение шапки страницы кликабельным, добавив URL " -#~ "(необязательно)" - -#~ msgid "Turn hard cropping or of off." -#~ msgstr "Включить или выключить жесткую обрезку" - -#~ msgid "Choose your image width in pixels. (integer only, default is 1200)" -#~ msgstr "" -#~ "Укажите ширину изображения в пикселах (только целое число, по умолчанию " -#~ "1200)" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank for " -#~ "proportional resizing. (integer only, default is 0) " -#~ msgstr "" -#~ "Укажите высоту изображения в пикселах. Укажите \"0\" или оставьте пустым " -#~ "для пропорционального масштабирования. (только целое, 0 по умолчанию)" - -#~ msgid "Video Background URL (MP4 only)" -#~ msgstr "URL видеозадника (только MP4)" - -#~ msgid "Video Background URL (OGV only)" -#~ msgstr "URL видеозадника (только OGV)" - -#~ msgid "Video Background URL (WEBM only)" -#~ msgstr "URL видеозадника (только WEBM)" - -#~ msgid "Page Header Content" -#~ msgstr "Содержимое шапки" - -#~ msgid "Add your content to the page header. HTML and shortcodes allowed." -#~ msgstr "" -#~ "Добавьте свое содержимое в шапку страницы. Можно использовать HTML и " -#~ "шорткоды." - -#~ msgid "Add Paragraphs" -#~ msgstr "Добавление тегов абзаца" - -#~ msgid "Wrap your text in paragraph tags automatically." -#~ msgstr "Автоматически заключить текст в теги абзаца" - -#~ msgid "Add padding around your content." -#~ msgstr "Добавить отступы вокруг содержимого" - -#~ msgid "Image Background" -#~ msgstr "Изображение как фон" - -#~ msgid "" -#~ "Use the image uploaded above as a background image for your content. " -#~ "(requires image uploaded above)" -#~ msgstr "" -#~ "Использовать загруженное изображение как фон для содержимого (требуется " -#~ "загрузить изображение выше)" - -#~ msgid "Parallax Background" -#~ msgstr "Параллаксный фон" - -#~ msgid "" -#~ "Add a cool parallax effect to your background image. (requires the image " -#~ "background option to be checked)" -#~ msgstr "" -#~ "Добавить крутой параллаксный эффект к фоновому изображению (флажок " -#~ "\"Использовать как фон\" нужно включить)" - -#~ msgid "Full Screen" -#~ msgstr "На весь экран" - -#~ msgid "Make your page header content area full screen." -#~ msgstr "Расширить область содержимого шапки страницы на весь экран" - -#~ msgid "Vertical Center" -#~ msgstr "Вертикальная центровка" - -#~ msgid "Center your page header content vertically." -#~ msgstr "Центровать содержимое шапки страницы по вертикали" - -#~ msgid "Container Type" -#~ msgstr "Тип блока" - -#~ msgid "Choose whether the page header is contained or fluid." -#~ msgstr "Выберите ограниченный или резиновый вариант шапки страницы" - -#~ msgid "Choose the horizontal alignment of your content." -#~ msgstr "Выберите вариант выравнивания содержимого по горизонтали" - -#~ msgid "Top/Bottom Padding" -#~ msgstr "Отступ сверху/снизу" - -#~ msgid "Page Header Advanced" -#~ msgstr "Шапка страницы — расширенные" - -#~ msgid "Transparent navigation" -#~ msgstr "Прозрачное меню" - -#~ msgid "Navigation text" -#~ msgstr "Текст мено" - -#~ msgid "Navigation background hover" -#~ msgstr "Фон — наведение" - -#~ msgid "Navigation text hover" -#~ msgstr "Текст — наведение" - -#~ msgid "Navigation background current" -#~ msgstr "Фон — текущий пункт" - -#~ msgid "Navigation text current" -#~ msgstr "Текст — текущий пункт" - -#~ msgid "Page Header Logo" -#~ msgstr "Логотип шапки страницы" - -#~ msgid "Replace your logo on the blog." -#~ msgstr "Заменить ваш логотип в блоге." - -#~ msgid "Page Header Position" -#~ msgstr "Положение шапки страницы" - -#~ msgid "Single Post Header Position" -#~ msgstr "Положение шапки записи" - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "Удалить настройки шапки страницы" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "Экспортировать настройки шапки страницы" - -#~ msgid "Add padding" -#~ msgstr "Добавить отступы" - -#~ msgid "Add background image" -#~ msgstr "Добавить фоновое изображение" - -#~ msgid "Parallax effect" -#~ msgstr "Эффект параллакса" - -#~ msgid "Container type" -#~ msgstr "Тип блока" - -#~ msgid "Text alignment" -#~ msgstr "Выравнивание текста" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Отступы сверху/снизу" - -#~ msgid "Background color" -#~ msgstr "Цвет фона" - -#~ msgid "Text color" -#~ msgstr "Цвет текста" - -#~ msgid "Link color" -#~ msgstr "Цвет ссылок" - -#~ msgid "Link color hover" -#~ msgstr "Цвет ссылок — наведение" - -#~ msgid "Overlay color" -#~ msgstr "Цвет наложения" - -#~ msgid "Secondary Menu Items" -#~ msgstr "Пункты дополнительного меню" - -#~ msgid "Secondary navigation" -#~ msgstr "Дополнительное меню" - -#~ msgid "Navigation Position" -#~ msgstr "Расположение" - -#~ msgid "Delete Secondary Navigation Customizer Settings" -#~ msgstr "Удалить настройки дополнительного меню" - -#~ msgid "Export Secondary Navigation Customizer Settings" -#~ msgstr "Экспортировать настройки дополнительного меню" - -#~ msgid "Select Image" -#~ msgstr "Выбрать изображение" - -#~ msgid "Use Image" -#~ msgstr "Использовать изображение" - -#~ msgid "Headline / Post Title" -#~ msgstr "Заголовок / название записи" - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "Доступна новая версия %1$s. Посмотреть подробности %3$s." - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "Доступна новая версия %1$s. Посмотреть подробности %3$s или обновить " -#~ "сейчас." - -#~ msgid "" -#~ "Want updates served directly to your Dashboard? Activate the email you " -#~ "purchased your add-ons with here." -#~ msgstr "" -#~ "Хотите, чтобы обновления подавались прямо в консоль? Активируйте адрес " -#~ "email, указанный при покупке дополнений." - -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgid "Deactivate Email" -#~ msgstr "Деактивировать адрес" - -#~ msgid "Activate Email" -#~ msgstr "Активировать адрес" - -#~ msgid "Save Email" -#~ msgstr "Сохранить адрес" - -#~ msgid "Enable All Updates" -#~ msgstr "Включить все обновления" - -#~ msgid "Disable Updates" -#~ msgstr "Отключить обновления" - -#~ msgid "Enable Updates" -#~ msgstr "Включить обновления" - -#~ msgid "Email activation failed. This email does not exist in our records." -#~ msgstr "Активация адреса не удалась. Этого адреса нет в наших записях." - -#~ msgid "Email activated." -#~ msgstr "Адрес активирован." - -#~ msgid "Email deactivated." -#~ msgstr "Адрес деактивирован." - -#~ msgid "License failed." -#~ msgstr "Сбой лицензии." - -#~ msgid "Licenses activated." -#~ msgstr "Лицензии активированы." - -#~ msgid "Deactivation failed." -#~ msgstr "Сбой деактивации." - -#~ msgid "Header Colors" -#~ msgstr "Цвета шапки" - -#~ msgid "Navigation Colors" -#~ msgstr "Цвета меню" - -#~ msgid "Sub-Navigation Colors" -#~ msgstr "Цвета подменю" - -#~ msgid "Content Colors" -#~ msgstr "Цвета содержимого" - -#~ msgid "Sidebar Widget Colors" -#~ msgstr "Цвета виджетов боковика" - -#~ msgid "Footer Widget Colors" -#~ msgstr "Цвета виджетов подвала" - -#~ msgid "Footer Colors" -#~ msgstr "Цвета подвала" - -#~ msgid "Form Colors" -#~ msgstr "Цвета форм" - -#~ msgid "Page Header Link" -#~ msgstr "Ссылка для шапки страницы" - -#~ msgid "Hard Crop" -#~ msgstr "Жесткая обрезка" - -#~ msgid "Fluid" -#~ msgstr "Резиновый" - -#~ msgid "" -#~ "Choose your content padding in pixels. This will add space above and " -#~ "below your content. (integer only) " -#~ msgstr "" -#~ "Укажите величину отступа содержимого в пикселах. Это приведет к " -#~ "добавлению отступа над и под вашим содержимым (только целое число)" - -#~ msgid "Image Settings" -#~ msgstr "Параметры изображения" - -#~ msgid "Video Settings" -#~ msgstr "Параметры видео" - -#~ msgid "Content Settings" -#~ msgstr "Параметры содержимого" - -#~ msgid "Logo Settings" -#~ msgstr "Параметры логотипа" - -#~ msgid "Advanced Settings" -#~ msgstr "Расширенные настройки" - -#~ msgid "Add Image" -#~ msgstr "Добавить изображение" - -#~ msgid "Video background - MP4 file only" -#~ msgstr "Видеозадник — только файл MP4" - -#~ msgid "Add Video" -#~ msgstr "Добавить видео" - -#~ msgid "Video background - OGV file only" -#~ msgstr "Видеозадник — только файл OGV" - -#~ msgid "Video background - WEBM file only" -#~ msgstr "Видеозадник — только файл WEBM" - -#~ msgid "Add to blog excerpt" -#~ msgstr "Добавить к отрывку блога" - -#~ msgid "Navigation Layout" -#~ msgstr "Разметка меню" - -#~ msgid "Fluid / Full Width" -#~ msgstr "Резиновая / во всю ширину" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-sk_SK.mo b/wp-content/plugins/gp-premium/langs/gp-premium-sk_SK.mo deleted file mode 100644 index 9f3382d5..00000000 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-sk_SK.mo and /dev/null differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-sk_SK.po b/wp-content/plugins/gp-premium/langs/gp-premium-sk_SK.po deleted file mode 100644 index 59dac302..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-sk_SK.po +++ /dev/null @@ -1,2682 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:37-0800\n" -"PO-Revision-Date: 2018-02-27 17:37-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: \n" -"Language: sk_SK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImportInfo.php\n" -"X-Poedit-SearchPathExcluded-5: sites/classes/class-site-widget-importer.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "Obsah" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "Na stred" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "Vľavo" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "Vpravo" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "Nad oblasť obsahu" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "" - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -msgid "Parent Items" -msgstr "" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -msgid "Sub-Menu Items" -msgstr "" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "" - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -#| msgid "Background type" -msgctxt "Module name" -msgid "Backgrounds" -msgstr "Typ pozadia" - -#: import-export/functions/functions.php:23 library/reset.php:21 -msgctxt "Module name" -msgid "Blog" -msgstr "" - -#: import-export/functions/functions.php:27 library/reset.php:25 -msgctxt "Module name" -msgid "Hooks" -msgstr "" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "Hlavička stránky" - -#: import-export/functions/functions.php:35 library/reset.php:33 -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "" - -#: import-export/functions/functions.php:39 library/reset.php:37 -msgctxt "Module name" -msgid "Spacing" -msgstr "" - -#: import-export/functions/functions.php:43 library/reset.php:41 -msgctxt "Module name" -msgid "Menu Plus" -msgstr "" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Top right" -msgctxt "Module name" -msgid "Copyright" -msgstr "Vpravo hore" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Nemáte oprávnenie na inštaláciu aktualizácií pluginu" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Chyba" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Doplnok vypnutý." - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Doplnok aktivovaný." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Aktivovať" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Deaktivovať" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "" - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Licencia deaktivovaná. " - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Licencia aktivovaná." - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "" - -#: inc/verify.php:139 -msgid "Update" -msgstr "" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "" - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "" - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "" - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "" - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "" - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "" - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -msgid "Transition" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:442 -msgid "Side" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "Hlavička stránky" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "Vnútorná oblasť obsahu" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "Obrázok" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "Obrázok stránky hlavičky" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "" - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "Zakázať" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "Aktivovať" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "Šířka obrázku" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "Výška obrázku" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "" - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "HTML a shortcodes povoliť." - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "Automaticky pridať nové slová do zoznamu na dopĺňanie" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgid "Contained" -msgstr "Obsiahnuté" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "" - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -msgid "Importing options" -msgstr "" - -#: sites/classes/class-site-helper.php:96 -msgid "Downloading content" -msgstr "" - -#: sites/classes/class-site-helper.php:97 -msgid "Importing content" -msgstr "" - -#: sites/classes/class-site-helper.php:98 -msgid "Importing site options" -msgstr "" - -#: sites/classes/class-site-helper.php:99 -msgid "Importing widgets" -msgstr "" - -#: sites/classes/class-site-helper.php:100 -#, fuzzy -#| msgid "Activate License" -msgid "Activating plugins" -msgstr "Aktivácia licencie" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -msgid "Automatic" -msgstr "" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -msgid "Theme Options" -msgstr "" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "Content" -msgid "Site Content" -msgstr "Obsah" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -msgid "Backup Options" -msgstr "" - -#: sites/classes/class-site.php:325 -msgid "Import Options" -msgstr "" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Content" -msgid "Import Content" -msgstr "Obsah" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Licencia aktivovaná." - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "" - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "K dispozícii je nová verzia %1$s. Zobraziť detaily %3$s verzie." - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "K dispozícii je nová verzia%1$s. Zobraziť detaily%3$s verzieaktualizovať teraz ." - -#~ msgid "" -#~ "Want updates served directly to your Dashboard? Activate the email you " -#~ "purchased your add-ons with here." -#~ msgstr "" -#~ "Chcete aby sa vám aktualizácie zobrazovali priamo na vašej nástenke? " -#~ "Aktivujte si e-mail na ktorý ste si zakúpili licenciu." - -#~ msgid "Email" -#~ msgstr "E-mail" - -#~ msgid "Deactivate Email" -#~ msgstr "Deaktivácia E-mailu" - -#~ msgid "Activate Email" -#~ msgstr "Aktivácia E-mailu" - -#~ msgid "Save Email" -#~ msgstr "Uloženie E-mailu" - -#~ msgid "Enable All Updates" -#~ msgstr "Povoliť všetky aktualizácie." - -#~ msgid "Disable Updates" -#~ msgstr "Vypnutie aktualizácií" - -#~ msgid "Enable Updates" -#~ msgstr "Povolenie aktualizácii" - -#~ msgid "Email activation failed. This email does not exist in our records." -#~ msgstr "" -#~ "Aktivácia emailu zlyhala. Tento email neexistuje v našich záznamoch." - -#~ msgid "Email activated." -#~ msgstr "Email aktivovaný." - -#~ msgid "Email deactivated." -#~ msgstr "Email deaktivovaný." - -#~ msgid "License failed." -#~ msgstr "Chyba licencie." - -#~ msgid "Licenses activated." -#~ msgstr "Licencie aktivované." - -#~ msgid "Deactivation failed." -#~ msgstr "Deaktivácia zlyhala. " - -#~ msgid "Page Header Link" -#~ msgstr "Odkaz na stránku:" - -#~ msgid "Hard Crop" -#~ msgstr "Orezať náhľad" - -#~ msgid "Fluid" -#~ msgstr "Pohyblivá / plná šírka" - -#~ msgid "Add Image" -#~ msgstr "Pridať obrázok" - -#~ msgid "Add padding" -#~ msgstr "Pridať vnútorné medzery (padding)" - -#~ msgid "Text alignment" -#~ msgstr "Zarovnanie textu" - -#~ msgid "Top/Bottom padding" -#~ msgstr "Horné alebo Dolné odsadenie" - -#~ msgid "Text color" -#~ msgstr "Farba textu" - -#~ msgid "Link color" -#~ msgstr "Farba prepojenia" - -#~ msgid "Link color hover" -#~ msgstr "Farba normálneho odkazu" - -#~ msgid "Page Header Position" -#~ msgstr "Pozícia stránky hlavičky" - -#~ msgid "Single Post Header Position" -#~ msgstr "Jediný príspevok pozícia hlavičky" - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "Odstrániť Customizer nastavenie stránky hlavičky" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "Exportovať nastavenie stránky hlavičky Customizer" - -#~ msgid "" -#~ "Note: You've chosen content to show as your page header. Remove the " -#~ "content and save to use the image below." -#~ msgstr "" -#~ "Poznámka: Ste vybrali obsah Zobraziť ako hlavičky stránky. Odstránenie " -#~ "obsahu a uložiť použiť obrázok nižšie." - -#~ msgid "Image Crop Position" -#~ msgstr "Pozícia:" - -#~ msgid "Top left" -#~ msgstr "Vľavo hore" - -#~ msgid "Bottom left" -#~ msgstr "Vľavo dole" - -#~ msgid "Bottom right" -#~ msgstr "Vpravo dole" - -#~ msgid "Use image (from image tab) as a background image?" -#~ msgstr "Obraz (z obraz kartu) použiť ako obrázok na pozadí?" - -#~ msgid "Add parallax effect?" -#~ msgstr "Pridať efekt paralaxy?" - -#~ msgid "Add to blog excerpt (if no Featured Image is set)" -#~ msgstr "Pridať blog výpis (ak nie najlepšie Image je nastavené)" - -#~ msgid "verified" -#~ msgstr "overený" - -#~ msgid "unverified" -#~ msgstr "neoverené" - -#~ msgid "Deactivate License" -#~ msgstr "Deaktivovať licencie" - -#~ msgid "active" -#~ msgstr "aktívny" - -#~ msgid "inactive" -#~ msgstr "neaktívny" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-sv_SE.mo b/wp-content/plugins/gp-premium/langs/gp-premium-sv_SE.mo index 0a397380..94508fb4 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-sv_SE.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-sv_SE.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-sv_SE.po b/wp-content/plugins/gp-premium/langs/gp-premium-sv_SE.po deleted file mode 100644 index b798c8b1..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-sv_SE.po +++ /dev/null @@ -1,2560 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:38-0800\n" -"PO-Revision-Date: 2018-02-27 17:38-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: Jamal \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/classes/class-site-widget-importer.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-5: sites/libs/wxr-importer/WXRImportInfo.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "" - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -msgid "Parent Items" -msgstr "" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -msgid "Sub-Menu Items" -msgstr "" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "Copyright" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "" - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "" - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -msgctxt "Module name" -msgid "Backgrounds" -msgstr "" - -#: import-export/functions/functions.php:23 library/reset.php:21 -msgctxt "Module name" -msgid "Blog" -msgstr "" - -#: import-export/functions/functions.php:27 library/reset.php:25 -msgctxt "Module name" -msgid "Hooks" -msgstr "" - -#: import-export/functions/functions.php:31 library/reset.php:29 -msgctxt "Module name" -msgid "Page Header" -msgstr "" - -#: import-export/functions/functions.php:35 library/reset.php:33 -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "" - -#: import-export/functions/functions.php:39 library/reset.php:37 -msgctxt "Module name" -msgid "Spacing" -msgstr "" - -#: import-export/functions/functions.php:43 library/reset.php:41 -msgctxt "Module name" -msgid "Menu Plus" -msgstr "" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "Copyright" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "" -"Det finns en ny version av %1$s tillgänglig. %2$sSe version %3$s detaljer" -"%4$s." - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "" -"Det finns en ny version av %1$s tillgänglig. %2$sSe version %3$s detaljer" -"%4$s eller %5$suppdatera nu%6$s." - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "Du har inte behörighet för att uppdatera tillägg" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "Ett fel har uppstått" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "Tillägg avaktiverad." - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "Tillägg aktiverad." - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "GP Premium" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "Välj åtgärd" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "Aktivera" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "Avaktivera" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "Utför" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "" - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "Licens avaktiverad." - -#: inc/verify.php:78 -msgid "License activated." -msgstr "Licens aktiverad." - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "Hjälp" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "Licensnyckel" - -#: inc/verify.php:139 -msgid "Update" -msgstr "Uppdatera" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "" - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "" - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "" - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "" - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "" - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "" - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "Skriv %current_year% för att dynamiskt visa nuvarande år." - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "Skriv %copy% för att använda upphövsrätt symbolen." - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "HTML är tillåtet." - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "Shortcodes är tillåtna." - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -msgid "Transition" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:442 -msgid "Side" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "" - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "" - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "" - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgid "Contained" -msgstr "" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "" - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -msgid "Importing options" -msgstr "" - -#: sites/classes/class-site-helper.php:96 -msgid "Downloading content" -msgstr "" - -#: sites/classes/class-site-helper.php:97 -msgid "Importing content" -msgstr "" - -#: sites/classes/class-site-helper.php:98 -msgid "Importing site options" -msgstr "" - -#: sites/classes/class-site-helper.php:99 -msgid "Importing widgets" -msgstr "" - -#: sites/classes/class-site-helper.php:100 -msgid "Activating plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -msgid "Automatic" -msgstr "" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -msgid "Theme Options" -msgstr "" - -#: sites/classes/class-site.php:236 -msgid "Site Content" -msgstr "" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -#, fuzzy -#| msgid "Bulk Actions" -msgid "Backup Options" -msgstr "Välj åtgärd" - -#: sites/classes/class-site.php:325 -msgid "Import Options" -msgstr "" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -msgid "Import Content" -msgstr "" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "Licens aktiverad." - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "" - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#~ msgid "License failed." -#~ msgstr "Registreringen misslyckades." - -#~ msgid "Updates %s" -#~ msgstr "Uppdateringar %s" - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details." -#~ msgstr "" -#~ "Det finns en ny version av %1$s tillgänglig. Se version %3$s detaljer." - -#~ msgid "" -#~ "There is a new version of %1$s available. View version %3$s details or update now." -#~ msgstr "" -#~ "Det finns en ny version av %1$s tillgänglig. Se version %3$s detaljer eller uppdatera nu." - -#~ msgid "" -#~ "Use %current_year% to include the current year dynamically." -#~ msgstr "" -#~ "Skriv %current_year% för att dynamiskt visa nuvarande år." - -#~ msgid "Use %copy% to include the copyright symbol." -#~ msgstr "Skriv %copy% för att använda upphövsrätt symbolen." diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-uk.mo b/wp-content/plugins/gp-premium/langs/gp-premium-uk.mo new file mode 100644 index 00000000..007659aa Binary files /dev/null and b/wp-content/plugins/gp-premium/langs/gp-premium-uk.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-vi.mo b/wp-content/plugins/gp-premium/langs/gp-premium-vi.mo new file mode 100644 index 00000000..eaaad991 Binary files /dev/null and b/wp-content/plugins/gp-premium/langs/gp-premium-vi.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-zh_CN.mo b/wp-content/plugins/gp-premium/langs/gp-premium-zh_CN.mo index 8333c3c9..20c575de 100644 Binary files a/wp-content/plugins/gp-premium/langs/gp-premium-zh_CN.mo and b/wp-content/plugins/gp-premium/langs/gp-premium-zh_CN.mo differ diff --git a/wp-content/plugins/gp-premium/langs/gp-premium-zh_CN.po b/wp-content/plugins/gp-premium/langs/gp-premium-zh_CN.po deleted file mode 100644 index 9ceb928e..00000000 --- a/wp-content/plugins/gp-premium/langs/gp-premium-zh_CN.po +++ /dev/null @@ -1,3001 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2018-02-27 17:38-0800\n" -"PO-Revision-Date: 2018-02-27 17:38-0800\n" -"Last-Translator: Pedro Mendonça \n" -"Language-Team: \n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" -"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" -"_nx_noop:3c,1,2;__ngettext_noop:1,2\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-WPHeader: gp-premium.php\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" -"X-Poedit-SearchPathExcluded-1: *deprecated*\n" -"X-Poedit-SearchPathExcluded-2: sites/libs/wxr-importer/WPImporterLogger.php\n" -"X-Poedit-SearchPathExcluded-3: sites/libs/wxr-importer/WXRImporter.php\n" -"X-Poedit-SearchPathExcluded-4: sites/libs/wxr-importer/WXRImportInfo.php\n" -"X-Poedit-SearchPathExcluded-5: sites/classes/class-site-widget-importer.php\n" - -#: backgrounds/functions/functions.php:99 -#: backgrounds/functions/functions.php:108 -msgid "Background Images" -msgstr "背景图像" - -#: backgrounds/functions/functions.php:117 -#: backgrounds/functions/functions.php:143 -#: typography/functions/functions.php:53 -msgid "Body" -msgstr "正文" - -#: backgrounds/functions/functions.php:206 -#: backgrounds/functions/functions.php:230 colors/functions/functions.php:56 -#: disable-elements/functions/functions.php:128 -#: disable-elements/functions/functions.php:130 -#: disable-elements/functions/functions.php:290 -#: disable-elements/functions/functions.php:292 -#: typography/functions/functions.php:238 -msgid "Top Bar" -msgstr "" - -#: backgrounds/functions/functions.php:293 -#: backgrounds/functions/functions.php:316 colors/functions/functions.php:143 -#: disable-elements/functions/functions.php:134 -#: disable-elements/functions/functions.php:136 -#: disable-elements/functions/functions.php:296 -#: disable-elements/functions/functions.php:298 -#: spacing/functions/customizer/header-spacing.php:11 -#: typography/functions/functions.php:361 -msgid "Header" -msgstr "页眉" - -#: backgrounds/functions/functions.php:376 colors/functions/functions.php:239 -#: disable-elements/functions/functions.php:139 -#: disable-elements/functions/functions.php:141 -#: disable-elements/functions/functions.php:301 -#: disable-elements/functions/functions.php:303 -#: spacing/functions/customizer/navigation-spacing.php:11 -#: typography/functions/functions.php:600 -msgid "Primary Navigation" -msgstr "主导航" - -#: backgrounds/functions/functions.php:403 -#: backgrounds/functions/secondary-nav-backgrounds.php:65 -msgid "Navigation" -msgstr "导航" - -#: backgrounds/functions/functions.php:423 -#: backgrounds/functions/functions.php:473 -#: backgrounds/functions/functions.php:523 -#: backgrounds/functions/functions.php:573 -#: backgrounds/functions/functions.php:633 -#: backgrounds/functions/functions.php:683 -#: backgrounds/functions/functions.php:733 -#: backgrounds/functions/secondary-nav-backgrounds.php:86 -#: backgrounds/functions/secondary-nav-backgrounds.php:135 -#: backgrounds/functions/secondary-nav-backgrounds.php:184 -#: backgrounds/functions/secondary-nav-backgrounds.php:233 -#: backgrounds/functions/secondary-nav-backgrounds.php:294 -#: backgrounds/functions/secondary-nav-backgrounds.php:343 -#: backgrounds/functions/secondary-nav-backgrounds.php:392 -#: library/customizer/controls/class-backgrounds-control.php:121 -msgid "Repeat" -msgstr "铺满" - -#: backgrounds/functions/functions.php:424 -#: backgrounds/functions/functions.php:474 -#: backgrounds/functions/functions.php:524 -#: backgrounds/functions/functions.php:574 -#: backgrounds/functions/functions.php:634 -#: backgrounds/functions/functions.php:684 -#: backgrounds/functions/functions.php:734 -#: backgrounds/functions/secondary-nav-backgrounds.php:87 -#: backgrounds/functions/secondary-nav-backgrounds.php:136 -#: backgrounds/functions/secondary-nav-backgrounds.php:185 -#: backgrounds/functions/secondary-nav-backgrounds.php:234 -#: backgrounds/functions/secondary-nav-backgrounds.php:295 -#: backgrounds/functions/secondary-nav-backgrounds.php:344 -#: backgrounds/functions/secondary-nav-backgrounds.php:393 -#: library/customizer/controls/class-backgrounds-control.php:122 -msgid "Repeat x" -msgstr "横向铺满" - -#: backgrounds/functions/functions.php:425 -#: backgrounds/functions/functions.php:475 -#: backgrounds/functions/functions.php:525 -#: backgrounds/functions/functions.php:575 -#: backgrounds/functions/functions.php:635 -#: backgrounds/functions/functions.php:685 -#: backgrounds/functions/functions.php:735 -#: backgrounds/functions/secondary-nav-backgrounds.php:88 -#: backgrounds/functions/secondary-nav-backgrounds.php:137 -#: backgrounds/functions/secondary-nav-backgrounds.php:186 -#: backgrounds/functions/secondary-nav-backgrounds.php:235 -#: backgrounds/functions/secondary-nav-backgrounds.php:296 -#: backgrounds/functions/secondary-nav-backgrounds.php:345 -#: backgrounds/functions/secondary-nav-backgrounds.php:394 -#: library/customizer/controls/class-backgrounds-control.php:123 -msgid "Repeat y" -msgstr "纵向铺满" - -#: backgrounds/functions/functions.php:426 -#: backgrounds/functions/functions.php:476 -#: backgrounds/functions/functions.php:526 -#: backgrounds/functions/functions.php:576 -#: backgrounds/functions/functions.php:636 -#: backgrounds/functions/functions.php:686 -#: backgrounds/functions/functions.php:736 -#: backgrounds/functions/secondary-nav-backgrounds.php:89 -#: backgrounds/functions/secondary-nav-backgrounds.php:138 -#: backgrounds/functions/secondary-nav-backgrounds.php:187 -#: backgrounds/functions/secondary-nav-backgrounds.php:236 -#: backgrounds/functions/secondary-nav-backgrounds.php:297 -#: backgrounds/functions/secondary-nav-backgrounds.php:346 -#: backgrounds/functions/secondary-nav-backgrounds.php:395 -#: library/customizer/controls/class-backgrounds-control.php:124 -msgid "No Repeat" -msgstr "无铺满" - -#: backgrounds/functions/functions.php:453 -#: backgrounds/functions/secondary-nav-backgrounds.php:114 -msgid "Navigation Item" -msgstr "导航项" - -#: backgrounds/functions/functions.php:503 -#: backgrounds/functions/secondary-nav-backgrounds.php:163 -msgid "Navigation Item Hover" -msgstr "划过导航项" - -#: backgrounds/functions/functions.php:553 -#: backgrounds/functions/secondary-nav-backgrounds.php:212 -msgid "Navigation Item Current" -msgstr "导航项流动" - -#: backgrounds/functions/functions.php:586 -msgid "Primary Sub-Navigation" -msgstr "主子导航" - -#: backgrounds/functions/functions.php:613 -#: backgrounds/functions/secondary-nav-backgrounds.php:273 -msgid "Sub-Navigation Item" -msgstr "子导航项" - -#: backgrounds/functions/functions.php:663 -#: backgrounds/functions/secondary-nav-backgrounds.php:322 -msgid "Sub-Navigation Item Hover" -msgstr "划过子导航项" - -#: backgrounds/functions/functions.php:713 -#: backgrounds/functions/secondary-nav-backgrounds.php:371 -msgid "Sub-Navigation Item Current" -msgstr "子导航项流动" - -#: backgrounds/functions/functions.php:746 -#: backgrounds/functions/functions.php:772 blog/functions/customizer.php:49 -#: colors/functions/functions.php:621 page-header/functions/metabox.php:182 -#: sections/functions/metaboxes/metabox-functions.php:241 -#: sections/functions/metaboxes/metabox-functions.php:244 -#: sites/classes/class-site.php:351 -#: spacing/functions/customizer/content-spacing.php:11 -msgid "Content" -msgstr "内容" - -#: backgrounds/functions/functions.php:833 -msgid "Sidebar" -msgstr "边栏" - -#: backgrounds/functions/functions.php:856 colors/functions/functions.php:775 -msgid "Sidebar Widgets" -msgstr "边栏小工具" - -#: backgrounds/functions/functions.php:917 colors/functions/functions.php:1102 -#: disable-elements/functions/functions.php:161 -#: disable-elements/functions/functions.php:163 -#: disable-elements/functions/functions.php:323 -#: disable-elements/functions/functions.php:325 -#: spacing/functions/customizer/footer-spacing.php:12 -#: typography/functions/functions.php:1871 -msgid "Footer" -msgstr "页脚" - -#: backgrounds/functions/functions.php:941 -msgid "Footer Widget Area" -msgstr "页脚小工具区域" - -#: backgrounds/functions/functions.php:1016 -msgid "Footer Area" -msgstr "页脚区域" - -#: backgrounds/functions/secondary-nav-backgrounds.php:39 -#: colors/functions/secondary-nav-colors.php:50 -#: disable-elements/functions/functions.php:145 -#: disable-elements/functions/functions.php:147 -#: disable-elements/functions/functions.php:307 -#: disable-elements/functions/functions.php:309 -#: secondary-nav/functions/functions.php:153 -#: secondary-nav/functions/functions.php:162 -#: typography/functions/secondary-nav-fonts.php:48 -msgid "Secondary Navigation" -msgstr "副导航" - -#: backgrounds/functions/secondary-nav-backgrounds.php:247 -msgid "Secondary Sub-Navigation" -msgstr "副子导航" - -#: blog/functions/customizer.php:35 -msgid "Blog" -msgstr "文章" - -#: blog/functions/customizer.php:63 blog/functions/customizer.php:439 -msgid "Archives" -msgstr "" - -#: blog/functions/customizer.php:64 -msgid "Single" -msgstr "" - -#: blog/functions/customizer.php:76 -msgid "Content type" -msgstr "" - -#: blog/functions/customizer.php:79 secondary-nav/functions/functions.php:206 -#: secondary-nav/functions/functions.php:232 -msgid "Full" -msgstr "" - -#: blog/functions/customizer.php:80 -msgid "Excerpt" -msgstr "" - -#: blog/functions/customizer.php:99 -msgid "Excerpt word count" -msgstr "" - -#: blog/functions/customizer.php:119 -msgid "Read more label" -msgstr "更多 标签" - -#: blog/functions/customizer.php:139 -msgid "Display read more as button" -msgstr "" - -#: blog/functions/customizer.php:159 blog/functions/customizer.php:337 -msgid "Display post date" -msgstr "" - -#: blog/functions/customizer.php:179 blog/functions/customizer.php:356 -msgid "Display post author" -msgstr "" - -#: blog/functions/customizer.php:199 blog/functions/customizer.php:375 -msgid "Display post categories" -msgstr "" - -#: blog/functions/customizer.php:219 blog/functions/customizer.php:394 -msgid "Display post tags" -msgstr "" - -#: blog/functions/customizer.php:239 -msgid "Display comment count" -msgstr "" - -#: blog/functions/customizer.php:259 -msgid "Use infinite scroll" -msgstr "" - -#: blog/functions/customizer.php:279 -msgid "Use button to load more posts" -msgstr "" - -#: blog/functions/customizer.php:298 -msgid "Load more label" -msgstr "" - -#: blog/functions/customizer.php:317 -msgid "Loading label" -msgstr "" - -#: blog/functions/customizer.php:413 -msgid "Display post navigation" -msgstr "" - -#: blog/functions/customizer.php:426 -msgid "Featured Images" -msgstr "" - -#: blog/functions/customizer.php:440 -msgid "Posts" -msgstr "" - -#: blog/functions/customizer.php:441 -msgid "Pages" -msgstr "" - -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 -msgid "Display featured images" -msgstr "" - -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 -msgid "Display padding around images" -msgstr "" - -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 -msgid "Location" -msgstr "" - -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 -msgid "Below Title" -msgstr "" - -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 -msgid "Above Title" -msgstr "" - -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 -msgid "Alignment" -msgstr "" - -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 page-header/functions/metabox.php:336 -#: secondary-nav/functions/functions.php:259 -#: woocommerce/functions/customizer/customizer.php:243 -#: woocommerce/functions/customizer/customizer.php:286 -msgid "Center" -msgstr "中间" - -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 -#: library/customizer/controls/class-spacing-control.php:26 -#: menu-plus/functions/generate-menu-plus.php:445 -#: page-header/functions/metabox.php:335 -#: secondary-nav/functions/functions.php:258 -#: woocommerce/functions/customizer/customizer.php:242 -#: woocommerce/functions/customizer/customizer.php:285 -msgid "Left" -msgstr "左侧" - -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 -#: library/customizer/controls/class-spacing-control.php:24 -#: menu-plus/functions/generate-menu-plus.php:446 -#: page-header/functions/metabox.php:337 -#: secondary-nav/functions/functions.php:260 -#: woocommerce/functions/customizer/customizer.php:244 -#: woocommerce/functions/customizer/customizer.php:287 -msgid "Right" -msgstr "右侧" - -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 -msgid "Width" -msgstr "" - -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "自动" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 -msgid "Height" -msgstr "高度" - -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 -msgid "Apply sizes" -msgstr "" - -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 -#: page-header/functions/functions.php:811 -#: page-header/functions/functions.php:836 -msgid "Above Content Area" -msgstr "内容区域以上" - -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 -msgid "Columns" -msgstr "列" - -#: blog/functions/customizer.php:963 -msgid "Display posts in columns" -msgstr "" - -#: blog/functions/customizer.php:1010 -msgid "Make first post featured" -msgstr "" - -#: blog/functions/customizer.php:1031 -msgid "Display posts in masonry grid" -msgstr "" - -#: blog/functions/defaults.php:13 blog/functions/migrate.php:22 -msgid "Read more" -msgstr "" - -#: blog/functions/defaults.php:16 blog/functions/migrate.php:26 -msgid "+ More" -msgstr "+ 更多" - -#: blog/functions/defaults.php:17 blog/functions/migrate.php:27 -msgid "Loading..." -msgstr "载入中…" - -#: colors/functions/functions.php:46 -#: sections/functions/metaboxes/views/sections-template.php:211 -msgid "Colors" -msgstr "颜色" - -#: colors/functions/functions.php:79 colors/functions/functions.php:166 -#: colors/functions/functions.php:276 colors/functions/functions.php:411 -#: colors/functions/functions.php:541 colors/functions/functions.php:644 -#: colors/functions/functions.php:798 colors/functions/functions.php:886 -#: colors/functions/functions.php:1125 colors/functions/functions.php:1209 -#: colors/functions/secondary-nav-colors.php:86 -#: colors/functions/secondary-nav-colors.php:240 -#: colors/functions/slideout-nav-colors.php:82 -#: colors/functions/slideout-nav-colors.php:236 -#: sections/functions/metaboxes/views/sections-template.php:236 -msgid "Background" -msgstr "背景" - -#: colors/functions/functions.php:95 colors/functions/functions.php:181 -#: colors/functions/functions.php:340 colors/functions/functions.php:475 -#: colors/functions/functions.php:564 colors/functions/functions.php:658 -#: colors/functions/functions.php:812 colors/functions/functions.php:900 -#: colors/functions/functions.php:1139 colors/functions/functions.php:1232 -#: colors/functions/secondary-nav-colors.php:110 -#: colors/functions/secondary-nav-colors.php:264 -#: colors/functions/slideout-nav-colors.php:106 -#: colors/functions/slideout-nav-colors.php:260 -msgid "Text" -msgstr "文本" - -#: colors/functions/functions.php:101 colors/functions/functions.php:187 -#: colors/functions/functions.php:664 colors/functions/functions.php:818 -#: colors/functions/functions.php:906 colors/functions/functions.php:1145 -msgid "Link" -msgstr "链接" - -#: colors/functions/functions.php:107 colors/functions/functions.php:193 -#: colors/functions/functions.php:670 colors/functions/functions.php:824 -#: colors/functions/functions.php:912 colors/functions/functions.php:1151 -msgid "Link Hover" -msgstr "划过链接" - -#: colors/functions/functions.php:199 page-header/functions/metabox.php:512 -#: typography/functions/functions.php:424 -msgid "Site Title" -msgstr "站点标题" - -#: colors/functions/functions.php:205 -msgid "Tagline" -msgstr "广告语" - -#: colors/functions/functions.php:253 -#: colors/functions/secondary-nav-colors.php:64 -#: colors/functions/slideout-nav-colors.php:60 -#, fuzzy -#| msgid "Primary Menu Items" -msgid "Parent Items" -msgstr "主菜单项" - -#: colors/functions/functions.php:301 colors/functions/functions.php:436 -#: colors/functions/functions.php:587 colors/functions/functions.php:1254 -#: colors/functions/secondary-nav-colors.php:133 -#: colors/functions/secondary-nav-colors.php:287 -#: colors/functions/slideout-nav-colors.php:129 -#: colors/functions/slideout-nav-colors.php:283 -msgid "Background Hover" -msgstr "背景划过" - -#: colors/functions/functions.php:326 colors/functions/functions.php:461 -#: colors/functions/secondary-nav-colors.php:180 -#: colors/functions/secondary-nav-colors.php:334 -#: colors/functions/slideout-nav-colors.php:176 -#: colors/functions/slideout-nav-colors.php:330 -msgid "Background Current" -msgstr "背景当前" - -#: colors/functions/functions.php:346 colors/functions/functions.php:481 -#: colors/functions/functions.php:610 colors/functions/functions.php:1277 -#: colors/functions/secondary-nav-colors.php:157 -#: colors/functions/secondary-nav-colors.php:311 -#: colors/functions/slideout-nav-colors.php:153 -#: colors/functions/slideout-nav-colors.php:307 -msgid "Text Hover" -msgstr "文本划过" - -#: colors/functions/functions.php:352 colors/functions/functions.php:487 -#: colors/functions/secondary-nav-colors.php:204 -#: colors/functions/secondary-nav-colors.php:358 -#: colors/functions/slideout-nav-colors.php:200 -#: colors/functions/slideout-nav-colors.php:354 -msgid "Text Current" -msgstr "文本当前" - -#: colors/functions/functions.php:388 -#: colors/functions/secondary-nav-colors.php:218 -#: colors/functions/slideout-nav-colors.php:214 -#, fuzzy -#| msgid "Sub-Menu Item Height" -msgid "Sub-Menu Items" -msgstr "子菜单项高度" - -#: colors/functions/functions.php:518 typography/functions/functions.php:732 -msgid "Buttons" -msgstr "" - -#: colors/functions/functions.php:676 -#: disable-elements/functions/functions.php:156 -#: disable-elements/functions/functions.php:158 -#: disable-elements/functions/functions.php:318 -#: disable-elements/functions/functions.php:320 -msgid "Content Title" -msgstr "内容标题" - -#: colors/functions/functions.php:682 -msgid "Blog Post Title" -msgstr "文章标题" - -#: colors/functions/functions.php:688 -msgid "Blog Post Title Hover" -msgstr "文章标题划过" - -#: colors/functions/functions.php:694 -msgid "Entry Meta Text" -msgstr "进入功能文本" - -#: colors/functions/functions.php:700 -msgid "Entry Meta Links" -msgstr "进入功能链接" - -#: colors/functions/functions.php:706 -msgid "Entry Meta Links Hover" -msgstr "划过进入功能链接" - -#: colors/functions/functions.php:712 -msgid "Heading 1 (H1) Color" -msgstr "标题 1 (H1) 颜色" - -#: colors/functions/functions.php:718 -msgid "Heading 2 (H2) Color" -msgstr "标题 2 (H2) 颜色" - -#: colors/functions/functions.php:724 -msgid "Heading 3 (H3) Color" -msgstr "标题 3 (H3) 颜色" - -#: colors/functions/functions.php:732 -msgid "Heading 4 (H4) Color" -msgstr "" - -#: colors/functions/functions.php:741 -msgid "Heading 5 (H5) Color" -msgstr "" - -#: colors/functions/functions.php:830 colors/functions/functions.php:918 -msgid "Widget Title" -msgstr "小工具标题" - -#: colors/functions/functions.php:863 -msgid "Footer Widgets" -msgstr "页脚小工具" - -#: colors/functions/functions.php:951 -msgid "Forms" -msgstr "表格" - -#: colors/functions/functions.php:974 -msgid "Form Background" -msgstr "表格背景" - -#: colors/functions/functions.php:999 -msgid "Form Background Focus" -msgstr "" - -#: colors/functions/functions.php:1024 -msgid "Form Border" -msgstr "表格边框" - -#: colors/functions/functions.php:1049 -msgid "Form Border Focus" -msgstr "" - -#: colors/functions/functions.php:1063 -msgid "Form Text" -msgstr "表格文本" - -#: colors/functions/functions.php:1069 -msgid "Form Text Focus" -msgstr "" - -#: colors/functions/functions.php:1188 -msgid "Back to Top Button" -msgstr "" - -#: colors/functions/slideout-nav-colors.php:46 -#: menu-plus/functions/generate-menu-plus.php:14 -#: menu-plus/functions/generate-menu-plus.php:396 -#: menu-plus/functions/generate-menu-plus.php:417 -#: menu-plus/functions/generate-menu-plus.php:726 -#: typography/functions/slideout-nav-fonts.php:38 -msgid "Slideout Navigation" -msgstr "滑出导航" - -#: colors/functions/woocommerce-colors.php:51 -msgid "Product Title" -msgstr "" - -#: colors/functions/woocommerce-colors.php:73 -msgid "Product Title Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:96 -msgid "Alt Button Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:120 -msgid "Alt Button Background Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:143 -msgid "Alt Button Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:166 -msgid "Alt Button Text Hover" -msgstr "" - -#: colors/functions/woocommerce-colors.php:189 -msgid "Star Ratings" -msgstr "" - -#: colors/functions/woocommerce-colors.php:213 -msgid "Sale Sticker Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:236 -msgid "Sale Sticker Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:258 -msgid "Price" -msgstr "" - -#: colors/functions/woocommerce-colors.php:280 -msgid "Product Tab Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:302 -msgid "Product Tab Active" -msgstr "" - -#: colors/functions/woocommerce-colors.php:325 -msgid "Success Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:348 -msgid "Success Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:371 -msgid "Info Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:394 -msgid "Info Message Text" -msgstr "" - -#: colors/functions/woocommerce-colors.php:417 -msgid "Error Message Background" -msgstr "" - -#: colors/functions/woocommerce-colors.php:440 -msgid "Error Message Text" -msgstr "" - -#: copyright/functions/functions.php:37 -msgid "Copyright" -msgstr "版本" - -#: disable-elements/functions/functions.php:98 -msgid "Disable Elements" -msgstr "取消元素" - -#: disable-elements/functions/functions.php:151 -#: disable-elements/functions/functions.php:153 -#: disable-elements/functions/functions.php:313 -#: disable-elements/functions/functions.php:315 -msgid "Featured Image / Page Header" -msgstr "" - -#: general/smooth-scroll.php:85 -msgid "Smooth scroll" -msgstr "" - -#: general/smooth-scroll.php:86 -msgid "" -"Initiate smooth scroll on anchor links using the smooth-scroll " -"class." -msgstr "" - -#: gp-premium.php:220 -msgid "GeneratePress has an update available." -msgstr "" - -#: gp-premium.php:222 -msgid "Update now." -msgstr "" - -#: gp-premium.php:234 -msgid "GP Premium requires GeneratePress to be your active theme." -msgstr "" - -#: gp-premium.php:235 -msgid "Install now." -msgstr "" - -#: gp-premium.php:250 -msgid "Configure" -msgstr "" - -#: hooks/functions/functions.php:69 -msgid "" -"DISALLOW_FILE_EDIT is defined. You should also disallow PHP execution in GP " -"Hooks." -msgstr "" - -#: hooks/functions/functions.php:70 -msgid "Learn how" -msgstr "" - -#: hooks/functions/functions.php:124 hooks/functions/functions.php:144 -#: hooks/functions/functions.php:395 -msgid "GP Hooks" -msgstr "挂钩" - -#: hooks/functions/functions.php:160 -msgid "wp_head" -msgstr "" - -#: hooks/functions/functions.php:166 -msgid "Before Header" -msgstr "页眉之前" - -#: hooks/functions/functions.php:172 -msgid "Before Header Content" -msgstr "页眉内容之前" - -#: hooks/functions/functions.php:178 -msgid "After Header Content" -msgstr "页眉内容之后" - -#: hooks/functions/functions.php:184 -msgid "After Header" -msgstr "页眉之后" - -#: hooks/functions/functions.php:190 -msgid "Inside Content Container" -msgstr "内容区域中" - -#: hooks/functions/functions.php:196 -msgid "Before Content" -msgstr "内容之前" - -#: hooks/functions/functions.php:202 -msgid "After Entry Title" -msgstr "条目标题之后" - -#: hooks/functions/functions.php:208 -msgid "After Content" -msgstr "内容之后" - -#: hooks/functions/functions.php:214 -msgid "Before Right Sidebar Content" -msgstr "右边栏内容之前" - -#: hooks/functions/functions.php:220 -msgid "After Right Sidebar Content" -msgstr "右边栏内容之后" - -#: hooks/functions/functions.php:226 -msgid "Before Left Sidebar Content" -msgstr "左边栏内容之前" - -#: hooks/functions/functions.php:232 -msgid "After Left Sidebar Content" -msgstr "左边栏内容之后" - -#: hooks/functions/functions.php:238 -msgid "Before Footer" -msgstr "页脚之前" - -#: hooks/functions/functions.php:244 -msgid "After Footer Widgets" -msgstr "页脚小工具之后" - -#: hooks/functions/functions.php:250 -msgid "Before Footer Content" -msgstr "页脚内容之前" - -#: hooks/functions/functions.php:256 -msgid "After Footer Content" -msgstr "页脚内容之后" - -#: hooks/functions/functions.php:262 -msgid "wp_footer" -msgstr "" - -#: hooks/functions/functions.php:347 -msgid "Execute PHP" -msgstr "执行PHP" - -#: hooks/functions/functions.php:349 -msgid "Disable Hook" -msgstr "关闭挂钩" - -#: hooks/functions/functions.php:397 -msgid "" -"Use these fields to insert anything you like throughout GeneratePress. " -"Shortcodes are allowed, and you can even use PHP if you check the Execute " -"PHP checkboxes." -msgstr "这个区域可输入多种形式,允许短代码、甚至是PHP" - -#: hooks/functions/functions.php:399 -msgid "Show all" -msgstr "显示全部" - -#: hooks/functions/functions.php:410 -msgid "Save Hooks" -msgstr "保存挂钩" - -#: hooks/functions/functions.php:482 -msgid "Hooks saved." -msgstr "挂钩已保存" - -#: import-export/functions/functions.php:11 -msgid "Export" -msgstr "" - -#: import-export/functions/functions.php:14 library/reset.php:12 -#: page-header/functions/metabox.php:196 -msgid "Advanced" -msgstr "高级设置" - -#: import-export/functions/functions.php:16 library/reset.php:14 -msgctxt "Module name" -msgid "Core" -msgstr "" - -#: import-export/functions/functions.php:19 library/reset.php:17 -#, fuzzy -#| msgid "Background" -msgctxt "Module name" -msgid "Backgrounds" -msgstr "背景" - -#: import-export/functions/functions.php:23 library/reset.php:21 -#, fuzzy -#| msgid "Blog" -msgctxt "Module name" -msgid "Blog" -msgstr "文章" - -#: import-export/functions/functions.php:27 library/reset.php:25 -#, fuzzy -#| msgid "GP Hooks" -msgctxt "Module name" -msgid "Hooks" -msgstr "挂钩" - -#: import-export/functions/functions.php:31 library/reset.php:29 -#, fuzzy -#| msgid "Page Header" -msgctxt "Module name" -msgid "Page Header" -msgstr "页面页眉" - -#: import-export/functions/functions.php:35 library/reset.php:33 -#, fuzzy -#| msgid "Secondary Navigation" -msgctxt "Module name" -msgid "Secondary Navigation" -msgstr "副导航" - -#: import-export/functions/functions.php:39 library/reset.php:37 -#, fuzzy -#| msgid "Spacing" -msgctxt "Module name" -msgid "Spacing" -msgstr "间距" - -#: import-export/functions/functions.php:43 library/reset.php:41 -#, fuzzy -#| msgid "Menu Plus" -msgctxt "Module name" -msgid "Menu Plus" -msgstr "菜单+" - -#: import-export/functions/functions.php:47 library/reset.php:45 -msgctxt "Module name" -msgid "WooCommerce" -msgstr "" - -#: import-export/functions/functions.php:51 library/reset.php:49 -#, fuzzy -#| msgid "Copyright" -msgctxt "Module name" -msgid "Copyright" -msgstr "版本" - -#: import-export/functions/functions.php:56 -msgctxt "Module name" -msgid "GeneratePress Site" -msgstr "" - -#: import-export/functions/functions.php:63 -msgid "Export Settings" -msgstr "" - -#: import-export/functions/functions.php:77 -msgid "Import" -msgstr "" - -#: import-export/functions/functions.php:86 -msgid "Import Settings" -msgstr "导入设置" - -#: import-export/functions/functions.php:214 -msgid "Please upload a valid .json file" -msgstr "请上传可用的.json文件" - -#: import-export/functions/functions.php:220 -msgid "Please upload a file to import" -msgstr "请上传文件以导入设置" - -#: inc/EDD_SL_Plugin_Updater.php:201 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s." -msgstr "新版本%1$s可用 %2$s查看版本 %3$s 详细%4$s" - -#: inc/EDD_SL_Plugin_Updater.php:209 -#, php-format -msgid "" -"There is a new version of %1$s available. %2$sView version %3$s details%4$s " -"or %5$supdate now%6$s." -msgstr "新版本%1$s可用 %2$s查看版本 %3$s 详细%4$s 或者 %5$s现在更新%6$s" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "You do not have permission to install plugin updates" -msgstr "没有安装插件更新的权限" - -#: inc/EDD_SL_Plugin_Updater.php:399 -msgid "Error" -msgstr "错误" - -#: inc/activation.php:14 -msgid "Add-on deactivated." -msgstr "附件已注销" - -#: inc/activation.php:18 -msgid "Add-on activated." -msgstr "附件已激活" - -#. Plugin Name of the plugin/theme -#: inc/activation.php:59 -msgid "GP Premium" -msgstr "附件" - -#: inc/activation.php:67 -msgid "Bulk Actions" -msgstr "批量操作" - -#: inc/activation.php:68 inc/activation.php:105 -msgid "Activate" -msgstr "激活" - -#: inc/activation.php:69 inc/activation.php:89 -msgid "Deactivate" -msgstr "注销" - -#: inc/activation.php:72 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" -msgstr "应用" - -#: inc/activation.php:102 -msgid "WooCommerce not activated." -msgstr "" - -#: inc/activation.php:430 -msgid "Enter valid license key for automatic updates." -msgstr "" - -#: inc/dashboard.php:16 -msgid "Modules" -msgstr "" - -#: inc/verify.php:74 -msgid "License deactivated." -msgstr "许可证已注销" - -#: inc/verify.php:78 -msgid "License activated." -msgstr "许可证已激活" - -#: inc/verify.php:110 -msgid "Updates" -msgstr "" - -#: inc/verify.php:110 -msgid "Help" -msgstr "帮助" - -#: inc/verify.php:126 -msgid "Receiving updates" -msgstr "" - -#: inc/verify.php:128 -msgid "Not receiving updates" -msgstr "" - -#: inc/verify.php:134 -msgid "License Key" -msgstr "许可证" - -#: inc/verify.php:139 -msgid "Update" -msgstr "更新" - -#: inc/verify.php:224 -#, php-format -msgid "Your license key expired on %s." -msgstr "许可证到期:%s." - -#: inc/verify.php:231 -msgid "Your license key has been disabled." -msgstr "许可证失效" - -#: inc/verify.php:236 -msgid "Invalid license." -msgstr "无效的许可证" - -#: inc/verify.php:242 -msgid "Your license is not active for this URL." -msgstr "许可证未对这个URL未激活" - -#: inc/verify.php:247 -#, php-format -msgid "This appears to be an invalid license key for %s." -msgstr "无效的许可证:%s." - -#: inc/verify.php:252 -msgid "Your license key has reached its activation limit." -msgstr "许可证达到激活上限" - -#: inc/verify.php:257 -msgid "An error occurred, please try again." -msgstr "发生错误,请重试" - -#: library/batch-processing/wp-background-process.php:425 -#, php-format -msgid "Every %d Minutes" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:18 -msgid "left top, x% y%, xpos ypos (px)" -msgstr "" - -#: library/customizer/controls/class-backgrounds-control.php:19 -msgid "Position" -msgstr "位置" - -#: library/customizer/controls/class-backgrounds-control.php:130 -msgid "Size (Auto)" -msgstr "大小(自动)" - -#: library/customizer/controls/class-backgrounds-control.php:131 -msgid "100% Width" -msgstr "100% 宽度" - -#: library/customizer/controls/class-backgrounds-control.php:132 -msgid "Cover" -msgstr "覆盖" - -#: library/customizer/controls/class-backgrounds-control.php:133 -msgid "Contain" -msgstr "平铺" - -#: library/customizer/controls/class-backgrounds-control.php:139 -msgid "Attachment" -msgstr "Attachment效果" - -#: library/customizer/controls/class-backgrounds-control.php:140 -msgid "Fixed" -msgstr "Fixed效果" - -#: library/customizer/controls/class-backgrounds-control.php:141 -msgid "Local" -msgstr "Local效果" - -#: library/customizer/controls/class-backgrounds-control.php:142 -#: woocommerce/functions/customizer/customizer.php:550 -msgid "Inherit" -msgstr "Inherit效果" - -#: library/customizer/controls/class-copyright-control.php:25 -msgid "%current_year% to update year automatically." -msgstr "%current_year% 自动更换当前年份的代码" - -#: library/customizer/controls/class-copyright-control.php:26 -msgid "%copy% to include the copyright symbol." -msgstr "%copy% 版权符号的代码" - -#: library/customizer/controls/class-copyright-control.php:27 -msgid "HTML is allowed." -msgstr "允许HTML" - -#: library/customizer/controls/class-copyright-control.php:28 -msgid "Shortcodes are allowed." -msgstr "允许短代码" - -#: library/customizer/controls/class-range-slider-control.php:42 -msgid "Desktop" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:43 -msgid "Tablet" -msgstr "" - -#: library/customizer/controls/class-range-slider-control.php:44 -msgid "Mobile" -msgstr "便携设备" - -#: library/customizer/controls/class-range-slider-control.php:45 -#: library/reset.php:9 -msgid "Reset" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:23 -msgid "Top" -msgstr "顶部" - -#: library/customizer/controls/class-spacing-control.php:25 -msgid "Bottom" -msgstr "底部" - -#: library/customizer/controls/class-spacing-control.php:48 -msgid "Link values" -msgstr "" - -#: library/customizer/controls/class-spacing-control.php:49 -msgid "Un-link values" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:25 -msgid "System Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:26 -msgid "Google Fonts" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:29 -msgid "Font family" -msgstr "字体列表" - -#: library/customizer/controls/class-typography-control.php:30 -msgid "Font weight" -msgstr "字体粗细" - -#: library/customizer/controls/class-typography-control.php:31 -msgid "Text transform" -msgstr "文本格式" - -#: library/customizer/controls/class-typography-control.php:33 -msgid "Variants" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:162 -msgid "normal" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:163 -msgid "bold" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:178 -msgid "none" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:179 -msgid "capitalize" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:180 -msgid "uppercase" -msgstr "" - -#: library/customizer/controls/class-typography-control.php:181 -msgid "lowercase" -msgstr "" - -#: library/reset.php:55 -msgid "Warning: This will delete your settings and can not be undone." -msgstr "" - -#: library/reset.php:58 -msgid "Reset Settings" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:25 -#: menu-plus/functions/generate-menu-plus.php:632 -msgid "Menu" -msgstr "菜单" - -#: menu-plus/functions/generate-menu-plus.php:101 -msgid "Menu Plus" -msgstr "菜单+" - -#: menu-plus/functions/generate-menu-plus.php:126 -msgid "General Settings" -msgstr "通用设置" - -#: menu-plus/functions/generate-menu-plus.php:144 -#: secondary-nav/functions/functions.php:181 -msgid "Mobile Menu Label" -msgstr "便携设备菜单标签" - -#: menu-plus/functions/generate-menu-plus.php:154 -#: menu-plus/functions/generate-menu-plus.php:175 -msgid "Sticky Navigation" -msgstr "粘性导航" - -#: menu-plus/functions/generate-menu-plus.php:178 -#: menu-plus/functions/generate-menu-plus.php:420 -msgid "Mobile only" -msgstr "便携设备" - -#: menu-plus/functions/generate-menu-plus.php:179 -#: menu-plus/functions/generate-menu-plus.php:421 -msgid "Desktop only" -msgstr "桌面设备" - -#: menu-plus/functions/generate-menu-plus.php:180 -#: menu-plus/functions/generate-menu-plus.php:317 -#: menu-plus/functions/generate-menu-plus.php:363 -#: menu-plus/functions/generate-menu-plus.php:422 -msgid "On" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:181 -#: menu-plus/functions/generate-menu-plus.php:316 -#: menu-plus/functions/generate-menu-plus.php:364 -#: menu-plus/functions/generate-menu-plus.php:423 -msgid "Off" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:202 -#, fuzzy -#| msgid "Position" -msgid "Transition" -msgstr "位置" - -#: menu-plus/functions/generate-menu-plus.php:205 -msgid "Fade" -msgstr "淡入" - -#: menu-plus/functions/generate-menu-plus.php:206 -msgid "Slide" -msgstr "划入" - -#: menu-plus/functions/generate-menu-plus.php:207 -msgid "None" -msgstr "无" - -#: menu-plus/functions/generate-menu-plus.php:229 -#: menu-plus/functions/generate-menu-plus.php:385 -msgid "Hide when scrolling down" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:252 -#: page-header/functions/metabox.php:477 -msgid "Navigation Logo" -msgstr "导航图标" - -#: menu-plus/functions/generate-menu-plus.php:274 -msgid "Navigation Logo Placement" -msgstr "" - -#: menu-plus/functions/generate-menu-plus.php:277 -#: menu-plus/functions/generate-menu-plus.php:360 -msgid "Sticky" -msgstr "粘性" - -#: menu-plus/functions/generate-menu-plus.php:278 -msgid "Sticky + Static" -msgstr "粘性+静止" - -#: menu-plus/functions/generate-menu-plus.php:279 -msgid "Static" -msgstr "静止" - -#: menu-plus/functions/generate-menu-plus.php:292 -#: menu-plus/functions/generate-menu-plus.php:313 -msgid "Mobile Header" -msgstr "便携设备页眉" - -#: menu-plus/functions/generate-menu-plus.php:338 -#: page-header/functions/metabox.php:191 -msgid "Logo" -msgstr "图标" - -#: menu-plus/functions/generate-menu-plus.php:442 -#, fuzzy -#| msgid "Sidebar" -msgid "Side" -msgstr "边栏" - -#: menu-plus/functions/generate-menu-plus.php:693 -#: sections/functions/metaboxes/views/sections-template.php:69 -#: sites/classes/class-site.php:161 sites/classes/class-site.php:477 -msgid "Close" -msgstr "关闭" - -#: page-header/functions/functions.php:784 page-header/functions/metabox.php:37 -#: page-header/functions/metabox.php:57 page-header/functions/metabox.php:763 -#: page-header/functions/post-type.php:15 -#: page-header/functions/post-type.php:29 -#: page-header/functions/post-type.php:79 -#: page-header/functions/post-type.php:112 -msgid "Page Header" -msgstr "页面页眉" - -#: page-header/functions/functions.php:808 -msgid "Page Header Location" -msgstr "" - -#: page-header/functions/functions.php:812 -#: page-header/functions/functions.php:837 -msgid "Inside Content Area" -msgstr "内容区域中" - -#: page-header/functions/functions.php:833 -msgid "Single Post Header Location" -msgstr "" - -#: page-header/functions/functions.php:838 -msgid "Below Post Title" -msgstr "文章标题以下" - -#: page-header/functions/functions.php:839 -msgid "Hide" -msgstr "隐藏" - -#: page-header/functions/functions.php:1078 -#, php-format -msgid "View all posts by %s" -msgstr "" - -#: page-header/functions/global-locations.php:24 -#: page-header/functions/global-locations.php:25 -#: page-header/functions/global-locations.php:40 -msgid "Global Locations" -msgstr "" - -#: page-header/functions/global-locations.php:72 -msgid "Posts Page (blog)" -msgstr "" - -#: page-header/functions/global-locations.php:81 -msgid "Search Results" -msgstr "" - -#: page-header/functions/global-locations.php:90 -msgid "404 Template" -msgstr "" - -#: page-header/functions/global-locations.php:99 -msgid "Post Types - Single" -msgstr "" - -#: page-header/functions/global-locations.php:125 -msgid "Post Types - Archives" -msgstr "" - -#: page-header/functions/global-locations.php:147 -msgid "Taxonomies - Archives" -msgstr "" - -#: page-header/functions/metabox.php:139 page-header/functions/metabox.php:749 -#, php-format -msgid "" -"No Page Headers found. Want to create " -"one?" -msgstr "" - -#: page-header/functions/metabox.php:158 -msgid "Content is required for the below settings to work." -msgstr "" - -#: page-header/functions/metabox.php:178 -msgid "Image" -msgstr "图像" - -#: page-header/functions/metabox.php:186 -msgid "Background Video" -msgstr "背景视频" - -#: page-header/functions/metabox.php:202 -msgid "Add to excerpt" -msgstr "" - -#: page-header/functions/metabox.php:218 -msgid "" -"Currently using your featured image." -msgstr "" - -#: page-header/functions/metabox.php:229 -msgid "Page Header Image" -msgstr "页面页眉图像" - -#: page-header/functions/metabox.php:229 -msgid "Insert Image" -msgstr "插入图像" - -#: page-header/functions/metabox.php:230 -msgid "Choose Image" -msgstr "选择图像" - -#: page-header/functions/metabox.php:233 -msgid "Remove Image" -msgstr "移除图像" - -#: page-header/functions/metabox.php:238 -msgid "Or you can set the featured image." -msgstr "" - -#: page-header/functions/metabox.php:243 -msgid "Image Link" -msgstr "" - -#: page-header/functions/metabox.php:248 -msgid "Resize Image" -msgstr "" - -#: page-header/functions/metabox.php:250 -#: sections/functions/metaboxes/views/sections-template.php:250 -#: sections/functions/metaboxes/views/sections-template.php:258 -msgid "Disable" -msgstr "关闭" - -#: page-header/functions/metabox.php:251 -#: sections/functions/metaboxes/views/sections-template.php:251 -#: sections/functions/metaboxes/views/sections-template.php:259 -msgid "Enable" -msgstr "启用" - -#: page-header/functions/metabox.php:257 -msgid "Image Width" -msgstr "" - -#: page-header/functions/metabox.php:262 -msgid "Image Height" -msgstr "" - -#: page-header/functions/metabox.php:265 -msgid "Use \"0\" or leave blank for proportional resizing." -msgstr "填写 \"0\" 或者留白维持原比例" - -#: page-header/functions/metabox.php:274 -msgid "HTML and shortcodes allowed." -msgstr "允许HTML和短代码" - -#: page-header/functions/metabox.php:281 -msgid "Automatically add paragraphs" -msgstr "自动添加段落" - -#: page-header/functions/metabox.php:286 -msgid "Add Padding" -msgstr "添加内边距" - -#: page-header/functions/metabox.php:291 -msgid "Add Background Image" -msgstr "" - -#: page-header/functions/metabox.php:296 -msgid "Use background color as overlay" -msgstr "" - -#: page-header/functions/metabox.php:301 -#: sections/functions/metaboxes/views/sections-template.php:247 -msgid "Parallax Effect" -msgstr "视差效果" - -#: page-header/functions/metabox.php:306 -msgid "Fullscreen" -msgstr "全屏" - -#: page-header/functions/metabox.php:311 -msgid "Vertical center content" -msgstr "垂直居中内容" - -#: page-header/functions/metabox.php:317 -msgid "Container" -msgstr "" - -#: page-header/functions/metabox.php:319 page-header/functions/metabox.php:327 -#: secondary-nav/functions/functions.php:207 -#: secondary-nav/functions/functions.php:233 -#: sections/functions/metaboxes/views/sections-template.php:167 -#: sections/functions/metaboxes/views/sections-template.php:175 -msgid "Contained" -msgstr "平铺" - -#: page-header/functions/metabox.php:320 page-header/functions/metabox.php:328 -#: sections/functions/metaboxes/views/sections-template.php:166 -#: sections/functions/metaboxes/views/sections-template.php:176 -msgid "Full Width" -msgstr "拉伸" - -#: page-header/functions/metabox.php:325 -msgid "Inner Container" -msgstr "" - -#: page-header/functions/metabox.php:333 -#: woocommerce/functions/customizer/customizer.php:282 -msgid "Text Alignment" -msgstr "文本位置" - -#: page-header/functions/metabox.php:342 -msgid "Top & Bottom Padding" -msgstr "" - -#: page-header/functions/metabox.php:351 -msgid "Left & Right Padding" -msgstr "" - -#: page-header/functions/metabox.php:362 -#: sections/functions/metaboxes/views/sections-template.php:212 -msgid "Background Color" -msgstr "背景颜色" - -#: page-header/functions/metabox.php:367 -#: sections/functions/metaboxes/views/sections-template.php:217 -msgid "Text Color" -msgstr "文本颜色" - -#: page-header/functions/metabox.php:372 -#: sections/functions/metaboxes/views/sections-template.php:223 -msgid "Link Color" -msgstr "链接颜色" - -#: page-header/functions/metabox.php:377 -#: sections/functions/metaboxes/views/sections-template.php:229 -msgid "Link Color Hover" -msgstr "划过链接颜色" - -#: page-header/functions/metabox.php:388 -msgid "MP4 file" -msgstr "MP4格式" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Page Header Video" -msgstr "页面页眉视频" - -#: page-header/functions/metabox.php:390 page-header/functions/metabox.php:398 -#: page-header/functions/metabox.php:406 -msgid "Insert Video" -msgstr "插入视频" - -#: page-header/functions/metabox.php:391 page-header/functions/metabox.php:399 -#: page-header/functions/metabox.php:407 -msgid "Choose Video" -msgstr "选择视频" - -#: page-header/functions/metabox.php:396 -msgid "OGV file" -msgstr "OGV格式" - -#: page-header/functions/metabox.php:404 -msgid "WEBM file" -msgstr "WEBM格式" - -#: page-header/functions/metabox.php:412 -msgid "Overlay Color" -msgstr "覆盖颜色" - -#: page-header/functions/metabox.php:428 -msgid "Overwrite your site-wide logo/header on this page." -msgstr "用全局 图标/页眉 覆盖这个页面" - -#: page-header/functions/metabox.php:438 -msgid "Header / Logo" -msgstr "页眉/图标" - -#: page-header/functions/metabox.php:438 page-header/functions/metabox.php:477 -msgid "Insert Logo" -msgstr "插入图标" - -#: page-header/functions/metabox.php:439 page-header/functions/metabox.php:478 -msgid "Choose Logo" -msgstr "选择图标" - -#: page-header/functions/metabox.php:450 page-header/functions/metabox.php:490 -msgid "Remove Logo" -msgstr "移除图标" - -#: page-header/functions/metabox.php:467 -msgid "Overwrite your navigation logo on this page." -msgstr "" - -#: page-header/functions/metabox.php:502 -msgid "Merge with site header" -msgstr "合并站点页眉" - -#: page-header/functions/metabox.php:508 -msgid "Place content behind header (sliders etc..)" -msgstr "内容置于页眉之后" - -#: page-header/functions/metabox.php:517 typography/functions/functions.php:547 -msgid "Site Tagline" -msgstr "" - -#: page-header/functions/metabox.php:523 -msgid "Custom Navigation Colors" -msgstr "" - -#: page-header/functions/metabox.php:528 -msgid "Navigation Background" -msgstr "" - -#: page-header/functions/metabox.php:533 -msgid "Navigation Text" -msgstr "" - -#: page-header/functions/metabox.php:538 -msgid "Navigation Background Hover" -msgstr "" - -#: page-header/functions/metabox.php:543 -msgid "Navigation Text Hover" -msgstr "" - -#: page-header/functions/metabox.php:548 -msgid "Navigation Background Current" -msgstr "" - -#: page-header/functions/metabox.php:553 -msgid "Navigation Text Current" -msgstr "" - -#: page-header/functions/metabox.php:673 -msgid "Template Tags" -msgstr "" - -#: page-header/functions/metabox.php:686 -msgid "The content title of the current post/taxonomy." -msgstr "" - -#: page-header/functions/metabox.php:689 -msgid "The published date of the current post." -msgstr "" - -#: page-header/functions/metabox.php:692 -msgid "The author of the current post." -msgstr "" - -#: page-header/functions/metabox.php:695 -msgid "" -"The terms attached to the chosen taxonomy (category, post_tag, product_cat)." -msgstr "" - -#: page-header/functions/metabox.php:698 -msgid "Custom post meta. Replace \"name\" with the name of your custom field." -msgstr "" - -#: page-header/functions/metabox.php:702 -msgid "" -"Display an Elementor library template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/metabox.php:707 -msgid "Display a Beaver Builder template. Replace \"id\" with the ID or name." -msgstr "" - -#: page-header/functions/post-type.php:12 -msgctxt "Post Type General Name" -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:13 -msgctxt "Post Type Singular Name" -msgid "Page Header" -msgstr "" - -#: page-header/functions/post-type.php:14 -msgid "Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:16 -msgid "Page Header Archives" -msgstr "" - -#: page-header/functions/post-type.php:17 -msgid "Parent Page Header:" -msgstr "" - -#: page-header/functions/post-type.php:18 -msgid "All Page Headers" -msgstr "" - -#: page-header/functions/post-type.php:19 -msgid "Add New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:20 -msgid "New Page Header" -msgstr "" - -#: page-header/functions/post-type.php:21 -msgid "Edit Page Header" -msgstr "" - -#: page-header/functions/post-type.php:22 -msgid "Update Page Header" -msgstr "" - -#: page-header/functions/post-type.php:23 -msgid "View Page Header" -msgstr "" - -#: page-header/functions/post-type.php:24 -msgid "Search Page Header" -msgstr "" - -#: page-header/functions/post-type.php:25 -msgid "Insert into Page Header" -msgstr "" - -#: page-header/functions/post-type.php:26 -msgid "Uploaded to this Page Header" -msgstr "" - -#: secondary-nav/functions/functions.php:16 -msgid "Secondary Menu" -msgstr "副菜单" - -#: secondary-nav/functions/functions.php:203 -msgid "Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:229 -msgid "Inner Navigation Width" -msgstr "" - -#: secondary-nav/functions/functions.php:255 -msgid "Navigation Alignment" -msgstr "导航位置" - -#: secondary-nav/functions/functions.php:282 -msgid "Navigation Location" -msgstr "" - -#: secondary-nav/functions/functions.php:285 -msgid "Below Header" -msgstr "页眉以下" - -#: secondary-nav/functions/functions.php:286 -msgid "Above Header" -msgstr "页眉以上" - -#: secondary-nav/functions/functions.php:287 -msgid "Float Right" -msgstr "右侧悬浮" - -#: secondary-nav/functions/functions.php:288 -msgid "Float Left" -msgstr "" - -#: secondary-nav/functions/functions.php:289 -msgid "Left Sidebar" -msgstr "左边栏" - -#: secondary-nav/functions/functions.php:290 -msgid "Right Sidebar" -msgstr "右边栏" - -#: secondary-nav/functions/functions.php:291 -msgid "No Navigation" -msgstr "无导航" - -#: secondary-nav/functions/functions.php:312 -msgid "Merge with Secondary Navigation" -msgstr "" - -#: sections/functions/metaboxes/metabox-functions.php:47 -msgid "Use Sections" -msgstr "使用模块" - -#: sections/functions/metaboxes/metabox-functions.php:59 -msgid "Sections" -msgstr "模块" - -#: sections/functions/metaboxes/metabox-functions.php:237 -msgid "This action can not be undone, are you sure?" -msgstr "操作无法取消,确定继续?" - -#: sections/functions/metaboxes/metabox-functions.php:240 -msgid "Section" -msgstr "模块" - -#: sections/functions/metaboxes/metabox-functions.php:243 -msgid "Settings" -msgstr "设置" - -#: sections/functions/metaboxes/metabox-functions.php:249 -msgid "Section Background" -msgstr "模块背景" - -#: sections/functions/metaboxes/metabox-functions.php:250 -msgid "Set as Section Background" -msgstr "设为模块背景" - -#: sections/functions/metaboxes/metabox-functions.php:254 -msgid "Insert into Section" -msgstr "插入模块" - -#: sections/functions/metaboxes/metabox-functions.php:255 -#: sections/functions/metaboxes/views/sections-template.php:74 -msgid "Edit Section" -msgstr "编辑模块" - -#: sections/functions/metaboxes/views/sections-template.php:35 -msgid "Click to edit" -msgstr "点击编辑" - -#: sections/functions/metaboxes/views/sections-template.php:37 -msgid "Click to edit content" -msgstr "点击编辑内容" - -#: sections/functions/metaboxes/views/sections-template.php:38 -msgid "Click to edit settings" -msgstr "点击编辑设置" - -#: sections/functions/metaboxes/views/sections-template.php:39 -msgid "Click and drag to sort" -msgstr "点击拖拽位置" - -#: sections/functions/metaboxes/views/sections-template.php:40 -msgid "Click to remove" -msgstr "点击移除" - -#: sections/functions/metaboxes/views/sections-template.php:54 -msgid "Add Section" -msgstr "添加模块" - -#: sections/functions/metaboxes/views/sections-template.php:55 -msgid "Remove Sections" -msgstr "移除模块" - -#: sections/functions/metaboxes/views/sections-template.php:81 -msgid "Cancel" -msgstr "取消" - -#: sections/functions/metaboxes/views/sections-template.php:110 -msgid "Section Label" -msgstr "模块标签" - -#: sections/functions/metaboxes/views/sections-template.php:126 -msgid "Add Media" -msgstr "添加媒体" - -#: sections/functions/metaboxes/views/sections-template.php:131 -msgid "Visual" -msgstr "可视化" - -#: sections/functions/metaboxes/views/sections-template.php:132 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "文本" - -#: sections/functions/metaboxes/views/sections-template.php:161 -msgid "Layout" -msgstr "布局" - -#: sections/functions/metaboxes/views/sections-template.php:162 -msgid "Box Type" -msgstr "模块类型" - -#: sections/functions/metaboxes/views/sections-template.php:171 -msgid "Inner Box Type" -msgstr "模块内部类型" - -#: sections/functions/metaboxes/views/sections-template.php:180 -msgid "Custom ID" -msgstr "" - -#: sections/functions/metaboxes/views/sections-template.php:186 -msgid "Custom Classes" -msgstr "自定义类" - -#: sections/functions/metaboxes/views/sections-template.php:192 -msgid "Top Padding" -msgstr "顶部内边距" - -#: sections/functions/metaboxes/views/sections-template.php:201 -msgid "Bottom Padding" -msgstr "底部内边距" - -#: sections/functions/metaboxes/views/sections-template.php:237 -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Background Image" -msgstr "背景图像" - -#: sections/functions/metaboxes/views/sections-template.php:242 -msgid "Upload" -msgstr "上传" - -#: sections/functions/metaboxes/views/sections-template.php:243 -msgid "Remove" -msgstr "移除" - -#: sections/functions/metaboxes/views/sections-template.php:255 -msgid "Background Color Overlay" -msgstr "" - -#: sections/functions/metaboxes/views/sections.php:8 -msgid "Javascript must be enabled to use Generate Sections" -msgstr "必须开启Javascript" - -#: sections/functions/templates/template.php:107 -msgid "No sections added!" -msgstr "未添加任何模块" - -#: sites/classes/class-site-helper.php:94 -msgid "Backing up options" -msgstr "" - -#: sites/classes/class-site-helper.php:95 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing options" -msgstr "导入设置" - -#: sites/classes/class-site-helper.php:96 -#, fuzzy -#| msgid "Blog Content" -msgid "Downloading content" -msgstr "文章内容" - -#: sites/classes/class-site-helper.php:97 -#, fuzzy -#| msgid "Skip to content" -msgid "Importing content" -msgstr "跳转到内容" - -#: sites/classes/class-site-helper.php:98 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing site options" -msgstr "导入设置" - -#: sites/classes/class-site-helper.php:99 -#, fuzzy -#| msgid "Import Settings" -msgid "Importing widgets" -msgstr "导入设置" - -#: sites/classes/class-site-helper.php:100 -msgid "Activating plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:101 -msgid "Installing plugins" -msgstr "" - -#: sites/classes/class-site-helper.php:102 -#, fuzzy -#| msgid "Static" -msgid "Automatic" -msgstr "静止" - -#: sites/classes/class-site-helper.php:103 -msgid "Manual" -msgstr "" - -#: sites/classes/class-site-helper.php:104 -msgid "Theme options exist and can be imported." -msgstr "" - -#: sites/classes/class-site-helper.php:105 -msgid "No theme options found, please contact the site author." -msgstr "" - -#: sites/classes/class-site-helper.php:106 -msgid "Site content exists and can be imported." -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous Site" -msgstr "" - -#: sites/classes/class-site.php:159 -msgid "Previous" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next Site" -msgstr "" - -#: sites/classes/class-site.php:160 -msgid "Next" -msgstr "" - -#: sites/classes/class-site.php:206 sites/classes/class-site.php:270 -msgid "Preview" -msgstr "" - -#: sites/classes/class-site.php:207 sites/classes/class-site.php:479 -msgid "Details" -msgstr "" - -#: sites/classes/class-site.php:224 -msgid "Overview" -msgstr "" - -#: sites/classes/class-site.php:228 -#, fuzzy -#| msgid "Remove Sections" -msgid "Theme Options" -msgstr "移除模块" - -#: sites/classes/class-site.php:236 -#, fuzzy -#| msgid "After Content" -msgid "Site Content" -msgstr "内容之后" - -#: sites/classes/class-site.php:236 sites/classes/class-site.php:351 -msgid "Optional" -msgstr "" - -#: sites/classes/class-site.php:243 -msgid "Plugins" -msgstr "" - -#: sites/classes/class-site.php:249 sites/classes/class-site.php:381 -msgid "The following plugins can be installed and activated automatically." -msgstr "" - -#: sites/classes/class-site.php:254 sites/classes/class-site.php:386 -msgid "The following plugins are already installed." -msgstr "" - -#: sites/classes/class-site.php:259 sites/classes/class-site.php:391 -msgid "The following plugins need to be installed and activated manually." -msgstr "" - -#: sites/classes/class-site.php:277 -msgid "Gathering data" -msgstr "" - -#: sites/classes/class-site.php:281 -msgid "Get Started" -msgstr "" - -#: sites/classes/class-site.php:293 -msgid "GeneratePress Options" -msgstr "" - -#: sites/classes/class-site.php:297 -msgid "" -"This step will backup your current theme options, then import the new ones." -msgstr "" - -#: sites/classes/class-site.php:300 -msgid "The following GP Premium modules will be activated:" -msgstr "" - -#: sites/classes/class-site.php:308 -msgid "Go Back" -msgstr "" - -#: sites/classes/class-site.php:315 -#, fuzzy -#| msgid "Bulk Actions" -msgid "Backup Options" -msgstr "批量操作" - -#: sites/classes/class-site.php:325 -#, fuzzy -#| msgid "Import Settings" -msgid "Import Options" -msgstr "导入设置" - -#: sites/classes/class-site.php:358 -msgid "" -"I understand that this step will add content, site options, menus, widgets " -"and plugins to my site." -msgstr "" - -#: sites/classes/class-site.php:365 -#, php-format -msgid "" -"For best results, only install this demo content on fresh sites with no " -"content. If you have already installed another GeneratePress Site, be sure " -"to %s by deleting the content, plugins and menus that it added." -msgstr "" - -#: sites/classes/class-site.php:368 -msgid "clean it up" -msgstr "" - -#: sites/classes/class-site.php:373 -msgid "" -"You can skip this step if you already " -"have content and do not want the demo content imported." -msgstr "" - -#: sites/classes/class-site.php:400 -msgid "Skip" -msgstr "" - -#: sites/classes/class-site.php:408 -#, fuzzy -#| msgid "Before Content" -msgid "Import Content" -msgstr "内容之前" - -#: sites/classes/class-site.php:435 -msgid "All done!" -msgstr "" - -#: sites/classes/class-site.php:436 -msgid "Your site is ready to go!" -msgstr "" - -#: sites/classes/class-site.php:440 -#, php-format -msgid "Crafted with %s by" -msgstr "" - -#: sites/classes/class-site.php:458 -msgid "Start Over" -msgstr "" - -#: sites/classes/class-site.php:461 -msgid "View Site" -msgstr "" - -#: sites/classes/class-site.php:829 -msgid "Site options imported" -msgstr "" - -#: sites/classes/class-site.php:859 -#, fuzzy -#| msgid "License activated." -msgid "Plugins activated" -msgstr "许可证已激活" - -#: sites/sites.php:37 -msgid "Sites" -msgstr "" - -#: sites/sites.php:78 -msgid "Refresh sites" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:32 -msgid "Container Width" -msgstr "" - -#: spacing/functions/customizer/content-spacing.php:67 -msgid "Separating Space" -msgstr "间距" - -#: spacing/functions/customizer/content-spacing.php:132 -msgid "Content Padding" -msgstr "内容内边距" - -#: spacing/functions/customizer/content-spacing.php:196 -msgid "Mobile Content Padding" -msgstr "" - -#: spacing/functions/customizer/footer-spacing.php:73 -msgid "Footer Widget Area Padding" -msgstr "页脚小工具区域内边距" - -#: spacing/functions/customizer/footer-spacing.php:134 -msgid "Footer Padding" -msgstr "页脚内边距" - -#: spacing/functions/customizer/header-spacing.php:68 -msgid "Header Padding" -msgstr "页眉内边距" - -#: spacing/functions/customizer/navigation-spacing.php:47 -#: spacing/functions/customizer/secondary-nav-spacing.php:58 -msgid "Menu Item Width" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:100 -#: spacing/functions/customizer/navigation-spacing.php:178 -#: spacing/functions/customizer/navigation-spacing.php:214 -#: spacing/functions/customizer/secondary-nav-spacing.php:93 -msgid "Menu Item Height" -msgstr "" - -#: spacing/functions/customizer/navigation-spacing.php:143 -#: spacing/functions/customizer/secondary-nav-spacing.php:128 -msgid "Sub-Menu Item Height" -msgstr "子菜单项高度" - -#: spacing/functions/customizer/sidebar-spacing.php:12 -msgid "Sidebars" -msgstr "边栏" - -#: spacing/functions/customizer/sidebar-spacing.php:70 -msgid "Widget Padding" -msgstr "小工具内边距" - -#: spacing/functions/customizer/sidebar-spacing.php:101 -msgid "Left Sidebar Width" -msgstr "左边栏宽度" - -#: spacing/functions/customizer/sidebar-spacing.php:136 -msgid "Right Sidebar Width" -msgstr "右边栏宽度" - -#: spacing/functions/customizer/top-bar-spacing.php:55 -msgid "Top Bar Padding" -msgstr "" - -#: spacing/functions/functions.php:41 -msgid "Spacing" -msgstr "间距" - -#: spacing/functions/functions.php:42 -msgid "Change the spacing for various elements using pixels." -msgstr "使用px设置间距" - -#: typography/functions/functions.php:44 -msgid "Typography" -msgstr "字体" - -#: typography/functions/functions.php:145 -#: typography/functions/functions.php:336 -#: typography/functions/functions.php:465 -#: typography/functions/functions.php:577 -#: typography/functions/functions.php:701 -#: typography/functions/functions.php:818 -#: typography/functions/functions.php:938 -#: typography/functions/functions.php:1089 -#: typography/functions/functions.php:1230 -#: typography/functions/functions.php:1364 -#: typography/functions/functions.php:1497 -#: typography/functions/functions.php:1630 -#: typography/functions/functions.php:1779 -#: typography/functions/functions.php:1960 -#: typography/functions/secondary-nav-fonts.php:139 -#: typography/functions/slideout-nav-fonts.php:106 -#: typography/functions/woocommerce-fonts.php:99 -msgid "Font size" -msgstr "字体大小" - -#: typography/functions/functions.php:180 -#: typography/functions/functions.php:981 -#: typography/functions/functions.php:1132 -#: typography/functions/functions.php:1265 -#: typography/functions/functions.php:1398 -#: typography/functions/functions.php:1531 -#: typography/functions/functions.php:1664 -msgid "Line height" -msgstr "" - -#: typography/functions/functions.php:215 -msgid "Paragraph margin" -msgstr "" - -#: typography/functions/functions.php:841 -msgid "Headings" -msgstr "" - -#: typography/functions/functions.php:900 -msgid "Heading 1 (H1)" -msgstr "标题1" - -#: typography/functions/functions.php:1051 -msgid "Heading 2 (H2)" -msgstr "标题2" - -#: typography/functions/functions.php:1202 -msgid "Heading 3 (H3)" -msgstr "标题3" - -#: typography/functions/functions.php:1336 -msgid "Heading 4 (H4)" -msgstr "" - -#: typography/functions/functions.php:1469 -msgid "Heading 5 (H5)" -msgstr "" - -#: typography/functions/functions.php:1602 -msgid "Heading 6 (H6)" -msgstr "" - -#: typography/functions/functions.php:1687 -msgid "Widgets" -msgstr "小工具" - -#: typography/functions/functions.php:1750 -msgid "Widget Titles" -msgstr "" - -#: typography/functions/functions.php:1813 -msgid "Bottom margin" -msgstr "" - -#: typography/functions/functions.php:1848 -msgid "Content font size" -msgstr "内容字体大小" - -#: typography/functions/woocommerce-fonts.php:63 -msgid "Product Titles" -msgstr "" - -#: typography/functions/woocommerce-fonts.php:142 -msgid "Related/upsell title font size" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:43 -#: woocommerce/functions/customizer/customizer.php:709 -#: woocommerce/functions/customizer/customizer.php:719 -msgid "WooCommerce" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:57 -msgid "General" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:76 -msgid "Display cart in menu" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:95 -msgid "Display breadcrumbs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:108 -msgid "Shop" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:127 -#: woocommerce/functions/customizer/customizer.php:547 -msgid "Sidebar Layout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:130 -#: woocommerce/functions/customizer/customizer.php:551 -msgid "Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:131 -#: woocommerce/functions/customizer/customizer.php:552 -msgid "Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:132 -#: woocommerce/functions/customizer/customizer.php:553 -msgid "Content (no sidebars)" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:133 -#: woocommerce/functions/customizer/customizer.php:554 -msgid "Sidebar / Content / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:134 -#: woocommerce/functions/customizer/customizer.php:555 -msgid "Sidebar / Sidebar / Content" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:135 -#: woocommerce/functions/customizer/customizer.php:556 -msgid "Content / Sidebar / Sidebar" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:154 -#: woocommerce/functions/customizer/customizer.php:263 -msgid "Products Per Page" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:192 -msgid "Product Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:239 -msgid "Image Alignment" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:306 -msgid "Display page title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:325 -msgid "Display product results count" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:344 -msgid "Display product sorting" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:363 -msgid "Display product image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:382 -msgid "Display secondary image on hover" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:401 -msgid "Display product title" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:420 -msgid "Display sale flash" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:439 -msgid "Sale Flash Over Image" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:458 -msgid "Display Rating" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:477 -msgid "Display price" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:496 -msgid "Display add to cart button" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:515 -#: woocommerce/functions/customizer/customizer.php:700 -msgid "Display short description" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:528 -msgid "Single Product" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:575 -msgid "Display product tabs" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:594 -msgid "Display related products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:613 -msgid "Display upsell products" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:642 -msgid "Related/Upsell Columns" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:681 -msgid "Display product meta data" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:732 -msgid "Primary Button Colors" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:733 -msgid "Primary button colors can be set here." -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:747 -msgid "Checkout" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:766 -msgid "Distraction-free mode" -msgstr "" - -#: woocommerce/functions/customizer/customizer.php:767 -msgid "" -"Remove unnecessary distractions like sidebars, footer widgets and sticky " -"menus." -msgstr "" - -#: woocommerce/functions/functions.php:413 -#: woocommerce/functions/functions.php:433 -msgid "View your shopping cart" -msgstr "" - -#: woocommerce/functions/functions.php:715 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#: woocommerce/functions/functions.php:717 -msgid "Not yet rated" -msgstr "" - -#: woocommerce/functions/functions.php:722 -msgid "out of 5" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "https://generatepress.com" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"The entire bundle of GeneratePress add-ons. Configure add-ons by going to Appearance > GeneratePress." -msgstr "" - -#. Author of the plugin/theme -msgid "Tom Usborne" -msgstr "" - -#. Author URI of the plugin/theme -msgid "https://tomusborne.com" -msgstr "" - -#, fuzzy -#~| msgid "Slideout Navigation" -#~ msgid "Slide-out Navigation" -#~ msgstr "滑出导航" - -#~ msgid "Slideout Menu" -#~ msgstr "滑出菜单" - -#~ msgid "Both" -#~ msgstr "应用两者" - -#~ msgid "Mobile Header Logo" -#~ msgstr "便携设备页眉图标" - -#~ msgid "Sticky Mobile Header" -#~ msgstr "粘性便携设备页眉" - -#~ msgid "Warning: This will delete your settings." -#~ msgstr "警告:这将删除你的设置" - -#~ msgid "Export Backgrounds Customizer Settings" -#~ msgstr "导出背景自定义设置" - -#~ msgid "Delete Backgrounds Customizer Settings" -#~ msgstr "删除背景自定义设置" - -#~ msgid "Post Image / Page Header" -#~ msgstr "文章图像/文章页眉" - -#~ msgid "Updates %s" -#~ msgstr "更新 %s" - -#~ msgid "Apply image sizes" -#~ msgstr "应用图像尺寸" - -#~ msgid "Excerpt Length" -#~ msgstr "摘要长度" - -#~ msgid "Masonry" -#~ msgstr "砖块结构" - -#~ msgid "Masonry Block Width" -#~ msgstr "砖块结构砖块宽度" - -#~ msgid "Small" -#~ msgstr "小" - -#~ msgid "Medium" -#~ msgstr "中等" - -#~ msgid "Large" -#~ msgstr "大" - -#~ msgid "Masonry Most Recent Width" -#~ msgstr "砖块结构最近文章宽度" - -#~ msgid "Masonry Load More Text" -#~ msgstr "砖块结构载入更多文本" - -#~ msgid "Masonry Loading Text" -#~ msgstr "砖块结构载入文本" - -#~ msgid "Post Image" -#~ msgstr "文章图像" - -#~ msgid "Show" -#~ msgstr "显示" - -#~ msgid "Post Image Position" -#~ msgstr "文章图像位置" - -#~ msgid "Post Image Alignment" -#~ msgstr "文章图像位置" - -#~ msgid "Post Image Width" -#~ msgstr "文章图像宽度" - -#~ msgid "Post Image Height" -#~ msgstr "文章图像高度" - -#~ msgid "Date" -#~ msgstr "日期" - -#~ msgid "Author" -#~ msgstr "作者" - -#~ msgid "Categories" -#~ msgstr "分类目录" - -#~ msgid "Tags" -#~ msgstr "标签" - -#~ msgid "Comment Link" -#~ msgstr "评论链接" - -#~ msgid "Masonry is enabled. These settings will be ignored." -#~ msgstr "砖块结构已启用,这些设置将被忽略" - -#~ msgid "Column Layout" -#~ msgstr "列布局" - -#~ msgid "First Post Full Width" -#~ msgstr "第一篇文章拉伸宽度" - -#~ msgid "Read more..." -#~ msgstr "阅读更多…" - -#~ msgid "Delete Blog Customizer Settings" -#~ msgstr "删除文章自定义设置" - -#~ msgid "Export Blog Customizer Settings" -#~ msgstr "导出文章自定义设置" - -#~ msgid "Masonry Post Width" -#~ msgstr "砖块结构文章宽度" - -#~ msgid "Global setting" -#~ msgstr "全局设置" - -#~ msgid "Form Background Focus/Hover" -#~ msgstr "表格背景 聚焦/划过" - -#~ msgid "Form Text Focus/Hover" -#~ msgstr "表格文本 聚焦/划过" - -#~ msgid "Form Border Focus/Hover" -#~ msgstr "表格边框 聚焦/划过" - -#~ msgid "Form Button" -#~ msgstr "表格按钮" - -#~ msgid "Form Button Focus/Hover" -#~ msgstr "表格按钮 聚焦/划过" - -#~ msgid "Form Button Text" -#~ msgstr "表格按钮文本" - -#~ msgid "Form Button Text Focus/Hover" -#~ msgstr "表格按钮文本 聚焦/划过" - -#~ msgid "Export GP Hooks" -#~ msgstr "导出挂钩设置" - -#~ msgid "Delete GP Hooks" -#~ msgstr "删除挂钩设置" - -#~ msgid "Import / Export" -#~ msgstr "导入/导出" - -#~ msgid "" -#~ "Export your settings set in the Customizer." -#~ msgstr "导出自定义中所做的设置" - -#~ msgid "Export Default Customizer Settings" -#~ msgstr "导出默认自定义设置" - -#~ msgid "" -#~ "Import your settings by uploading your exported .json " -#~ "file." -#~ msgstr "通过上传已经导出的.json文件导入设置 " - -#~ msgid "Error: Content already detected in default editor." -#~ msgstr "错误:默认编辑器存在内容" - -#~ msgid "" -#~ "Please activate the \"Visual\" tab in your main editor before " -#~ "transferring content." -#~ msgstr "转移内容之前,请激活主编辑器中的“可视化”标签" - -#~ msgid "" -#~ "The spacing between elements when \"Content Layout\" is set to \"Separate " -#~ "Containers\"." -#~ msgstr "多段式元素间距" - -#~ msgid "Delete Spacing Customizer Settings" -#~ msgstr "删除间距自定义设置" - -#~ msgid "Export Spacing Customizer Settings" -#~ msgstr "导出间距自定义设置" - -#~ msgid "Left/Right Spacing" -#~ msgstr "左侧/右侧空间" - -#~ msgid "The top and bottom spacing of sub-menu items." -#~ msgstr "子菜单项顶部和底部的空间" - -#~ msgid "Default fonts" -#~ msgstr "默认字体" - -#~ msgid "Google fonts" -#~ msgstr "谷歌字体" - -#~ msgid "Site title" -#~ msgstr "站点标题" - -#~ msgid "Site tagline" -#~ msgstr "站点副标题" - -#~ msgid "Site navigation" -#~ msgstr "站点导航" - -#~ msgid "Font-size" -#~ msgstr "字体大小" - -#~ msgid "Widget titles" -#~ msgstr "小工具标题" - -#~ msgid "Footer font size" -#~ msgstr "页脚字体大小" - -#~ msgid "Site title font size" -#~ msgstr "站点标题字体大小" - -#~ msgid "H1 font size" -#~ msgstr "标题1字体大小" - -#~ msgid "H2 font size" -#~ msgstr "标题2字体大小" - -#~ msgid "Sticky Menu" -#~ msgstr "粘性菜单" - -#~ msgid "Sticky Navigation Effect" -#~ msgstr "粘性导航特效" - -#~ msgid "Navigation Logo Position" -#~ msgstr "导航图标位置" - -#~ msgid "Delete Menu Plus Customizer Settings" -#~ msgstr "删除菜单+自定义设置" - -#~ msgid "Export Menu Plus Customizer Settings" -#~ msgstr "导出菜单+自定义设置" - -#~ msgid "Blog Page Header" -#~ msgstr "文章页页眉" - -#~ msgid "Upload an image to be used as your page header." -#~ msgstr "上传图像用于页面页眉" - -#~ msgid "Image link" -#~ msgstr "图像链接" - -#~ msgid "Make your page header image clickable by adding a URL. (optional)" -#~ msgstr "给页面页眉图像添加URL" - -#~ msgid "Resize image" -#~ msgstr "调整图像大小" - -#~ msgid "Turn hard cropping or of off." -#~ msgstr "强制剪裁或关闭" - -#~ msgid "Image width" -#~ msgstr "图像宽度" - -#~ msgid "Choose your image width in pixels. (integer only, default is 1200)" -#~ msgstr "使用px设置图像宽度(填写整数,默认1200)" - -#~ msgid "Image height" -#~ msgstr "图像高度" - -#~ msgid "" -#~ "Choose your image height in pixels. Use \"0\" or leave blank for " -#~ "proportional resizing. (integer only, default is 0) " -#~ msgstr "使用px设置图像高度,填写 \"0\" 或者留白维持原比例" - -#~ msgid "Video Background URL (MP4 only)" -#~ msgstr "背景视频URL(MP4格式)" - -#~ msgid "Video Background URL (OGV only)" -#~ msgstr "背景视频URL(OGV格式)" - -#~ msgid "Video Background URL (WEBM only)" -#~ msgstr "背景视频URL(WEBM格式)" - -#~ msgid "Page Header Content" -#~ msgstr "页面页眉内容" - -#~ msgid "Add your content to the page header. HTML and shortcodes allowed." -#~ msgstr "给页面页眉添加内容,允许HTML和短代码" - -#~ msgid "Add Paragraphs" -#~ msgstr "添加段落" - -#~ msgid "Wrap your text in paragraph tags automatically." -#~ msgstr "自动生成段落标签" - -#~ msgid "Add padding around your content." -#~ msgstr "内容周围添加内边距" - -#~ msgid "Image Background" -#~ msgstr "图像背景" - -#~ msgid "" -#~ "Use the image uploaded above as a background image for your content. " -#~ "(requires image uploaded above)" -#~ msgstr "使用上传的图像作为内容背景图像" - -#~ msgid "Parallax Background" -#~ msgstr "视差背景" - -#~ msgid "" -#~ "Add a cool parallax effect to your background image. (requires the image " -#~ "background option to be checked)" -#~ msgstr "给背景图像添加视差效果" - -#~ msgid "Full Screen" -#~ msgstr "全屏" - -#~ msgid "Make your page header content area full screen." -#~ msgstr "全屏显示页面页眉内容区域" - -#~ msgid "Vertical Center" -#~ msgstr "垂直居中" - -#~ msgid "Center your page header content vertically." -#~ msgstr "页面页眉内容垂直居中" - -#~ msgid "Container Type" -#~ msgstr "主体类型" - -#~ msgid "Choose whether the page header is contained or fluid." -#~ msgstr "选择页面页眉平铺或者流动" - -#~ msgid "Full width" -#~ msgstr "拉伸" - -#~ msgid "Choose the horizontal alignment of your content." -#~ msgstr "设置内容水平位置" - -#~ msgid "Top/Bottom Padding" -#~ msgstr "顶部/底部 内边距" - -#~ msgid "This will add space above and below your content. (integer only) " -#~ msgstr "将在内容上下增加间距(填写整数)" - -#~ msgid "Padding Unit" -#~ msgstr "内边距单元" - -#~ msgid "Page Header Advanced" -#~ msgstr "页面页眉高级设置" - -#~ msgid "Transparent navigation" -#~ msgstr "透明导航" - -#~ msgid "Navigation text" -#~ msgstr "导航文本" - -#~ msgid "Navigation background hover" -#~ msgstr "划过导航背景" - -#~ msgid "Navigation text hover" -#~ msgstr "划过导航文本" - -#~ msgid "Navigation background current" -#~ msgstr "导航背景流动" - -#~ msgid "Navigation text current" -#~ msgstr "导航文本流动" - -#~ msgid "Page Header Logo" -#~ msgstr "页面页眉图标" - -#~ msgid "Replace your logo on the blog." -#~ msgstr "替换图标" - -#~ msgid "Page Header Position" -#~ msgstr "页面页眉位置" - -#~ msgid "Single Post Header Position" -#~ msgstr "单篇文章页眉位置" - -#~ msgid "Delete Page Header Customizer Settings" -#~ msgstr "删除页面页眉自定义设置" - -#~ msgid "Export Page Header Customizer Settings" -#~ msgstr "导出页面页眉自定义设置" - -#~ msgid "Add padding" -#~ msgstr "添加内边距" - -#~ msgid "Add background image" -#~ msgstr "添加背景图像" - -#~ msgid "Parallax effect" -#~ msgstr "视差效果" - -#~ msgid "Container type" -#~ msgstr "主体类型" - -#~ msgid "Text alignment" -#~ msgstr "文本位置" - -#~ msgid "Top/Bottom padding" -#~ msgstr "顶部/底部内边距" - -#~ msgid "Background color" -#~ msgstr "背景颜色" - -#~ msgid "Text color" -#~ msgstr "文本颜色" - -#~ msgid "Link color" -#~ msgstr "链接颜色" - -#~ msgid "Link color hover" -#~ msgstr "链接划过颜色" - -#~ msgid "Overlay color" -#~ msgstr "覆盖颜色" - -#~ msgid "Secondary Menu Items" -#~ msgstr "副菜单项" - -#~ msgid "Secondary navigation" -#~ msgstr "副导航" - -#~ msgid "Navigation Layout" -#~ msgstr "导航布局" - -#~ msgid "Fluid / Full Width" -#~ msgstr "流动/拉伸" - -#~ msgid "Navigation Position" -#~ msgstr "导航位置" - -#~ msgid "Delete Secondary Navigation Customizer Settings" -#~ msgstr "删除副导航自定义设置" - -#~ msgid "Export Secondary Navigation Customizer Settings" -#~ msgstr "导出副导航自定义设置" diff --git a/wp-content/plugins/gp-premium/langs/gp-premium.pot b/wp-content/plugins/gp-premium/langs/gp-premium.pot index 049fd0aa..765ab202 100644 --- a/wp-content/plugins/gp-premium/langs/gp-premium.pot +++ b/wp-content/plugins/gp-premium/langs/gp-premium.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: GP Premium\n" -"POT-Creation-Date: 2019-11-06 11:02-0800\n" +"POT-Creation-Date: 2020-04-06 11:59-0700\n" "PO-Revision-Date: 2016-10-01 21:24-0700\n" "Last-Translator: \n" "Language-Team: \n" @@ -220,7 +220,7 @@ msgstr "" #: disable-elements/functions/functions.php:163 #: disable-elements/functions/functions.php:323 #: disable-elements/functions/functions.php:325 elements/class-metabox.php:199 -#: elements/class-metabox.php:1074 elements/class-metabox.php:2001 +#: elements/class-metabox.php:1074 elements/class-metabox.php:2003 #: library/customizer-helpers.php:205 #: spacing/functions/customizer/footer-spacing.php:12 #: typography/functions/functions.php:2355 @@ -345,47 +345,47 @@ msgstr "" msgid "Pages" msgstr "" -#: blog/functions/customizer.php:462 blog/functions/customizer.php:625 -#: blog/functions/customizer.php:789 +#: blog/functions/customizer.php:462 blog/functions/customizer.php:636 +#: blog/functions/customizer.php:811 msgid "Display featured images" msgstr "" -#: blog/functions/customizer.php:482 blog/functions/customizer.php:645 -#: blog/functions/customizer.php:809 +#: blog/functions/customizer.php:482 blog/functions/customizer.php:656 +#: blog/functions/customizer.php:831 msgid "Display padding around images" msgstr "" -#: blog/functions/customizer.php:503 blog/functions/customizer.php:666 -#: blog/functions/customizer.php:830 elements/class-metabox.php:1128 +#: blog/functions/customizer.php:503 blog/functions/customizer.php:677 +#: blog/functions/customizer.php:852 elements/class-metabox.php:1128 #: elements/class-post-type.php:104 elements/class-post-type.php:114 msgid "Location" msgstr "" -#: blog/functions/customizer.php:506 blog/functions/customizer.php:669 -#: blog/functions/customizer.php:833 +#: blog/functions/customizer.php:506 blog/functions/customizer.php:680 +#: blog/functions/customizer.php:855 msgid "Below Title" msgstr "" -#: blog/functions/customizer.php:507 blog/functions/customizer.php:670 -#: blog/functions/customizer.php:834 +#: blog/functions/customizer.php:507 blog/functions/customizer.php:681 +#: blog/functions/customizer.php:856 msgid "Above Title" msgstr "" -#: blog/functions/customizer.php:528 blog/functions/customizer.php:692 -#: blog/functions/customizer.php:856 +#: blog/functions/customizer.php:528 blog/functions/customizer.php:703 +#: blog/functions/customizer.php:878 msgid "Alignment" msgstr "" -#: blog/functions/customizer.php:531 blog/functions/customizer.php:695 -#: blog/functions/customizer.php:859 elements/class-metabox.php:372 +#: blog/functions/customizer.php:531 blog/functions/customizer.php:706 +#: blog/functions/customizer.php:881 elements/class-metabox.php:372 #: elements/class-metabox.php:394 secondary-nav/functions/functions.php:284 #: woocommerce/functions/customizer/customizer.php:390 #: woocommerce/functions/customizer/customizer.php:433 msgid "Center" msgstr "" -#: blog/functions/customizer.php:532 blog/functions/customizer.php:696 -#: blog/functions/customizer.php:860 elements/class-metabox.php:371 +#: blog/functions/customizer.php:532 blog/functions/customizer.php:707 +#: blog/functions/customizer.php:882 elements/class-metabox.php:371 #: elements/class-metabox.php:444 elements/class-metabox.php:482 #: library/customizer/controls/class-spacing-control.php:43 #: menu-plus/functions/generate-menu-plus.php:655 @@ -396,8 +396,8 @@ msgstr "" msgid "Left" msgstr "" -#: blog/functions/customizer.php:533 blog/functions/customizer.php:697 -#: blog/functions/customizer.php:861 elements/class-metabox.php:373 +#: blog/functions/customizer.php:533 blog/functions/customizer.php:708 +#: blog/functions/customizer.php:883 elements/class-metabox.php:373 #: elements/class-metabox.php:426 elements/class-metabox.php:464 #: library/customizer/controls/class-spacing-control.php:41 #: menu-plus/functions/generate-menu-plus.php:656 @@ -408,45 +408,49 @@ msgstr "" msgid "Right" msgstr "" -#: blog/functions/customizer.php:555 blog/functions/customizer.php:719 -#: blog/functions/customizer.php:883 +#: blog/functions/customizer.php:553 blog/functions/customizer.php:728 +#: blog/functions/customizer.php:903 +msgid "Media Attachment Size" +msgstr "" + +#: blog/functions/customizer.php:575 blog/functions/customizer.php:750 +#: blog/functions/customizer.php:925 msgid "Width" msgstr "" -#: blog/functions/customizer.php:559 blog/functions/customizer.php:586 -#: blog/functions/customizer.php:723 blog/functions/customizer.php:750 -#: blog/functions/customizer.php:887 blog/functions/customizer.php:914 -msgid "Auto" -msgstr "" - -#: blog/functions/customizer.php:582 blog/functions/customizer.php:746 -#: blog/functions/customizer.php:910 +#: blog/functions/customizer.php:596 blog/functions/customizer.php:771 +#: blog/functions/customizer.php:946 msgid "Height" msgstr "" -#: blog/functions/customizer.php:601 blog/functions/customizer.php:765 -#: blog/functions/customizer.php:929 inc/activation.php:139 -#: sections/functions/metaboxes/views/sections-template.php:80 -msgid "Apply" +#: blog/functions/customizer.php:610 blog/functions/customizer.php:785 +#: blog/functions/customizer.php:960 +#, php-format +msgid "We will attempt to serve exact image sizes based on your width/height settings. If that is not possible, we will resize your images using CSS. Learn more about featured image sizing %s." msgstr "" -#: blog/functions/customizer.php:671 blog/functions/customizer.php:835 +#: blog/functions/customizer.php:611 blog/functions/customizer.php:786 +#: blog/functions/customizer.php:961 +msgid "here" +msgstr "" + +#: blog/functions/customizer.php:682 blog/functions/customizer.php:857 msgid "Above Content Area" msgstr "" -#: blog/functions/customizer.php:943 blog/functions/customizer.php:983 +#: blog/functions/customizer.php:976 blog/functions/customizer.php:1016 msgid "Columns" msgstr "" -#: blog/functions/customizer.php:963 +#: blog/functions/customizer.php:996 msgid "Display posts in columns" msgstr "" -#: blog/functions/customizer.php:1010 +#: blog/functions/customizer.php:1043 msgid "Make first post featured" msgstr "" -#: blog/functions/customizer.php:1031 +#: blog/functions/customizer.php:1064 msgid "Display posts in masonry grid" msgstr "" @@ -1411,56 +1415,56 @@ msgstr "" msgid "Scripts & Styles" msgstr "" -#: elements/class-metabox.php:1983 +#: elements/class-metabox.php:1985 msgid "Comments" msgstr "" -#: elements/class-metabox.php:1992 +#: elements/class-metabox.php:1994 #: spacing/functions/customizer/sidebar-spacing.php:12 msgid "Sidebars" msgstr "" -#: elements/class-metabox.php:2017 +#: elements/class-metabox.php:2019 msgid "WooCommerce - Global" msgstr "" -#: elements/class-metabox.php:2027 +#: elements/class-metabox.php:2029 msgid "WooCommerce - Shop" msgstr "" -#: elements/class-metabox.php:2038 +#: elements/class-metabox.php:2040 msgid "WooCommerce - Product" msgstr "" -#: elements/class-metabox.php:2059 +#: elements/class-metabox.php:2061 msgid "WooCommerce - Cart" msgstr "" -#: elements/class-metabox.php:2081 +#: elements/class-metabox.php:2083 msgid "WooCommerce - Checkout" msgstr "" -#: elements/class-metabox.php:2108 +#: elements/class-metabox.php:2110 msgid "WooCommerce - Account" msgstr "" -#: elements/class-metabox.php:2124 +#: elements/class-metabox.php:2126 msgid "The content title of the current post/taxonomy." msgstr "" -#: elements/class-metabox.php:2129 +#: elements/class-metabox.php:2131 msgid "The published date of the current post." msgstr "" -#: elements/class-metabox.php:2134 +#: elements/class-metabox.php:2136 msgid "The author of the current post." msgstr "" -#: elements/class-metabox.php:2139 +#: elements/class-metabox.php:2141 msgid "The terms attached to the chosen taxonomy (category, post_tag, product_cat)." msgstr "" -#: elements/class-metabox.php:2144 +#: elements/class-metabox.php:2146 msgid "Custom post meta. Replace \"name\" with the name of your custom field." msgstr "" @@ -1475,7 +1479,7 @@ msgid "Element" msgstr "" #: elements/class-post-type.php:67 elements/class-post-type.php:255 -#: elements/class-post-type.php:256 elements/elements.php:66 +#: elements/class-post-type.php:256 elements/elements.php:71 msgid "Elements" msgstr "" @@ -1678,6 +1682,11 @@ msgstr "" msgid "Deactivate" msgstr "" +#: inc/activation.php:139 +#: sections/functions/metaboxes/views/sections-template.php:80 +msgid "Apply" +msgstr "" + #: inc/activation.php:173 msgid "WooCommerce not activated." msgstr "" @@ -2295,31 +2304,45 @@ msgstr "" msgid "No sections added!" msgstr "" -#: sites/classes/class-site-restore.php:105 +#: sites/classes/class-site-restore.php:42 +#: sites/classes/class-site-restore.php:115 +#: sites/classes/class-site-restore.php:145 +#: sites/classes/class-site-restore.php:170 +#: sites/classes/class-site-restore.php:189 +#: sites/classes/class-site-restore.php:208 +#: sites/classes/class-site-restore.php:239 sites/classes/class-site.php:552 +#: sites/classes/class-site.php:588 sites/classes/class-site.php:629 +#: sites/classes/class-site.php:787 sites/classes/class-site.php:815 +#: sites/classes/class-site.php:860 sites/classes/class-site.php:891 +#: sites/classes/class-site.php:990 sites/classes/class-site.php:1040 +msgid "You are not allowed to perform this action" +msgstr "" + +#: sites/classes/class-site-restore.php:106 msgid "Theme options restored." msgstr "" -#: sites/classes/class-site-restore.php:134 +#: sites/classes/class-site-restore.php:136 msgid "Site options restored." msgstr "" -#: sites/classes/class-site-restore.php:158 +#: sites/classes/class-site-restore.php:161 msgid "Content restored." msgstr "" -#: sites/classes/class-site-restore.php:176 +#: sites/classes/class-site-restore.php:180 msgid "Plugins restored." msgstr "" -#: sites/classes/class-site-restore.php:194 +#: sites/classes/class-site-restore.php:199 msgid "Widgets restored." msgstr "" -#: sites/classes/class-site-restore.php:224 +#: sites/classes/class-site-restore.php:230 msgid "CSS restored." msgstr "" -#: sites/classes/class-site-restore.php:240 +#: sites/classes/class-site-restore.php:247 msgid "Completed clean-up." msgstr "" @@ -2488,15 +2511,15 @@ msgstr "" msgid "View Your Site" msgstr "" -#: sites/classes/class-site.php:631 +#: sites/classes/class-site.php:634 msgid "No theme options exist." msgstr "" -#: sites/classes/class-site.php:967 +#: sites/classes/class-site.php:974 msgid "Site options imported" msgstr "" -#: sites/classes/class-site.php:1011 +#: sites/classes/class-site.php:1019 msgid "Plugins activated" msgstr "" @@ -2978,7 +3001,7 @@ msgid "Display product meta data" msgstr "" #: woocommerce/functions/customizer/customizer.php:1005 -#: woocommerce/functions/functions.php:1114 +#: woocommerce/functions/functions.php:1117 msgid "Checkout" msgstr "" @@ -2994,35 +3017,29 @@ msgstr "" msgid "View your shopping cart" msgstr "" -#: woocommerce/functions/functions.php:531 -msgid " 900, - 'mobile' => 640, + 'tablet' => 800, + 'mobile' => 411, + 'mobile_height' => 731, ) ); ?> process = new IPQ_Process(); - add_filter( 'update_post_metadata', array( $this, 'filter_update_post_metadata' ), 10, 5 ); - } - - /** - * Filter the post meta data for backup sizes - * - * Unfortunately WordPress core is lacking hooks in its image resizing functions so we are reduced - * to this hackery to detect when images are resized and previous versions are relegated to backup sizes. - * - * @param bool $check - * @param int $object_id - * @param string $meta_key - * @param mixed $meta_value - * @param mixed $prev_value - * @return bool - */ - public function filter_update_post_metadata( $check, $object_id, $meta_key, $meta_value, $prev_value ) { - if ( '_wp_attachment_backup_sizes' !== $meta_key ) { - return $check; - } - - $current_value = get_post_meta( $object_id, $meta_key, true ); - - if ( ! $current_value ) { - $current_value = array(); - } - - $diff = array_diff_key( $meta_value, $current_value ); - - if ( ! $diff ) { - return $check; - } - - $key = key( $diff ); - $suffix = substr( $key, strrpos( $key, '-' ) + 1 ); - - $image_meta = self::get_image_meta( $object_id ); - - foreach ( $image_meta['sizes'] as $size_name => $size ) { - if ( 0 !== strpos( $size_name, 'ipq-' ) ) { - continue; - } - - $meta_value[ $size_name . '-' . $suffix ] = $size; - unset( $image_meta['sizes'][ $size_name ] ); - } - - if ( ! $this->is_updating_backup_sizes ) { - $this->is_updating_backup_sizes = true; - update_post_meta( $object_id, '_wp_attachment_backup_sizes', $meta_value ); - wp_update_attachment_metadata( $object_id, $image_meta ); - return true; - } - - $this->is_updating_backup_sizes = false; - - return $check; - } - - /** - * Check if the image sizes exist and push them to the queue if not. - * - * @param int $post_id - * @param array $sizes - */ - protected function process_image( $post_id, $sizes ) { - $new_item = false; - - foreach ( $sizes as $size ) { - if ( self::does_size_already_exist_for_image( $post_id, $size ) ) { - continue; - } - - if ( self::is_size_larger_than_original( $post_id, $size ) ) { - continue; - } - - $item = array( - 'post_id' => $post_id, - 'width' => $size[0], - 'height' => $size[1], - 'crop' => $size[2], - ); - $this->process->push_to_queue( $item ); - $new_item = true; - } - - if ( $new_item ) { - $this->process->save()->dispatch(); - } - } - - /** - * Get image HTML for a specific context in a theme, specifying the exact sizes - * for the image. The first image size is always used as the `src` and the other - * sizes are used in the `srcset` if they're the same aspect ratio as the original - * image. If any of the image sizes don't currently exist, they are queued for - * creation by a background process. Example: - * - * echo ipq_get_theme_image( 1353, array( - * array( 600, 400, false ), - * array( 1280, 720, false ), - * array( 1600, 1067, false ), - * ), - * array( - * 'class' => 'header-banner' - * ) - * ); - * - * @param int $post_id Image attachment ID. - * @param array $sizes Array of arrays of sizes in the format array(width,height,crop). - * @param string $attr Optional. Attributes for the image markup. Default empty. - * @return string HTML img element or empty string on failure. - */ - public function get_image( $post_id, $sizes, $attr = '' ) { - $this->process_image( $post_id, $sizes ); - - return wp_get_attachment_image( $post_id, array( $sizes[0][0], $sizes[0][1] ), false, $attr ); - } - - /** - * Get image URL for a specific context in a theme, specifying the exact size - * for the image. If the image size does not currently exist, it is queued for - * creation by a background process. Example: - * - * echo ipq_get_theme_image_url( 1353, array( 600, 400, false ) ); - * - * @param int $post_id - * @param array $size - * - * @return string - */ - public function get_image_url( $post_id, $size ) { - $this->process_image( $post_id, array( $size ) ); - - $size = self::get_size_name( $size ); - $src = wp_get_attachment_image_src( $post_id, $size ); - - if ( isset( $src[0] ) ) { - return $src[0]; - } - - return ''; - } - - /** - * Get array index name for image size. - * - * @param array $size array in format array(width,height,crop). - * @return string Image size name. - */ - public static function get_size_name( $size ) { - $crop = $size[2] ? 'true' : 'false'; - return 'ipq-' . $size[0] . 'x' . $size[1] . '-' . $crop; - } - - /** - * Get an image's file path. - * - * @param int $post_id ID of the image post. - * @return false|string - */ - public static function get_image_path( $post_id ) { - return get_attached_file( $post_id ); - } - - /** - * Get an image's post meta data. - * - * @param int $post_id ID of the image post. - * @return mixed Post meta field. False on failure. - */ - public static function get_image_meta( $post_id ) { - return wp_get_attachment_metadata( $post_id ); - } - - /** - * Update meta data for an image - * - * @param int $post_id Image ID. - * @param array $data Image data. - * @return bool|int False if $post is invalid. - */ - public static function update_image_meta( $post_id, $data ) { - return wp_update_attachment_metadata( $post_id, $data ); - } - - /** - * Checks if an image size already exists for an image - * - * @param int $post_id Image ID. - * @param array $size array in format array(width,height,crop). - * @return bool - */ - public static function does_size_already_exist_for_image( $post_id, $size ) { - $image_meta = self::get_image_meta( $post_id ); - $size_name = self::get_size_name( $size ); - - return isset( $image_meta['sizes'][ $size_name ] ); - } - - /** - * Check if an image size is larger than the original. - * - * @param int $post_id Image ID. - * @param array $size array in format array(width,height,crop). - * - * @return bool - */ - public static function is_size_larger_than_original( $post_id, $size ) { - $image_meta = self::get_image_meta( $post_id ); - - if ( ! isset( $image_meta['width'] ) || ! isset( $image_meta['height'] ) ) { - return true; - } - - if ( $size[0] > $image_meta['width'] || $size[1] > $image_meta['height'] ) { - return true; - } - - return false; - } - } - -} diff --git a/wp-content/plugins/gp-premium/library/image-processing-queue/includes/class-ipq-process.php b/wp-content/plugins/gp-premium/library/image-processing-queue/includes/class-ipq-process.php deleted file mode 100644 index 88da8432..00000000 --- a/wp-content/plugins/gp-premium/library/image-processing-queue/includes/class-ipq-process.php +++ /dev/null @@ -1,97 +0,0 @@ - 0, - 'width' => 0, - 'height' => 0, - 'crop' => false, - ); - $item = wp_parse_args( $item, $defaults ); - - $post_id = $item['post_id']; - $width = $item['width']; - $height = $item['height']; - $crop = $item['crop']; - - if ( ! $width && ! $height ) { - throw new IPQ_Process_Exception( "Invalid dimensions '{$width}x{$height}'" ); - } - - if ( Image_Processing_Queue::does_size_already_exist_for_image( $post_id, array( $width, $height, $crop ) ) ) { - return false; - } - - $image_meta = Image_Processing_Queue::get_image_meta( $post_id ); - - if ( ! $image_meta ) { - return false; - } - - add_filter( 'as3cf_get_attached_file_copy_back_to_local', '__return_true' ); - $img_path = Image_Processing_Queue::get_image_path( $post_id ); - - if ( ! $img_path ) { - return false; - } - - $editor = wp_get_image_editor( $img_path ); - - if ( is_wp_error( $editor ) ) { - throw new IPQ_Process_Exception( 'Unable to get WP_Image_Editor for file "' . $img_path . '": ' . $editor->get_error_message() . ' (is GD or ImageMagick installed?)' ); - } - - if ( is_wp_error( $editor->resize( $width, $height, $crop ) ) ) { - throw new IPQ_Process_Exception( 'Error resizing image: ' . $editor->get_error_message() ); - } - - $resized_file = $editor->save(); - - if ( is_wp_error( $resized_file ) ) { - throw new IPQ_Process_Exception( 'Unable to save resized image file: ' . $editor->get_error_message() ); - } - - $size_name = Image_Processing_Queue::get_size_name( array( $width, $height, $crop ) ); - $image_meta['sizes'][ $size_name ] = array( - 'file' => $resized_file['file'], - 'width' => $resized_file['width'], - 'height' => $resized_file['height'], - 'mime-type' => $resized_file['mime-type'], - ); - wp_update_attachment_metadata( $post_id, $image_meta ); - - return false; - } - } -} - diff --git a/wp-content/plugins/gp-premium/library/image-processing-queue/includes/ipq-template-functions.php b/wp-content/plugins/gp-premium/library/image-processing-queue/includes/ipq-template-functions.php deleted file mode 100644 index 13c6fc39..00000000 --- a/wp-content/plugins/gp-premium/library/image-processing-queue/includes/ipq-template-functions.php +++ /dev/null @@ -1,47 +0,0 @@ - 'header-banner' - * ) - * ); - * - * @param int $post_id Image attachment ID. - * @param array $sizes Array of arrays of sizes in the format array(width,height,crop). - * @param string $attr Optional. Attributes for the image markup. Default empty. - * - * @return string HTML img element or empty string on failure. - */ - function ipq_get_theme_image( $post_id, $sizes, $attr = '' ) { - return Image_Processing_Queue::instance()->get_image( $post_id, $sizes, $attr ); - } -} - -if ( ! function_exists( 'ipq_get_theme_image_url' ) ) { - /** - * Get image URL for a specific context in a theme, specifying the exact size - * for the image. If the image size does not currently exist, it is queued for - * creation by a background process. Example: - * - * echo ipq_get_theme_image_url( 1353, array( 600, 400, false ) ); - * - * @param int $post_id - * @param array $size - * - * @return string Img URL - */ - function ipq_get_theme_image_url( $post_id, $size ) { - return Image_Processing_Queue::instance()->get_image_url( $post_id, $size ); - } -} diff --git a/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.css b/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.css index 0d2afef7..13d21025 100644 --- a/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.css +++ b/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.css @@ -34,7 +34,8 @@ z-index: 999; } -#sticky-placeholder.mobile-header-navigation .mobile-header-logo { +#sticky-placeholder.mobile-header-navigation .mobile-header-logo, +#sticky-placeholder .navigation-branding { display: none; } diff --git a/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.min.css b/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.min.css index d0100f28..f72cf33e 100644 --- a/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.min.css +++ b/wp-content/plugins/gp-premium/menu-plus/functions/css/sticky.min.css @@ -1 +1 @@ -.sticky-enabled .gen-sidebar-nav.is_stuck .main-navigation{margin-bottom:0}.sticky-enabled .gen-sidebar-nav.is_stuck{z-index:500}.sticky-enabled .main-navigation.is_stuck{box-shadow:0 2px 2px -2px rgba(0,0,0,.2)}.sticky-enabled .fixfixed .is_stuck{position:relative!important}.navigation-stick:not(.gen-sidebar-nav){left:0;right:0;width:100%!important}.both-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav,.mobile-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav{clear:both}.both-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav>ul,.mobile-header-sticky #mobile-header.toggled .main-nav>ul,.mobile-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav>ul{position:absolute;left:0;right:0;z-index:999}#sticky-placeholder.mobile-header-navigation .mobile-header-logo{display:none}.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li{float:none;display:inline-block}.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li.search-item,.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li.slideout-toggle,.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li.wc-menu-item{display:block;float:right}.nav-float-right .is_stuck.main-navigation:not(.toggled) ul{letter-spacing:-.31em;font-size:1em}.nav-float-right .is_stuck.main-navigation:not(.toggled) ul li{letter-spacing:normal}.nav-float-right .is_stuck.main-navigation:not(.toggled){text-align:right}.nav-float-right .is_stuck.main-navigation.has-branding:not(.toggled) ul,.nav-float-right .is_stuck.main-navigation.has-sticky-branding:not(.toggled) ul{letter-spacing:unset}.nav-float-right .is_stuck.main-navigation.has-branding:not(.toggled) .menu>li,.nav-float-right .is_stuck.main-navigation.has-sticky-branding:not(.toggled) .menu>li{display:block;float:left} +.sticky-enabled .gen-sidebar-nav.is_stuck .main-navigation{margin-bottom:0}.sticky-enabled .gen-sidebar-nav.is_stuck{z-index:500}.sticky-enabled .main-navigation.is_stuck{box-shadow:0 2px 2px -2px rgba(0,0,0,.2)}.sticky-enabled .fixfixed .is_stuck{position:relative!important}.navigation-stick:not(.gen-sidebar-nav){left:0;right:0;width:100%!important}.both-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav,.mobile-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav{clear:both}.both-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav>ul,.mobile-header-sticky #mobile-header.toggled .main-nav>ul,.mobile-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav>ul{position:absolute;left:0;right:0;z-index:999}#sticky-placeholder .navigation-branding,#sticky-placeholder.mobile-header-navigation .mobile-header-logo{display:none}.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li{float:none;display:inline-block}.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li.search-item,.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li.slideout-toggle,.nav-float-right .is_stuck.main-navigation:not(.toggled) .menu>li.wc-menu-item{display:block;float:right}.nav-float-right .is_stuck.main-navigation:not(.toggled) ul{letter-spacing:-.31em;font-size:1em}.nav-float-right .is_stuck.main-navigation:not(.toggled) ul li{letter-spacing:normal}.nav-float-right .is_stuck.main-navigation:not(.toggled){text-align:right}.nav-float-right .is_stuck.main-navigation.has-branding:not(.toggled) ul,.nav-float-right .is_stuck.main-navigation.has-sticky-branding:not(.toggled) ul{letter-spacing:unset}.nav-float-right .is_stuck.main-navigation.has-branding:not(.toggled) .menu>li,.nav-float-right .is_stuck.main-navigation.has-sticky-branding:not(.toggled) .menu>li{display:block;float:left} diff --git a/wp-content/plugins/gp-premium/menu-plus/functions/generate-menu-plus.php b/wp-content/plugins/gp-premium/menu-plus/functions/generate-menu-plus.php index 7b23bdf4..2b13b43d 100644 --- a/wp-content/plugins/gp-premium/menu-plus/functions/generate-menu-plus.php +++ b/wp-content/plugins/gp-premium/menu-plus/functions/generate-menu-plus.php @@ -1776,7 +1776,7 @@ function generate_do_navigation_branding() { } } - if ( '' !== $settings['sticky_navigation_logo'] ) { + if ( 'false' !== $settings['sticky_menu'] && '' !== $settings['sticky_navigation_logo'] ) { $sticky_logo = apply_filters( 'generate_sticky_navigation_logo_output', sprintf( ' diff --git a/wp-content/plugins/gp-premium/sections/functions/metaboxes/js/generate-sections-metabox.js b/wp-content/plugins/gp-premium/sections/functions/metaboxes/js/generate-sections-metabox.js index e6b59fd8..b6e5faed 100644 --- a/wp-content/plugins/gp-premium/sections/functions/metaboxes/js/generate-sections-metabox.js +++ b/wp-content/plugins/gp-premium/sections/functions/metaboxes/js/generate-sections-metabox.js @@ -780,11 +780,17 @@ var Generate_Sections = { 'overflow': 'hidden' }); - $( '.editor-block-list__layout' ).hide(); - $( '.edit-post-layout__content .edit-post-visual-editor' ).css( { + $( '.block-editor-block-list__layout' ).hide(); + + $( '.edit-post-layout .edit-post-visual-editor' ).css( { 'flex-grow': 'unset', 'flex-basis': '0' } ); + + $( '.edit-post-visual-editor .block-editor-writing-flow__click-redirect' ).css( { + 'min-height': '0' + } ); + $( '.edit-post-layout__metaboxes:not(:empty)' ).css( 'border-top', '0' ); // Show the sections @@ -818,11 +824,17 @@ var Generate_Sections = { 'height': 'auto' }); - $( '.editor-block-list__layout' ).show(); - $( '.edit-post-layout__content .edit-post-visual-editor' ).css( { + $( '.block-editor-block-list__layout' ).show(); + + $( '.edit-post-layout .edit-post-visual-editor' ).css( { 'flex-grow': '', 'flex-basis': '' } ); + + $( '.edit-post-visual-editor .block-editor-writing-flow__click-redirect' ).css( { + 'min-height': '' + } ); + $( '.edit-post-layout__metaboxes:not(:empty)' ).css( 'border-top', '' ); // Hide the sections diff --git a/wp-content/plugins/gp-premium/sites/classes/class-site-restore.php b/wp-content/plugins/gp-premium/sites/classes/class-site-restore.php index b9ddbbd2..08fd7fc2 100644 --- a/wp-content/plugins/gp-premium/sites/classes/class-site-restore.php +++ b/wp-content/plugins/gp-premium/sites/classes/class-site-restore.php @@ -39,7 +39,8 @@ class GeneratePress_Sites_Restore { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $backup_data = get_option( '_generatepress_site_library_backup', array() ); @@ -111,7 +112,8 @@ class GeneratePress_Sites_Restore { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $backup_data = get_option( '_generatepress_site_library_backup', array() ); @@ -140,7 +142,8 @@ class GeneratePress_Sites_Restore { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $backup_data = get_option( '_generatepress_site_library_backup', array() ); @@ -164,7 +167,8 @@ class GeneratePress_Sites_Restore { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $backup_data = get_option( '_generatepress_site_library_backup', array() ); @@ -182,7 +186,8 @@ class GeneratePress_Sites_Restore { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $backup_data = get_option( '_generatepress_site_library_backup', array() ); @@ -200,7 +205,8 @@ class GeneratePress_Sites_Restore { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $backup_data = get_option( '_generatepress_site_library_backup', array() ); @@ -230,7 +236,8 @@ class GeneratePress_Sites_Restore { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } delete_option( 'generate_dynamic_css_output' ); @@ -243,4 +250,4 @@ class GeneratePress_Sites_Restore { } } -GeneratePress_Sites_Restore::get_instance(); \ No newline at end of file +GeneratePress_Sites_Restore::get_instance(); diff --git a/wp-content/plugins/gp-premium/sites/classes/class-site.php b/wp-content/plugins/gp-premium/sites/classes/class-site.php index ec8eaea0..274cf812 100644 --- a/wp-content/plugins/gp-premium/sites/classes/class-site.php +++ b/wp-content/plugins/gp-premium/sites/classes/class-site.php @@ -549,7 +549,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $theme_mods = GeneratePress_Sites_Helper::get_theme_mods(); @@ -584,7 +585,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $settings = GeneratePress_Sites_Helper::get_options( $this->directory . 'options.json' ); @@ -624,7 +626,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } if ( ! GeneratePress_Sites_Helper::file_exists( $this->directory . 'options.json' ) ) { @@ -781,7 +784,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } // Increase PHP max execution time. @@ -808,7 +812,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } // Increase PHP max execution time. @@ -852,7 +857,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $widgets_path = $this->directory . 'widgets.wie'; @@ -882,7 +888,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $backup_data = get_option( '_generatepress_site_library_backup', array() ); @@ -980,7 +987,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } $settings = GeneratePress_Sites_Helper::get_options( $this->directory . 'options.json' ); @@ -1029,7 +1037,8 @@ class GeneratePress_Site { check_ajax_referer( 'generate_sites_nonce', 'nonce' ); if ( ! current_user_can( 'manage_options' ) ) { - return; + wp_send_json_error( __( 'You are not allowed to perform this action', 'gp-premium' ) ); + return; // Just in case. } if ( GeneratePress_Sites_Helper::file_exists( $this->directory . 'options.json' ) ) { diff --git a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.css b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.css index 08e83fe9..e23d352b 100644 --- a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.css +++ b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.css @@ -15,21 +15,21 @@ .wc-related-upsell-mobile-columns-1 .related ul.products, .wc-related-upsell-mobile-columns-1 .up-sells ul.products { -ms-grid-columns: 1fr; - grid-template-columns: 1fr; + grid-template-columns: repeat(1,minmax(0, 1fr)); } .woocommerce #wc-column-container.wc-mobile-columns-2 .products, .wc-related-upsell-mobile-columns-2 .related ul.products, .wc-related-upsell-mobile-columns-2 .up-sells ul.products { -ms-grid-columns: 1fr 1fr; - grid-template-columns: 1fr 1fr; + grid-template-columns: repeat(2,minmax(0, 1fr)); } .woocommerce #wc-column-container.wc-mobile-columns-3 .products, .wc-related-upsell-mobile-columns-3 .related ul.products, .wc-related-upsell-mobile-columns-3 .up-sells ul.products { -ms-grid-columns: 1fr 1fr 1fr; - grid-template-columns: 1fr 1fr 1fr; + grid-template-columns: repeat(3,minmax(0, 1fr)); } .woocommerce ul.products li.product a img { @@ -212,3 +212,7 @@ .add-to-cart-panel .product-price { font-size: 13px; } + +.add-to-cart-panel:not(.item-added):not(.show-sticky-add-to-cart) { + pointer-events: none; +} diff --git a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.min.css b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.min.css index 43a7040a..5bc20970 100644 --- a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.min.css +++ b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce-mobile.min.css @@ -1 +1 @@ -.woocommerce-product-gallery{margin-right:0}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:none}.woocommerce .woocommerce-ordering select{max-width:100%}.wc-related-upsell-mobile-columns-1 .related ul.products,.wc-related-upsell-mobile-columns-1 .up-sells ul.products,.woocommerce #wc-column-container.wc-mobile-columns-1 .products{-ms-grid-columns:1fr;grid-template-columns:1fr}.wc-related-upsell-mobile-columns-2 .related ul.products,.wc-related-upsell-mobile-columns-2 .up-sells ul.products,.woocommerce #wc-column-container.wc-mobile-columns-2 .products{-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr}.wc-related-upsell-mobile-columns-3 .related ul.products,.wc-related-upsell-mobile-columns-3 .up-sells ul.products,.woocommerce #wc-column-container.wc-mobile-columns-3 .products{-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr}.woocommerce ul.products li.product a img{width:auto;margin-left:auto;margin-right:auto}.woocommerce div.product .woocommerce-tabs .panel,.woocommerce div.product .woocommerce-tabs ul.tabs,.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-first,.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-last,.woocommerce-page form .woocommerce-billing-fields__field-wrapper .form-row-first,.woocommerce-page form .woocommerce-billing-fields__field-wrapper .form-row-last{float:none;width:100%}.woocommerce div.product .woocommerce-tabs .panel{margin-top:20px}.wc-tabs .active a:after{transform:rotate(90deg);padding-right:3px}#customer_details+#wc_checkout_add_ons,#order_review,#order_review_heading,.woocommerce .col2-set,.woocommerce-page .col2-set{width:100%;float:none;margin-right:0}.woocommerce ul.products li.product.woocommerce-image-align-left .wc-product-image,.woocommerce ul.products li.product.woocommerce-image-align-right .wc-product-image{float:none;margin:0}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce ul.products li.product.woocommerce-image-align-left a .wc-product-image img,.woocommerce ul.products li.product.woocommerce-image-align-right a .wc-product-image img,.woocommerce-account .woocommerce-MyAccount-navigation,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{width:100%}.woocommerce .related ul.products li.product,.woocommerce .up-sells ul.products li.product,.woocommerce-page .related ul.products li.product,.woocommerce-page .up-sells ul.products li.product,.woocommerce-page[class*=columns-] .related ul.products li.product,.woocommerce-page[class*=columns-] .up-sells ul.products li.product,.woocommerce[class*=columns-] .related ul.products li.product,.woocommerce[class*=columns-] .up-sells ul.products li.product{width:100%;margin-left:0;margin-right:0}.woocommerce-MyAccount-navigation li.is-active a:after{content:"\e901"}#wc-mini-cart{display:none}.do-quantity-buttons div.quantity{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.woocommerce div.product .woocommerce-tabs ul.tabs{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.woocommerce div.product .woocommerce-tabs ul.tabs li{border-left-width:1px}.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child{border-bottom-color:rgba(0,0,0,.08);border-bottom-width:1px}.woocommerce .coupon .button{font-size:14px;padding:10px}.woocommerce .woocommerce-ordering{margin-bottom:0}.add-to-cart-panel{bottom:0;top:auto;-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.add-to-cart-panel .continue-shopping:not(.has-svg-icon):before{content:"\f00d";font-family:'GP Premium';line-height:1em;width:1.28571429em;text-align:center;display:inline-block;padding:10px}#wc-sticky-cart-panel .quantity,.add-to-cart-panel .continue-shopping-text{display:none}.add-to-cart-panel .continue-shopping{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5;margin-left:auto;margin-right:0;position:absolute;top:-20px;left:10px;height:50px;width:50px;text-align:center;border-radius:50%;line-height:50px;cursor:pointer}.add-to-cart-panel .continue-shopping .gp-icon{display:block}.add-to-cart-panel .cart,.add-to-cart-panel .product-image{-ms-flex-negative:0;flex-shrink:0}.add-to-cart-panel .product-title{padding-right:20px;margin-left:10px}.add-to-cart-panel .cart-info{margin-right:auto}.add-to-cart-panel .product-price{font-size:13px} +.woocommerce-product-gallery{margin-right:0}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:none}.woocommerce .woocommerce-ordering select{max-width:100%}.wc-related-upsell-mobile-columns-1 .related ul.products,.wc-related-upsell-mobile-columns-1 .up-sells ul.products,.woocommerce #wc-column-container.wc-mobile-columns-1 .products{-ms-grid-columns:1fr;grid-template-columns:repeat(1,minmax(0,1fr))}.wc-related-upsell-mobile-columns-2 .related ul.products,.wc-related-upsell-mobile-columns-2 .up-sells ul.products,.woocommerce #wc-column-container.wc-mobile-columns-2 .products{-ms-grid-columns:1fr 1fr;grid-template-columns:repeat(2,minmax(0,1fr))}.wc-related-upsell-mobile-columns-3 .related ul.products,.wc-related-upsell-mobile-columns-3 .up-sells ul.products,.woocommerce #wc-column-container.wc-mobile-columns-3 .products{-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:repeat(3,minmax(0,1fr))}.woocommerce ul.products li.product a img{width:auto;margin-left:auto;margin-right:auto}.woocommerce div.product .woocommerce-tabs .panel,.woocommerce div.product .woocommerce-tabs ul.tabs,.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-first,.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-last,.woocommerce-page form .woocommerce-billing-fields__field-wrapper .form-row-first,.woocommerce-page form .woocommerce-billing-fields__field-wrapper .form-row-last{float:none;width:100%}.woocommerce div.product .woocommerce-tabs .panel{margin-top:20px}.wc-tabs .active a:after{transform:rotate(90deg);padding-right:3px}#customer_details+#wc_checkout_add_ons,#order_review,#order_review_heading,.woocommerce .col2-set,.woocommerce-page .col2-set{width:100%;float:none;margin-right:0}.woocommerce ul.products li.product.woocommerce-image-align-left .wc-product-image,.woocommerce ul.products li.product.woocommerce-image-align-right .wc-product-image{float:none;margin:0}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce ul.products li.product.woocommerce-image-align-left a .wc-product-image img,.woocommerce ul.products li.product.woocommerce-image-align-right a .wc-product-image img,.woocommerce-account .woocommerce-MyAccount-navigation,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{width:100%}.woocommerce .related ul.products li.product,.woocommerce .up-sells ul.products li.product,.woocommerce-page .related ul.products li.product,.woocommerce-page .up-sells ul.products li.product,.woocommerce-page[class*=columns-] .related ul.products li.product,.woocommerce-page[class*=columns-] .up-sells ul.products li.product,.woocommerce[class*=columns-] .related ul.products li.product,.woocommerce[class*=columns-] .up-sells ul.products li.product{width:100%;margin-left:0;margin-right:0}.woocommerce-MyAccount-navigation li.is-active a:after{content:"\e901"}#wc-mini-cart{display:none}.do-quantity-buttons div.quantity{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.woocommerce div.product .woocommerce-tabs ul.tabs{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.woocommerce div.product .woocommerce-tabs ul.tabs li{border-left-width:1px}.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child{border-bottom-color:rgba(0,0,0,.08);border-bottom-width:1px}.woocommerce .coupon .button{font-size:14px;padding:10px}.woocommerce .woocommerce-ordering{margin-bottom:0}.add-to-cart-panel{bottom:0;top:auto;-webkit-transform:translateY(0)!important;-ms-transform:translateY(0)!important;transform:translateY(0)!important}.add-to-cart-panel .continue-shopping:not(.has-svg-icon):before{content:"\f00d";font-family:'GP Premium';line-height:1em;width:1.28571429em;text-align:center;display:inline-block;padding:10px}#wc-sticky-cart-panel .quantity,.add-to-cart-panel .continue-shopping-text{display:none}.add-to-cart-panel .continue-shopping{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5;margin-left:auto;margin-right:0;position:absolute;top:-20px;left:10px;height:50px;width:50px;text-align:center;border-radius:50%;line-height:50px;cursor:pointer}.add-to-cart-panel .continue-shopping .gp-icon{display:block}.add-to-cart-panel .cart,.add-to-cart-panel .product-image{-ms-flex-negative:0;flex-shrink:0}.add-to-cart-panel .product-title{padding-right:20px;margin-left:10px}.add-to-cart-panel .cart-info{margin-right:auto}.add-to-cart-panel .product-price{font-size:13px}.add-to-cart-panel:not(.item-added):not(.show-sticky-add-to-cart){pointer-events:none} diff --git a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.css b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.css index 26905a8e..e9858528 100644 --- a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.css +++ b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.css @@ -198,35 +198,35 @@ .wc-related-upsell-columns-6 .related ul.products, .wc-related-upsell-columns-6 .up-sells ul.products { -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr; - grid-template-columns: repeat(6, 1fr); + grid-template-columns: repeat(6,minmax(0, 1fr)); } .wc-columns-container.wc-columns-5 .products, .wc-related-upsell-columns-5 .related ul.products, .wc-related-upsell-columns-5 .up-sells ul.products { -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr; - grid-template-columns: repeat(5, 1fr); + grid-template-columns: repeat(5,minmax(0, 1fr)); } .woocommerce .wc-columns-container.wc-columns-4 .products, .wc-related-upsell-columns-4 .related ul.products, .wc-related-upsell-columns-4 .up-sells ul.products { -ms-grid-columns: (1fr)[4]; - grid-template-columns: repeat(4, 1fr); + grid-template-columns: repeat(4,minmax(0, 1fr)); } .woocommerce .wc-columns-container.wc-columns-3 .products, .wc-related-upsell-columns-3 .related ul.products, .wc-related-upsell-columns-3 .up-sells ul.products { -ms-grid-columns: (1fr)[3]; - grid-template-columns: repeat(3, 1fr); + grid-template-columns: repeat(3,minmax(0, 1fr)); } .woocommerce .wc-columns-container.wc-columns-2 .products, .wc-related-upsell-columns-2 .related ul.products, .wc-related-upsell-columns-2 .up-sells ul.products { -ms-grid-columns: (1fr)[2]; - grid-template-columns: repeat(2, 1fr); + grid-template-columns: repeat(2,minmax(0, 1fr)); } .woocommerce .wc-columns-container.wc-columns-1 .products, @@ -756,6 +756,7 @@ nav span.count { -webkit-transform: translate(-50%,0px); -ms-transform: translate(-50%,0px); transform: translate(-50%,0px); + top: 0; } .woocommerce ul.products li.product a img { diff --git a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.min.css b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.min.css index c0454d96..e1ea80ce 100644 --- a/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.min.css +++ b/wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.min.css @@ -1 +1 @@ -@supports (display:grid){.woocommerce ul.products li.product{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.product_meta>span,.woocommerce ul.products li.product.woocommerce-image-align-left,.woocommerce ul.products li.product.woocommerce-image-align-right{display:block}.woocommerce ul.products li.product .woocommerce-LoopProduct-link{display:block;margin-bottom:auto}.woocommerce ul.products li.product .button{margin-left:auto;margin-right:auto}.woocommerce ul.products li.product.woocommerce-text-align-left .button{margin-left:0}.woocommerce ul.products li.product.woocommerce-text-align-right .button{margin-right:0}.woocommerce ul.products li.product .woocommerce-LoopProduct-link>:not(:first-child){margin-top:10px;margin-bottom:0}.woocommerce ul.products li.product .woocommerce-LoopProduct-link>.secondary-image+img{margin-top:0}.woocommerce span.onsale,.woocommerce ul.products li.product .onsale{position:relative;border-radius:0;min-height:15px;min-width:initial;padding:8px 13px;line-height:1;display:inline-block;top:auto;left:auto;font-size:80%;text-transform:uppercase;font-weight:700}.woocommerce ul.products li.product.sales-flash-overlay .onsale{position:absolute;top:0;right:0;margin:0}.single-product span.onsale{margin-bottom:15px}.woocommerce-product-gallery{margin-right:4%}.rtl .woocommerce-product-gallery{margin-right:0;margin-left:4%}.woocommerce div.product div.images .flex-control-thumbs li{max-width:100px;padding-top:5px;padding-right:5px;-webkit-box-sizing:border-box;box-sizing:border-box}#wc-mini-cart .woocommerce-mini-cart-item a,.woocommerce ul.products li.product .woocommerce-loop-product__title{padding:0}.woocommerce .page-header-image-single{display:none}.woocommerce .entry-content,.woocommerce .product .entry-summary{margin-top:0}.related.products{clear:both}.checkout-subscribe-prompt.clear{visibility:visible;height:initial;width:initial}.woocommerce .add_to_cart_button+.added_to_cart{display:none}.woocommerce-result-count{font-size:14px;padding:10px 0;border:1px solid transparent}.woocommerce-ordering select{font-size:14px;font-weight:500;padding:10px 40px 10px 12px;-webkit-appearance:none;-moz-appearance:none;width:100%;background:0 0;border-color:rgba(0,0,0,.1);color:inherit;cursor:pointer}.woocommerce-ordering select::-ms-expand{display:none}.woocommerce-ordering:after{content:"\e903";font-family:"GP Premium";display:inline-block;position:absolute;pointer-events:none;color:inherit;top:10px;right:15px;font-size:16px}.woocommerce div.product .woocommerce-tabs ul.tabs li a,.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce-ordering select option{color:initial}.woocommerce .woocommerce-ordering,.woocommerce .woocommerce-result-count{margin-bottom:30px}.add-to-cart-panel form.cart,.woocommerce div.product form.cart,.woocommerce-variation-add-to-cart{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@supports (display:grid){#wc-column-container .product{float:none;width:auto;margin:0}.woocommerce .related ul.products::after,.woocommerce .related ul.products::before,.woocommerce .up-sells ul.products::after,.woocommerce .up-sells ul.products::before,.woocommerce .wc-columns-container .products::after,.woocommerce .wc-columns-container .products::before{display:none}.wc-columns-container .products,.woocommerce .related ul.products,.woocommerce .up-sells ul.products{display:-ms-grid;display:grid;grid-gap:50px;width:100%}.wc-columns-container.wc-columns-6 .products,.wc-related-upsell-columns-6 .related ul.products,.wc-related-upsell-columns-6 .up-sells ul.products{-ms-grid-columns:1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;grid-template-columns:repeat(6,1fr)}.wc-columns-container.wc-columns-5 .products,.wc-related-upsell-columns-5 .related ul.products,.wc-related-upsell-columns-5 .up-sells ul.products{-ms-grid-columns:1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;grid-template-columns:repeat(5,1fr)}.wc-related-upsell-columns-4 .related ul.products,.wc-related-upsell-columns-4 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-4 .products{-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4,1fr)}.wc-related-upsell-columns-3 .related ul.products,.wc-related-upsell-columns-3 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-3 .products{-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,1fr)}.wc-related-upsell-columns-2 .related ul.products,.wc-related-upsell-columns-2 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-2 .products{-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr)}.wc-related-upsell-columns-1 .related ul.products,.wc-related-upsell-columns-1 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-1 .products{width:100%}.woocommerce .wc-columns-1 ul.products li.product,.woocommerce-page .wc-columns-1 ul.products li.product{margin-left:0;margin-right:0}}#wc-mini-cart ul.woocommerce-mini-cart{position:relative;left:auto;right:auto;opacity:1;pointer-events:auto;height:auto;width:auto;float:none;background-color:transparent;box-shadow:0 0 0;visibility:visible}.wc-mini-cart{position:absolute;width:300px;right:0;box-shadow:0 2px 2px rgba(0,0,0,.1);z-index:99999;left:-99999px;opacity:0;height:0;overflow:hidden;pointer-events:none;transition:opacity 80ms linear;transition-delay:0s;visibility:hidden}.wc-menu-item.sfHover .wc-mini-cart,.wc-menu-item:hover .wc-mini-cart{left:auto;opacity:1;transition-delay:150ms;pointer-events:auto;height:auto;overflow:visible;visibility:visible}.sidebar .wc-mini-cart{right:100%;top:0}.sidebar .wc-mini-cart .widget,.wc-menu-item .wc-mini-cart .widget_shopping_cart_content li.sfHover a,.wc-menu-item .wc-mini-cart .widget_shopping_cart_content li:hover a{background:0 0}body:not(.using-mouse) .wc-menu-item.sfHover .wc-mini-cart{display:none}.wc-menu-item .sub-menu{left:auto;right:0;width:300px}.wc-menu-item .wc-mini-cart .widget_shopping_cart{padding:15px}.woocommerce.widget_shopping_cart .cart_list li{padding:0 0 0 4em;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:3em}.woocommerce.widget_shopping_cart{font-size:14px}.widget_shopping_cart .woocommerce-mini-cart__buttons{margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex}.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a{margin:0;width:calc(50% - 10px);text-align:center;padding:10px 15px;line-height:inherit;font-size:14px}.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:first-child{margin-right:2px}.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:last-child{margin-left:2px}.woocommerce.widget_shopping_cart .cart_list li a.remove{right:0;left:auto;height:20px;width:20px;border-width:1px;border-style:solid;border-radius:50%;padding:0;font-size:16px;line-height:17px;font-weight:400;position:relative;float:right}.woocommerce ul.cart_list li img{position:absolute;left:0;width:3em;height:auto;top:0;margin-left:0}.woocommerce-mini-cart-item .quantity{font-size:12px;display:block}.woocommerce.widget_shopping_cart .total{margin:15px 0;padding:15px;background:rgba(0,0,0,.05);border:0;font-size:14px}#wc-mini-cart .total{padding:15px;margin:15px -15px;text-align:left}#generate-slideout-menu .total{padding:10px 20px;margin:20px -20px}#generate-slideout-menu.do-overlay .total{margin:20px 0}#wc-mini-cart .widgettitle,.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before,.woocommerce.widget_shopping_cart a.button.wc-forward:after{display:none}.woocommerce.widget_shopping_cart .cart_list li.woocommerce-mini-cart-item:not(:last-child){margin-bottom:15px}.slideout-widget .widget_shopping_cart_content,.slideout-widget .widget_shopping_cart_content a{font-size:14px}#generate-slideout-menu.do-overlay li.woocommerce-mini-cart-item{text-align:left}#wc-mini-cart a:not(.button){font-family:inherit}.wc-menu-item:not(.has-items) .wc-mini-cart{display:none}.woocommerce .related ul.products li.product a img,.woocommerce .up-sells ul.products li.product a img,.woocommerce ul.products li.product a img,.woocommerce-mini-cart__empty-message{margin-bottom:0}.secondary-nav-aligned-center .secondary-navigation ul.woocommerce-mini-cart,.secondary-nav-aligned-right .secondary-navigation ul.woocommerce-mini-cart{font-size:inherit}@supports (display:grid){.woocommerce .related ul.products li.product,.woocommerce .up-sells ul.products li.product{width:auto;margin-left:0;margin-right:0}}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{border-radius:0;font-weight:inherit;font-size:inherit;line-height:inherit;padding:10px 20px}ul.products .woocommerce-text-align-center{text-align:center}ul.products li.product.woocommerce-text-align-center .price,ul.products li.product.woocommerce-text-align-center .star-rating{margin-left:auto;margin-right:auto}ul.products li.product.woocommerce-text-align-right .price,ul.products li.product.woocommerce-text-align-right .star-rating{margin-left:auto}.woocommerce .star-rating:before,.woocommerce p.stars a{color:rgba(0,0,0,.4)}.woocommerce ul.products li.product .price del{display:inline;padding-right:10px}ul.products .woocommerce-text-align-right{text-align:right}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{width:50%}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{width:auto;float:none;overflow:hidden}.product_meta{font-size:80%;border-top:1px solid rgba(0,0,0,.1);padding-top:30px}.up-sells{margin-top:40px}.woocommerce div.product form.cart>:not(.quantity):not(.single_add_to_cart_button){width:100%}.add-to-cart-panel form.cart{-ms-flex-negative:0;flex-shrink:0}.woocommerce .quantity .qty{width:auto;max-width:80px;background:0 0;border:1px solid rgba(0,0,0,.1);padding:0 10px;height:50px}.do-quantity-buttons .quantity:not(.buttons-added) .qty{width:50px}.add-to-cart-panel .cart.do-quantity-buttons div.quantity,.add-to-cart-panel>div,.do-quantity-buttons div.quantity{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):after,.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):before,.woocommerce form .quantity.buttons-added .minus,.woocommerce form .quantity.buttons-added .plus,.woocommerce form .quantity.buttons-added .qty{display:block;width:50px;height:100%;min-height:50px;background-color:transparent;border:1px solid rgba(0,0,0,.1);margin:0;padding:0;text-align:center;vertical-align:middle;-moz-appearance:textfield!important;-webkit-appearance:none;border-radius:0;color:inherit;box-sizing:border-box}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):after,.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):before,.woocommerce form .quantity.buttons-added .minus,.woocommerce form .quantity.buttons-added .plus{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):before{content:"-";border-right:0}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):after{content:"+";border-left:0}.woocommerce form .quantity.buttons-added .qty:focus{border-color:rgba(0,0,0,.1)}.do-quantity-buttons form .quantity input[type=number]::-webkit-inner-spin-button,.do-quantity-buttons form .quantity input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.do-quantity-buttons form .quantity:not(.buttons-added):before,.woocommerce form .quantity.buttons-added .minus{border-right-width:0}.do-quantity-buttons form .quantity:not(.buttons-added):after,.woocommerce form .quantity.buttons-added .plus{border-left-width:0}.do-quantity-buttons .elementor-add-to-cart form .quantity:not(.buttons-added):after,.do-quantity-buttons .elementor-add-to-cart form .quantity:not(.buttons-added):before,.do-quantity-buttons form .quantity.hidden{display:none}.woocommerce div.product form.cart div.quantity.hidden{margin:0}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before,.woocommerce div.product .woocommerce-tabs ul.tabs::before{display:none;border:0}.woocommerce div.product .woocommerce-tabs ul.tabs{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:0;padding-left:0}.woocommerce div.product .woocommerce-tabs ul.tabs li{background-color:rgba(0,0,0,.02);margin:0;border-radius:0;border-width:1px 1px 0 0;border-color:rgba(0,0,0,.08)}.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child{border-left-width:1px}.woocommerce-ordering{float:left;margin-right:1em;margin-bottom:0;position:relative;padding:0}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img,nav li.wc-menu-item{float:right}.cart-contents>span{line-height:0}.cart-contents>span:not(:empty){margin-left:10px}nav span.count{font-size:.8em;opacity:.5}.woocommerce a.remove{color:inherit!important;background:0 0!important;border:1px solid!important;border-color:inherit;font-weight:400;font-size:16px;width:20px;height:20px;line-height:17px;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"!important}.woocommerce a.remove:hover{color:inherit!important;background:0 0!important;opacity:.7}.woocommerce .star-rating:before{opacity:.25;content:"SSSSS"}.woocommerce div.product .woocommerce-product-rating{margin:1em 0}.woocommerce div.product p.price,.woocommerce div.product span.price{color:inherit}.wc-has-gallery .secondary-image{position:absolute;opacity:0;transition:opacity 100ms ease-in-out;left:50%;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}.woocommerce div.product p.price,.woocommerce ul.products li.product .price,.woocommerce-error a,.woocommerce-info a,.woocommerce-message a{font-weight:700}div.woocommerce-error a.button,div.woocommerce-error a.button:focus,div.woocommerce-error a.button:hover,div.woocommerce-info a.button,div.woocommerce-info a.button:focus,div.woocommerce-info a.button:hover,div.woocommerce-message a.button,div.woocommerce-message a.button:focus,div.woocommerce-message a.button:hover{background:0 0;padding:0}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:20px 30px;border:0;border-left:10px solid rgba(0,0,0,.3)}a.button.wc-forward:after{content:"\e901";font-family:"GP Premium";line-height:1em;speak:none;padding-left:10px;position:relative;top:2px}#add_payment_method #payment div.payment_box:before,.cart-contents>span.number-of-items.no-items,.rtl a.button.wc-forward:after,.woocommerce-cart #payment div.payment_box:before,.woocommerce-checkout #payment div.payment_box:before,a.checkout-button:after{display:none}.woocommerce-checkout .col2-set .col-1,.woocommerce-checkout .col2-set .col-2{float:none;width:100%;margin:0}.woocommerce-checkout .col2-set{width:52.9411764706%;float:left;margin-right:5.8823529412%}.rtl.woocommerce-checkout .col2-set{float:right;margin-right:0;margin-left:5.8823529412%}#customer_details+#wc_checkout_add_ons,#order_review,#order_review_heading{width:41.1764705882%;float:right;margin-right:0}.woocommerce-additional-fields>h3{margin-top:20px}.woocommerce table.shop_table,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{border:0;border-radius:0}.woocommerce table.shop_table th{background-color:rgba(0,0,0,.03);padding:20px;border:0}.woocommerce table.shop_table td{padding:20px;border:0;background-color:rgba(0,0,0,.005);border-bottom:1px solid rgba(0,0,0,.1)}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:0}#add_payment_method #payment,#add_payment_method #payment div.payment_box,.woocommerce-cart #payment,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment,.woocommerce-checkout #payment div.payment_box{background-color:transparent;color:inherit}#payment .payment_methods>.wc_payment_method>label{padding:20px;background-color:rgba(0,0,0,.04);display:block;cursor:pointer}#payment .payment_methods li.wc_payment_method>input[type=radio]:first-child:checked+label{font-weight:700;background-color:rgba(0,0,0,.07)}#payment .payment_methods li.wc_payment_method>input[type=radio]:first-child{clip:rect(1px,1px,1px,1px);position:absolute!important}#payment .payment_methods>.wc_payment_method>label:before{display:inline-block;font-size:inherit;-webkit-font-smoothing:antialiased;content:"\e902";margin-right:.5407911001em;-webkit-transition:color,ease,.2s;-moz-transition:color,ease,.2s;transition:color,ease,.2s;font-family:"GP Premium"}#payment .payment_methods li.wc_payment_method>input[type=radio]:first-child:checked+label:before{content:"\e904"}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{padding:0;border:0}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:none;width:100%;padding-top:20px;padding-bottom:20px;font-weight:700;font-size:150%}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding-left:0;padding-right:0;padding-top:0}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:none;display:inline-block;line-height:1}.woocommerce #content table.cart td.actions .input-text,.woocommerce table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text{width:150px;padding:10px 15px}.woocommerce .coupon .button{border:1px solid transparent}.woocommerce ul.products li.product .woocommerce-product-details__short-description p:last-child{margin-bottom:0}.wc-product-image{text-align:center}.woocommerce-text-align-left .wc-product-image{text-align:left}.woocommerce-text-align-right .wc-product-image{text-align:right}.inside-wc-product-image{position:relative;display:inline-block}.woocommerce ul.products li.product.woocommerce-image-align-left .wc-product-image{float:left;margin-right:2em}.woocommerce ul.products li.product.woocommerce-image-align-right .wc-product-image{float:right;margin-left:2em}.woocommerce ul.products li.product.woocommerce-image-align-left a .wc-product-image img,.woocommerce ul.products li.product.woocommerce-image-align-right a .wc-product-image img{width:auto}.woocommerce-cart ul.products li.product.woocommerce-image-align-left .wc-product-image,.woocommerce-cart ul.products li.product.woocommerce-image-align-right .wc-product-image{float:none;margin:0}.woocommerce-cart ul.products li.product.woocommerce-image-align-left a .wc-product-image img,.woocommerce-cart ul.products li.product.woocommerce-image-align-right a .wc-product-image img{width:100%}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1em;line-height:normal}.woocommerce-review-link{font-size:80%}.woocommerce-Reviews .comment-reply-title{font-size:120%;font-weight:700;display:block;margin-bottom:10px}.woocommerce-MyAccount-navigation ul{margin:0;border-top:1px solid rgba(0,0,0,.1);list-style-type:none}.site-main .woocommerce-MyAccount-navigation li{margin:0;padding:0}.woocommerce-MyAccount-navigation li a{display:block;padding:20px 0;border-bottom:1px solid rgba(0,0,0,.1);font-size:85%}.woocommerce-MyAccount-navigation li.is-active a{font-weight:700}.woocommerce-MyAccount-navigation li a:hover{border-bottom:1px solid rgba(0,0,0,.2)}.woocommerce-MyAccount-navigation li.is-active a:after{font-family:"GP Premium";content:"\e901";float:right;font-weight:700;font-size:115%}.woocommerce-account .woocommerce-MyAccount-navigation{width:25%}.woocommerce #payment .terms{padding:20px}h2.woocommerce-loop-category__title mark{background:0 0;font-size:80%;opacity:.5}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{padding:0;margin:0 0 1.5em;border:0}#ship-to-different-address{padding:3px;font-size:inherit}.woocommerce-image-align-left .products ul,.woocommerce-image-align-left .products ul:after,.woocommerce-image-align-left ul.products,.woocommerce-image-align-left ul.products:after,.woocommerce-image-align-right .products ul,.woocommerce-image-align-right .products ul:after,.woocommerce-image-align-right ul.products,.woocommerce-image-align-right ul.products:after{clear:none}.woocommerce nav.woocommerce-pagination{margin-top:60px;clear:both}.woocommerce input.button:disabled,.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled],.woocommerce input.button:disabled[disabled]:hover{background-color:transparent;color:initial;opacity:.3}.entry-summary+.up-sells{clear:both}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{line-height:1.5}.main-navigation a.cart-contents:not(.has-svg-icon):before,.secondary-navigation a.cart-contents:not(.has-svg-icon):before{content:"\f07a";display:inline-block;font-family:"GP Premium";speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.main-navigation a.cart-contents:not(.has-svg-icon).shopping-bag:before,.secondary-navigation a.cart-contents:not(.has-svg-icon).shopping-bag:before{content:"\f290"}.main-navigation a.cart-contents:not(.has-svg-icon).shopping-basket:before,.secondary-navigation a.cart-contents:not(.has-svg-icon).shopping-basket:before{content:"\f291"}.cart-contents>span.number-of-items{font-size:11px;background:rgba(255,255,255,.1);line-height:1.7em;height:1.7em;width:1.7em;text-align:center;border-radius:50%;margin-left:5px;position:relative;top:-5px;display:none}form.checkout:after,form.checkout:before{content:'';display:table}form.checkout:after{clear:both}.add-to-cart-panel{position:fixed;top:0;left:0;right:0;background:#fff;padding:20px;opacity:0;transition:opacity 500ms ease-in-out,transform 500ms ease-in-out;box-shadow:0 2px 2px -2px rgba(0,0,0,.2);z-index:50;font-size:90%;box-sizing:border-box;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.add-to-cart-panel.item-added,.add-to-cart-panel.show-sticky-add-to-cart{opacity:1}.add-to-cart-panel .continue-shopping{margin-right:auto}.add-to-cart-panel .continue-shopping .gp-icon{display:none}.add-to-cart-panel .cart-info{margin-right:20px}.add-to-cart-panel img{height:50px;width:auto;vertical-align:middle}.add-to-cart-panel .product-title{margin-left:20px;margin-right:auto;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.add-to-cart-panel .product-price{margin-right:20px}.add-to-cart-panel div.quantity{margin-right:4px}.add-to-cart-panel .cart-data{font-size:12px}.add-to-cart-panel del{opacity:.4}.do-quantity-buttons input.qty::-webkit-inner-spin-button,.do-quantity-buttons input.qty::-webkit-outer-spin-button{-webkit-appearance:none} +@supports (display:grid){.woocommerce ul.products li.product{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.product_meta>span,.woocommerce ul.products li.product.woocommerce-image-align-left,.woocommerce ul.products li.product.woocommerce-image-align-right{display:block}.woocommerce ul.products li.product .woocommerce-LoopProduct-link{display:block;margin-bottom:auto}.woocommerce ul.products li.product .button{margin-left:auto;margin-right:auto}.woocommerce ul.products li.product.woocommerce-text-align-left .button{margin-left:0}.woocommerce ul.products li.product.woocommerce-text-align-right .button{margin-right:0}.woocommerce ul.products li.product .woocommerce-LoopProduct-link>:not(:first-child){margin-top:10px;margin-bottom:0}.woocommerce ul.products li.product .woocommerce-LoopProduct-link>.secondary-image+img{margin-top:0}.woocommerce span.onsale,.woocommerce ul.products li.product .onsale{position:relative;border-radius:0;min-height:15px;min-width:initial;padding:8px 13px;line-height:1;display:inline-block;top:auto;left:auto;font-size:80%;text-transform:uppercase;font-weight:700}.woocommerce ul.products li.product.sales-flash-overlay .onsale{position:absolute;top:0;right:0;margin:0}.single-product span.onsale{margin-bottom:15px}.woocommerce-product-gallery{margin-right:4%}.rtl .woocommerce-product-gallery{margin-right:0;margin-left:4%}.woocommerce div.product div.images .flex-control-thumbs li{max-width:100px;padding-top:5px;padding-right:5px;-webkit-box-sizing:border-box;box-sizing:border-box}#wc-mini-cart .woocommerce-mini-cart-item a,.woocommerce ul.products li.product .woocommerce-loop-product__title{padding:0}.woocommerce .page-header-image-single{display:none}.woocommerce .entry-content,.woocommerce .product .entry-summary{margin-top:0}.related.products{clear:both}.checkout-subscribe-prompt.clear{visibility:visible;height:initial;width:initial}.woocommerce .add_to_cart_button+.added_to_cart{display:none}.woocommerce-result-count{font-size:14px;padding:10px 0;border:1px solid transparent}.woocommerce-ordering select{font-size:14px;font-weight:500;padding:10px 40px 10px 12px;-webkit-appearance:none;-moz-appearance:none;width:100%;background:0 0;border-color:rgba(0,0,0,.1);color:inherit;cursor:pointer}.woocommerce-ordering select::-ms-expand{display:none}.woocommerce-ordering:after{content:"\e903";font-family:"GP Premium";display:inline-block;position:absolute;pointer-events:none;color:inherit;top:10px;right:15px;font-size:16px}.woocommerce div.product .woocommerce-tabs ul.tabs li a,.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce-ordering select option{color:initial}.woocommerce .woocommerce-ordering,.woocommerce .woocommerce-result-count{margin-bottom:30px}.add-to-cart-panel form.cart,.woocommerce div.product form.cart,.woocommerce-variation-add-to-cart{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@supports (display:grid){#wc-column-container .product{float:none;width:auto;margin:0}.woocommerce .related ul.products::after,.woocommerce .related ul.products::before,.woocommerce .up-sells ul.products::after,.woocommerce .up-sells ul.products::before,.woocommerce .wc-columns-container .products::after,.woocommerce .wc-columns-container .products::before{display:none}.wc-columns-container .products,.woocommerce .related ul.products,.woocommerce .up-sells ul.products{display:-ms-grid;display:grid;grid-gap:50px;width:100%}.wc-columns-container.wc-columns-6 .products,.wc-related-upsell-columns-6 .related ul.products,.wc-related-upsell-columns-6 .up-sells ul.products{-ms-grid-columns:1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;grid-template-columns:repeat(6,minmax(0,1fr))}.wc-columns-container.wc-columns-5 .products,.wc-related-upsell-columns-5 .related ul.products,.wc-related-upsell-columns-5 .up-sells ul.products{-ms-grid-columns:1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;grid-template-columns:repeat(5,minmax(0,1fr))}.wc-related-upsell-columns-4 .related ul.products,.wc-related-upsell-columns-4 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-4 .products{-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4,minmax(0,1fr))}.wc-related-upsell-columns-3 .related ul.products,.wc-related-upsell-columns-3 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-3 .products{-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,minmax(0,1fr))}.wc-related-upsell-columns-2 .related ul.products,.wc-related-upsell-columns-2 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-2 .products{-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,minmax(0,1fr))}.wc-related-upsell-columns-1 .related ul.products,.wc-related-upsell-columns-1 .up-sells ul.products,.woocommerce .wc-columns-container.wc-columns-1 .products{width:100%}.woocommerce .wc-columns-1 ul.products li.product,.woocommerce-page .wc-columns-1 ul.products li.product{margin-left:0;margin-right:0}}#wc-mini-cart ul.woocommerce-mini-cart{position:relative;left:auto;right:auto;opacity:1;pointer-events:auto;height:auto;width:auto;float:none;background-color:transparent;box-shadow:0 0 0;visibility:visible}.wc-mini-cart{position:absolute;width:300px;right:0;box-shadow:0 2px 2px rgba(0,0,0,.1);z-index:99999;left:-99999px;opacity:0;height:0;overflow:hidden;pointer-events:none;transition:opacity 80ms linear;transition-delay:0s;visibility:hidden}.wc-menu-item.sfHover .wc-mini-cart,.wc-menu-item:hover .wc-mini-cart{left:auto;opacity:1;transition-delay:150ms;pointer-events:auto;height:auto;overflow:visible;visibility:visible}.sidebar .wc-mini-cart{right:100%;top:0}.sidebar .wc-mini-cart .widget,.wc-menu-item .wc-mini-cart .widget_shopping_cart_content li.sfHover a,.wc-menu-item .wc-mini-cart .widget_shopping_cart_content li:hover a{background:0 0}body:not(.using-mouse) .wc-menu-item.sfHover .wc-mini-cart{display:none}.wc-menu-item .sub-menu{left:auto;right:0;width:300px}.wc-menu-item .wc-mini-cart .widget_shopping_cart{padding:15px}.woocommerce.widget_shopping_cart .cart_list li{padding:0 0 0 4em;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:3em}.woocommerce.widget_shopping_cart{font-size:14px}.widget_shopping_cart .woocommerce-mini-cart__buttons{margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex}.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a{margin:0;width:calc(50% - 10px);text-align:center;padding:10px 15px;line-height:inherit;font-size:14px}.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:first-child{margin-right:2px}.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:last-child{margin-left:2px}.woocommerce.widget_shopping_cart .cart_list li a.remove{right:0;left:auto;height:20px;width:20px;border-width:1px;border-style:solid;border-radius:50%;padding:0;font-size:16px;line-height:17px;font-weight:400;position:relative;float:right}.woocommerce ul.cart_list li img{position:absolute;left:0;width:3em;height:auto;top:0;margin-left:0}.woocommerce-mini-cart-item .quantity{font-size:12px;display:block}.woocommerce.widget_shopping_cart .total{margin:15px 0;padding:15px;background:rgba(0,0,0,.05);border:0;font-size:14px}#wc-mini-cart .total{padding:15px;margin:15px -15px;text-align:left}#generate-slideout-menu .total{padding:10px 20px;margin:20px -20px}#generate-slideout-menu.do-overlay .total{margin:20px 0}#wc-mini-cart .widgettitle,.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before,.woocommerce.widget_shopping_cart a.button.wc-forward:after{display:none}.woocommerce.widget_shopping_cart .cart_list li.woocommerce-mini-cart-item:not(:last-child){margin-bottom:15px}.slideout-widget .widget_shopping_cart_content,.slideout-widget .widget_shopping_cart_content a{font-size:14px}#generate-slideout-menu.do-overlay li.woocommerce-mini-cart-item{text-align:left}#wc-mini-cart a:not(.button){font-family:inherit}.wc-menu-item:not(.has-items) .wc-mini-cart{display:none}.woocommerce .related ul.products li.product a img,.woocommerce .up-sells ul.products li.product a img,.woocommerce ul.products li.product a img,.woocommerce-mini-cart__empty-message{margin-bottom:0}.secondary-nav-aligned-center .secondary-navigation ul.woocommerce-mini-cart,.secondary-nav-aligned-right .secondary-navigation ul.woocommerce-mini-cart{font-size:inherit}@supports (display:grid){.woocommerce .related ul.products li.product,.woocommerce .up-sells ul.products li.product{width:auto;margin-left:0;margin-right:0}}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{border-radius:0;font-weight:inherit;font-size:inherit;line-height:inherit;padding:10px 20px}ul.products .woocommerce-text-align-center{text-align:center}ul.products li.product.woocommerce-text-align-center .price,ul.products li.product.woocommerce-text-align-center .star-rating{margin-left:auto;margin-right:auto}ul.products li.product.woocommerce-text-align-right .price,ul.products li.product.woocommerce-text-align-right .star-rating{margin-left:auto}.woocommerce .star-rating:before,.woocommerce p.stars a{color:rgba(0,0,0,.4)}.woocommerce ul.products li.product .price del{display:inline;padding-right:10px}ul.products .woocommerce-text-align-right{text-align:right}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{width:50%}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{width:auto;float:none;overflow:hidden}.product_meta{font-size:80%;border-top:1px solid rgba(0,0,0,.1);padding-top:30px}.up-sells{margin-top:40px}.woocommerce div.product form.cart>:not(.quantity):not(.single_add_to_cart_button){width:100%}.add-to-cart-panel form.cart{-ms-flex-negative:0;flex-shrink:0}.woocommerce .quantity .qty{width:auto;max-width:80px;background:0 0;border:1px solid rgba(0,0,0,.1);padding:0 10px;height:50px}.do-quantity-buttons .quantity:not(.buttons-added) .qty{width:50px}.add-to-cart-panel .cart.do-quantity-buttons div.quantity,.add-to-cart-panel>div,.do-quantity-buttons div.quantity{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):after,.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):before,.woocommerce form .quantity.buttons-added .minus,.woocommerce form .quantity.buttons-added .plus,.woocommerce form .quantity.buttons-added .qty{display:block;width:50px;height:100%;min-height:50px;background-color:transparent;border:1px solid rgba(0,0,0,.1);margin:0;padding:0;text-align:center;vertical-align:middle;-moz-appearance:textfield!important;-webkit-appearance:none;border-radius:0;color:inherit;box-sizing:border-box}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):after,.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):before,.woocommerce form .quantity.buttons-added .minus,.woocommerce form .quantity.buttons-added .plus{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):before{content:"-";border-right:0}.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):after{content:"+";border-left:0}.woocommerce form .quantity.buttons-added .qty:focus{border-color:rgba(0,0,0,.1)}.do-quantity-buttons form .quantity input[type=number]::-webkit-inner-spin-button,.do-quantity-buttons form .quantity input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.do-quantity-buttons form .quantity:not(.buttons-added):before,.woocommerce form .quantity.buttons-added .minus{border-right-width:0}.do-quantity-buttons form .quantity:not(.buttons-added):after,.woocommerce form .quantity.buttons-added .plus{border-left-width:0}.do-quantity-buttons .elementor-add-to-cart form .quantity:not(.buttons-added):after,.do-quantity-buttons .elementor-add-to-cart form .quantity:not(.buttons-added):before,.do-quantity-buttons form .quantity.hidden{display:none}.woocommerce div.product form.cart div.quantity.hidden{margin:0}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before,.woocommerce div.product .woocommerce-tabs ul.tabs::before{display:none;border:0}.woocommerce div.product .woocommerce-tabs ul.tabs{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:0;padding-left:0}.woocommerce div.product .woocommerce-tabs ul.tabs li{background-color:rgba(0,0,0,.02);margin:0;border-radius:0;border-width:1px 1px 0 0;border-color:rgba(0,0,0,.08)}.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child{border-left-width:1px}.woocommerce-ordering{float:left;margin-right:1em;margin-bottom:0;position:relative;padding:0}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img,nav li.wc-menu-item{float:right}.cart-contents>span{line-height:0}.cart-contents>span:not(:empty){margin-left:10px}nav span.count{font-size:.8em;opacity:.5}.woocommerce a.remove{color:inherit!important;background:0 0!important;border:1px solid!important;border-color:inherit;font-weight:400;font-size:16px;width:20px;height:20px;line-height:17px;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"!important}.woocommerce a.remove:hover{color:inherit!important;background:0 0!important;opacity:.7}.woocommerce .star-rating:before{opacity:.25;content:"SSSSS"}.woocommerce div.product .woocommerce-product-rating{margin:1em 0}.woocommerce div.product p.price,.woocommerce div.product span.price{color:inherit}.wc-has-gallery .secondary-image{position:absolute;opacity:0;transition:opacity 100ms ease-in-out;left:50%;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);top:0}.woocommerce div.product p.price,.woocommerce ul.products li.product .price,.woocommerce-error a,.woocommerce-info a,.woocommerce-message a{font-weight:700}div.woocommerce-error a.button,div.woocommerce-error a.button:focus,div.woocommerce-error a.button:hover,div.woocommerce-info a.button,div.woocommerce-info a.button:focus,div.woocommerce-info a.button:hover,div.woocommerce-message a.button,div.woocommerce-message a.button:focus,div.woocommerce-message a.button:hover{background:0 0;padding:0}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:20px 30px;border:0;border-left:10px solid rgba(0,0,0,.3)}a.button.wc-forward:after{content:"\e901";font-family:"GP Premium";line-height:1em;speak:none;padding-left:10px;position:relative;top:2px}#add_payment_method #payment div.payment_box:before,.cart-contents>span.number-of-items.no-items,.rtl a.button.wc-forward:after,.woocommerce-cart #payment div.payment_box:before,.woocommerce-checkout #payment div.payment_box:before,a.checkout-button:after{display:none}.woocommerce-checkout .col2-set .col-1,.woocommerce-checkout .col2-set .col-2{float:none;width:100%;margin:0}.woocommerce-checkout .col2-set{width:52.9411764706%;float:left;margin-right:5.8823529412%}.rtl.woocommerce-checkout .col2-set{float:right;margin-right:0;margin-left:5.8823529412%}#customer_details+#wc_checkout_add_ons,#order_review,#order_review_heading{width:41.1764705882%;float:right;margin-right:0}.woocommerce-additional-fields>h3{margin-top:20px}.woocommerce table.shop_table,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{border:0;border-radius:0}.woocommerce table.shop_table th{background-color:rgba(0,0,0,.03);padding:20px;border:0}.woocommerce table.shop_table td{padding:20px;border:0;background-color:rgba(0,0,0,.005);border-bottom:1px solid rgba(0,0,0,.1)}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:0}#add_payment_method #payment,#add_payment_method #payment div.payment_box,.woocommerce-cart #payment,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment,.woocommerce-checkout #payment div.payment_box{background-color:transparent;color:inherit}#payment .payment_methods>.wc_payment_method>label{padding:20px;background-color:rgba(0,0,0,.04);display:block;cursor:pointer}#payment .payment_methods li.wc_payment_method>input[type=radio]:first-child:checked+label{font-weight:700;background-color:rgba(0,0,0,.07)}#payment .payment_methods li.wc_payment_method>input[type=radio]:first-child{clip:rect(1px,1px,1px,1px);position:absolute!important}#payment .payment_methods>.wc_payment_method>label:before{display:inline-block;font-size:inherit;-webkit-font-smoothing:antialiased;content:"\e902";margin-right:.5407911001em;-webkit-transition:color,ease,.2s;-moz-transition:color,ease,.2s;transition:color,ease,.2s;font-family:"GP Premium"}#payment .payment_methods li.wc_payment_method>input[type=radio]:first-child:checked+label:before{content:"\e904"}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{padding:0;border:0}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:none;width:100%;padding-top:20px;padding-bottom:20px;font-weight:700;font-size:150%}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding-left:0;padding-right:0;padding-top:0}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:none;display:inline-block;line-height:1}.woocommerce #content table.cart td.actions .input-text,.woocommerce table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text{width:150px;padding:10px 15px}.woocommerce .coupon .button{border:1px solid transparent}.woocommerce ul.products li.product .woocommerce-product-details__short-description p:last-child{margin-bottom:0}.wc-product-image{text-align:center}.woocommerce-text-align-left .wc-product-image{text-align:left}.woocommerce-text-align-right .wc-product-image{text-align:right}.inside-wc-product-image{position:relative;display:inline-block}.woocommerce ul.products li.product.woocommerce-image-align-left .wc-product-image{float:left;margin-right:2em}.woocommerce ul.products li.product.woocommerce-image-align-right .wc-product-image{float:right;margin-left:2em}.woocommerce ul.products li.product.woocommerce-image-align-left a .wc-product-image img,.woocommerce ul.products li.product.woocommerce-image-align-right a .wc-product-image img{width:auto}.woocommerce-cart ul.products li.product.woocommerce-image-align-left .wc-product-image,.woocommerce-cart ul.products li.product.woocommerce-image-align-right .wc-product-image{float:none;margin:0}.woocommerce-cart ul.products li.product.woocommerce-image-align-left a .wc-product-image img,.woocommerce-cart ul.products li.product.woocommerce-image-align-right a .wc-product-image img{width:100%}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1em;line-height:normal}.woocommerce-review-link{font-size:80%}.woocommerce-Reviews .comment-reply-title{font-size:120%;font-weight:700;display:block;margin-bottom:10px}.woocommerce-MyAccount-navigation ul{margin:0;border-top:1px solid rgba(0,0,0,.1);list-style-type:none}.site-main .woocommerce-MyAccount-navigation li{margin:0;padding:0}.woocommerce-MyAccount-navigation li a{display:block;padding:20px 0;border-bottom:1px solid rgba(0,0,0,.1);font-size:85%}.woocommerce-MyAccount-navigation li.is-active a{font-weight:700}.woocommerce-MyAccount-navigation li a:hover{border-bottom:1px solid rgba(0,0,0,.2)}.woocommerce-MyAccount-navigation li.is-active a:after{font-family:"GP Premium";content:"\e901";float:right;font-weight:700;font-size:115%}.woocommerce-account .woocommerce-MyAccount-navigation{width:25%}.woocommerce #payment .terms{padding:20px}h2.woocommerce-loop-category__title mark{background:0 0;font-size:80%;opacity:.5}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{padding:0;margin:0 0 1.5em;border:0}#ship-to-different-address{padding:3px;font-size:inherit}.woocommerce-image-align-left .products ul,.woocommerce-image-align-left .products ul:after,.woocommerce-image-align-left ul.products,.woocommerce-image-align-left ul.products:after,.woocommerce-image-align-right .products ul,.woocommerce-image-align-right .products ul:after,.woocommerce-image-align-right ul.products,.woocommerce-image-align-right ul.products:after{clear:none}.woocommerce nav.woocommerce-pagination{margin-top:60px;clear:both}.woocommerce input.button:disabled,.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled],.woocommerce input.button:disabled[disabled]:hover{background-color:transparent;color:initial;opacity:.3}.entry-summary+.up-sells{clear:both}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{line-height:1.5}.main-navigation a.cart-contents:not(.has-svg-icon):before,.secondary-navigation a.cart-contents:not(.has-svg-icon):before{content:"\f07a";display:inline-block;font-family:"GP Premium";speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.main-navigation a.cart-contents:not(.has-svg-icon).shopping-bag:before,.secondary-navigation a.cart-contents:not(.has-svg-icon).shopping-bag:before{content:"\f290"}.main-navigation a.cart-contents:not(.has-svg-icon).shopping-basket:before,.secondary-navigation a.cart-contents:not(.has-svg-icon).shopping-basket:before{content:"\f291"}.cart-contents>span.number-of-items{font-size:11px;background:rgba(255,255,255,.1);line-height:1.7em;height:1.7em;width:1.7em;text-align:center;border-radius:50%;margin-left:5px;position:relative;top:-5px;display:none}form.checkout:after,form.checkout:before{content:'';display:table}form.checkout:after{clear:both}.add-to-cart-panel{position:fixed;top:0;left:0;right:0;background:#fff;padding:20px;opacity:0;transition:opacity 500ms ease-in-out,transform 500ms ease-in-out;box-shadow:0 2px 2px -2px rgba(0,0,0,.2);z-index:50;font-size:90%;box-sizing:border-box;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.add-to-cart-panel.item-added,.add-to-cart-panel.show-sticky-add-to-cart{opacity:1}.add-to-cart-panel .continue-shopping{margin-right:auto}.add-to-cart-panel .continue-shopping .gp-icon{display:none}.add-to-cart-panel .cart-info{margin-right:20px}.add-to-cart-panel img{height:50px;width:auto;vertical-align:middle}.add-to-cart-panel .product-title{margin-left:20px;margin-right:auto;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.add-to-cart-panel .product-price{margin-right:20px}.add-to-cart-panel div.quantity{margin-right:4px}.add-to-cart-panel .cart-data{font-size:12px}.add-to-cart-panel del{opacity:.4}.do-quantity-buttons input.qty::-webkit-inner-spin-button,.do-quantity-buttons input.qty::-webkit-outer-spin-button{-webkit-appearance:none} diff --git a/wp-content/plugins/gp-premium/woocommerce/functions/customizer/customizer.php b/wp-content/plugins/gp-premium/woocommerce/functions/customizer/customizer.php index 8897d671..a03e0370 100644 --- a/wp-content/plugins/gp-premium/woocommerce/functions/customizer/customizer.php +++ b/wp-content/plugins/gp-premium/woocommerce/functions/customizer/customizer.php @@ -85,7 +85,7 @@ function generatepress_woocommerce_customize_register( $wp_customize ) { array( 'section' => 'generate_woocommerce_layout', 'type' => 'generatepress-customizer-title', - 'title' => __( 'General','generate-woocommerce' ), + 'title' => __( 'General', 'gp-premium' ), 'settings' => ( isset( $wp_customize->selective_refresh ) ) ? array() : 'blogname' ) ) @@ -205,7 +205,7 @@ function generatepress_woocommerce_customize_register( $wp_customize ) { array( 'section' => 'generate_woocommerce_layout', 'type' => 'generatepress-customizer-title', - 'title' => __( 'Shop','generate-woocommerce' ), + 'title' => __( 'Shop', 'gp-premium' ), 'settings' => ( isset( $wp_customize->selective_refresh ) ) ? array() : 'blogname' ) ) @@ -691,7 +691,7 @@ function generatepress_woocommerce_customize_register( $wp_customize ) { array( 'section' => 'generate_woocommerce_layout', 'type' => 'generatepress-customizer-title', - 'title' => __( 'Single Product','generate-woocommerce' ), + 'title' => __( 'Single Product', 'gp-premium' ), 'settings' => ( isset( $wp_customize->selective_refresh ) ) ? array() : 'blogname' ) ) @@ -713,7 +713,7 @@ function generatepress_woocommerce_customize_register( $wp_customize ) { 'label' => __( 'Sidebar Layout', 'gp-premium' ), 'section' => 'generate_woocommerce_layout', 'choices' => array( - 'inherit' => __( 'Inherit','generate-woocommerce' ), + 'inherit' => __( 'Inherit', 'gp-premium' ), 'left-sidebar' => __( 'Sidebar / Content', 'gp-premium' ), 'right-sidebar' => __( 'Content / Sidebar', 'gp-premium' ), 'no-sidebar' => __( 'Content (no sidebars)', 'gp-premium' ), @@ -1002,7 +1002,7 @@ function generatepress_woocommerce_customize_register( $wp_customize ) { array( 'section' => 'generate_woocommerce_layout', 'type' => 'generatepress-customizer-title', - 'title' => __( 'Checkout','generate-woocommerce' ), + 'title' => __( 'Checkout', 'gp-premium' ), 'settings' => ( isset( $wp_customize->selective_refresh ) ) ? array() : 'blogname' ) ) @@ -1022,7 +1022,7 @@ function generatepress_woocommerce_customize_register( $wp_customize ) { array( 'type' => 'checkbox', 'label' => __( 'Distraction-free mode', 'gp-premium' ), - 'description' => __( 'Remove unnecessary distractions like sidebars, footer widgets and sticky menus.','generate-woocommerce' ), + 'description' => __( 'Remove unnecessary distractions like sidebars, footer widgets and sticky menus.', 'gp-premium' ), 'section' => 'generate_woocommerce_layout', 'settings' => 'generate_woocommerce_settings[distraction_free]', ) diff --git a/wp-content/plugins/gp-premium/woocommerce/functions/functions.php b/wp-content/plugins/gp-premium/woocommerce/functions/functions.php index a43ffa00..fbfb50f3 100644 --- a/wp-content/plugins/gp-premium/woocommerce/functions/functions.php +++ b/wp-content/plugins/gp-premium/woocommerce/functions/functions.php @@ -526,12 +526,9 @@ function generatepress_wc_cart_link() { $icon ? 'has-svg-icon' : '', esc_attr__( 'View your shopping cart', 'gp-premium' ), $icon, - sprintf ( - _n( - '%d', - '%d', - WC()->cart->get_cart_contents_count() - ), + sprintf( + '%2$s', + $no_items, WC()->cart->get_cart_contents_count() ), $legacy_icon,